/**
 * Flight Hotel Itinerary — Design System v1
 * Navy + mint travel SaaS theme. Component classes (fhi-*).
 * Pair with Tailwind utilities; tokens in :root below.
 */

:root {
    /* ── Brand ── */
    --fhi-navy: #081f3a;
    --fhi-navy-light: #0c2d52;
    --fhi-navy-dark: #051528;
    --fhi-accent: #1ec9a8;
    --fhi-accent-light: #5eead4;
    --fhi-accent-dark: #14a88c;

    /* ── Neutrals ── */
    --fhi-white: #ffffff;
    --fhi-gray-50: #f8fafc;
    --fhi-gray-100: #f1f5f9;
    --fhi-gray-200: #e2e8f0;
    --fhi-gray-400: #94a3b8;
    --fhi-gray-500: #64748b;
    --fhi-gray-700: #334155;
    --fhi-beige: #faf8f5;

    /* ── Semantic ── */
    --fhi-success: #16a34a;
    --fhi-warning: #f59e0b;
    --fhi-error: #ef4444;

    /* ── Typography ── */
    --fhi-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --fhi-font-display: 'Plus Jakarta Sans', var(--fhi-font-sans);

    /* ── Radius ── */
    --fhi-radius-sm: 0.75rem;   /* xl */
    --fhi-radius-md: 1rem;      /* 2xl */
    --fhi-radius-lg: 1.5rem;    /* 3xl */

    /* ── Shadows ── */
    --fhi-shadow-card: 0 1px 2px rgba(8, 31, 58, 0.04), 0 4px 20px rgba(8, 31, 58, 0.06);
    --fhi-shadow-card-hover: 0 8px 30px rgba(8, 31, 58, 0.1), 0 20px 48px rgba(8, 31, 58, 0.08);
    --fhi-shadow-badge: 0 4px 14px rgba(8, 31, 58, 0.12);
    --fhi-shadow-btn: 0 2px 8px rgba(8, 31, 58, 0.15);

    /* ── Motion ── */
    --fhi-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fhi-duration: 200ms;

    /* Header bridge (legacy shp-* vars) */
    --brand-ink: var(--fhi-navy);
    --brand-primary: var(--fhi-accent);
    --brand-primary-deep: var(--fhi-accent-dark);
    --brand-mint: var(--fhi-accent-light);
    --brand-accent: var(--fhi-accent);
    --brand-charcoal: var(--fhi-navy);
    --brand-slate: var(--fhi-gray-500);
    --surface-base: var(--fhi-beige);
    --surface-panel: var(--fhi-white);
    --shp-ink: var(--fhi-navy);
    --shp-primary: var(--fhi-accent);
    --shp-primary-dark: var(--fhi-accent-dark);
    --shp-muted: var(--fhi-gray-500);
    --shp-border: var(--fhi-gray-200);
}

/* ── Base ── */
body {
    font-family: var(--fhi-font-sans);
    color: var(--fhi-navy);
    -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.fhi-container {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .fhi-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
    .fhi-container { padding-left: 2rem; padding-right: 2rem; }
}

.fhi-container--wide {
    max-width: 92rem;
}

.fhi-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .fhi-section { padding-top: 5rem; padding-bottom: 5rem; }
}

@media (min-width: 1024px) {
    .fhi-section { padding-top: 4rem; padding-bottom: 4rem; }
}

.fhi-section--beige { background-color: var(--fhi-beige); }
.fhi-section--white { background-color: var(--fhi-white); }
.fhi-section--gray  { background-color: var(--fhi-gray-50); }

/* ── Typography ── */
.fhi-hero-title {
    font-family: var(--fhi-font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--fhi-navy);
}

.fhi-hero-title__accent {
    background: linear-gradient(135deg, var(--fhi-accent-dark) 0%, var(--fhi-accent) 45%, #5eead4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Hero section ── */
.fhi-hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(3.25rem, 7vw, 5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    min-height: clamp(30rem, 72vh, 38rem);
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 90% 70% at 50% -10%, rgba(30, 201, 168, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 20%, rgba(8, 31, 58, 0.06), transparent 50%),
        linear-gradient(180deg, #faf8f5 0%, #ffffff 55%, #f8fafc 100%);
}

.fhi-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.fhi-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
}

.fhi-hero__orb--mint {
    width: min(28rem, 55vw);
    height: min(28rem, 55vw);
    top: -8%;
    right: -6%;
    background: radial-gradient(circle, rgba(30, 201, 168, 0.45) 0%, rgba(30, 201, 168, 0) 70%);
    animation: fhi-hero-drift-a 14s ease-in-out infinite;
}

.fhi-hero__orb--navy {
    width: min(22rem, 45vw);
    height: min(22rem, 45vw);
    bottom: 5%;
    left: -8%;
    background: radial-gradient(circle, rgba(8, 31, 58, 0.18) 0%, rgba(8, 31, 58, 0) 70%);
    animation: fhi-hero-drift-b 18s ease-in-out infinite;
}

.fhi-hero__orb--warm {
    width: min(16rem, 35vw);
    height: min(16rem, 35vw);
    top: 35%;
    left: 42%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
    animation: fhi-hero-drift-c 12s ease-in-out infinite;
}

.fhi-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(8, 31, 58, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 31, 58, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.fhi-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .fhi-hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.fhi-hero__content {
    text-align: center;
}

@media (min-width: 1024px) {
    .fhi-hero__content {
        text-align: left;
    }
}

.fhi-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fhi-accent-dark);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(30, 201, 168, 0.25);
    box-shadow: var(--fhi-shadow-badge);
    backdrop-filter: blur(8px);
}

.fhi-hero__lead {
    margin-top: 1.5rem;
    max-width: 34rem;
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.65;
    color: var(--fhi-gray-500);
}

@media (min-width: 1024px) {
    .fhi-hero__lead {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 1023px) {
    .fhi-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.fhi-hero__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .fhi-hero__actions {
        justify-content: flex-start;
    }
}

.fhi-hero__cta-primary {
    box-shadow: var(--fhi-shadow-btn), 0 8px 24px rgba(8, 31, 58, 0.12);
}

.fhi-hero__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--fhi-shadow-btn), 0 12px 32px rgba(8, 31, 58, 0.18);
}

.fhi-hero__trust {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .fhi-hero__trust {
        justify-content: flex-start;
    }
}

.fhi-hero__trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fhi-navy);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(8, 31, 58, 0.08);
    backdrop-filter: blur(6px);
    transition: transform var(--fhi-duration) var(--fhi-ease),
                box-shadow var(--fhi-duration) var(--fhi-ease),
                border-color var(--fhi-duration) var(--fhi-ease);
}

.fhi-hero__trust-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 201, 168, 0.35);
    box-shadow: 0 6px 20px rgba(8, 31, 58, 0.08);
}

.fhi-hero__trust-pill i {
    color: var(--fhi-accent-dark);
}

/* Hero visual / mock card */
.fhi-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1rem;
    min-height: 16rem;
    width: min(100%, 24rem);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .fhi-hero__visual {
        justify-content: flex-end;
        padding: 2rem 1rem 2rem 0;
    }
}

.fhi-hero__card {
    position: relative;
    width: min(100%, 22rem);
    padding: 1.5rem;
    border-radius: var(--fhi-radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 31, 58, 0.08);
    box-shadow: var(--fhi-shadow-card-hover);
    backdrop-filter: blur(12px);
    transition: transform 0.4s var(--fhi-ease), box-shadow 0.4s var(--fhi-ease);
    animation: fhi-hero-float 6s ease-in-out infinite;
}

.fhi-hero__card:hover {
    box-shadow: 0 16px 48px rgba(8, 31, 58, 0.14);
}

.fhi-hero__float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--fhi-shadow-badge);
    z-index: 2;
}

.fhi-hero__float-badge--delivery {
    top: -0.75rem;
    left: -0.5rem;
    background: var(--fhi-navy);
    color: var(--fhi-white);
    animation: fhi-hero-float 5s ease-in-out infinite 0.5s;
}

.fhi-hero__float-badge--price {
    top: -0.75rem;
    right: -0.5rem;
    background: var(--fhi-accent);
    color: var(--fhi-navy-dark);
    animation: fhi-hero-float 5.5s ease-in-out infinite 1s;
}

.fhi-hero__card-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.fhi-hero__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(30, 201, 168, 0.2), rgba(8, 31, 58, 0.06));
    color: var(--fhi-navy);
}

.fhi-hero__card-icon i {
    width: 1.35rem;
    height: 1.35rem;
}

.fhi-hero__card-label {
    font-family: var(--fhi-font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--fhi-navy);
}

.fhi-hero__card-route {
    margin-top: 0.15rem;
    font-size: 0.8125rem;
    color: var(--fhi-gray-500);
}

.fhi-hero__card-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.fhi-hero__card-lines li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border-radius: var(--fhi-radius-sm);
    background: var(--fhi-gray-50);
    font-size: 0.8125rem;
}

.fhi-hero__card-lines li span {
    color: var(--fhi-gray-500);
}

.fhi-hero__card-lines li strong {
    font-weight: 600;
    color: var(--fhi-navy);
}

.fhi-hero__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fhi-gray-200);
    gap: 0.75rem;
}

.fhi-hero__card-verify {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fhi-success);
}

.fhi-hero__card-status {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fhi-accent-dark);
    padding: 0.3rem 0.6rem;
    border-radius: 9999px;
    background: rgba(30, 201, 168, 0.12);
}

.fhi-hero__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fhi-navy);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(8, 31, 58, 0.08);
    box-shadow: var(--fhi-shadow-badge);
    backdrop-filter: blur(8px);
}

.fhi-hero__chip--top {
    top: 0;
    right: 0;
    animation: fhi-hero-float 7s ease-in-out infinite 0.3s;
}

.fhi-hero__chip--bottom {
    bottom: 0;
    left: 0;
    animation: fhi-hero-float 8s ease-in-out infinite 1.2s;
}

@media (min-width: 1024px) {
    .fhi-hero__chip--top { right: -1rem; }
    .fhi-hero__chip--bottom { left: -1.5rem; }
}

@keyframes fhi-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fhi-hero-drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-24px, 18px) scale(1.05); }
}

@keyframes fhi-hero-drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -16px) scale(1.08); }
}

@keyframes fhi-hero-drift-c {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-14px, 12px); }
}

@media (prefers-reduced-motion: reduce) {
    .fhi-hero__orb,
    .fhi-hero__card,
    .fhi-hero__float-badge,
    .fhi-hero__chip {
        animation: none;
    }

    .fhi-hero__trust-pill:hover,
    .fhi-hero__cta-primary:hover {
        transform: none;
    }
}

.fhi-section-title {
    font-family: var(--fhi-font-display);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--fhi-navy);
}

.fhi-section-subtitle {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--fhi-gray-500);
    max-width: 42rem;
}

.fhi-section-header {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.fhi-section-header .fhi-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.fhi-card-title {
    font-family: var(--fhi-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--fhi-navy);
}

.fhi-body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fhi-gray-500);
}

.fhi-small {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--fhi-gray-500);
}

.fhi-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fhi-accent-dark);
}

/* ── Buttons ── */
.fhi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--fhi-font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    border-radius: var(--fhi-radius-md);
    padding: 0.875rem 1.5rem;
    min-height: 3rem;
    transition: transform var(--fhi-duration) var(--fhi-ease),
                box-shadow var(--fhi-duration) var(--fhi-ease),
                background-color var(--fhi-duration) var(--fhi-ease),
                border-color var(--fhi-duration) var(--fhi-ease),
                color var(--fhi-duration) var(--fhi-ease);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.fhi-btn:active { transform: scale(0.98); }

.fhi-btn-accent {
    background-color: var(--fhi-accent);
    color: var(--fhi-navy-dark);
    box-shadow: 0 4px 14px rgba(30, 201, 168, 0.35);
}

.fhi-btn-accent:hover {
    background-color: var(--fhi-accent-light);
    transform: translateY(-1px);
}

.fhi-btn-ghost {
    background-color: transparent;
    color: var(--fhi-navy);
}

.fhi-btn-ghost:hover {
    background-color: var(--fhi-gray-100);
}

.fhi-btn--block { width: 100%; }

.fhi-btn--sm {
    min-height: 2.5rem;
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
    border-radius: var(--fhi-radius-sm);
}

/* Fix: composes not valid in plain CSS — duplicate base on primary */
a.fhi-btn-primary,
button.fhi-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--fhi-font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    border-radius: var(--fhi-radius-md);
    padding: 0.875rem 1.5rem;
    min-height: 3rem;
    transition: transform var(--fhi-duration) var(--fhi-ease),
                box-shadow var(--fhi-duration) var(--fhi-ease),
                background-color var(--fhi-duration) var(--fhi-ease);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    background-color: var(--fhi-navy);
    color: var(--fhi-white);
    box-shadow: var(--fhi-shadow-btn);
}

a.fhi-btn-secondary,
button.fhi-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--fhi-font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    border-radius: var(--fhi-radius-md);
    padding: 0.875rem 1.5rem;
    min-height: 3rem;
    transition: transform var(--fhi-duration) var(--fhi-ease),
                background-color var(--fhi-duration) var(--fhi-ease),
                border-color var(--fhi-duration) var(--fhi-ease);
    cursor: pointer;
    text-decoration: none;
    background-color: var(--fhi-white);
    color: var(--fhi-navy);
    border: 2px solid var(--fhi-navy);
}

a.fhi-btn-secondary:hover,
button.fhi-btn-secondary:hover {
    background-color: var(--fhi-gray-50);
    transform: translateY(-1px);
}

a.fhi-btn-primary:hover,
button.fhi-btn-primary:hover {
    background-color: var(--fhi-navy-light);
    box-shadow: var(--fhi-shadow-card-hover);
    transform: translateY(-1px);
}

a.fhi-btn-accent,
button.fhi-btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--fhi-font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    border-radius: var(--fhi-radius-md);
    padding: 0.875rem 1.5rem;
    min-height: 3rem;
    transition: transform var(--fhi-duration) var(--fhi-ease),
                box-shadow var(--fhi-duration) var(--fhi-ease),
                background-color var(--fhi-duration) var(--fhi-ease);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    background-color: var(--fhi-accent);
    color: var(--fhi-navy-dark);
    box-shadow: 0 4px 14px rgba(30, 201, 168, 0.35);
}

a.fhi-btn-accent:hover,
button.fhi-btn-accent:hover {
    background-color: var(--fhi-accent-light);
    transform: translateY(-1px);
}

/* ── Cards ── */
.fhi-card {
    background: var(--fhi-white);
    border-radius: var(--fhi-radius-lg);
    border: 1px solid var(--fhi-gray-200);
    box-shadow: var(--fhi-shadow-card);
    transition: transform var(--fhi-duration) var(--fhi-ease),
                box-shadow var(--fhi-duration) var(--fhi-ease);
}

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

/* ── Badges ── */
.fhi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--fhi-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    box-shadow: var(--fhi-shadow-badge);
    white-space: nowrap;
}

.fhi-badge-delivery {
    background: var(--fhi-navy);
    color: var(--fhi-white);
}

.fhi-badge-price {
    background: var(--fhi-accent);
    color: var(--fhi-navy-dark);
}

.fhi-badge-tag {
    background: var(--fhi-gray-100);
    color: var(--fhi-gray-700);
    box-shadow: none;
    font-weight: 600;
    font-size: 0.6875rem;
    padding: 0.35rem 0.75rem;
}

.fhi-badge-featured {
    background: linear-gradient(135deg, var(--fhi-accent) 0%, var(--fhi-accent-light) 100%);
    color: var(--fhi-navy-dark);
}

/* ── Package card (reference-style pricing tile) ── */
.fhi-package-card {
    --fhi-card-accent: #2dd4bf;
    --fhi-card-accent-dark: #0d9488;
    --fhi-card-price-from: #5eead4;
    --fhi-card-price-to: #2dd4bf;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0.875rem;
    overflow: visible;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 1.125rem;
    box-shadow: 0 8px 28px rgba(8, 31, 58, 0.07);
    transition: transform 260ms var(--fhi-ease), box-shadow 260ms var(--fhi-ease);
}

.fhi-package-card--flight {
    --fhi-card-accent: #2dd4bf;
    --fhi-card-accent-dark: #0f766e;
    --fhi-card-price-from: #99f6e4;
    --fhi-card-price-to: #2dd4bf;
}

.fhi-package-card--hotel {
    --fhi-card-accent: #fbbf24;
    --fhi-card-accent-dark: #b45309;
    --fhi-card-price-from: #fde68a;
    --fhi-card-price-to: #fbbf24;
}

.fhi-package-card--combo {
    --fhi-card-accent: #fb923c;
    --fhi-card-accent-dark: #c2410c;
    --fhi-card-price-from: #fdba74;
    --fhi-card-price-to: #fb923c;
}

.fhi-package-card--insurance {
    --fhi-card-accent: #86efac;
    --fhi-card-accent-dark: #15803d;
    --fhi-card-price-from: #bbf7d0;
    --fhi-card-price-to: #86efac;
}

.fhi-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(8, 31, 58, 0.11);
}

.fhi-package-card--featured {
    border-color: color-mix(in srgb, var(--fhi-card-accent) 45%, #e8edf2);
    box-shadow: 0 10px 32px color-mix(in srgb, var(--fhi-card-accent) 18%, rgba(8, 31, 58, 0.08));
}

/* Floating top badges */
.fhi-package-card__floats {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 3;
    height: 0;
    pointer-events: none;
}

.fhi-package-card__delivery {
    position: absolute;
    top: -0.7rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--fhi-navy);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(8, 31, 58, 0.08);
    white-space: nowrap;
}

.fhi-package-card__delivery svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--fhi-card-accent-dark);
    stroke-width: 2.5;
    flex-shrink: 0;
}

.fhi-package-card__delivery strong {
    font-weight: 800;
    color: var(--fhi-navy);
}

.fhi-package-card__price-badge {
    position: absolute;
    top: -1.1rem;
    right: -0.35rem;
    min-width: 4.75rem;
    padding: 0.55rem 0.7rem 0.5rem;
    border-radius: 0.85rem;
    text-align: center;
    color: var(--fhi-navy-dark);
    background: linear-gradient(145deg, var(--fhi-card-price-from) 0%, var(--fhi-card-price-to) 100%);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--fhi-card-accent) 35%, transparent);
    transform: rotate(4deg);
}

.fhi-package-card__price-amount {
    display: block;
    font-family: var(--fhi-font-display);
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.fhi-package-card__price-unit {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    opacity: 0.85;
}

.fhi-package-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2.35rem 1rem 1rem;
}

.fhi-package-card__title-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.75rem;
}

.fhi-package-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    border-radius: 9999px;
    color: var(--fhi-card-accent-dark);
    background: color-mix(in srgb, var(--fhi-card-accent) 18%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--fhi-card-accent) 28%, #ffffff);
}

.fhi-package-card__icon svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 2.25;
}

.fhi-package-card__title {
    margin: 0;
    font-family: var(--fhi-font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: var(--fhi-navy);
}

.fhi-package-card__rule {
    border: none;
    border-top: 2px dotted #e2e8f0;
    margin: 0.85rem 0;
}

.fhi-package-card__meta {
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.55;
    font-weight: 500;
    color: var(--fhi-gray-500);
}

.fhi-package-card__desc {
    margin: 0.45rem 0 0;
    font-size: 0.6875rem;
    line-height: 1.5;
    color: var(--fhi-gray-500);
}

.fhi-package-card__promo {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.65rem 0 0;
    padding: 0.35rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    color: #9a3412;
    background: #ffedd5;
    border: 1px solid #fed7aa;
}

.fhi-package-card__promo svg {
    width: 0.75rem;
    height: 0.75rem;
    stroke-width: 2.5;
}

.fhi-package-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.fhi-package-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.28rem 0;
    font-size: 0.6875rem;
    line-height: 1.45;
    font-weight: 500;
    color: var(--fhi-gray-700);
}

.fhi-package-card__features li svg {
    width: 0.875rem;
    height: 0.875rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: var(--fhi-success);
    stroke-width: 3;
}

.fhi-package-card__verify {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.85rem 0 0.75rem;
}

.fhi-package-card__verify-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
    color: var(--fhi-success);
}

.fhi-package-card__verify-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    stroke-width: 2.25;
}

.fhi-package-card__verify-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.fhi-package-card__verify-copy strong {
    font-size: 0.6875rem;
    font-weight: 800;
    line-height: 1.35;
    color: #15803d;
}

.fhi-package-card__verify-copy span {
    font-size: 0.5625rem;
    line-height: 1.45;
    color: var(--fhi-gray-500);
}

.fhi-package-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.65rem;
    margin-top: auto;
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    font-family: var(--fhi-font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: capitalize;
    color: #ffffff;
    background: var(--fhi-navy);
    box-shadow: 0 6px 16px rgba(8, 31, 58, 0.2);
    transition: transform 220ms var(--fhi-ease), background-color 220ms var(--fhi-ease);
}

.fhi-package-card__cta:hover {
    transform: translateY(-1px);
    background: var(--fhi-navy-light);
    color: #ffffff;
}

/* Legacy aliases */
.fhi-package-card__badges,
.fhi-package-card__price-row,
.fhi-package-card__glow,
.fhi-package-card__shine,
.fhi-package-card__ribbon { display: none; }

/* ── Inputs ── */
.fhi-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    font-family: var(--fhi-font-sans);
    color: var(--fhi-navy);
    background: var(--fhi-white);
    border: 1.5px solid var(--fhi-gray-200);
    border-radius: var(--fhi-radius-sm);
    transition: border-color var(--fhi-duration) var(--fhi-ease),
                box-shadow var(--fhi-duration) var(--fhi-ease);
    outline: none;
}

.fhi-input::placeholder { color: var(--fhi-gray-400); }

.fhi-input:focus {
    border-color: var(--fhi-accent);
    box-shadow: 0 0 0 3px rgba(30, 201, 168, 0.2);
}

.fhi-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fhi-gray-700);
    margin-bottom: 0.375rem;
}

/* ── FAQ accordion ── */
.fhi-accordion {
    border-radius: var(--fhi-radius-md);
    border: 1px solid var(--fhi-gray-200);
    background: var(--fhi-white);
    overflow: hidden;
    transition: box-shadow var(--fhi-duration) var(--fhi-ease);
}

.fhi-accordion:hover {
    box-shadow: var(--fhi-shadow-card);
}

.fhi-accordion + .fhi-accordion { margin-top: 0.75rem; }

.fhi-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    font-family: var(--fhi-font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--fhi-navy);
    cursor: pointer;
    list-style: none;
    transition: background-color var(--fhi-duration) var(--fhi-ease);
}

.fhi-accordion__summary::-webkit-details-marker { display: none; }

.fhi-accordion__summary:hover {
    background-color: var(--fhi-gray-50);
}

.fhi-accordion[open] .fhi-accordion__summary {
    border-bottom: 1px solid var(--fhi-gray-200);
}

.fhi-accordion__chevron {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--fhi-gray-400);
    transition: transform 280ms var(--fhi-ease);
}

.fhi-accordion[open] .fhi-accordion__chevron {
    transform: rotate(180deg);
    color: var(--fhi-accent-dark);
}

.fhi-accordion__body {
    padding: 0 1.25rem 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--fhi-gray-500);
    animation: fhi-accordion-open 280ms var(--fhi-ease);
}

.fhi-accordion__body--richtext p {
    margin: 0 0 0.75rem;
}

.fhi-accordion__body--richtext p:last-child {
    margin-bottom: 0;
}

.fhi-accordion__body--richtext ul,
.fhi-accordion__body--richtext ol {
    margin: 0 0 0.75rem 1.25rem;
    padding: 0;
}

.fhi-accordion__body--richtext a {
    color: var(--fhi-accent-dark);
    text-decoration: underline;
}

@keyframes fhi-accordion-open {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Testimonial card ── */
.fhi-testimonial-card {
    background: var(--fhi-white);
    border-radius: var(--fhi-radius-lg);
    border: 1px solid var(--fhi-gray-200);
    box-shadow: var(--fhi-shadow-card);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fhi-testimonial-card__quote {
    flex-grow: 1;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--fhi-gray-700);
    font-style: italic;
}

.fhi-testimonial-card__author {
    margin-top: 1.25rem;
    font-family: var(--fhi-font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--fhi-navy);
}

.fhi-testimonial-card__stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
    color: var(--fhi-warning);
}

.fhi-testimonial-card__stars svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    stroke: none;
}

.fhi-testimonial-card__stars .fhi-star-empty {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    opacity: 0.35;
}

/* ── Testimonials marquee section ── */
.fhi-testimonials-section {
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(
        165deg,
        #f7fffc 0%,
        #ffffff 42%,
        #f3fbf9 100%
    );
    border-block: 1px solid rgba(15, 76, 92, 0.06);
}

@media (min-width: 768px) {
    .fhi-testimonials-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

.fhi-testimonials-section__glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 12% 18%, rgba(45, 212, 191, 0.14), transparent 70%),
        radial-gradient(ellipse 50% 40% at 88% 72%, rgba(15, 76, 92, 0.08), transparent 72%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(45, 212, 191, 0.1), transparent 68%);
}

.fhi-testimonials-marquee {
    --fhi-marquee-duration: 60s;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.fhi-testimonials-marquee__viewport {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
}

.fhi-testimonials-marquee__track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    width: max-content;
    padding-block: 0.125rem;
    will-change: transform;
    backface-visibility: hidden;
}

.fhi-testimonials-marquee__track--ltr,
.fhi-testimonials-marquee__track--rtl {
    animation-duration: var(--fhi-marquee-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.fhi-testimonials-marquee__track--ltr {
    animation-name: fhi-marquee-ltr;
}

.fhi-testimonials-marquee__track--rtl {
    animation-name: fhi-marquee-rtl;
}

.fhi-testimonials-marquee__viewport:hover .fhi-testimonials-marquee__track {
    animation-play-state: paused;
}

.fhi-testimonials-marquee .fhi-testimonial-card {
    flex: 0 0 auto;
    width: min(19.5rem, 78vw);
    height: auto;
    padding: 0.875rem 1rem;
    box-shadow: 0 2px 8px rgba(15, 76, 92, 0.05);
}

.fhi-testimonials-marquee .fhi-testimonial-card__stars {
    margin-bottom: 0.5rem;
}

.fhi-testimonials-marquee .fhi-testimonial-card__stars svg {
    width: 0.875rem;
    height: 0.875rem;
}

.fhi-testimonials-marquee .fhi-testimonial-card__quote {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.fhi-testimonials-marquee .fhi-testimonial-card__author {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
}

@keyframes fhi-marquee-ltr {
    from { transform: translate3d(-50%, 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
}

@keyframes fhi-marquee-rtl {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .fhi-testimonials-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        padding-inline: 1rem;
    }

    .fhi-testimonials-marquee__viewport {
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }
}

/* ── About section (dark navy) ── */
.fhi-about-section {
    position: relative;
    overflow-x: clip;
    background: linear-gradient(
        160deg,
        var(--fhi-navy-dark) 0%,
        var(--fhi-navy) 45%,
        var(--fhi-navy-light) 100%
    );
    color: var(--fhi-white);
}

.fhi-about-section__glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 42% at 8% 22%, rgba(30, 201, 168, 0.16), transparent 68%),
        radial-gradient(ellipse 45% 38% at 92% 78%, rgba(94, 234, 212, 0.1), transparent 70%),
        radial-gradient(ellipse 35% 30% at 55% 0%, rgba(255, 255, 255, 0.04), transparent 65%);
}

.fhi-about-section__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fhi-accent-light);
}

.fhi-about-section__title {
    font-family: var(--fhi-font-display);
    font-size: clamp(1.875rem, 3.2vw, 2.625rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--fhi-white);
}

.fhi-about-section__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.fhi-about-section__body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.fhi-about-section__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}

@media (min-width: 480px) {
    .fhi-about-section__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.fhi-about-section__stat {
    padding: 0.875rem 0.75rem;
    border-radius: var(--fhi-radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.fhi-about-section__stat-value {
    font-family: var(--fhi-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fhi-accent-light);
}

.fhi-about-section__stat-label {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.62);
}

.fhi-about-section__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fhi-about-section__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.fhi-about-section__feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    background: rgba(30, 201, 168, 0.14);
    color: var(--fhi-accent-light);
}

.fhi-about-section__feature-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.fhi-about-section__feature-title {
    font-family: var(--fhi-font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--fhi-white);
}

.fhi-about-section__feature-desc {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.fhi-about-section__media {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 0.875rem;
    min-height: 22rem;
}

.fhi-about-section__image {
    overflow: hidden;
    border-radius: var(--fhi-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.fhi-about-section__image--main {
    grid-row: span 2;
    min-height: 18rem;
}

.fhi-about-section__image--secondary,
.fhi-about-section__image--tertiary {
    min-height: 8.5rem;
}

.fhi-about-section__image-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 1.25rem;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
}

.fhi-about-section__image--main .fhi-about-section__image-inner {
    background:
        linear-gradient(160deg, rgba(30, 201, 168, 0.22) 0%, transparent 55%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.fhi-about-section__image--secondary .fhi-about-section__image-inner {
    background:
        linear-gradient(160deg, rgba(94, 234, 212, 0.18) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.fhi-about-section__image--tertiary .fhi-about-section__image-inner {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(12, 45, 82, 0.6) 0%, rgba(8, 31, 58, 0.3) 100%);
}

.fhi-about-section__image-inner svg {
    width: 2rem;
    height: 2rem;
    color: var(--fhi-accent-light);
    opacity: 0.9;
}

.fhi-about-section__image--main .fhi-about-section__image-inner svg {
    width: 2.75rem;
    height: 2.75rem;
}

.fhi-about-section__image-inner span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.fhi-about-section__badge {
    position: absolute;
    left: -0.75rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: calc(100% - 1rem);
    padding: 0.875rem 1rem;
    border-radius: var(--fhi-radius-md);
    background: rgba(255, 255, 255, 0.96);
    color: var(--fhi-navy);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.fhi-about-section__badge svg {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--fhi-accent-dark);
}

.fhi-about-section__badge strong {
    display: block;
    font-family: var(--fhi-font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
}

.fhi-about-section__badge span {
    display: block;
    margin-top: 0.125rem;
    font-size: 0.6875rem;
    line-height: 1.35;
    color: var(--fhi-gray-500);
}

@media (max-width: 1023px) {
    .fhi-about-section__media {
        max-width: 28rem;
        margin-inline: auto;
        padding-bottom: 2.5rem;
    }

    .fhi-about-section__badge {
        left: 0.75rem;
        right: 0.75rem;
        bottom: -1rem;
    }
}

/* ── Scroll reveal (disabled — content visible immediately) ── */
.fhi-reveal {
    opacity: 1;
    transform: none;
}

/* ── Lucide icon sizing helpers ── */
.fhi-icon { width: 1.25rem; height: 1.25rem; stroke-width: 2; }
.fhi-icon--sm { width: 1rem; height: 1rem; }
.fhi-icon--lg { width: 1.5rem; height: 1.5rem; }

/* ── Grid helpers ── */
.fhi-package-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fhi-package-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

@media (min-width: 1024px) {
    .fhi-package-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* 4-column grid (homepage / packages listing) */
.fhi-package-grid--4col {
    gap: 1.125rem;
    padding-top: 0.75rem;
}

@media (min-width: 640px) {
    .fhi-package-grid--4col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

@media (min-width: 1100px) {
    .fhi-package-grid--4col {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .fhi-package-grid--4col {
        gap: 1.5rem;
    }

    .fhi-package-grid--4col .fhi-package-card__body {
        padding: 2.5rem 1.125rem 1.125rem;
    }

    .fhi-package-grid--4col .fhi-package-card__title {
        font-size: 0.875rem;
    }

    .fhi-package-grid--4col .fhi-package-card__meta,
    .fhi-package-grid--4col .fhi-package-card__features li {
        font-size: 0.75rem;
    }

    .fhi-package-grid--4col .fhi-package-card__price-amount {
        font-size: 1.75rem;
    }

    .fhi-package-grid--4col .fhi-package-card__cta {
        min-height: 2.75rem;
        font-size: 0.875rem;
    }
}

/* 2-column homepage grid — larger, bolder cards */
.fhi-package-grid--2col {
    gap: 1.5rem;
    padding-top: 1rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .fhi-package-grid--2col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .fhi-package-grid--2col {
        gap: 2.5rem;
    }
}

/* 3-column homepage grid */
.fhi-package-grid--3col {
    gap: 1.25rem;
    max-width: 92rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .fhi-package-grid--3col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 900px) {
    .fhi-package-grid--3col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.75rem;
    }
}

@media (min-width: 1280px) {
    .fhi-package-grid--3col {
        gap: 2rem;
    }
}

.fhi-package-card--lg {
    margin-top: 1.25rem;
    border-radius: 1.5rem;
    border-width: 1px;
    box-shadow: 0 12px 40px rgba(8, 31, 58, 0.09);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.fhi-package-card--lg:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(8, 31, 58, 0.14);
}

.fhi-package-card--lg.fhi-package-card--featured {
    border-width: 2px;
    box-shadow: 0 16px 48px color-mix(in srgb, var(--fhi-card-accent) 22%, rgba(8, 31, 58, 0.1));
}

.fhi-package-card--lg .fhi-package-card__accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 1.5rem 1.5rem 0 0;
    background: linear-gradient(90deg, var(--fhi-card-accent-dark), var(--fhi-card-accent));
}

.fhi-package-card--lg .fhi-package-card__delivery {
    top: -0.85rem;
    left: 1.25rem;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
}

.fhi-package-card--lg .fhi-package-card__price-badge {
    top: -1.35rem;
    right: 1rem;
    min-width: 6.5rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    transform: rotate(3deg);
}

.fhi-package-card--lg .fhi-package-card__price-amount {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.fhi-package-card--lg .fhi-package-card__price-unit {
    margin-top: 0.35rem;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
}

.fhi-package-card--lg .fhi-package-card__body {
    padding: 2.75rem 1.75rem 1.75rem;
}

@media (min-width: 1024px) {
    .fhi-package-card--lg .fhi-package-card__body {
        padding: 3rem 2rem 2rem;
    }
}

.fhi-package-card--lg .fhi-package-card__title-row {
    gap: 1rem;
    min-height: auto;
    margin-bottom: 0.25rem;
}

.fhi-package-card--lg .fhi-package-card__icon {
    width: 3.25rem;
    height: 3.25rem;
}

.fhi-package-card--lg .fhi-package-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.fhi-package-card--lg .fhi-package-card__title {
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.fhi-package-card--lg .fhi-package-card__rule {
    margin: 1.25rem 0;
}

.fhi-package-card--lg .fhi-package-card__meta {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--fhi-gray-600);
}

.fhi-package-card--lg .fhi-package-card__desc {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--fhi-gray-600);
}

.fhi-package-card--lg .fhi-package-card__promo {
    margin-top: 1rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
}

.fhi-package-card--lg .fhi-package-card__features li {
    padding: 0.45rem 0;
    font-size: 0.9375rem;
    gap: 0.65rem;
}

.fhi-package-card--lg .fhi-package-card__features li svg {
    width: 1.125rem;
    height: 1.125rem;
}

.fhi-package-card--lg .fhi-package-card__verify {
    margin: 1.25rem 0 1rem;
    padding: 1rem 1.125rem;
    border-radius: 1rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.fhi-package-card--lg .fhi-package-card__verify-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.fhi-package-card--lg .fhi-package-card__verify-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.fhi-package-card--lg .fhi-package-card__verify-copy strong {
    font-size: 0.9375rem;
}

.fhi-package-card--lg .fhi-package-card__verify-copy span {
    font-size: 0.8125rem;
}

.fhi-package-card--lg .fhi-package-card__cta {
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, var(--fhi-navy) 0%, var(--fhi-navy-light) 100%);
}

.fhi-package-card--lg .fhi-package-card__cta:hover {
    background: linear-gradient(135deg, var(--fhi-navy-light) 0%, var(--fhi-navy) 100%);
}

/* ── Blog cards & listing ── */
.fhi-blog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .fhi-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .fhi-blog-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fhi-blog-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.fhi-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--fhi-white);
    border: 1px solid var(--fhi-gray-200);
    border-radius: var(--fhi-radius-lg);
    overflow: hidden;
    box-shadow: var(--fhi-shadow-card);
    transition: transform var(--fhi-duration) var(--fhi-ease), box-shadow var(--fhi-duration) var(--fhi-ease);
}

.fhi-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fhi-shadow-card-hover);
}

.fhi-blog-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--fhi-gray-100);
}

.fhi-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--fhi-ease);
}

.fhi-blog-card:hover .fhi-blog-card__image {
    transform: scale(1.04);
}

.fhi-blog-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--fhi-accent-dark);
    background: linear-gradient(145deg, rgba(30, 201, 168, 0.12), rgba(8, 31, 58, 0.04));
}

.fhi-blog-card__placeholder svg {
    width: 2rem;
    height: 2rem;
}

.fhi-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.125rem;
}

.fhi-blog-card--compact .fhi-blog-card__body {
    padding: 1rem;
}

.fhi-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--fhi-gray-500);
}

.fhi-blog-card__category {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(30, 201, 168, 0.12);
    color: var(--fhi-accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.625rem;
}

.fhi-blog-card__title {
    margin-top: 0.625rem;
    font-family: var(--fhi-font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.fhi-blog-card--compact .fhi-blog-card__title {
    font-size: 0.9375rem;
}

.fhi-blog-card__title a {
    color: var(--fhi-navy);
    text-decoration: none;
}

.fhi-blog-card__title a:hover {
    color: var(--fhi-accent-dark);
}

.fhi-blog-card__excerpt {
    margin-top: 0.625rem;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--fhi-gray-500);
}

.fhi-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    font-family: var(--fhi-font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--fhi-accent-dark);
    text-decoration: none;
}

.fhi-blog-card__link:hover {
    color: var(--fhi-navy);
}

/* Blog detail */
.fhi-blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--fhi-gray-500);
}

.fhi-blog-detail__title {
    font-family: var(--fhi-font-display);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--fhi-navy);
}

.fhi-blog-detail__hero {
    overflow: hidden;
    border-radius: var(--fhi-radius-lg);
    border: 1px solid var(--fhi-gray-200);
    box-shadow: var(--fhi-shadow-card);
}

.fhi-blog-detail__image {
    width: 100%;
    max-height: 28rem;
    object-fit: cover;
}

.fhi-richtext,
.fhi-blog-detail__content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--fhi-gray-700);
}

.fhi-richtext h2,
.fhi-richtext h3,
.fhi-blog-detail__content h2,
.fhi-blog-detail__content h3 {
    margin: 1.75rem 0 0.75rem;
    font-family: var(--fhi-font-display);
    color: var(--fhi-navy);
}

.fhi-richtext p,
.fhi-blog-detail__content p {
    margin: 0 0 1rem;
}

.fhi-richtext ul,
.fhi-richtext ol,
.fhi-blog-detail__content ul,
.fhi-blog-detail__content ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.fhi-richtext a,
.fhi-blog-detail__content a {
    color: var(--fhi-accent-dark);
    text-decoration: underline;
}

.fhi-richtext img,
.fhi-blog-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--fhi-radius-md);
}

.fhi-legal-page h2:first-of-type {
    margin-top: 0;
}

.fhi-legal-nav a,
.fhi-book-terms a {
    color: var(--fhi-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fhi-book-terms a:hover {
    color: var(--fhi-navy);
}

/* Pagination */
.fhi-pager {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fhi-pager__control,
.fhi-pager__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.875rem;
    border: 1px solid var(--fhi-gray-200);
    background: var(--fhi-white);
    color: var(--fhi-navy);
    font-family: var(--fhi-font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--fhi-duration) var(--fhi-ease), border-color var(--fhi-duration) var(--fhi-ease);
}

.fhi-pager__control:hover,
.fhi-pager__page:hover {
    border-color: rgba(30, 201, 168, 0.35);
    background: rgba(30, 201, 168, 0.08);
}

.fhi-pager__page--active {
    background: var(--fhi-navy);
    border-color: var(--fhi-navy);
    color: var(--fhi-white);
}

.fhi-pager__control--disabled {
    opacity: 0.35;
    pointer-events: none;
}

.fhi-pager__pages {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

/* Sample PDF preview (homepage tabs) */
.fhi-sample-preview {
    border-radius: var(--fhi-radius-lg);
    border: 1px solid var(--fhi-gray-200);
    background: var(--fhi-white);
    box-shadow: var(--fhi-shadow-card);
    overflow: hidden;
}

.fhi-sample-preview__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--fhi-gray-200);
    background: rgba(15, 23, 42, 0.02);
}

.fhi-sample-preview__tab {
    flex: 0 1 auto;
    min-width: 0;
    padding: 0.625rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    background: transparent;
    color: var(--fhi-gray-600);
    font-family: var(--fhi-font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    transition: background-color var(--fhi-duration) var(--fhi-ease),
        border-color var(--fhi-duration) var(--fhi-ease),
        color var(--fhi-duration) var(--fhi-ease);
}

.fhi-sample-preview__tab:hover {
    color: var(--fhi-navy);
    background: rgba(30, 201, 168, 0.08);
}

.fhi-sample-preview__tab.is-active {
    color: var(--fhi-navy);
    background: var(--fhi-white);
    border-color: rgba(30, 201, 168, 0.35);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.fhi-sample-preview__panel {
    display: none;
}

.fhi-sample-preview__panel.is-active {
    display: block;
}

.fhi-sample-preview__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--fhi-gray-200);
    background: rgba(15, 23, 42, 0.02);
}

.fhi-sample-preview__file {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fhi-navy);
}

.fhi-sample-preview__file span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fhi-sample-preview__open {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--fhi-accent-dark);
    text-decoration: none;
}

.fhi-sample-preview__open:hover {
    text-decoration: underline;
}

.fhi-sample-preview__iframe {
    display: block;
    width: 100%;
    height: min(70vh, 520px);
    min-height: 360px;
    border: 0;
    background: var(--fhi-gray-100);
}

@media (max-width: 639px) {
    .fhi-sample-preview__tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .fhi-sample-preview__tab {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .fhi-sample-preview__iframe {
        min-height: 280px;
        height: 50vh;
    }
}

/* ── Book / checkout page ── */
.fhi-book-page {
    background: #faf8f5;
    padding: 1.5rem 0 3rem;
}

.fhi-book-page__top {
    margin-bottom: 1rem;
}

.fhi-book-toolbar__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fhi-book-toolbar__back:hover {
    color: #0f766e;
}

.fhi-book-page__inner {
    max-width: 52rem;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 0;
}

.fhi-book-summary__row--discount {
    color: #0f766e;
    font-weight: 600;
}

/* Collapsible add-on packages (card + inline form panel) */
.fhi-book-section--addons {
    padding-top: 0.5rem;
}

.fhi-book-section__head--plain {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fhi-book-addon-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.fhi-book-addon-block {
    border: 1px solid #e8ecef;
    border-radius: 0.375rem;
    overflow: hidden;
    background: #ffffff;
}

.fhi-book-addon-block--active {
    border-color: #0f766e;
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.12);
}

.fhi-book-addon-card {
    display: block;
    cursor: pointer;
    margin: 0;
}

.fhi-book-addon-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fhi-book-addon-card__body {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: #fafafa;
    transition: background 0.2s ease;
}

.fhi-book-addon-block--active .fhi-book-addon-card__body {
    background: #f0fdfa;
}

.fhi-book-addon-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    background: #ffffff;
    color: #0f766e;
}

.fhi-book-addon-card__icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.fhi-book-addon-card__copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.fhi-book-addon-card__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

.fhi-book-addon-card__desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

.fhi-book-addon-card__price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f766e;
    white-space: nowrap;
}

.fhi-book-addon-card__price small {
    font-weight: 500;
    color: #94a3b8;
}

.fhi-book-addon-card__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: transform 0.2s ease, color 0.2s ease;
}

.fhi-book-addon-card__chevron svg {
    width: 1.125rem;
    height: 1.125rem;
}

.fhi-book-addon-block--active .fhi-book-addon-card__chevron {
    transform: rotate(180deg);
    color: #0f766e;
}

.fhi-book-addon-panel {
    border-top: 1px solid #e8ecef;
    background: #ffffff;
}

.fhi-book-addon-panel__inner {
    padding: 1.25rem 1.1rem 1.35rem;
}

.fhi-book-field--travelers {
    max-width: 100%;
}

.fhi-book-fields__row--insurance-head .fhi-book-field--travelers {
    max-width: none;
}

@media (max-width: 639px) {
    .fhi-book-addon-card__body {
        grid-template-columns: auto 1fr auto;
    }

    .fhi-book-addon-card__price {
        grid-column: 2;
        grid-row: 2;
    }

    .fhi-book-addon-card__chevron {
        grid-row: 1 / span 2;
        grid-column: 3;
    }
}

.fhi-insurance-travelers {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.fhi-insurance-traveler {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    background: rgba(229,222, 201, .3);
}

.fhi-insurance-traveler__title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.fhi-insurance-pricing {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1rem;
    border: 1px solid rgba(30, 201, 168, 0.28);
    background: linear-gradient(135deg, rgba(30, 201, 168, 0.08) 0%, rgba(8, 31, 58, 0.03) 100%);
}

.fhi-insurance-pricing__title {
    font-family: var(--fhi-font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--fhi-navy);
    margin-bottom: 0.85rem;
}

.fhi-insurance-pricing__meta {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1rem;
}

.fhi-insurance-pricing__meta div {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.fhi-insurance-pricing__meta dt {
    font-weight: 700;
    color: var(--fhi-gray-500);
    min-width: 7rem;
}

.fhi-insurance-pricing__meta dd {
    margin: 0;
    font-weight: 700;
    color: var(--fhi-navy);
}

.fhi-insurance-pricing__traveler {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 1rem;
    padding: 0.65rem 0;
    border-top: 1px solid var(--fhi-gray-200);
    font-size: 0.8125rem;
}

.fhi-insurance-pricing__traveler span:last-of-type {
    grid-column: 1;
    color: var(--fhi-gray-500);
}

.fhi-insurance-pricing__traveler strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 0.9375rem;
    color: var(--fhi-accent-dark);
}

.fhi-insurance-pricing__total {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--fhi-gray-200);
    font-size: 0.875rem;
    color: var(--fhi-navy);
}

.fhi-insurance-pricing__total strong {
    color: var(--fhi-accent-dark);
    font-size: 1.0625rem;
}

.fhi-insurance-pricing__error {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fhi-error);
}

.fhi-book-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}


.fhi-book-page .hidden {
    display: none !important;
}

/* Stepper */
.fhi-book-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.75rem;
}

.fhi-book-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 5.5rem;
    text-align: center;
}

.fhi-book-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #94a3b8;
    border: 2px solid #cbd5e1;
    background: #ffffff;
}

.fhi-book-step--active .fhi-book-step__num {
    color: #ffffff;
    background: #0f766e;
    border-color: #0f766e;
}

.fhi-book-step__text {
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.3;
    color: #94a3b8;
    max-width: 6rem;
}

.fhi-book-step--active .fhi-book-step__text {
    color: #0f172a;
}

.fhi-book-stepper__line {
    flex: 1;
    max-width: 4rem;
    height: 2px;
    background: #e2e8f0;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .fhi-book-step__text {
        font-size: 0.75rem;
        max-width: none;
    }

    .fhi-book-stepper__line {
        max-width: 6rem;
    }
}

/* Trust badges */
.fhi-book-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #475569;
}

.fhi-book-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.fhi-book-trust svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #0f766e;
    stroke-width: 2.25;
}

@media (min-width: 768px) {
    .fhi-book-trust {
        flex-wrap: nowrap;
        justify-content: space-between;
        font-size: 0.75rem;
    }
}

/* Main card */
.fhi-book-card {
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 0 0 2rem;
}

.fhi-book-card__plan {
    padding: 1.75rem 1.75rem 1.25rem;
    border-bottom: 1px solid #e8ecef;
}

.fhi-book-card__eyebrow {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f766e;
}

.fhi-book-card__title {
    margin: 0.35rem 0 0;
    font-family: var(--fhi-font-display);
    font-size: clamp(1.75rem, 4vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

/* Sections */
.fhi-book-section {
    padding: 1.5rem 1.75rem 0;
}

.fhi-book-section__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e8ecef;
    margin-bottom: 1.25rem;
}

.fhi-book-section__num {
    font-family: var(--fhi-font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f766e;
    line-height: 1;
}

.fhi-book-section__title {
    margin: 0;
    font-family: var(--fhi-font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.fhi-book-section__intro {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

.fhi-book-section--checkout {
    padding-top: 2rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e8ecef;
}

/* Fields */
.fhi-book-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fhi-book-fields__row {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

.fhi-book-fields__row--name {
    grid-template-columns: minmax(9rem, 0.38fr) 1fr 1fr;
}

.fhi-book-field--title .fhi-book-input {
    min-width: 0;
    width: 100%;
}

.fhi-book-fields__row--2 {
    grid-template-columns: 1fr 1fr;
}

.fhi-book-fields__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fhi-book-fields__row--insurance-head .fhi-book-field--travelers {
    max-width: none;
}

.fhi-book-field--full {
    grid-column: 1 / -1;
}

@media (max-width: 899px) {
    .fhi-book-fields__row--3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 639px) {
    .fhi-book-fields__row--name,
    .fhi-book-fields__row--2,
    .fhi-book-fields__row--3,
    .fhi-book-fields__row--insurance-head {
        grid-template-columns: 1fr;
    }
}

.fhi-book-field__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.fhi-book-field__req {
    color: #0f766e;
}

.fhi-book-field__hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    min-height: 1.125rem;
    line-height: 1.35;
}

.fhi-book-field__hint--empty {
    visibility: hidden;
}

.fhi-book-input,
.fhi-book-textarea,
.fhi-book-page select.fhi-book-input:not(.ts-hidden-accessible) {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
    font-family: var(--fhi-font-sans);
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fhi-book-input:focus,
.fhi-book-textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.fhi-book-textarea {
    resize: vertical;
    min-height: 6rem;
}

.fhi-book-field--narrow {
    max-width: 10rem;
}

.fhi-book-field__error {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: #dc2626;
}

/* intl-tel-input */
.fhi-book-field .iti {
    width: 100%;
}

.fhi-book-field .iti__tel-input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 3.25rem;
    font-size: 0.9375rem;
    border: 1px solid #d1d5db;
    border-radius: 16px;
}

.fhi-book-field .iti__tel-input:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.fhi-book-field .iti__country-container {
    padding-left: 0.5rem;
}

/* Tom Select — searchable country dropdowns */
.fhi-book-page .ts-wrapper {
    width: 100%;
    display: block;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.fhi-book-page .ts-wrapper.single .ts-control,
.fhi-book-page .ts-wrapper.multi .ts-control {
    min-height: 0;
    padding: 0.75rem 2.25rem 0.75rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    background: #ffffff;
    background-image: none;
    box-shadow: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #0f172a;
}

.fhi-book-page .ts-wrapper.single .ts-control:after {
    border-color: #64748b transparent transparent;
    right: 0.875rem;
}

.fhi-book-page .ts-wrapper.single.dropdown-active .ts-control:after {
    border-color: transparent transparent #64748b;
}

.fhi-book-page .ts-wrapper.single.focus .ts-control,
.fhi-book-page .ts-wrapper.multi.focus .ts-control,
.fhi-book-page .ts-wrapper.single.input-active .ts-control {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
    background: #ffffff;
    background-image: none;
}

.fhi-book-page .ts-wrapper.plugin-dropdown_input .items-placeholder {
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #94a3b8;
}

.fhi-book-page .ts-wrapper.plugin-dropdown_input.dropdown-active .ts-control {
    border-radius: 16px;
    box-shadow: none;
}

.fhi-book-page .ts-dropdown {
    border: 1px solid #d1d5db;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    margin-top: 0.35rem;
}

.fhi-book-page .ts-dropdown .dropdown-input {
    border: none;
    border-bottom: 1px solid #e8ecef;
    border-radius: 0;
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
}

.fhi-book-page .ts-dropdown .option {
    padding: 0.65rem 0.875rem;
    font-size: 0.9375rem;
}

.fhi-book-page .ts-dropdown .active {
    background: rgba(15, 118, 110, 0.08);
    color: #0f172a;
}

/* Radio groups */
.fhi-book-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.fhi-book-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.fhi-book-radio input {
    width: 1rem;
    height: 1rem;
    accent-color: #0f766e;
}

.fhi-book-addon {
    padding-bottom: 0.5rem;
}

.fhi-book-addon__title {
    margin: 0 0 0.65rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.fhi-book-addon__title span {
    font-weight: 500;
    color: #64748b;
}

/* Summary & checkout */
.fhi-book-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.fhi-book-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #0f172a;
}

.fhi-book-summary__row--muted {
    color: #64748b;
}

.fhi-book-summary--total {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8ecef;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.fhi-book-pay-note {
    margin: 1.25rem 0 0;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #64748b;
}

.fhi-book-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1.25rem;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #64748b;
}

.fhi-book-terms input {
    margin-top: 0.15rem;
    width: 1rem;
    height: 1rem;
    accent-color: #0f766e;
    flex-shrink: 0;
}

.fhi-book-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-family: var(--fhi-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: #0f172a;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fhi-book-submit:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.fhi-book-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.fhi-book-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.fhi-book-alert--warn {
    margin-top: 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

/* ── Promo discount banners (homepage) ── */
.fhi-section--promo {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .fhi-section--promo {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.fhi-promo-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(8, 31, 58, 0.18), 0 4px 16px rgba(8, 31, 58, 0.08);
}

.fhi-promo-banner__glow {
    position: absolute;
    inset: -40% -20% auto auto;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 201, 168, 0.35) 0%, transparent 68%);
    pointer-events: none;
}

.fhi-promo-banner__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 80%, #fff 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.fhi-promo-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    padding: 2rem 1.75rem;
    align-items: center;
}

@media (min-width: 900px) {
    .fhi-promo-banner__inner {
        grid-template-columns: 1fr auto;
        gap: 2.5rem;
        padding: 2.75rem 3rem;
    }
}

.fhi-promo-banner__content {
    min-width: 0;
}

.fhi-promo-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fhi-promo-banner__title {
    margin-top: 1rem;
    font-family: var(--fhi-font-display);
    font-size: clamp(1.625rem, 3vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

.fhi-promo-banner__subtitle {
    margin-top: 0.85rem;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 768px) {
    .fhi-promo-banner__subtitle {
        font-size: 1.0625rem;
    }
}

.fhi-promo-banner__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0;
    list-style: none;
}

.fhi-promo-banner__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fhi-promo-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.fhi-promo-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--fhi-navy);
    background: linear-gradient(135deg, #fff 0%, #f0fdf9 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform var(--fhi-duration) var(--fhi-ease), box-shadow var(--fhi-duration) var(--fhi-ease);
}

.fhi-promo-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.fhi-promo-banner__note {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.fhi-promo-banner__badge-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 11rem;
    min-height: 11rem;
}

.fhi-promo-banner__badge-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.28);
    animation: fhi-promo-spin 24s linear infinite;
}

.fhi-promo-banner__badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10.5rem;
    height: 10.5rem;
    border-radius: 50%;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 250, 0.96) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotate(-6deg);
    animation: fhi-promo-pulse 3s ease-in-out infinite;
}

.fhi-promo-banner__badge-label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fhi-gray-500);
}

.fhi-promo-banner__badge-value {
    margin-top: 0.15rem;
    font-family: var(--fhi-font-display);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--fhi-accent-dark);
}

.fhi-promo-banner__badge-foot {
    margin-top: 0.35rem;
    max-width: 7rem;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--fhi-navy);
}

/* Variant: navy gradient (default) */
.fhi-promo-banner--v0 {
    background: linear-gradient(125deg, var(--fhi-navy-dark) 0%, var(--fhi-navy) 45%, #0e3d5c 100%);
}

.fhi-promo-banner--v0 .fhi-promo-banner__badge-value {
    color: var(--fhi-accent-dark);
}

/* Variant: mint accent */
.fhi-promo-banner--v1 {
    background: linear-gradient(125deg, #0a4d42 0%, var(--fhi-accent-dark) 40%, var(--fhi-accent) 100%);
}

.fhi-promo-banner--v1 .fhi-promo-banner__badge {
    background: linear-gradient(145deg, var(--fhi-navy) 0%, var(--fhi-navy-light) 100%);
}

.fhi-promo-banner--v1 .fhi-promo-banner__badge-label,
.fhi-promo-banner--v1 .fhi-promo-banner__badge-foot {
    color: rgba(255, 255, 255, 0.75);
}

.fhi-promo-banner--v1 .fhi-promo-banner__badge-value {
    color: var(--fhi-accent-light);
}

.fhi-promo-banner--v1 .fhi-promo-banner__cta {
    color: #fff;
    background: linear-gradient(135deg, var(--fhi-navy) 0%, var(--fhi-navy-light) 100%);
}

/* Variant: warm premium */
.fhi-promo-banner--v2 {
    background: linear-gradient(125deg, #1a1040 0%, var(--fhi-navy) 50%, #134e4a 100%);
}

.fhi-promo-banner--v2 .fhi-promo-banner__glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, transparent 68%);
}

.fhi-promo-banner--v2 .fhi-promo-banner__badge-value {
    color: var(--fhi-warning);
}

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

@keyframes fhi-promo-pulse {
    0%, 100% { transform: rotate(-6deg) scale(1); }
    50% { transform: rotate(-6deg) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .fhi-promo-banner__badge-ring,
    .fhi-promo-banner__badge {
        animation: none;
    }
}

/* Site footer */
.fhi-footer {
    border-top: 1px solid #e8ecef;
    background: #ffffff;
    color: rgba(100, 116, 139, 0.95);
}

.fhi-footer__main {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1rem 2.5rem;
}

@media (min-width: 640px) {
    .fhi-footer__main {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .fhi-footer__main {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.fhi-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .fhi-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .fhi-footer__grid {
        grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
        gap: 2.5rem 2rem;
    }
}

.fhi-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .fhi-footer__brand {
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .fhi-footer__brand {
        grid-column: auto;
    }
}

.fhi-footer__logo {
    max-width: 160px;
    height: auto;
}

.fhi-footer__intro {
    margin: 1.25rem 0 0;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.fhi-footer__social {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.fhi-footer__heading {
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f172a;
}

.fhi-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.fhi-footer__nav--contact {
    gap: 0.5rem;
}

.fhi-footer__link {
    display: inline-block;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: inherit;
    transition: color 0.2s ease;
}

.fhi-footer__link:hover {
    color: #0f172a;
}

.fhi-footer__text {
    font-size: 0.9375rem;
    line-height: 1.55;
}

.fhi-footer__bottom {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 2rem;
    border-top: 1px solid #e8ecef;
    text-align: center;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .fhi-footer__bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .fhi-footer__bottom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.fhi-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}

.fhi-footer__copy {
    margin: 0.75rem 0 0;
    color: rgba(100, 116, 139, 0.9);
}
