/* =========================================
   HELTCAMIGO - Main Stylesheet
   ========================================= */

/* -----------------------------------------
   CSS Reset & Base
   ----------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0d0d0d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #FFB347;
}

ul, ol {
    list-style: none;
}

/* -----------------------------------------
   Typography
   ----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: #B0B0B0;
}

.text-success { color: #00D4AA; }
.text-muted { color: #6B6B6B; }

/* -----------------------------------------
   Layout & Container
   ----------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 120px 0;
}

.section-dark {
    background-color: #121212;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-title {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #B0B0B0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #FF6B35;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-badge-cyan {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    color: #00D4AA;
}

/* -----------------------------------------
   Skip Link (Accessibility)
   ----------------------------------------- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #FF6B35;
    color: #FFFFFF;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* -----------------------------------------
   Header & Navigation
   ----------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #FFFFFF;
}

.logo-h {
    color: #FF6B35;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #B0B0B0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-cta {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* -----------------------------------------
   Buttons
   ----------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #FFFFFF;
}

.btn-primary.btn-cyan {
    background: linear-gradient(135deg, #00D4AA 0%, #00A8E8 100%);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.btn-primary.btn-cyan:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.btn-secondary.btn-cyan {
    border-color: #00D4AA;
    color: #00D4AA;
}

.btn-secondary.btn-cyan:hover {
    background: rgba(0, 212, 170, 0.1);
    color: #00D4AA;
}

.btn-ghost {
    background: transparent;
    color: #FF6B35;
    padding: 14px 0;
}

.btn-ghost:hover {
    color: #FFB347;
    text-decoration: underline;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

/* -----------------------------------------
   Hero Section
   ----------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
}

.hero-page {
    min-height: 50vh;
}

.hero-page-small {
    min-height: 40vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #B0B0B0;
}

.hero-badges .badge i {
    color: #FF6B35;
}

/* -----------------------------------------
   Stats Section
   ----------------------------------------- */
.stats {
    background-color: #121212;
    padding: 48px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: #B0B0B0;
}

/* -----------------------------------------
   Expertise Section
   ----------------------------------------- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.expertise-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.expertise-card-life {
    border-left-color: #FF6B35;
}

.expertise-card-property {
    border-left-color: #00D4AA;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.expertise-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
}

.expertise-icon i {
    font-size: 1.75rem;
    color: #FF6B35;
}

.expertise-card-property .expertise-icon {
    background: rgba(0, 212, 170, 0.1);
}

.expertise-card-property .expertise-icon i {
    color: #00D4AA;
}

.expertise-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.expertise-description {
    color: #B0B0B0;
    margin-bottom: 24px;
}

.expertise-list {
    margin-bottom: 24px;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #B0B0B0;
}

.expertise-list li i {
    color: #00D4AA;
    font-size: 0.875rem;
}

/* -----------------------------------------
   Features Grid
   ----------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #121212;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #FF6B35;
}

.feature-title {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 0;
}

/* -----------------------------------------
   Process Section
   ----------------------------------------- */
.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 48px;
    color: #6B6B6B;
}

.process-cta {
    text-align: center;
}

/* -----------------------------------------
   Testimonials Section
   ----------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 32px;
    border-top: 3px solid;
    border-image: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%) 1;
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #FF6B35;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
}

.author-location {
    font-size: 0.875rem;
    color: #6B6B6B;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    font-size: 0.875rem;
    color: #FFB347;
}

/* -----------------------------------------
   Contact Section
   ----------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.contact-form-wrapper h2 {
    margin-bottom: 8px;
}

.contact-form-wrapper .section-subtitle {
    text-align: left;
    margin-bottom: 32px;
}

.contact-info-card {
    background: #121212;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #2a2a2a;
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 12px;
}

.contact-phone:hover {
    color: #FFB347;
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B0B0B0;
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.contact-info-card hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 24px 0;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #B0B0B0;
}

.contact-details i {
    color: #FF6B35;
    margin-top: 4px;
}

/* -----------------------------------------
   Forms
   ----------------------------------------- */
.contact-form,
.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-small {
    max-width: 120px;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #FFFFFF;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B6B6B;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B0B0B0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #B0B0B0;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    color: #B0B0B0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6B6B6B;
    margin-top: 8px;
}

/* -----------------------------------------
   Contact Info Cards
   ----------------------------------------- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: #121212;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: #FF6B35;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contact-card .contact-main {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-card .contact-main a {
    color: #FF6B35;
}

.contact-card .contact-secondary {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 16px;
}

.contact-card .contact-hours {
    display: block;
    font-size: 0.875rem;
    color: #6B6B6B;
}

/* -----------------------------------------
   Map Section
   ----------------------------------------- */
.map-section {
    border-top: 1px solid #2a2a2a;
}

.map-section iframe {
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
}

/* -----------------------------------------
   Timeline
   ----------------------------------------- */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #FF6B35 0%, #FFB347 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    border-radius: 50%;
    border: 3px solid #0d0d0d;
}

.timeline-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2a2a;
}

.timeline-year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 8px;
}

.timeline-content h4 {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* -----------------------------------------
   Values Grid
   ----------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #2a2a2a;
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #FF6B35;
}

.value-title {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.value-description {
    color: #B0B0B0;
    margin-bottom: 0;
}

/* -----------------------------------------
   Team Grid
   ----------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: #121212;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid;
    border-color: #FF6B35;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.875rem;
    color: #FF6B35;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 50%;
    color: #B0B0B0;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #FF6B35;
    color: #FFFFFF;
}

/* -----------------------------------------
   Commitments Section
   ----------------------------------------- */
.commitments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.commitments-text .section-title {
    text-align: left;
}

.commitments-text .section-subtitle {
    text-align: left;
    margin-bottom: 32px;
}

.commitments-list {
    margin-bottom: 32px;
}

.commitments-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #B0B0B0;
    border-bottom: 1px solid #2a2a2a;
}

.commitments-list li i {
    color: #00D4AA;
}

.commitments-image img {
    border-radius: 12px;
}

/* -----------------------------------------
   CTA Section
   ----------------------------------------- */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.cta-title {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.125rem;
    color: #B0B0B0;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* -----------------------------------------
   Pricing Cards
   ----------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #2a2a2a;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: #FF6B35;
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-card-featured-cyan {
    border-color: #00D4AA;
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-popular-cyan {
    background: linear-gradient(135deg, #00D4AA 0%, #00A8E8 100%);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 12px;
}

.pricing-badge-cyan {
    color: #00D4AA;
}

.pricing-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.pricing-description {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #B0B0B0;
    font-size: 0.9375rem;
}

.pricing-features li i {
    margin-top: 2px;
}

.pricing-features li .fa-check {
    color: #00D4AA;
}

.pricing-features li .fa-times {
    color: #6B6B6B;
}

.pricing-features li.disabled {
    color: #6B6B6B;
}

/* -----------------------------------------
   Options Grid
   ----------------------------------------- */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.option-card {
    background: #121212;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin: 0 auto 16px;
}

.option-icon i {
    font-size: 1.25rem;
    color: #FF6B35;
}

.option-title {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.option-description {
    font-size: 0.875rem;
    color: #B0B0B0;
    margin-bottom: 12px;
}

.option-price {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00D4AA;
}

/* -----------------------------------------
   Comparison Table
   ----------------------------------------- */
.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

.comparison-table th {
    background: #1a1a1a;
    font-weight: 600;
    color: #FFFFFF;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th.featured {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

.comparison-table td.featured {
    background: rgba(255, 107, 53, 0.05);
}

.comparison-table td {
    color: #B0B0B0;
}

.comparison-table tr:nth-child(even) td {
    background: rgba(26, 26, 26, 0.5);
}

.comparison-table tr:nth-child(even) td.featured {
    background: rgba(255, 107, 53, 0.08);
}

.comparison-table .price-row td {
    font-weight: 600;
    color: #FFFFFF;
}

/* -----------------------------------------
   FAQ Section
   ----------------------------------------- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: none;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    margin-bottom: 16px;
}

.faq-grid-2col .faq-item {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.faq-question i {
    color: #FF6B35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* -----------------------------------------
   Legal Pages
   ----------------------------------------- */
.legal-content {
    background: #0d0d0d;
}

.legal-article {
    margin-bottom: 48px;
}

.legal-article h2 {
    font-size: 1.5rem;
    color: #FF6B35;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2a2a;
}

.legal-article h3 {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-article h4 {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.legal-article p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 1rem;
    padding-left: 24px;
}

.legal-article ul {
    list-style: disc;
}

.legal-article ol {
    list-style: decimal;
}

.legal-article li {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 8px;
}

.legal-info-block {
    background: #121212;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
    border-left: 3px solid #FF6B35;
}

.legal-info-block p {
    margin-bottom: 4px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #2a2a2a;
    font-size: 0.9375rem;
}

.legal-table th {
    background: #1a1a1a;
    font-weight: 600;
    color: #FFFFFF;
}

.legal-table td {
    color: #B0B0B0;
}

.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.legal-right {
    background: #121212;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #2a2a2a;
}

.legal-right h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-right h4 i {
    color: #FF6B35;
}

.legal-right p {
    margin-bottom: 0;
}

.legal-update {
    font-size: 0.875rem;
    color: #6B6B6B;
    font-style: italic;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

/* -----------------------------------------
   Footer
   ----------------------------------------- */
.footer {
    background: #0d0d0d;
    border-top: 1px solid #2a2a2a;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: #B0B0B0;
    margin-bottom: 12px;
}

.footer-certification {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6B6B6B;
    margin-bottom: 24px;
}

.footer-certification i {
    color: #00D4AA;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 50%;
    color: #B0B0B0;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF6B35;
    color: #FFFFFF;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: #B0B0B0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: #B0B0B0;
}

.footer-contact i {
    color: #FF6B35;
    margin-top: 4px;
}

.footer-contact a {
    color: #B0B0B0;
}

.footer-contact a:hover {
    color: #FF6B35;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin-bottom: 4px;
}

.footer-legal {
    font-size: 0.8125rem;
}

/* -----------------------------------------
   Responsive Design
   ----------------------------------------- */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitments-content {
        grid-template-columns: 1fr;
    }

    .commitments-image {
        order: -1;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid-2col {
        grid-template-columns: 1fr;
    }

    .legal-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #121212;
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid #2a2a2a;
    }

    .nav-cta {
        display: inline-flex;
        margin-top: 24px;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group-small {
        max-width: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .btn {
        padding: 12px 24px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .expertise-card {
        padding: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 24px;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline-marker {
        left: -32px;
        width: 14px;
        height: 14px;
    }

    .timeline-content {
        padding: 20px;
    }
}
