*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0A0A0A;
    --black-rich: #111111;
    --black-card: #181818;
    --black-muted: #252525;
    --gold: #C9930A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6B8;
    --gold-dim: #7A5A06;
    --white: #FFFFFF;
    --off-white: #F7F4EE;
    --text-main: #1A1A1A;
    --text-muted: #5C5C5C;
    --border: #E0D5B8;
    --border-dark: #2E2A1F;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* ── HEADER ── */
header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-dark);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    font-weight: 700 !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: .85rem !important;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
}

/* ── HERO ── */
.hero {
    background: var(--black);
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 100px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201, 147, 10, .14) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .4;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 32px;
}

.hero-eyebrow .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.7)
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6.5vw, 4.4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    color: rgba(255, 255, 255, .5);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 42px;
    line-height: 1.75;
}

.hero-sub strong {
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s, color .2s;
}

.btn-outline:hover {
    border-color: var(--gold-dim);
    color: var(--gold-light);
}

.hero-trust {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .35);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.trust-item span {
    color: var(--gold);
    font-size: 1rem;
}

/* ── HOW IT WORKS ── */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-desc {
    color: var(--text-muted);
    font-size: .97rem;
    max-width: 520px;
    margin-bottom: 52px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    transition: border-color .2s, transform .2s;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.step-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.step-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.step-connector {
    display: none;
}

/* ── WHY JOHARCAB ── */
.why-section {
    background: var(--black);
    padding: 80px 24px;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-left .section-title {
    color: var(--white);
}

.why-left .section-desc {
    color: rgba(255, 255, 255, .45);
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feat-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 147, 10, .1);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feat-text h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.feat-text p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.55;
    margin: 0;
}

/* Stat cards on right */
.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
}

.stat-card .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.stat-card.wide {
    grid-column: 1/-1;
}

.stat-card.wide .stat-num {
    font-size: 3rem;
}

/* ── APP DOWNLOAD ── */
.app-section {
    padding: 80px 24px;
    background: var(--off-white);
}

.app-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 60px 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.app-bg-glow {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 147, 10, .1) 0%, transparent 70%);
    pointer-events: none;
}

.app-content .section-label {
    margin-bottom: 14px;
}

.app-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.app-content h2 em {
    color: var(--gold);
    font-style: italic;
}

.app-content p {
    color: rgba(255, 255, 255, .45);
    font-size: .95rem;
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.app-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 22px;
    text-decoration: none;
    color: var(--white);
    transition: border-color .2s, background .2s;
}

.app-badge:hover {
    border-color: var(--gold-dim);
    background: rgba(201, 147, 10, .08);
}

.app-badge .badge-icon {
    font-size: 1.8rem;
}

.badge-text .badge-top {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
}

.badge-text .badge-store {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.app-phone {
    position: relative;
    flex-shrink: 0;
}

.phone-mockup {
    width: 200px;
    height: 360px;
    background: var(--black-card);
    border: 2px solid var(--border-dark);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 147, 10, .1);
    position: relative;
}

.phone-notch {
    width: 80px;
    height: 22px;
    background: var(--black);
    border-radius: 0 0 14px 14px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.phone-screen {
    width: 100%;
    padding: 0 14px;
    flex: 1;
}

.phone-app-bar {
    background: var(--gold);
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-app-bar .p-logo {
    font-family: 'Playfair Display', serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--black);
}

.phone-status {
    font-size: .6rem;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.phone-card {
    background: var(--black-muted);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
}

.phone-card-title {
    font-size: .58rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.phone-card-val {
    font-size: .78rem;
    color: var(--white);
    font-weight: 600;
}

.phone-btn {
    background: var(--gold);
    border-radius: 8px;
    padding: 9px;
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 4px;
}

/* ── AREAS ── */
.areas-section {
    padding: 80px 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.areas-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.areas-inner .section-desc {
    margin: 0 auto 40px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-pill {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 9px 22px;
    font-size: .88rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: border-color .2s, color .2s, background .2s;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold-dim);
    background: var(--gold-pale);
}

.area-pill .area-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border-dark);
    padding: 48px 24px 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo {
    margin-bottom: 14px;
    display: inline-flex;
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7;
    /* max-width: 260px; */
}

.footer-col h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: .87rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
}

.footer-bottom strong {
    color: rgba(255, 255, 255, .6);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width:900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 28px;
    }

    .app-content p {
        margin: 0 auto 28px;
    }

    .app-badges {
        justify-content: center;
    }

    .app-phone {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1/-1;
    }
}

@media (max-width:600px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 75vh;
        padding: 60px 20px 80px;
    }

    .section {
        padding: 60px 20px;
    }

    .app-inner {
        padding: 36px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0A0A0A;
    --black-rich: #111111;
    --black-card: #181818;
    --black-muted: #252525;
    --gold: #C9930A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6B8;
    --gold-dim: #7A5A06;
    --white: #FFFFFF;
    --off-white: #F7F4EE;
    --text-main: #1A1A1A;
    --text-muted: #5C5C5C;
    --border: #E0D5B8;
    --border-dark: #2E2A1F;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gold-dim);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.header-badge {
    background: transparent;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--gold-dim);
}

.hero {
    background: var(--black);
    padding: 80px 24px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-dim);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 147, 10, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    position: relative;
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 36px;
}

.hero-meta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(201, 147, 10, .07);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 12px 28px;
    color: rgba(255, 255, 255, .7);
    font-size: .84rem;
}

.hero-meta strong {
    color: var(--gold-light);
}

.hero-meta-divider {
    width: 1px;
    height: 18px;
    background: var(--gold-dim);
}

/* Booking-only badge in hero */
.hero-model-badge {
    position: relative;
    display: inline-block;
    background: rgba(201, 147, 10, .10);
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px 80px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}

.toc {
    position: sticky;
    top: 80px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 24px;
}

.toc-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.toc a {
    display: block;
    font-size: .84rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
    transition: all .2s;
}

.toc a:hover {
    background: rgba(201, 147, 10, .08);
    color: var(--gold-light);
    border-left-color: var(--gold);
}

.compliance-banner {
    background: rgba(201, 147, 10, .06);
    border: 1px solid var(--gold-dim);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.compliance-banner .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.compliance-banner p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.compliance-banner strong {
    color: var(--gold-dim);
}

/* Scope notice — green tinted */
.scope-notice {
    background: #F0FFF4;
    border: 1px solid #A8D5B5;
    border-left: 3px solid #2D8A50;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.scope-notice .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.scope-notice p {
    font-size: .88rem;
    color: #1A4731;
    line-height: 1.55;
}

.scope-notice strong {
    color: #145228;
}

.policy-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.section-icon {
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--border-dark);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.policy-section h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gold-dim);
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.policy-section h3:first-of-type {
    margin-top: 0;
}

.policy-section p {
    color: #3A3A3A;
    font-size: .93rem;
    margin-bottom: 12px;
}

.policy-section a {
    color: var(--gold-dim);
}

.policy-section ul {
    list-style: none;
    margin: 8px 0 16px;
}

.policy-section ul li {
    font-size: .93rem;
    color: #3A3A3A;
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid #F0EBD8;
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 16px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.policy-section ul li strong {
    color: var(--black);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem;
    margin: 14px 0 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.data-table th {
    background: var(--black);
    color: var(--gold-light);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: #3A3A3A;
    vertical-align: top;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:nth-child(even) td {
    background: #FAF6EC;
}

.tag-no {
    background: #FFF0F0;
    color: #B00000;
    font-size: .75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #F5BABA;
}

.tag-yes {
    background: #F0FFF4;
    color: #145228;
    font-size: .75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #A8D5B5;
}

.tag-auto {
    background: #FFFBF0;
    color: #7A5A06;
    font-size: .75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #E0C97A;
}

.highlight-box {
    background: #FFFBF0;
    border: 1px solid #E0C97A;
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: .9rem;
    color: var(--gold-dim);
}

.highlight-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
}

.not-applicable-box {
    background: #F8F8F8;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: .88rem;
    color: #777;
    font-style: italic;
}

.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.right-card {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 16px;
}

.right-card .right-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.right-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.right-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

.contact-card {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--gold);
    border-radius: 14px;
    padding: 40px 32px;
    color: var(--white);
    text-align: center;
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-card p {
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
    font-size: .93rem;
}

.contact-methods {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    background: rgba(201, 147, 10, .08);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 13px 22px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.contact-method:hover {
    background: rgba(201, 147, 10, .18);
}

footer {
    background: var(--black);
    color: rgba(255, 255, 255, .35);
    text-align: center;
    padding: 28px 24px;
    font-size: .82rem;
    border-top: 1px solid var(--border-dark);
}

footer strong {
    color: rgba(255, 255, 255, .7);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

@media (max-width:768px) {
    .page-wrap {
        grid-template-columns: 1fr;
        padding-top: 32px;
    }

    .toc {
        display: none;
    }

    .policy-section {
        padding: 24px 20px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 52px 20px 60px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-meta-divider {
        display: none;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0A0A0A;
    --black-rich: #111111;
    --black-card: #181818;
    --black-muted: #252525;
    --gold: #C9930A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6B8;
    --gold-dim: #7A5A06;
    --white: #FFFFFF;
    --off-white: #F7F4EE;
    --text-main: #1A1A1A;
    --text-muted: #5C5C5C;
    --border: #E0D5B8;
    --border-dark: #2E2A1F;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gold-dim);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.header-badge {
    background: transparent;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--gold-dim);
}

.hero {
    background: var(--black);
    padding: 80px 24px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-dim);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 147, 10, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    position: relative;
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 36px;
}

.hero-meta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(201, 147, 10, .07);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 12px 28px;
    color: rgba(255, 255, 255, .7);
    font-size: .84rem;
}

.hero-meta strong {
    color: var(--gold-light);
}

.hero-meta-divider {
    width: 1px;
    height: 18px;
    background: var(--gold-dim);
}

.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px 80px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}

.toc {
    position: sticky;
    top: 80px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 24px;
}

.toc-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.toc a {
    display: block;
    font-size: .84rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
    transition: all .2s;
}

.toc a:hover {
    background: rgba(201, 147, 10, .08);
    color: var(--gold-light);
    border-left-color: var(--gold);
}

.compliance-banner {
    background: rgba(201, 147, 10, .06);
    border: 1px solid var(--gold-dim);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.compliance-banner .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.compliance-banner p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.compliance-banner strong {
    color: var(--gold-dim);
}

.scope-notice {
    background: #F0FFF4;
    border: 1px solid #A8D5B5;
    border-left: 3px solid #2D8A50;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.scope-notice .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.scope-notice p {
    font-size: .88rem;
    color: #1A4731;
    line-height: 1.55;
}

.scope-notice strong {
    color: #145228;
}

.policy-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.section-icon {
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--border-dark);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.policy-section h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gold-dim);
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.policy-section h3:first-of-type {
    margin-top: 0;
}

.policy-section p {
    color: #3A3A3A;
    font-size: .93rem;
    margin-bottom: 12px;
}

.policy-section a {
    color: var(--gold-dim);
}

.policy-section ul {
    list-style: none;
    margin: 8px 0 16px;
}

.policy-section ul li {
    font-size: .93rem;
    color: #3A3A3A;
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid #F0EBD8;
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 16px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.policy-section ul li strong {
    color: var(--black);
}

.highlight-box {
    background: #FFFBF0;
    border: 1px solid #E0C97A;
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: .9rem;
    color: var(--gold-dim);
}

.highlight-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
}

.warning-box {
    background: #FFF5F5;
    border: 1px solid #F5BABA;
    border-left: 3px solid #B00000;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: .9rem;
    color: #7A0000;
}

.warning-box strong {
    display: block;
    margin-bottom: 4px;
    color: #B00000;
}

/* Refund status cards */
.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}

.status-card {
    border-radius: 10px;
    padding: 18px 20px;
}

.status-card.no-refund {
    background: #FFF0F0;
    border: 1px solid #F5BABA;
}

.status-card.contact-driver {
    background: #FFFBF0;
    border: 1px solid #E0C97A;
}

.status-card .status-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.status-card h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.status-card.no-refund h4 {
    color: #B00000;
}

.status-card.contact-driver h4 {
    color: #7A5A06;
}

.status-card p {
    font-size: .82rem;
    color: #4A4A4A;
    margin: 0;
    line-height: 1.5;
}

.contact-card {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--gold);
    border-radius: 14px;
    padding: 40px 32px;
    color: var(--white);
    text-align: center;
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-card p {
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
    font-size: .93rem;
}

.contact-methods {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    background: rgba(201, 147, 10, .08);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 13px 22px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.contact-method:hover {
    background: rgba(201, 147, 10, .18);
}

footer {
    background: var(--black);
    color: rgba(255, 255, 255, .35);
    text-align: center;
    padding: 28px 24px;
    font-size: .82rem;
    border-top: 1px solid var(--border-dark);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer strong {
    color: rgba(255, 255, 255, .7);
}

@media (max-width:768px) {
    .page-wrap {
        grid-template-columns: 1fr;
        padding-top: 32px;
    }

    .toc {
        display: none;
    }

    .policy-section {
        padding: 24px 20px;
    }

    .hero {
        padding: 52px 20px 60px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-meta-divider {
        display: none;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0A0A0A;
    --black-rich: #111111;
    --black-card: #181818;
    --black-muted: #252525;
    --gold: #C9930A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6B8;
    --gold-dim: #7A5A06;
    --white: #FFFFFF;
    --off-white: #F7F4EE;
    --text-main: #1A1A1A;
    --text-muted: #5C5C5C;
    --border: #E0D5B8;
    --border-dark: #2E2A1F;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gold-dim);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.header-badge {
    background: transparent;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--gold-dim);
}

.hero {
    background: var(--black);
    padding: 80px 24px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-dim);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 147, 10, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    position: relative;
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 36px;
}

.hero-meta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(201, 147, 10, .07);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 12px 28px;
    color: rgba(255, 255, 255, .7);
    font-size: .84rem;
}

.hero-meta strong {
    color: var(--gold-light);
}

.hero-meta-divider {
    width: 1px;
    height: 18px;
    background: var(--gold-dim);
}

.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px 80px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}

.toc {
    position: sticky;
    top: 80px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 24px;
}

.toc-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.toc a {
    display: block;
    font-size: .84rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
    transition: all .2s;
}

.toc a:hover {
    background: rgba(201, 147, 10, .08);
    color: var(--gold-light);
    border-left-color: var(--gold);
}

.compliance-banner {
    background: rgba(201, 147, 10, .06);
    border: 1px solid var(--gold-dim);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.compliance-banner .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.compliance-banner p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.compliance-banner strong {
    color: var(--gold-dim);
}

.scope-notice {
    background: #F0FFF4;
    border: 1px solid #A8D5B5;
    border-left: 3px solid #2D8A50;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.scope-notice .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.scope-notice p {
    font-size: .88rem;
    color: #1A4731;
    line-height: 1.55;
}

.scope-notice strong {
    color: #145228;
}

.policy-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.section-icon {
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--border-dark);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.policy-section h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gold-dim);
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.policy-section h3:first-of-type {
    margin-top: 0;
}

.policy-section p {
    color: #3A3A3A;
    font-size: .93rem;
    margin-bottom: 12px;
}

.policy-section a {
    color: var(--gold-dim);
}

.policy-section ul {
    list-style: none;
    margin: 8px 0 16px;
}

.policy-section ul li {
    font-size: .93rem;
    color: #3A3A3A;
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid #F0EBD8;
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 16px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.policy-section ul li strong {
    color: var(--black);
}

.highlight-box {
    background: #FFFBF0;
    border: 1px solid #E0C97A;
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: .9rem;
    color: var(--gold-dim);
}

.highlight-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
}

.warning-box {
    background: #FFF5F5;
    border: 1px solid #F5BABA;
    border-left: 3px solid #B00000;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: .9rem;
    color: #7A0000;
}

.warning-box strong {
    display: block;
    margin-bottom: 4px;
    color: #B00000;
}

.contact-card {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--gold);
    border-radius: 14px;
    padding: 40px 32px;
    color: var(--white);
    text-align: center;
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-card p {
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
    font-size: .93rem;
}

.contact-methods {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    background: rgba(201, 147, 10, .08);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 13px 22px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.contact-method:hover {
    background: rgba(201, 147, 10, .18);
}

footer {
    background: var(--black);
    color: rgba(255, 255, 255, .35);
    text-align: center;
    padding: 28px 24px;
    font-size: .82rem;
    border-top: 1px solid var(--border-dark);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer strong {
    color: rgba(255, 255, 255, .7);
}

@media (max-width:768px) {
    .page-wrap {
        grid-template-columns: 1fr;
        padding-top: 32px;
    }

    .toc {
        display: none;
    }

    .policy-section {
        padding: 24px 20px;
    }

    .hero {
        padding: 52px 20px 60px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-meta-divider {
        display: none;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0A0A0A;
    --black-rich: #111111;
    --black-card: #181818;
    --black-muted: #252525;
    --gold: #C9930A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6B8;
    --gold-dim: #7A5A06;
    --white: #FFFFFF;
    --off-white: #F7F4EE;
    --text-main: #1A1A1A;
    --text-muted: #5C5C5C;
    --border: #E0D5B8;
    --border-dark: #2E2A1F;
    --red: #B00000;
    --red-light: #FFF0F0;
    --red-border: #F5BABA;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gold-dim);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.header-badge {
    background: transparent;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--gold-dim);
}

.hero {
    background: var(--black);
    padding: 72px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-dim);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 147, 10, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    position: relative;
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

.page-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 52px 24px 80px;
}

/* Info cards */
.info-banner {
    background: rgba(201, 147, 10, .06);
    border: 1px solid var(--gold-dim);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-banner .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-banner p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.info-banner strong {
    color: var(--gold-dim);
}

.warning-banner {
    background: var(--red-light);
    border: 1px solid var(--red-border);
    border-left: 3px solid var(--red);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.warning-banner .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warning-banner p {
    font-size: .88rem;
    color: #7A0000;
    line-height: 1.55;
}

.warning-banner strong {
    color: var(--red);
}

/* What gets deleted */
.deletion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0 28px;
}

.del-card {
    border-radius: 10px;
    padding: 16px 18px;
}

.del-card.deleted {
    background: #FFF0F0;
    border: 1px solid #F5BABA;
}

.del-card.retained {
    background: #FFFBF0;
    border: 1px solid #E0C97A;
}

.del-card .del-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.del-card h4 {
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.del-card.deleted h4 {
    color: var(--red);
}

.del-card.retained h4 {
    color: var(--gold-dim);
}

.del-card ul {
    list-style: none;
}

.del-card ul li {
    font-size: .83rem;
    color: #4A4A4A;
    padding: 4px 0 4px 18px;
    position: relative;
}

.del-card ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.del-card.deleted ul li::before {
    background: var(--red);
}

.del-card.retained ul li::before {
    background: var(--gold);
}

/* Form card */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 24px;
}

.form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.form-card .form-desc {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.form-group label .req {
    color: var(--red);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .92rem;
    color: var(--text-main);
    background: var(--off-white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 147, 10, .1);
}

.form-group textarea {
    min-height: 100px;
}

.form-group .hint {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    font-size: .88rem;
    color: #3A3A3A;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--gold-dim);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: background .2s, transform .1s;
    margin-top: 6px;
}

.submit-btn:hover {
    background: #8B0000;
}

.submit-btn:active {
    transform: scale(.99);
}

.submit-btn:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
}

/* Success state */
.success-card {
    display: none;
    background: var(--white);
    border: 1px solid #A8D5B5;
    border-top: 4px solid #2D8A50;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 24px;
}

.success-card .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.success-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #145228;
    margin-bottom: 10px;
}

.success-card p {
    font-size: .93rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 8px;
}

.success-card .ref-num {
    background: #F0FFF4;
    border: 1px solid #A8D5B5;
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
    margin: 16px auto 0;
    font-size: .88rem;
    color: #145228;
    font-weight: 600;
}

/* Timeline */
.timeline {
    margin: 20px 0;
}

.timeline-step {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.timeline-num {
    width: 30px;
    height: 30px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-content h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.timeline-content p {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-alt {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 28px 32px;
    text-align: center;
    margin-top: 24px;
}

.contact-alt p {
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    margin-bottom: 14px;
}

.contact-methods {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    background: rgba(201, 147, 10, .08);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 11px 20px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: .86rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.contact-method:hover {
    background: rgba(201, 147, 10, .18);
}

footer {
    background: var(--black);
    color: rgba(255, 255, 255, .35);
    text-align: center;
    padding: 28px 24px;
    font-size: .82rem;
    border-top: 1px solid var(--border-dark);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer strong {
    color: rgba(255, 255, 255, .7);
}

@media (max-width:620px) {
    .form-card {
        padding: 24px 20px;
    }

    .deletion-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 52px 20px 60px;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
    }
}