/* ==========================================================
   Neltix – Main Stylesheet
   Framework: Pure CSS with Grid/Flexbox
   ========================================================== */

/* ----------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ---------------------------------------------------------- */
:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --navy-light: #1e3a5f;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dark: #a07830;
    --cream: #f8f4ee;
    --cream-dark: #ede8df;
    --white: #ffffff;
    --gray-100: #f4f6f9;
    --gray-200: #e8ecf1;
    --gray-400: #9aa5b4;
    --gray-600: #5a6880;
    --gray-800: #2d3748;
    --success: #27ae60;
    --success-light: #d5f5e3;
    --error: #e74c3c;
    --error-light: #fde8e6;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.3);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ----------------------------------------------------------
   3. Layout Utilities
   ---------------------------------------------------------- */
.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* ----------------------------------------------------------
   4. Typography Utilities
   ---------------------------------------------------------- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ----------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary-custom:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ----------------------------------------------------------
   6. Navigation
   ---------------------------------------------------------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.main-nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin-right: 8px;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   7. Hero Section
   ---------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2b4c 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80') center/cover;
    opacity: 0.12;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--white));
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 140px;
}

.hero-container { max-width: 1200px; margin: 0 auto; }

.hero-text { max-width: 720px; }

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--gold);
    position: relative;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 140px;
    right: 60px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.5; }
}

/* ----------------------------------------------------------
   8. About Section
   ---------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge-card {
    position: absolute;
    top: 32px;
    left: -24px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
    line-height: 1.3;
}

.about-secondary-img {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
}

.value-icon svg { width: 20px; height: 20px; }

.value-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ----------------------------------------------------------
   9. Services Section
   ---------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold);
    color: var(--navy);
}

.service-icon-wrap svg { width: 26px; height: 26px; }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: var(--navy);
    gap: 8px;
}

/* ----------------------------------------------------------
   10. Benefits Section
   ---------------------------------------------------------- */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.05);
}

.benefits-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefits-content .section-title { margin-bottom: 16px; }
.benefits-desc {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.benefit-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin: 0;
}

.benefits-visual {
    position: relative;
}

.benefits-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefits-card-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
}

.float-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.float-icon { font-size: 2rem; }

.float-card-inner strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}

.float-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1;
}

.float-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* ----------------------------------------------------------
   11. Statistics Section
   ---------------------------------------------------------- */
.stats-section {
    padding: 80px 0;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stat-block {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid var(--cream-dark);
    position: relative;
}

.stat-block:last-child { border-right: none; }

.stat-big-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-block;
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    vertical-align: top;
    margin-top: 4px;
}

.stat-big-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 8px;
}

/* ----------------------------------------------------------
   12. Process Section
   ---------------------------------------------------------- */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    padding-left: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

.process-step:last-child { margin-bottom: 0; }

.step-number {
    position: absolute;
    left: -80px;
    top: 0;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.step-connector {
    display: none;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy-light);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.step-icon svg { width: 24px; height: 24px; }

.step-content { flex: 1; padding-top: 8px; }

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   13. Testimonials Section
   ---------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: none;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-card.featured .testimonial-quote { opacity: 0.4; }

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
    flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
    border-color: rgba(201,168,76,0.4);
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-card.featured .author-info strong { color: var(--white); }

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.testimonial-card.featured .author-info span { color: rgba(255,255,255,0.5); }

.testimonial-rating {
    margin-left: auto;
    color: var(--gold);
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ----------------------------------------------------------
   14. FAQ Section
   ---------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar .section-title { margin-bottom: 16px; }

.faq-sidebar p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    background: var(--navy);
    color: var(--gold);
    transform: rotate(45deg);
}

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

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ----------------------------------------------------------
   15. Contact Section
   ---------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--gold);
    padding: 0;
    border: none;
}

.checkbox-label a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.field-error {
    font-size: 0.78rem;
    color: var(--error);
    font-weight: 500;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
    background: var(--error-light);
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.02em;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.3);
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(201,168,76,0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Success Message */
#formSuccess {
    background: linear-gradient(135deg, var(--success-light), #a8e6c7);
    border: 1px solid #6fcf97;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

#formSuccess h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 12px;
}

#formSuccess p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   16. Footer
   ---------------------------------------------------------- */
.main-footer {
    background: var(--navy);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.social-link svg { width: 16px; height: 16px; }

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-cert {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert-badge {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-legal-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
}

.footer-legal-links a:hover { color: var(--gold); }

.footer-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-disclaimer strong { color: rgba(255,255,255,0.4); }

/* ----------------------------------------------------------
   17. Cookie Banner
   ---------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 24px 32px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    max-width: 600px;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.cookie-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    font-family: inherit;
}

.cookie-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.cookie-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: inherit;
}

.cookie-btn-outline:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cookie-custom-panel {
    max-width: 1200px;
    margin: 20px auto 0;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-toggle-row strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.cookie-toggle-row p {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin: 2px 0 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--gold); opacity: 0.7; cursor: not-allowed; }

/* ----------------------------------------------------------
   18. Animations & Reveal
   ---------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------
   19. Responsive
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
    .about-grid { gap: 48px; }
    .benefits-inner { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-block:nth-child(3) { border-right: none; }
    .stat-block:nth-child(4),
    .stat-block:nth-child(5) { border-top: 1px solid var(--cream-dark); }
    .stat-block:nth-child(6) { border-right: none; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 999;
    }
    .nav-links.active .nav-link,
    .nav-links.active .nav-cta {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    .nav-hamburger { display: flex; z-index: 1001; }

    .about-grid,
    .benefits-inner,
    .contact-grid,
    .faq-layout { grid-template-columns: 1fr; gap: 48px; }

    .about-badge-card { left: 12px; }
    .about-secondary-img { right: 12px; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { grid-column: auto; grid-row: auto; }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }
    .stat-divider { width: 100%; height: 1px; }
    .stat-item { padding: 0; }

    .process-timeline { padding-left: 60px; }
    .step-number { left: -60px; width: 40px; height: 40px; }

    .form-row { grid-template-columns: 1fr; }
    .faq-img { display: none; }
}

@media (max-width: 600px) {
    .contact-form-wrap { padding: 28px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-block:nth-child(3) { border-right: 1px solid var(--cream-dark); }
    .stat-block:nth-child(4) { border-right: none; }
    .stat-block:nth-child(5) { grid-column: span 2; border-right: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .cookie-content { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-scroll-indicator { display: none; }
    .process-timeline { padding-left: 48px; }
    .step-number { left: -48px; width: 36px; height: 36px; font-size: 0.7rem; }
}