/* ==========================================================================
   ReservePress Marketing Theme — Main CSS
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ========================================================================== */

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
    /* Palette */
    --navy:          #1a2236;
    --navy-mid:      #243050;
    --navy-light:    #2e3d63;
    --gold:          #b8964f;
    --gold-light:    #d4b06a;
    --gold-pale:     #f5ede0;
    --cream:         #faf8f5;
    --cream-dark:    #f2ede6;
    --white:         #ffffff;
    --text-dark:     #1a1a2e;
    --text-body:     #3d3d4e;
    --text-muted:    #7a7a8c;
    --text-light:    rgba(255,255,255,0.85);
    --text-lighter:  rgba(255,255,255,0.55);
    --border:        #e8e4dc;
    --border-dark:   rgba(255,255,255,0.12);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --section-gap:  6rem;
    --container:    1200px;
    --gap:          2rem;

    /* Effects */
    --radius:       0.5rem;
    --radius-lg:    1rem;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --transition:   all 0.22s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: 68ch; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(184,150,79,0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--text-dark);
    background: rgba(0,0,0,0.03);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border-color: var(--border-dark);
}
.btn-ghost-light:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
}

.btn-outline {
    background: transparent;
    color: var(--text-body);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* ── Section Utilities ───────────────────────────────────────────────────── */
.section { padding: var(--section-gap) 0; }

.section--dark {
    background: var(--navy);
    color: var(--text-light);
}

.section--warm {
    background: var(--cream);
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-title { margin-bottom: 1rem; }
.section-title.light { color: var(--white); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 68px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.site-logo { flex-shrink: 0; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.primary-nav { flex: 1; }

.primary-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.primary-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 450;
    color: var(--text-body);
    border-radius: var(--radius);
    transition: var(--transition);
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a.active {
    color: var(--navy);
    background: var(--cream);
}

.nav-arrow {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.dropdown-open .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.9rem;
    font-size: 0.88rem;
    color: var(--text-body);
    border-radius: calc(var(--radius-lg) - 0.25rem);
    transition: var(--transition);
}

.dropdown li a:hover { background: var(--cream); color: var(--navy); }
.dropdown li.coming-soon a { opacity: 0.55; pointer-events: none; }

.nav-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
    background: var(--gold-pale);
    color: var(--gold);
}

.nav-tag.muted {
    background: var(--cream-dark);
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 1rem 2rem 1.5rem;
}

.mobile-nav.open { display: block; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-nav ul li a {
    display: block;
    padding: 0.6rem 0.5rem;
    font-size: 1rem;
    color: var(--text-body);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav ul li a:hover { background: var(--cream); color: var(--navy); }

.mobile-cta { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 65% 40%, rgba(184,150,79,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26,34,54,0.04) 0%, transparent 50%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,34,54,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,34,54,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2s ease infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,150,79,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(184,150,79,0); }
}

.hero-title {
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: none;
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-screen-wrap {
    position: relative;
    perspective: 1200px;
}

.hero-screen {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.hero-screen-wrap:hover .hero-screen {
    transform: rotateY(0deg) rotateX(0deg);
}

.screen-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border);
}

.screen-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.screen-bar span:nth-child(1) { background: #ff5f57; }
.screen-bar span:nth-child(2) { background: #febc2e; }
.screen-bar span:nth-child(3) { background: #28c840; }

.screen-body { position: relative; min-height: 320px; }

.screen-body img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

/* Screen placeholder (shown when no real screenshot) */
.screen-placeholder {
    position: absolute;
    inset: 0;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.screen-body img + .screen-placeholder,
.screen-body:has(img:not([src=""])) .screen-placeholder { display: none; }

.sp-nav {
    height: 36px;
    background: var(--navy);
    flex-shrink: 0;
}

.sp-hero {
    height: 100px;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    flex-shrink: 0;
}

.sp-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.sp-field {
    height: 24px;
    border-radius: 4px;
    background: var(--cream-dark);
    flex: 1;
}

.sp-btn {
    height: 24px;
    width: 60px;
    border-radius: 4px;
    background: var(--gold);
    flex-shrink: 0;
}

.sp-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    flex: 1;
}

.sp-card {
    border-radius: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* Floating badges */
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.hero-badge--1 {
    bottom: 15%;
    left: -10%;
    animation-delay: 0s;
}

.hero-badge--2 {
    top: 12%;
    right: -8%;
    animation-delay: 1.5s;
}

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

/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--navy);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

/* ── Pain Section ─────────────────────────────────────────────────────────── */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pain-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.pain-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pain-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pain-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Product Showcase ─────────────────────────────────────────────────────── */
.showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.feature-list li svg { flex-shrink: 0; margin-top: 0.1rem; }

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.showcase-screens {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.showcase-screen {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.showcase-screen img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.showcase-screen.no-image {
    min-height: 220px;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
}

.showcase-screen--main img { height: 260px; }
.showcase-screen--main.no-image { min-height: 260px; }

.screen-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
}

/* ── Why Section ──────────────────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Coming Soon Section ──────────────────────────────────────────────────── */
.coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.coming-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .coming-grid--four { grid-template-columns: repeat(2, 1fr); }
}

.mobile-nav-header {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 12px 0 4px;
    pointer-events: none;
}

.coming-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.coming-card--soon {
    opacity: 0.7;
}

.coming-card--available {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.coming-card--available:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.coming-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.coming-badge.available {
    background: var(--gold-pale);
    color: var(--gold);
}

.coming-badge.soon {
    background: var(--cream-dark);
    color: var(--text-muted);
}

.coming-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.coming-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.coming-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.coming-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gold);
    transition: var(--transition);
}

.coming-link:hover { color: var(--gold-light); }
.coming-link.muted { color: var(--text-muted); pointer-events: none; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.final-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
}

.final-cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin: 0 auto 2rem;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
}

.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo .logo-text { color: var(--white); font-size: 1.4rem; }

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin: 0.75rem 0;
    line-height: 1.6;
    max-width: 28ch;
}

.footer-email {
    font-size: 0.88rem;
    color: var(--gold-light);
    transition: var(--transition);
}

.footer-email:hover { color: var(--gold); }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col ul li a.muted { color: rgba(255,255,255,0.3); pointer-events: none; }
.footer-col ul li a.muted em { font-style: normal; font-size: 0.7rem; }

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

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

.footer-parent a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}

.footer-parent a:hover { color: var(--white); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .showcase-inner { grid-template-columns: 1fr; gap: 3rem; }
    .showcase-screens { flex-direction: row; }
    .showcase-screen { flex: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    :root { --section-gap: 4rem; }

    .primary-nav, .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero { padding: 3.5rem 0 3rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; min-height: auto; }
    .hero-visual { order: -1; }
    .hero-screen { transform: none; }
    .hero-badge--1 { left: 0; }
    .hero-badge--2 { right: 0; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    .pain-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .coming-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .showcase-screens { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

/* ==========================================================================
   HOTELS PRODUCT PAGE
   ========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ph-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: var(--cream);
    overflow: hidden;
}

.ph-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(184,150,79,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 5% 20%, rgba(26,34,54,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ph-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.ph-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.ph-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.ph-hero-screen {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
    overflow: hidden;
}

.screen-url {
    flex: 1;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.2rem 0.75rem;
    text-align: center;
}

.ph-hero-screen img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.ph-hero-caption {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ── Trust Bar ────────────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--navy);
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

/* ── Feature Rows ─────────────────────────────────────────────────────────── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-row--reverse .feature-row-content { order: 2; }
.feature-row--reverse .feature-row-visual  { order: 1; }

.feature-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.feature-row-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.feature-row-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.feature-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-detail-list li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.feature-detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.feature-screen {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
}

.feature-screen img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.feature-screen:hover img { transform: scale(1.02); }

/* ── Demo Section ─────────────────────────────────────────────────────────── */
.demo-screens {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.demo-screen-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.demo-screen {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
    background: var(--white);
}

.demo-screen img {
    width: 100%;
    display: block;
    height: 220px;
    object-fit: cover;
    object-position: top;
}

.demo-screen--large img { height: 460px; }

.demo-screen-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.03em;
}

.demo-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.demo-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Two Ways ─────────────────────────────────────────────────────────────── */
.two-ways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.two-way-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.two-way-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.two-way-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.two-way-card--featured:hover {
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.two-way-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.9rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.two-way-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.two-way-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.two-way-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.two-way-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.two-way-list li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.two-way-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
}

.two-way-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.two-way-price strong { color: var(--text-dark); }

.two-way-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* ── Setup Section ────────────────────────────────────────────────────────── */
.setup-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.setup-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.setup-includes h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.setup-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.setup-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.setup-list li svg { flex-shrink: 0; margin-top: 0.15rem; }

.setup-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.setup-price-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.setup-price-note strong { color: var(--text-dark); }

.setup-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.setup-callout {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.setup-callout--light { background: var(--cream-dark); }

.setup-callout-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

.setup-callout h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.setup-callout p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.setup-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gold);
    transition: var(--transition);
}

.setup-link:hover { color: var(--gold-light); }

/* ── Pricing Preview ──────────────────────────────────────────────────────── */
.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto 1.5rem;
}

.pricing-preview-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-preview-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.pricing-preview-card--featured:hover {
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.pp-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.pricing-preview-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.pp-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
}

.pp-amount {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--navy);
    line-height: 1;
}

.pp-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pp-or {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pp-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-preview-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: none;
}

.pricing-preview-note a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-item h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Hotels Page Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ph-hero-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
    .ph-hero-visual   { order: -1; }
    .feature-row      { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
    .feature-row--reverse .feature-row-content { order: 0; }
    .feature-row--reverse .feature-row-visual  { order: 0; }
    .setup-inner      { grid-template-columns: 1fr; gap: 2.5rem; }
    .demo-screens     { grid-template-columns: 1fr; }
    .demo-screen--large img { height: 280px; }
}

@media (max-width: 768px) {
    .trust-items      { gap: 1rem; justify-content: flex-start; }
    .two-ways-grid    { grid-template-columns: 1fr; max-width: 500px; }
    .pricing-preview-grid { grid-template-columns: 1fr; max-width: 380px; }
    .faq-grid         { grid-template-columns: 1fr; }
    .demo-screens     { grid-template-columns: 1fr; }
    .demo-screen-col  { flex-direction: row; }
    .demo-screen img, .demo-screen--large img { height: 180px; }
}

@media (max-width: 480px) {
    .demo-screen-col  { flex-direction: column; }
    .trust-items      { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ==========================================================================
   INNER PAGES — shared styles
   ========================================================================== */

.inner-hero {
    padding: 4.5rem 0 3.5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.inner-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    max-width: 16ch;
}

.inner-hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 58ch;
    line-height: 1.7;
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 3rem;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-toggle.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    background: var(--white);
    transition: var(--transition);
}

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

.pricing-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.pricing-card--featured:hover {
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.pricing-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.pricing-card-header { margin-bottom: 1.5rem; }

.pricing-card-header h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-card-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-card-price { margin-bottom: 1.5rem; }

.price-annual, .price-lifetime {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1;
}

.price-period {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-btn { width: 100%; justify-content: center; margin-bottom: 1.75rem; }

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.pricing-features li {
    font-size: 0.85rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-body);
    line-height: 1.4;
}

.feat-yes::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
}

.feat-no {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.feat-no::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.comparison-table th {
    padding: 0.9rem 1rem;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
    background: var(--white);
}

.comparison-table th:not(:first-child) { text-align: center; }

.comparison-table .col-featured {
    background: rgba(184,150,79,0.06);
    color: var(--gold);
    border-left: 1px solid rgba(184,150,79,0.2);
    border-right: 1px solid rgba(184,150,79,0.2);
}

.comparison-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
}

.comparison-table td:not(:first-child) { text-align: center; }

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td { background: rgba(0,0,0,0.015); }

.table-group td {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--cream-dark) !important;
    padding: 0.6rem 1rem;
}

/* ==========================================================================
   DOCUMENTATION PAGE
   ========================================================================== */

.docs-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.doc-card {
    display: flex;
    gap: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: var(--white);
    transition: var(--transition);
}

.doc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }

.doc-icon { font-size: 2.5rem; flex-shrink: 0; }

.doc-content { flex: 1; }

.doc-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    margin-bottom: 0.65rem;
}

.doc-content h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.doc-content > p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.doc-contents {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.doc-contents li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding-left: 1.1rem;
    position: relative;
}

.doc-contents li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.req-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}

.req-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.req-card h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.req-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.req-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Changelog */
.changelog-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.changelog-entry {
    border-left: 2px solid var(--gold);
    padding-left: 1.75rem;
}

.changelog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.changelog-version {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.changelog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.changelog-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.changelog-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
}

.cl-tag {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
    margin-top: 0.1rem;
}

.cl-new     { background: #dcfce7; color: #166534; }
.cl-fix     { background: #fee2e2; color: #991b1b; }
.cl-improve { background: #dbeafe; color: #1e40af; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-story-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.about-story-content p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-value {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--cream);
    transition: var(--transition);
}

.about-value:hover { border-color: var(--gold); }

.about-value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.about-value h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
}

.about-value p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Big Isle section */
.big-isle-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.big-isle-content p {
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.big-isle-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.bim-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.bim-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bim-products {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.bim-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-body);
}

.bim-product--active { font-weight: 500; color: var(--navy); }

.bim-product-status {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
}

.bim-product-status.available { background: var(--gold-pale); color: var(--gold); }
.bim-product-status.soon      { background: var(--cream-dark); color: var(--text-muted); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-wrap h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.contact-form-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #166534;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row { display: flex; gap: 1rem; }
.form-row--two > * { flex: 1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label span { color: var(--gold); }

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,79,0.12);
}

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

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 88px;
}

.contact-info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.contact-info-card--warm { background: var(--gold-pale); border-color: rgba(184,150,79,0.2); }

.contact-info-card h4 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
    font-family: var(--font-display);
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.contact-email-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.65rem;
    transition: var(--transition);
}

.contact-email-link:hover { color: var(--gold-light); }

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.contact-quick-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-body);
    transition: var(--transition);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-quick-links a:last-child { border-bottom: none; }
.contact-quick-links a:hover { color: var(--gold); }

.contact-aside-note {
    font-size: 0.8rem !important;
    font-style: italic;
    color: rgba(26,34,54,0.55) !important;
}

/* ==========================================================================
   RESPONSIVE — inner pages
   ========================================================================== */

@media (max-width: 1024px) {
    .about-story-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .big-isle-inner    { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .contact-aside     { position: static; }
    .requirements-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2rem; }
}

@media (max-width: 768px) {
    .doc-card          { flex-direction: column; gap: 1rem; }
    .requirements-grid { grid-template-columns: 1fr; }
    .form-row--two     { flex-direction: column; }
    .inner-hero        { padding: 3rem 0 2.5rem; }
}

/* ==========================================================================
   WORDMARK — CSS logo
   ========================================================================== */

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
    line-height: 1;
}

.logo-reserve {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.logo-press {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.03em;
}

/* Footer wordmark */
.footer-logo .logo-reserve { color: var(--white); }
.footer-logo .logo-press   { color: var(--gold); }

/* ==========================================================================
   NAV — active state
   ========================================================================== */

.primary-nav > ul > li > a.active {
    color: var(--gold);
    background: rgba(184,150,79,0.08);
}

/* ==========================================================================
   GRADIENT HERO — shared system for all pages
   ========================================================================== */

/* Base class used by all page heroes */
.grad-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Homepage — full viewport */
.grad-hero--home {
    min-height: 100vh;
    padding: 6rem 0 5rem;
}

/* Inner pages — shorter */
.grad-hero--inner {
    min-height: 42vh;
    padding: 5rem 0 4rem;
}

/* Gradient backgrounds per page — !important to beat specificity */
section.grad-hero--home,
section.grad-hero.grad-hero--home {
    background:
        linear-gradient(155deg,
            #1a2236 0%,
            #1e2d4a 40%,
            #1a3040 70%,
            #1c2e38 100%) !important;
}

section.grad-hero--hotels,
section.grad-hero.grad-hero--hotels {
    background:
        linear-gradient(150deg,
            #1a2236 0%,
            #1e2a42 35%,
            #1a2e48 65%,
            #162840 100%) !important;
}

section.grad-hero--pricing,
section.grad-hero.grad-hero--pricing {
    background:
        linear-gradient(150deg,
            #1a2236 0%,
            #1a2c2e 40%,
            #162820 65%,
            #1a2a22 100%) !important;
}

section.grad-hero--docs,
section.grad-hero.grad-hero--docs {
    background:
        linear-gradient(150deg,
            #1a2236 0%,
            #222236 40%,
            #242030 65%,
            #201e2e 100%) !important;
}

section.grad-hero--about,
section.grad-hero.grad-hero--about {
    background:
        linear-gradient(150deg,
            #1a2236 0%,
            #261e2e 40%,
            #2a1c28 65%,
            #241820 100%) !important;
}

section.grad-hero--contact,
section.grad-hero.grad-hero--contact {
    background:
        linear-gradient(150deg,
            #1a2236 0%,
            #1e2040 40%,
            #1c1e3c 65%,
            #1a1c36 100%) !important;
}

/* Ensure border-bottom from .inner-hero doesn't bleed through */
section.grad-hero {
    border-bottom: none !important;
}

/* Noise/dot texture overlay — subtle */
.grad-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Gold radial glow — top right */
.grad-hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(184,150,79,0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* Hero content sits above overlays */
.grad-hero .container { position: relative; z-index: 2; }

/* Inner hero content layout */
.grad-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.grad-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2.5s ease infinite;
}

.grad-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
    max-width: 22ch;
}

.grad-hero-title strong {
    font-weight: 500;
    color: var(--gold);
}

.grad-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 52ch;
    line-height: 1.7;
    font-weight: 300;
}

/* Gold rule below title */
.grad-hero-rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.2rem 0;
    border-radius: 2px;
}

/* ==========================================================================
   HOMEPAGE HERO — update to use grad system
   ========================================================================== */

.hero {
    background: linear-gradient(155deg,
        #1a2236 0%,
        #1e2d4a 40%,
        #1a3040 70%,
        #1c2e38 100%) !important;
    min-height: 100vh;
}

.hero-bg-gradient {
    background:
        radial-gradient(ellipse 60% 70% at 80% 60%, rgba(184,150,79,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 5% 20%, rgba(255,255,255,0.03) 0%, transparent 50%) !important;
}

.hero-bg-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
}

.hero-title { color: var(--white) !important; }

.hero-subtitle {
    color: rgba(255,255,255,0.7) !important;
}

.hero-note { color: rgba(255,255,255,0.4) !important; }

.hero-eyebrow { color: var(--gold) !important; }

/* ==========================================================================
   HOTELS PAGE HERO — update to grad system
   ========================================================================== */

.ph-hero {
    background: linear-gradient(150deg,
        #1a2236 0%,
        #1e2a42 35%,
        #1a2e48 65%,
        #162840 100%) !important;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.ph-hero-bg {
    background:
        radial-gradient(ellipse 55% 70% at 85% 50%, rgba(184,150,79,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 5% 20%, rgba(255,255,255,0.03) 0%, transparent 50%) !important;
}

/* dot grid on hotels hero */
.ph-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.ph-hero .container,
.ph-hero .ph-hero-inner { position: relative; z-index: 2; }

.ph-hero-title { color: var(--white) !important; }

.ph-hero-subtitle { color: rgba(255,255,255,0.7) !important; }

/* Thicken the feature bar below hotels hero */
.ph-trust-bar {
    border-top: 3px solid var(--gold) !important;
    border-bottom: 3px solid rgba(26,34,54,0.08) !important;
    background: var(--navy) !important;
}

.ph-trust-bar .trust-item {
    color: rgba(255,255,255,0.75) !important;
}

.ph-trust-bar .trust-item svg {
    color: var(--gold) !important;
}

/* ==========================================================================
   RESPONSIVE — grad hero
   ========================================================================== */

@media (max-width: 768px) {
    .grad-hero--inner { min-height: 36vh; padding: 4rem 0 3rem; }
    .grad-hero-title  { font-size: clamp(1.8rem, 5vw, 2.4rem); }
}


/* ==========================================================================
   NAV DROPDOWN — restored with tag styling
   ========================================================================== */

/* Re-enable nav tags */
.nav-tag { display: inline-flex !important; }

.nav-arrow { display: inline-block !important; }

.nav-tag--available {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.45rem;
    border-radius: 2rem;
    background: rgba(184,150,79,0.12);
    color: var(--gold);
    border: 1px solid rgba(184,150,79,0.25);
}

.nav-tag--soon {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.45rem;
    border-radius: 2rem;
    background: var(--cream-dark);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.dropdown li.coming-soon a {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}

/* Products parent link shows active when on Hotels page */
.has-dropdown > a.active {
    color: var(--gold) !important;
    background: rgba(184,150,79,0.08) !important;
}


/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--navy, #1a2236);
    padding: 5rem 0 5rem;
}

.hero-slider .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slider .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 65% 40%, rgba(184,150,79,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(184,150,79,0.05) 0%, transparent 50%);
}

.hero-slider .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Slides */
.hero-slides { position: relative; z-index: 1; }

.hero-slide {
    display: none;
    animation: slide-fadein 0.5s ease;
}
.hero-slide.active { display: block; }

@keyframes slide-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Override light hero colours for the dark slider */
.hero-slider .hero-title    { color: var(--white) !important; }
.hero-slider .hero-subtitle { color: rgba(255,255,255,0.65) !important; }
.hero-slider .hero-note     { color: rgba(255,255,255,0.4) !important; }
.hero-slider .hero-eyebrow  { color: var(--gold) !important; }
.hero-slider .hero-inner    { min-height: 520px; }

/* Screen URL bar */
.hero-slider .screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.3);
}
.hero-slider .screen-url {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    flex: 1;
    text-align: center;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Prev / Next buttons */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-slider-prev { left: 16px; }
.hero-slider-next { right: 16px; }
.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(184,150,79,0.2);
    border-color: rgba(184,150,79,0.5);
    color: #b8964f;
}

/* Dot / label navigation */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.hero-dot:hover {
    background: rgba(184,150,79,0.15);
    border-color: rgba(184,150,79,0.4);
    color: rgba(255,255,255,0.85);
}
.hero-dot.active {
    background: rgba(184,150,79,0.25);
    border-color: #b8964f;
    color: #fff;
}

/* Responsive */
@media (max-width: 820px) {
    .hero-slider-prev { left: 8px; }
    .hero-slider-next { right: 8px; }
    .hero-dots { gap: 6px; bottom: 16px; }
    .hero-dot { padding: 5px 10px; font-size: 0.72rem; }
}

/* ── Theme Lite Section ───────────────────────────────────────────────────── */
.lite-section { }

.lite-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .lite-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.lite-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.lite-how,
.lite-includes {
    margin-bottom: 1.75rem;
}

.lite-how h4,
.lite-includes h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.lite-steps {
    padding-left: 1.25rem;
    margin: 0;
}

.lite-steps li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.lite-steps code {
    font-family: monospace;
    font-size: 0.875rem;
    background: rgba(184,150,79,0.12);
    color: var(--color-gold);
    padding: 1px 5px;
    border-radius: 3px;
}

.lite-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lite-feature-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lite-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
}

.lite-note {
    font-size: 0.875rem;
    color: var(--color-text-muted, #6b7280);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

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

/* Diagram */
.lite-diagram {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.lite-diagram-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted, #6b7280);
    margin-bottom: 0.5rem;
}

.lite-diagram-box {
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lite-diagram-box--main {
    background: #f3f4f6;
    color: #374151;
    border: 1.5px solid #d1d5db;
}

.lite-diagram-box--sub {
    background: #fef3c7;
    color: #92400e;
    border: 1.5px solid #fbbf24;
}

.lite-diagram-platform {
    font-size: 0.8rem;
    color: var(--color-text-muted, #6b7280);
    margin-bottom: 1.25rem;
}

.lite-diagram-arrow {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
    padding: 0.75rem 0;
    margin-bottom: 0.25rem;
}

.lite-diagram-badge {
    display: inline-block;
    margin-top: 1.25rem;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── Lite Callout Bar ─────────────────────────────────────────────────────── */
.lite-callout-bar {
    background: linear-gradient(135deg, #1a2236 0%, #2d3a52 100%);
    padding: 14px 0;
    border-bottom: 1px solid rgba(184,150,79,0.25);
}

.lite-callout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lite-callout-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.lite-callout-text strong {
    color: #ffffff;
    font-weight: 700;
}

.lite-callout-text code {
    font-family: monospace;
    font-size: 0.85rem;
    background: rgba(184,150,79,0.2);
    color: #e8c97a;
    padding: 1px 5px;
    border-radius: 3px;
}

.lite-callout-link {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #b8964f;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(184,150,79,0.4);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.lite-callout-link:hover {
    background: rgba(184,150,79,0.15);
    color: #e8c97a;
}

@media (max-width: 640px) {
    .lite-callout-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ── iCal Sync Diagram ───────────────────────────────────────────────────── */
.feature-screen--ical {
    background: var(--color-bg, #f9f6f0);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.ical-diagram {
    width: 100%;
    text-align: center;
}

.ical-diagram-center {
    background: #1a2236;
    color: #ffffff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    min-width: 200px;
}

.ical-diagram-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b8964f;
    margin-bottom: 2px;
}

.ical-diagram-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.ical-diagram-arrows {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.ical-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
}

.ical-platform-name {
    font-weight: 600;
    color: #1a2236;
    min-width: 120px;
    text-align: left;
}

.ical-arrow {
    color: #b8964f;
    font-size: 1.1rem;
    font-weight: 700;
}

.ical-label {
    font-size: 0.75rem;
    color: #6b7280;
    min-width: 70px;
    text-align: right;
}

.ical-diagram-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

/* ── iCal Callout Band ───────────────────────────────────────────────────── */
.ical-band {
    background: linear-gradient(135deg, #1a2236 0%, #2d3a52 100%);
    padding: 4rem 0;
}

.ical-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 800px) {
    .ical-band-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.ical-band-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.ical-band-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0;
    max-width: 560px;
}

.ical-band-stats {
    display: flex;
    gap: 2.5rem;
    flex-shrink: 0;
}

@media (max-width: 800px) {
    .ical-band-stats {
        justify-content: flex-start;
        gap: 2rem;
    }
}

.ical-stat {
    text-align: center;
}

.ical-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #b8964f;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.ical-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    max-width: 80px;
    margin: 0 auto;
}

/* ── Pricing card enhancements ───────────────────────────────────────────── */
.pricing-card-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-heading, #1a2236);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.pricing-card-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted, #6b7280);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.5;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 0.75rem;
}

/* Lite callout inside Plugin Only card */
.pricing-lite-callout {
    background: #f5f9f5;
    border: 1px solid #c6e0c6;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0.75rem 0;
}

.pricing-lite-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.pricing-lite-callout p {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Setup paths inside Full Package card */
.pricing-setup-paths {
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setup-path {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: #f9f6f0;
    border: 1px solid #e8e0d0;
    border-radius: 7px;
    padding: 9px 12px;
}

.setup-path-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.setup-path div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.setup-path strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a2236;
}

.setup-path span {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESERVEPRESS BOOKING PAGE — new components
   (Feature rows, pricing, trust bar, hero reuse existing classes above)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Hotels vs Booking comparison grid ─────────────────────────────────── */
.rpb-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.rpb-compare-card {
    background: var(--color-surface, #fff);
    border: 1.5px solid var(--color-border, #e5e5e5);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rpb-compare-card--featured {
    border-color: var(--color-accent, #b8964f);
    position: relative;
    padding-top: 2.75rem;
}

.rpb-compare-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent, #b8964f);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.3rem 1rem;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
}

.rpb-compare-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.rpb-compare-tag {
    font-size: 0.875rem;
    color: var(--color-muted, #888);
    margin: 0;
}

.rpb-compare-card .feature-detail-list { margin-bottom: 0.5rem; }
.rpb-compare-card .btn { margin-top: auto; align-self: flex-start; }

/* ── Booking flows grid ─────────────────────────────────────────────────── */
.rpb-flows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.rpb-flow-card {
    background: var(--color-surface, #fff);
    border: 1.5px solid var(--color-border, #e5e5e5);
    border-radius: 12px;
    padding: 2rem;
}

.rpb-flow-card--highlight {
    border-color: var(--color-accent, #b8964f);
    background: var(--color-surface-warm, #fdf9f3);
}

.rpb-flow-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rpb-flow-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.rpb-flow-card p {
    font-size: 0.925rem;
    color: var(--color-muted, #555);
    margin: 0;
    line-height: 1.6;
}

/* ── Full features grid ─────────────────────────────────────────────────── */
.rpb-full-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    margin-top: 2.5rem;
}

.rpb-feat-group h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent, #b8964f);
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.rpb-feat-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rpb-feat-group li {
    font-size: 0.9rem;
    color: var(--color-body, #444);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}

.rpb-feat-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent, #b8964f);
    font-weight: 600;
    font-size: 0.8rem;
    top: 0.1rem;
}

/* ── Feature screen (used in feature rows on booking page) ──────────────── */
.feature-screen {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    background: #1a1a2e;
}

.feature-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .rpb-compare-grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .rpb-flows-grid    { grid-template-columns: 1fr; max-width: 500px; margin: 1.5rem auto 0; }
    .rpb-full-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .rpb-full-features { grid-template-columns: 1fr; }
}
