/* ===========================
   BRAND SYSTEM VARIABLES
   =========================== */
:root {
    --brand-teal: #257c7e;
    --brand-teal-dark: #1e6466;
    --brand-teal-light: rgba(37, 124, 126, 0.08);
    --brand-gold: #fdb514;
    --brand-gold-light: rgba(253, 181, 20, 0.12);
    --brand-navy: #045372;
    --brand-navy-light: rgba(4, 83, 114, 0.06);
    --brand-mint: #7bcab0;
    --brand-sand: #d9bea1;
    --brand-cream: #f6e5d3;
    --brand-white: #ffffff;
    --brand-black: #000000;

    --text-primary: #045372;
    --text-body: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    --border-default: #E5E7EB;
    --bg-light: #F9FAFB;
    --bg-warm: #f6e5d3;

    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BD5A;

    --font-main: 'Poppins', sans-serif;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--brand-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   BUTTON STYLES
   =========================== */

/* Primary Button (Teal) */
.btn-primary {
    background-color: var(--brand-teal);
    color: var(--brand-white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: var(--brand-teal-dark);
    color: var(--brand-white);
    text-decoration: none;
}

/* Secondary Button (Outline) */
.btn-secondary {
    background-color: transparent;
    color: var(--brand-teal);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid var(--brand-teal);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--brand-teal);
    color: var(--brand-white);
    text-decoration: none;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--brand-white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    color: var(--brand-white);
    text-decoration: none;
}

/* Ghost Button (On Dark Backgrounds) */
.btn-ghost {
    background-color: transparent;
    color: var(--brand-white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid var(--brand-white);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    background-color: var(--brand-white);
    color: var(--brand-navy);
    text-decoration: none;
}

/* ===========================
   COMPONENT: CARD
   =========================== */
.card {
    background-color: var(--brand-white);
    border-radius: 12px;
    border: 1px solid var(--border-default);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(4, 83, 114, 0.1);
}

/* ===========================
   COMPONENT: BADGE (Tag Pills)
   =========================== */
.badge {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-muted);
    background-color: var(--bg-light);
    border: 1px solid var(--border-default);
    border-radius: 999px;
    padding: 5px 10px;
    white-space: nowrap;
}

/* ===========================
   SECTION 1: STICKY HEADER
   =========================== */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--brand-white);
    box-shadow: 0 2px 8px rgba(4, 83, 114, 0.06);
    height: 64px;
    display: flex;
    align-items: center;
}

.lp-header__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lp-header__logo img {
    max-height: 48px;
    width: auto;
}

.lp-header__cta {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    flex-shrink: 0;
}

.lp-header__cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lp-header__cta:focus-visible {
    outline: 2px solid var(--brand-navy);
    outline-offset: 2px;
}

/* Main content offset for fixed header */
.lp-content {
    padding-top: 64px;
}

/* ---- Mobile (below 768px) ---- */
@media (max-width: 767px) {
    .lp-header {
        height: 56px;
    }

    .lp-header__inner {
        padding: 0 16px;
    }

    .lp-header__logo img {
        max-height: 36px;
    }

    .lp-header__cta {
        padding: 0;
        gap: 0;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50%;
    }

    .lp-header__cta-text {
        display: none;
    }

    .lp-header__cta-icon {
        width: 22px;
        height: 22px;
    }

    .lp-content {
        padding-top: 56px;
    }
}

/* ===========================
   SECTION 2: HERO
   =========================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ---- Background Video ---- */
.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    background-color: var(--brand-navy);
}

/* ---- Dark Overlay ---- */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(4, 83, 114, 0.75) 0%,
        rgba(2, 57, 78, 0.893) 50%,
        rgba(0, 0, 0, 0.80) 100%
    );
}

/* ---- Content Layer ---- */
.hero__content {
    position: relative;
    z-index: 3;
    max-width: 840px;
    margin: 0 auto;
    padding: 80px 24px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---- Headline ---- */
.hero__headline {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--brand-white);
    margin: 0 0 20px;
}

/* ---- Sub-headline ---- */
.hero__subheadline {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 36px;
    max-width: 600px;
}

.hero__subheadline strong {
    color: var(--brand-gold);
    font-weight: 700;
}

/* ---- Trust Bar ---- */
.hero__trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 40px;
    max-width: 720px;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 16px;
    color: var(--brand-white);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.hero__trust-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--brand-gold);
}

/* Override icon color for specific trust items */
.hero__trust-item:nth-child(1) .hero__trust-icon {
    color: #25D366; /* WhatsApp green */
}

.hero__trust-item:nth-child(2) .hero__trust-icon {
    color: var(--brand-mint); /* Shield/checkmark - mint for safety */
}

.hero__trust-item:nth-child(3) .hero__trust-icon {
    color: var(--brand-gold); /* Star - gold */
}

.hero__trust-item:nth-child(4) .hero__trust-icon {
    color: var(--brand-mint); /* Leaf - mint for eco */
}

/* ---- CTA Buttons ---- */
.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 0 0 48px;
}

.hero__cta-primary,
.hero__cta-secondary {
    min-width: 220px;
    text-align: center;
    font-size: 16px;
    padding: 16px 32px;
}

.hero__cta-primary:focus-visible,
.hero__cta-secondary:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

/* ---- Scroll Hint ---- */
.hero__scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    animation: hero-bounce 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===========================
   SECTION 2: HERO — TABLET
   =========================== */
@media (max-width: 1023px) {
    .hero__headline {
        font-size: 40px;
    }

    .hero__subheadline {
        font-size: 18px;
    }
}

/* ===========================
   SECTION 2: HERO — MOBILE
   =========================== */
@media (max-width: 767px) {
    .hero {
        min-height: 100svh; /* svh accounts for mobile browser chrome */
    }

    .hero__content {
        padding: 60px 16px 32px;
        justify-content: center;
    }

    .hero__headline {
        font-size: 28px;
        line-height: 1.2;
        margin: 0 0 16px;
    }

    .hero__headline-break {
        display: none; /* Let text reflow naturally on mobile */
    }

    .hero__subheadline {
        font-size: 16px;
        margin: 0 0 28px;
    }

    .hero__trust-bar {
        gap: 8px;
        margin: 0 0 32px;
    }

    .hero__trust-item {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
    }

    .hero__trust-icon {
        width: 16px;
        height: 16px;
    }

    .hero__cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin: 0 0 32px;
    }

    .hero__cta-primary,
    .hero__cta-secondary {
        width: 100%;
        min-width: unset;
        padding: 16px 24px;
    }

    .hero__scroll-hint {
        display: none; /* Hide on mobile to save space */
    }
}

/* ===========================
   SECTION 2: HERO — TALL MOBILE (iPhone Pro Max, etc.)
   =========================== */
@media (max-width: 767px) and (min-height: 800px) {
    .hero__content {
        padding: 80px 16px 48px;
    }
}

/* ===========================
   SECTION 2: HERO — SHORT MOBILE (iPhone SE, etc.)
   =========================== */
@media (max-width: 767px) and (max-height: 667px) {
    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero__content {
        padding: 48px 16px 24px;
    }

    .hero__headline {
        font-size: 24px;
    }

    .hero__subheadline {
        font-size: 14px;
        margin: 0 0 20px;
    }

    .hero__trust-bar {
        margin: 0 0 24px;
    }

    .hero__trust-item {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ===========================
   SECTION 3: TOUR CARDS
   =========================== */
.tours {
    background-color: var(--bg-light);
    padding: 80px 0;
    scroll-margin-top: 72px;
}

.tours__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Header ---- */
.tours__header {
    text-align: center;
    margin-bottom: 48px;
}

.tours__title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.tours__subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

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

/* ---- Individual Card ---- */
.tours__card {
    display: flex;
    flex-direction: column;
}

/* ---- Card Image Container ---- */
.tours__card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tours__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* TEMPORARY: Fallback background when real tour images are not yet added */
    background-color: var(--brand-teal);
}

.tours__card:hover .tours__card-image img {
    transform: scale(1.05);
}

/* ---- Card Badges (overlaying the image) ---- */
.tours__card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
}

.tours__card-badge--popular {
    background-color: var(--brand-gold);
    color: #1a1a00;
}

.tours__card-badge--value {
    background-color: var(--brand-teal);
    color: var(--brand-white);
}

.tours__card-badge--safe {
    background-color: var(--brand-mint);
    color: #1a3a2a;
}

/* ---- Card Body ---- */
.tours__card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tours__card-name {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.tours__card-desc {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 12px;
}

/* ---- Card Meta (Duration + Group Size) ---- */
.tours__card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.tours__card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.tours__card-meta-item svg {
    color: var(--brand-teal);
    flex-shrink: 0;
}

/* ---- Card Tags ---- */
.tours__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

/* ---- Card Pricing ---- */
.tours__card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.tours__card-price-label {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-right: 4px;
}

.tours__card-price-amount {
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-teal);
    line-height: 1;
}

.tours__card-price-unit {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.tours__card-price-note {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0 0 16px;
}

/* ---- Card CTA Button ---- */
.tours__card-cta {
    width: 100%;
    margin-bottom: 8px;
}

/* ---- Card WhatsApp Link ---- */
.tours__card-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--whatsapp-green);
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    margin-top: auto;
}

.tours__card-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.08);
    text-decoration: none;
}

.tours__card-whatsapp svg {
    flex-shrink: 0;
}

/* ===========================
   SECTION 3: TOUR CARDS — TABLET
   =========================== */
@media (max-width: 1023px) {
    .tours__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   SECTION 3: TOUR CARDS — MOBILE
   =========================== */
@media (max-width: 767px) {
    .tours {
        padding: 48px 0;
    }

    .tours__container {
        padding: 0 16px;
    }

    .tours__title {
        font-size: 24px;
    }

    .tours__header {
        margin-bottom: 32px;
    }

    .tours__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tours__card-image {
        height: 200px;
    }

    .tours__card-name {
        font-size: 17px;
    }

    .tours__card-price-amount {
        font-size: 24px;
    }
}

/* ===========================
   UTILITY: SCREEN READER ONLY
   =========================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===========================
   SECTION 4: COMPARISON TABLE
   =========================== */
.compare {
    background-color: var(--brand-white);
    padding: 80px 0;
    scroll-margin-top: 72px;
}

.compare__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Header ---- */
.compare__header {
    text-align: center;
    margin-bottom: 48px;
}

.compare__title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.compare__subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* ---- Table Wrapper ---- */
.compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-default);
    box-shadow: 0 2px 8px rgba(4, 83, 114, 0.06);
}

/* ---- Table ---- */
.compare__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-main);
    table-layout: fixed;
}

/* ---- Table Header Cells ---- */
.compare__th {
    padding: 20px 16px;
    text-align: center;
    vertical-align: bottom;
    border-bottom: 2px solid var(--border-default);
    background-color: var(--bg-light);
}

.compare__th--feature {
    width: 22%;
    text-align: left;
}

.compare__th--competitor {
    width: 22%;
}

.compare__th--us {
    width: 34%;
    background-color: rgba(37, 124, 126, 0.06);
    border-bottom-color: var(--brand-teal);
}

.compare__col-label {
    display: block;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.compare__th--us .compare__col-label {
    color: var(--brand-teal);
    font-size: 16px;
}

.compare__col-sub {
    display: block;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 4px;
}

.compare__col-badge {
    display: inline-block;
    background-color: var(--brand-teal);
    color: var(--brand-white);
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

/* ---- Table Body Cells ---- */
.compare__feature,
.compare__cell {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-default);
    vertical-align: middle;
}

.compare__feature {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare__feature-icon {
    width: 18px;
    height: 18px;
    color: var(--brand-teal);
    flex-shrink: 0;
}

.compare__cell {
    text-align: center;
    color: var(--text-body);
}

.compare__cell--competitor {
    background-color: var(--brand-white);
}

.compare__cell--us {
    background-color: rgba(37, 124, 126, 0.04);
}

.compare__cell--us strong {
    color: var(--brand-teal);
    font-weight: 700;
}

/* ---- Checkmark / X Icons ---- */
.compare__icon-yes,
.compare__icon-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

.compare__icon-yes {
    background-color: rgba(123, 202, 176, 0.15);
    color: #2a8a68;
}

.compare__icon-no {
    background-color: rgba(220, 38, 38, 0.08);
    color: #dc2626;
}

.compare__icon-yes svg,
.compare__icon-no svg {
    width: 14px;
    height: 14px;
}

/* Remove last row border */
.compare__table tbody tr:last-child .compare__feature,
.compare__table tbody tr:last-child .compare__cell {
    border-bottom: none;
}

/* ---- Mobile Stacked Cards ---- */
.compare__mobile {
    display: none;
}

/* ---- Bottom CTA ---- */
.compare__cta {
    text-align: center;
}

.compare__cta-btn {
    font-size: 16px;
    padding: 16px 32px;
}

.compare__cta-btn:focus-visible {
    outline: 2px solid var(--brand-navy);
    outline-offset: 2px;
}

.compare__cta-note {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 12px;
}

/* ===========================
   SECTION 4: COMPARISON — TABLET
   =========================== */
@media (max-width: 1023px) {
    .compare__th--feature {
        width: 26%;
    }

    .compare__feature,
    .compare__cell {
        font-size: 13px;
        padding: 12px 12px;
    }

    .compare__col-label {
        font-size: 13px;
    }

    .compare__col-sub {
        font-size: 11px;
    }

    .compare__feature-icon {
        width: 16px;
        height: 16px;
    }
}

/* ===========================
   SECTION 4: COMPARISON — MOBILE
   =========================== */
@media (max-width: 767px) {
    .compare {
        padding: 48px 0;
    }

    .compare__container {
        padding: 0 16px;
    }

    .compare__title {
        font-size: 24px;
    }

    .compare__header {
        margin-bottom: 32px;
    }

    /* Hide the desktop table on mobile */
    .compare__table-wrap {
        display: none;
    }

    /* Show stacked mobile cards */
    .compare__mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .compare__mobile-card {
        border-radius: 12px;
        padding: 20px;
        border: 1px solid var(--border-default);
    }

    .compare__mobile-card--us {
        background-color: rgba(37, 124, 126, 0.04);
        border-color: var(--brand-teal);
        border-width: 2px;
        order: -1;
    }

    .compare__mobile-card--them {
        background-color: var(--bg-light);
    }

    .compare__mobile-card-title {
        font-family: var(--font-main);
        font-size: 17px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0 0 4px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .compare__mobile-card--us .compare__mobile-card-title {
        color: var(--brand-teal);
    }

    .compare__mobile-card-sub {
        font-family: var(--font-main);
        font-size: 12px;
        font-weight: 400;
        color: var(--text-light);
        margin: 0 0 16px;
    }

    .compare__mobile-list {
        list-style: none;
        padding: 0;
        margin: 12px 0 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .compare__mobile-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-family: var(--font-main);
        font-size: 14px;
        line-height: 1.5;
        color: var(--text-body);
    }

    .compare__mobile-item strong {
        color: var(--brand-teal);
        font-weight: 700;
    }

    .compare__mobile-card--them .compare__mobile-item {
        color: var(--text-muted);
    }

    .compare__mobile-item .compare__icon-yes,
    .compare__mobile-item .compare__icon-no {
        margin-right: 0;
        margin-top: 2px;
    }

    .compare__cta-btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* ===========================
   SECTION 5: CAPTAIN MAJOR PROFILE
   =========================== */
.captain {
    background-color: var(--bg-warm);
    padding: 80px 0;
    scroll-margin-top: 72px;
}

.captain__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Two-Column Layout ---- */
.captain__layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
}

/* ---- Photo Column ---- */
.captain__photo-col {
    position: relative;
}

.captain__photo-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(4, 83, 114, 0.12);
}

.captain__photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 6;
    object-fit: cover;
}

.captain__photo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-white);
    color: var(--brand-teal);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(4, 83, 114, 0.10);
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
}

.captain__photo-badge svg {
    color: var(--brand-teal);
    flex-shrink: 0;
}

/* ---- Content Column ---- */
.captain__content-col {
    padding-top: 8px;
}

.captain__eyebrow {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-teal);
    margin-bottom: 8px;
}

.captain__name {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.captain__intro {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0 0 16px;
}

.captain__body {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0 0 16px;
}

/* ---- Captain Direct™ Trust Box ---- */
.captain__trust-box {
    background-color: var(--brand-white);
    border: 1px solid var(--border-default);
    border-left: 4px solid var(--brand-teal);
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin: 28px 0;
    box-shadow: 0 2px 8px rgba(4, 83, 114, 0.06);
}

.captain__trust-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.captain__trust-title svg {
    color: var(--whatsapp-green);
    flex-shrink: 0;
}

.captain__trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.captain__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-body);
}

.captain__trust-item strong {
    font-weight: 700;
    color: var(--text-primary);
}

.captain__trust-check {
    color: var(--brand-teal);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

/* ---- Crew Mention ---- */
.captain__crew {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 28px;
}

.captain__crew strong {
    color: var(--text-body);
    font-weight: 600;
}

/* ---- CTA Buttons ---- */
.captain__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.captain__cta-primary {
    font-size: 16px;
    padding: 14px 28px;
}

.captain__cta-secondary {
    font-size: 14px;
    padding: 12px 24px;
}

.captain__cta-primary:focus-visible,
.captain__cta-secondary:focus-visible {
    outline: 2px solid var(--brand-navy);
    outline-offset: 2px;
}

/* ===========================
   SECTION 5: CAPTAIN — TABLET
   =========================== */
@media (max-width: 1023px) {
    .captain__layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .captain__name {
        font-size: 30px;
    }

    .captain__intro {
        font-size: 16px;
    }
}

/* ===========================
   SECTION 5: CAPTAIN — MOBILE
   =========================== */
@media (max-width: 767px) {
    .captain {
        padding: 48px 0;
    }

    .captain__container {
        padding: 0 16px;
    }

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

    /* Center and constrain photo on mobile */
    .captain__photo-col {
        max-width: 320px;
        margin: 0 auto;
        padding-bottom: 16px;
    }

    .captain__photo-frame {
        border-radius: 12px;
    }

    .captain__photo-badge {
        font-size: 11px;
        padding: 6px 14px;
        bottom: -12px;
    }

    .captain__content-col {
        padding-top: 0;
        text-align: center;
    }

    .captain__name {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .captain__intro {
        font-size: 16px;
    }

    .captain__body {
        font-size: 14px;
        text-align: left;
    }

    /* Trust box stays left-aligned even when parent is centered */
    .captain__trust-box {
        text-align: left;
        padding: 20px;
        margin: 24px 0;
    }

    .captain__trust-title {
        font-size: 15px;
    }

    .captain__trust-item {
        font-size: 13px;
    }

    .captain__crew {
        font-size: 13px;
        text-align: left;
    }

    /* Stack CTA buttons vertically */
    .captain__cta-group {
        flex-direction: column;
        width: 100%;
    }

    .captain__cta-primary,
    .captain__cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .captain__cta-primary {
        padding: 16px 24px;
    }
}

/* ===========================
   SECTION 5: CAPTAIN — SHORT MOBILE
   =========================== */
@media (max-width: 767px) and (max-height: 667px) {
    .captain__photo-col {
        max-width: 260px;
    }
}

/* ===========================
   SECTION 6: REVIEWS
   =========================== */
.reviews {
    background-color: var(--brand-white);
    padding: 80px 0;
    scroll-margin-top: 72px;
    overflow: hidden;
}

.reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Aggregate Rating Bar ---- */
.reviews__aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.reviews__stars {
    display: flex;
    gap: 2px;
    color: var(--brand-gold);
}

.reviews__stars svg {
    width: 22px;
    height: 22px;
}

.reviews__aggregate-text {
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text-body);
}

.reviews__aggregate-score {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
    margin-right: 4px;
}

.reviews__aggregate-detail {
    font-weight: 400;
    color: var(--text-muted);
}

/* ---- Section Title ---- */
.reviews__title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 40px;
}

/* ---- Review Cards Track ---- */
.reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ---- Individual Review Card ---- */
.reviews__card {
    background: var(--brand-white);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.reviews__card:hover {
    box-shadow: 0 4px 16px rgba(4, 83, 114, 0.08);
}

/* ---- Star Rating inside Card ---- */
.reviews__card-stars {
    display: flex;
    gap: 2px;
    color: var(--brand-gold);
    margin-bottom: 16px;
}

.reviews__card-stars svg {
    width: 16px;
    height: 16px;
}

/* ---- Quote ---- */
.reviews__card-quote {
    margin: 0 0 20px;
    flex-grow: 1;
}

.reviews__card-quote p {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
    font-style: normal;
}

/* ---- Card Footer (Author + Platform) ---- */
.reviews__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-default);
    margin-top: auto;
}

.reviews__card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews__card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--brand-teal-light);
    color: var(--brand-teal);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews__card-info {
    display: flex;
    flex-direction: column;
}

.reviews__card-name {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.reviews__card-meta {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.3;
}

/* ---- Platform Badge ---- */
.reviews__card-platform {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.reviews__card-platform svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- Scroll Hint Dots (mobile only) ---- */
.reviews__scroll-hint {
    display: none;
}

/* ---- Bottom CTA ---- */
.reviews__cta {
    text-align: center;
}

.reviews__cta-btn {
    padding: 16px 32px;
}

.reviews__cta-btn:focus-visible {
    outline: 2px solid var(--brand-navy);
    outline-offset: 2px;
}

.reviews__cta-note {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 12px;
}

/* ===========================
   SECTION 6: REVIEWS — TABLET
   =========================== */
@media (max-width: 1023px) {
    .reviews__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   SECTION 6: REVIEWS — MOBILE
   =========================== */
@media (max-width: 767px) {
    .reviews {
        padding: 48px 0;
    }

    .reviews__container {
        padding: 0 16px;
    }

    .reviews__aggregate {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 8px;
    }

    .reviews__aggregate-text {
        font-size: 13px;
        text-align: center;
    }

    .reviews__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    /* Horizontal scroll track on mobile */
    .reviews__track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
    }

    .reviews__track::-webkit-scrollbar {
        display: none;
    }

    .reviews__card {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .reviews__card-quote p {
        font-size: 13px;
    }

    /* Show scroll dots */
    .reviews__scroll-hint {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 32px;
        padding-top: 8px;
    }

    .reviews__scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--border-default);
        transition: background-color 0.2s ease;
    }

    .reviews__scroll-dot--active {
        background-color: var(--brand-teal);
    }

    .reviews__cta-btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* ===========================
   SECTION 7: URGENCY BAR
   =========================== */
.urgency {
    background-color: var(--brand-navy);
    padding: 0;
    scroll-margin-top: 72px;
    overflow: hidden;
}

.urgency__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.urgency__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 0;
}

/* ---- Icon ---- */
.urgency__icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(253, 181, 20, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency__icon {
    color: var(--brand-gold);
    width: 28px;
    height: 28px;
}

/* ---- Text ---- */
.urgency__text {
    flex: 1;
    max-width: 560px;
}

.urgency__headline {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-white);
    margin: 0 0 4px;
    line-height: 1.3;
}

.urgency__month-text {
    display: inline;
}

.urgency__subtext {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ---- CTA ---- */
.urgency__cta-wrap {
    flex-shrink: 0;
}

.urgency__cta {
    font-size: 14px;
    padding: 12px 24px;
    white-space: nowrap;
}

.urgency__cta:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

/* ===========================
   SECTION 7: URGENCY — TABLET
   =========================== */
@media (max-width: 1023px) {
    .urgency__content {
        gap: 20px;
    }

    .urgency__headline {
        font-size: 16px;
    }

    .urgency__subtext {
        font-size: 13px;
    }
}

/* ===========================
   SECTION 7: URGENCY — MOBILE
   =========================== */
@media (max-width: 767px) {
    .urgency__container {
        padding: 0 16px;
    }

    .urgency__content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 32px 0;
    }

    .urgency__icon-wrap {
        width: 48px;
        height: 48px;
    }

    .urgency__icon {
        width: 24px;
        height: 24px;
    }

    .urgency__text {
        max-width: 100%;
    }

    .urgency__headline {
        font-size: 17px;
    }

    .urgency__subtext {
        font-size: 13px;
    }

    .urgency__cta-wrap {
        width: 100%;
    }

    .urgency__cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===========================
   SECTION 8: FAQ
   =========================== */
.faq {
    background-color: var(--bg-light);
    padding: 80px 0;
    scroll-margin-top: 72px;
}

.faq__container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Header ---- */
.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.faq__subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.faq__subtitle-link {
    color: var(--whatsapp-green);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(37, 211, 102, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s ease;
}

.faq__subtitle-link:hover {
    text-decoration-color: var(--whatsapp-green);
}

/* ---- FAQ List ---- */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Individual FAQ Item (details element) ---- */
.faq__item {
    border-bottom: 1px solid var(--border-default);
    background-color: transparent;
}

.faq__item:first-child {
    border-top: 1px solid var(--border-default);
}

/* ---- Question (summary element) ---- */
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Remove default details marker in all browsers */
.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
    content: '';
}

.faq__question-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    flex: 1;
}

/* ---- Toggle Icon ---- */
.faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--brand-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.3s ease;
    color: var(--brand-teal);
}

.faq__icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* When open: rotate + icon to x */
.faq__item[open] .faq__icon {
    background-color: var(--brand-teal);
    color: var(--brand-white);
    transform: rotate(45deg);
}

/* Hover state on question */
.faq__question:hover .faq__icon {
    background-color: rgba(37, 124, 126, 0.12);
}

.faq__item[open] .faq__question:hover .faq__icon {
    background-color: var(--brand-teal-dark);
}

/* Focus state */
.faq__question:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---- Answer Panel ---- */
.faq__answer {
    padding: 0 0 24px;
    padding-right: 48px;
}

.faq__answer p {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0 0 12px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
}

.faq__answer ul li {
    position: relative;
    padding-left: 20px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 6px;
}

.faq__answer ul li:last-child {
    margin-bottom: 0;
}

/* Custom bullet: teal dot */
.faq__answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-teal);
}

.faq__answer strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* ===========================
   SECTION 8: FAQ — TABLET
   =========================== */
@media (max-width: 1023px) {
    .faq__container {
        max-width: 680px;
    }
}

/* ===========================
   SECTION 8: FAQ — MOBILE
   =========================== */
@media (max-width: 767px) {
    .faq {
        padding: 48px 0;
    }

    .faq__container {
        padding: 0 16px;
    }

    .faq__title {
        font-size: 24px;
    }

    .faq__header {
        margin-bottom: 32px;
    }

    .faq__question {
        padding: 16px 0;
        gap: 12px;
    }

    .faq__question-text {
        font-size: 15px;
    }

    .faq__icon {
        width: 28px;
        height: 28px;
    }

    .faq__icon svg {
        width: 16px;
        height: 16px;
    }

    .faq__answer {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .faq__answer p,
    .faq__answer ul li {
        font-size: 14px;
    }
}

/* ===========================
   SECTION 9: FINAL CTA
   =========================== */
.final-cta {
    background: linear-gradient(
        180deg,
        var(--brand-navy) 0%,
        #033050 100%
    );
    padding: 96px 0;
    text-align: center;
    scroll-margin-top: 72px;
}

.final-cta__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---- Eyebrow ---- */
.final-cta__eyebrow {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-gold);
    margin-bottom: 16px;
}

/* ---- Headline ---- */
.final-cta__headline {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--brand-white);
    margin: 0 0 20px;
}

.final-cta__br-desktop {
    display: inline;
}

/* ---- Subtext ---- */
.final-cta__subtext {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 36px;
    max-width: 560px;
}

/* ---- Trust Reinforcement Strip ---- */
.final-cta__trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.final-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta__trust-item svg {
    color: var(--brand-gold);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ---- CTA Buttons ---- */
.final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 500px;
}

.final-cta__btn-primary {
    font-size: 17px;
    padding: 18px 36px;
    min-width: 260px;
}

.final-cta__btn-primary svg {
    width: 22px;
    height: 22px;
}

.final-cta__btn-secondary {
    font-size: 15px;
    padding: 16px 32px;
    min-width: 260px;
}

.final-cta__btn-primary:focus-visible,
.final-cta__btn-secondary:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

/* ---- Response Note ---- */
.final-cta__response-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.final-cta__response-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.55);
}

/* ---- Section 9: Tablet ---- */
@media (max-width: 1023px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta__headline {
        font-size: 34px;
    }

    .final-cta__subtext {
        font-size: 16px;
    }
}

/* ---- Section 9: Mobile ---- */
@media (max-width: 767px) {
    .final-cta {
        padding: 56px 0;
    }

    .final-cta__container {
        padding: 0 16px;
    }

    .final-cta__eyebrow {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .final-cta__headline {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .final-cta__br-desktop {
        display: none;
    }

    .final-cta__subtext {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .final-cta__trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }

    .final-cta__trust-item {
        font-size: 12px;
    }

    .final-cta__buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }

    .final-cta__btn-primary,
    .final-cta__btn-secondary {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }

    .final-cta__btn-primary {
        font-size: 16px;
        padding: 16px 24px;
    }

    .final-cta__btn-secondary {
        font-size: 14px;
        padding: 14px 24px;
    }

    .final-cta__response-note {
        font-size: 12px;
    }
}

/* ===========================
   SECTION 10: FOOTER
   =========================== */
.lp-footer {
    background-color: #111827;
    padding: 24px 0;
    text-align: center;
}

.lp-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-footer__copyright {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    margin: 0 0 6px;
    line-height: 1.5;
}

.lp-footer__links {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.5;
}

.lp-footer__links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.15s ease;
}

.lp-footer__links a:hover {
    color: var(--brand-white);
    text-decoration: underline;
}

.lp-footer__links a:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

.lp-footer__separator {
    margin: 0 8px;
    color: #4B5563;
}

/* ---- Footer: Mobile ---- */
@media (max-width: 767px) {
    .lp-footer {
        padding: 20px 0;
    }

    .lp-footer__container {
        padding: 0 16px;
    }

    .lp-footer__copyright,
    .lp-footer__links {
        font-size: 11px;
    }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    animation: whatsappPulse 600ms ease-out 1;
    text-decoration: none;
    color: var(--brand-white);
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 3px;
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Pulse animation: one cycle on load, then stops */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

/* ---- Floating Button: Mobile ---- */
@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* ===========================
   MODAL LIGHTBOX (Privacy / Terms)
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-overlay__container {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    background: var(--brand-white, #fff);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.modal-overlay.is-active .modal-overlay__container {
    transform: translateY(0);
}

.modal-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    flex-shrink: 0;
}

.modal-overlay__title {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy, #0b2a45);
    margin: 0;
}

.modal-overlay__close {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.modal-overlay__close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.modal-overlay__close:focus-visible {
    outline: 2px solid var(--brand-gold, #d4a853);
    outline-offset: 2px;
}

.modal-overlay__iframe {
    flex-grow: 1;
    width: 100%;
    border: none;
    background: #fff;
}

/* ---- Modal — Tablet ---- */
@media (max-width: 1023px) {
    .modal-overlay__container {
        width: 94%;
        height: 85vh;
    }
}

/* ---- Modal — Mobile ---- */
@media (max-width: 767px) {
    .modal-overlay__container {
        width: 100%;
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
    }

    .modal-overlay__title {
        font-size: 16px;
    }
}
