body.landing-page {
    --brand-primary: #0f4d8a;
    --brand-secondary: #123c68;
    --brand-accent: #ff9f43;
    --brand-bg-a: #7ed8c8;
    --brand-bg-b: #2d9f98;
    --brand-logo-bg: #5cc6c7;
    --brand-surface: rgba(255, 255, 255, 0.88);
    --brand-text: #1f4f79;
    --brand-heading: #0a3a67;

    background-image: none !important;
    background:
        radial-gradient(950px 500px at 8% -10%, color-mix(in srgb, var(--brand-bg-a), #ffffff 30%) 0%, transparent 72%),
        radial-gradient(820px 420px at 92% 4%, color-mix(in srgb, var(--brand-bg-b), #ffffff 42%) 0%, transparent 68%),
        linear-gradient(160deg, color-mix(in srgb, var(--brand-bg-a), #ffffff 20%) 0%, var(--brand-bg-b) 100%);
    min-height: 100vh;
    color: var(--brand-text);
    align-items: stretch;
    overflow-x: clip;
}

body.landing-page .container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px 52px;
}

body.landing-page .site-header {
    width: 100%;
    margin-bottom: 14px;
}

.landing-shell {
    display: grid;
    gap: 18px;
    overflow-x: clip;
}

.landing-hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 16px;
    align-items: center;
    background: var(--brand-surface);
    border: 1px solid color-mix(in srgb, var(--brand-primary), #ffffff 78%);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 18px 34px rgba(6, 28, 56, 0.13);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    overflow-x: clip;
}

.landing-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(6, 28, 56, 0.16);
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    background: var(--brand-logo-bg);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 14px;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-secondary), #ffffff 82%);
    max-width: 100%;
}

.hero-brand img {
    max-height: 54px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3.5vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--brand-heading);
    overflow-wrap: anywhere;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.hero-copy p {
    margin: 0;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.62;
    max-width: 62ch;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
    justify-content: center;
    max-width: 100%;
}

.hero-tags span {
    background: color-mix(in srgb, var(--brand-primary), #ffffff 90%);
    color: var(--brand-secondary);
    border: 1px solid color-mix(in srgb, var(--brand-primary), #ffffff 75%);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-actions .btn-cta {
    min-width: 190px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--brand-secondary);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.86;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    opacity: 1;
    color: color-mix(in srgb, var(--brand-secondary), #000000 18%);
}

.discount-line {
    margin-top: 12px;
    color: #0c6a43;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-panel {
    background: linear-gradient(155deg, var(--brand-secondary), var(--brand-primary));
    border-radius: 16px;
    padding: 18px;
    color: #eef6ff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 24px rgba(5, 25, 46, 0.2);
}

.hero-photo {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.hero-photo img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.hero-panel h2 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    letter-spacing: 0.01em;
}

.hero-panel ul {
    margin: 0;
    padding-left: 16px;
    font-size: 0.93rem;
    line-height: 1.5;
}

.content-card {
    background: var(--brand-surface);
    border: 1px solid color-mix(in srgb, var(--brand-primary), #ffffff 78%);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 14px 26px rgba(6, 32, 62, 0.11);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.content-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(6, 32, 62, 0.14);
}

.content-card h2 {
    margin: 0 0 14px;
    color: var(--brand-heading);
    font-size: 1.28rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.plan-card-landing {
    border: 1px solid color-mix(in srgb, var(--brand-primary), #ffffff 75%);
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 18px rgba(8, 34, 63, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    align-items: center;
    text-align: center;
}

.plan-card-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(8, 34, 63, 0.13);
    border-color: color-mix(in srgb, var(--brand-primary), #ffffff 60%);
}

.plan-logo-wrap {
    min-height: 88px;
    background: var(--brand-logo-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
}

.plan-logo-wrap img {
    max-height: 54px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.plan-card-landing h3 {
    margin: 0;
    color: var(--brand-heading);
    font-size: 1.1rem;
    line-height: 1.25;
}

.plan-card-landing p {
    margin: 0;
    color: var(--brand-text);
    font-size: 0.95rem;
    line-height: 1.55;
}

.check-list {
    margin: 0;
    padding-left: 18px;
    color: var(--brand-text);
    font-size: 0.92rem;
    line-height: 1.56;
    text-align: left;
    width: 100%;
    max-width: 36ch;
}

.plan-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.plan-actions .btn,
.plan-actions .btn-cta {
    margin-left: auto;
    margin-right: auto;
    min-width: 180px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.trust-pill {
    background: var(--brand-surface);
    border: 1px solid color-mix(in srgb, var(--brand-primary), #ffffff 78%);
    border-radius: 14px;
    padding: 12px 13px;
    text-align: center;
    color: var(--brand-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(7, 31, 58, 0.09);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trust-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 13px 22px rgba(7, 31, 58, 0.12);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.faq-card {
    background: var(--brand-surface);
    border: 1px solid color-mix(in srgb, var(--brand-primary), #ffffff 78%);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 18px rgba(8, 35, 62, 0.08);
}

.faq-card details + details {
    margin-top: 10px;
}

.faq-card summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--brand-secondary);
}

.faq-card p {
    margin-top: 7px;
    color: var(--brand-text);
    font-size: 0.92rem;
}

/* Brand-specific themes inspired by provider sites */
body.landing--genki {
    --brand-primary: #1f8f7b;
    --brand-secondary: #114f46;
    --brand-accent: #ff6a3d;
    --brand-bg-a: #d6f4ec;
    --brand-bg-b: #8ccfbf;
    --brand-logo-bg: #5cc6c7;
}

body.landing--heymondo {
    --brand-primary: #00a8a0;
    --brand-secondary: #136183;
    --brand-accent: #ff7a3d;
    --brand-bg-a: #baf0ea;
    --brand-bg-b: #5fc8bc;
    --brand-logo-bg: #5cc6c7;
}

body.landing--worldtrips {
    --brand-primary: #1f5ea8;
    --brand-secondary: #0f3768;
    --brand-accent: #ff9f43;
    --brand-bg-a: #cde0f7;
    --brand-bg-b: #7ea7dc;
    --brand-logo-bg: #5cc6c7;
}

body.landing--global-rescue {
    --brand-primary: #335a7f;
    --brand-secondary: #1b324a;
    --brand-accent: #d95f51;
    --brand-bg-a: #d5e0eb;
    --brand-bg-b: #88a3bc;
    --brand-logo-bg: #5cc6c7;
}

body.landing--world-nomads {
    --brand-primary: #de6a1f;
    --brand-secondary: #8b3d0c;
    --brand-accent: #ff9c2f;
    --brand-bg-a: #fde2c9;
    --brand-bg-b: #f4b172;
    --brand-logo-bg: #5cc6c7;
}

@media (max-width: 960px) {
    body.landing-page .container {
        padding: 0 12px 36px;
    }

    .landing-hero {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .plans-grid,
    .faq-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-photo img {
        height: 168px;
    }

    .hero-actions,
    .plan-actions {
        justify-content: center;
    }

    .hero-actions .btn-cta,
    .plan-actions .btn {
        width: min(100%, 320px);
        justify-content: center;
    }
}

@media (max-width: 600px) {
    html,
    body.landing-page {
        overflow-x: hidden;
    }

    body.landing-page .container {
        padding: 0 8px 28px;
    }

    body.landing-page .landing-hero,
    body.landing-page .content-card,
    body.landing-page .faq-card,
    body.landing-page .hero-panel,
    body.landing-page .plan-card-landing {
        max-width: 100%;
    }

    body.landing-page .site-header {
        margin-bottom: 10px;
    }

    body.landing-page .header-inner {
        padding: 10px 12px;
        grid-template-columns: 40px 1fr 40px;
    }

    body.landing-page .header-logo img {
        max-height: 42px;
    }

    body.landing-page .menu-toggle {
        width: 36px;
        height: 36px;
    }

    body.landing-page .menu-icon span {
        width: 24px;
        height: 2.5px;
    }

    body.landing-page .hero-copy h1 {
        font-size: clamp(1.35rem, 7.2vw, 1.9rem);
    }

    body.landing-page .hero-copy p {
        font-size: 0.98rem;
        max-width: 30ch;
    }

    body.landing-page .hero-tags {
        gap: 6px;
        margin: 14px 0;
    }

    body.landing-page .hero-tags span {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    .landing-hero,
    .content-card,
    .plan-card-landing,
    .trust-pill,
    .btn-secondary {
        transition: none;
    }
}
