/* ============================================================
   ValoriaVault — Dark Luxury Theme
   ============================================================ */
:root {
    --bg:        #0b0f14;
    --bg-2:      #0f151c;
    --surface:   #141c26;
    --surface-2: #18222e;
    --border:    #24303d;
    --border-2:  #31404f;

    --gold:        #c9a24b;
    --gold-light:  #e6c66f;
    --gold-dark:   #9a7a30;
    --gold-glow:   rgba(201, 162, 75, 0.35);

    --text:    #eef2f6;
    --muted:   #98a5b2;
    --muted-2: #6f7d8b;

    --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', 'Segoe UI', Arial, sans-serif;

    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

::selection { background: var(--gold); color: #0b0f14; }

/* ---------- Layout ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }

.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-soft { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 34px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
    content: "";
    width: 34px; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.gold-text { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn svg { flex: 0 0 auto; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
    color: #0b0f14;
    box-shadow: 0 10px 28px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 162, 75, 0.45); }

.btn-ghost { border-color: var(--border-2); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn-light { background: #fff; color: #0b0f14; }
.btn-light:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(11, 15, 20, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(9, 12, 17, 0.95);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner { display: flex; align-items: center; gap: 28px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 34px; height: 34px; color: var(--gold); flex: 0 0 auto; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1.5px;
}
.brand-name em { font-style: normal; color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--muted);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold-light); }
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}
.nav-drop-toggle { border: none; background: none; }
.nav-drop-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.caret {
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition);
}

.nav-item { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 8px); left: 50%;
    transform: translate(-50%, 8px);
    min-width: 250px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 60;
}
.dropdown a {
    display: block;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--muted);
    transition: var(--transition);
}
.dropdown a:hover { background: var(--surface-2); color: var(--gold-light); padding-left: 22px; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1; visibility: visible;
    transform: translate(-50%, 0);
}

.nav-cta { padding: 11px 24px; margin-left: 10px; }
.nav-cta.is-current { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-left: auto;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 160px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(1100px 600px at 78% 18%, rgba(201, 162, 75, 0.10), transparent 60%),
        radial-gradient(900px 700px at 10% 90%, rgba(38, 64, 94, 0.30), transparent 60%),
        linear-gradient(180deg, #0b0f14 0%, #0d131a 55%, #0b0f14 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    filter: saturate(0.9) brightness(0.9);
    z-index: 0;
    animation: kenburns 20s ease-out forwards;
}
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 90% 60% at 70% 20%, rgba(201, 162, 75, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(11, 15, 20, 0.52) 0%, rgba(11, 15, 20, 0.60) 35%, rgba(11, 15, 20, 0.88) 100%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, var(--bg));
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy .lead { font-size: 1.18rem; margin-bottom: 40px; max-width: 54ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 34px; }
.hero-trust span {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.88rem; font-weight: 600; color: var(--muted);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; }

/* Hero visual — diamond card */
.hero-visual { position: relative; }
.vault-card {
    position: relative;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 42px 38px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.vault-card::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 70% -10%, rgba(201, 162, 75, 0.12), transparent 60%);
}
.diamond-badge {
    position: relative;
    width: 96px; height: 96px;
    margin: 0 auto 26px;
    color: var(--gold);
    filter: drop-shadow(0 8px 24px var(--gold-glow));
    animation: float 5s ease-in-out infinite;
}
.diamond-badge svg { width: 100%; height: 100%; }
.vault-card h3 { text-align: center; margin-bottom: 8px; font-size: 1.5rem; }
.vault-card .card-sub { text-align: center; color: var(--muted); font-size: 0.92rem; margin-bottom: 30px; }
.vault-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--muted);
}
.vault-list svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }
.vault-list b { color: var(--text); font-weight: 600; margin-left: auto; }

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

.hero-float-badge {
    position: absolute;
    right: -18px; bottom: 34px;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px;
}
.hero-float-badge .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #3ecf8e;
    box-shadow: 0 0 0 4px rgba(62, 207, 142, 0.18);
    animation: pulse 2s infinite;
}
.hero-float-badge b { font-size: 0.95rem; }
.hero-float-badge span { display: block; font-size: 0.78rem; color: var(--muted); }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* ---------- Stats bar ---------- */
.stats-bar {
    position: relative;
    z-index: 3;
    margin-top: -70px;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 34px 30px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat .num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    display: flex; align-items: baseline; justify-content: center;
}
.stat .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 6px; letter-spacing: 0.4px; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.card {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }

.card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.25);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}
.card:hover .card-icon { background: var(--gold); color: #0b0f14; box-shadow: 0 10px 24px var(--gold-glow); }
.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; }

.card-img {
    margin: -34px -30px 26px;
    height: 190px;
    overflow: hidden;
    background: var(--surface);
}
.card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.07); }

.card-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem; font-weight: 700;
    color: var(--gold);
    transition: gap var(--transition);
}
.card-link:hover { gap: 13px; }

/* Feature card (icon top) */
.feature { display: flex; gap: 18px; }
.feature .card-icon { flex: 0 0 auto; margin-bottom: 0; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; counter-increment: step; }
.step .step-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    margin-bottom: 16px;
    opacity: 0.7;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Testimonial ---------- */
.quote-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 42px;
    box-shadow: var(--shadow);
}
.quote-card blockquote {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text);
    margin: 20px 0 30px;
}
.quote-card blockquote::before { content: "\201C"; color: var(--gold); font-size: 3.4rem; line-height: 0; vertical-align: -28px; margin-right: 6px; }
.quote-meta { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 22px; }
.quote-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0b0f14;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    flex: 0 0 auto;
}
.quote-meta b { display: block; }
.quote-meta span { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    background:
        radial-gradient(700px 300px at 80% 20%, rgba(201, 162, 75, 0.16), transparent 60%),
        linear-gradient(150deg, #10161e, #0b0f14);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 64px 56px;
    overflow: hidden;
    text-align: center;
}
.cta-band::before {
    content: "";
    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: 44px 44px;
    pointer-events: none;
}
.cta-band h2 { margin-bottom: 16px; position: relative; }
.cta-band p { color: var(--muted); max-width: 58ch; margin: 0 auto 34px; position: relative; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
    position: relative;
    padding: 200px 0 90px;
    background:
        radial-gradient(900px 400px at 70% 0%, rgba(201, 162, 75, 0.12), transparent 60%),
        linear-gradient(180deg, #0b0f14, #0e141b);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, black, transparent 80%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 860px; }
.page-hero h1 { margin: 8px 0 20px; }
.page-hero .lead { font-size: 1.15rem; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.crumbs a { color: var(--gold); }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { color: var(--muted-2); }

/* ---------- Two-column split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-visual { order: 2; }
.split h2 { margin-bottom: 20px; }
.split .lead { margin-bottom: 26px; }
.split ul.check-list { margin-bottom: 28px; }

.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--muted); }
.check-list svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; margin-top: 4px; }
.check-list b { color: var(--text); }

/* Visual panels */
.panel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-2);
    box-shadow: var(--shadow);
    background:
        radial-gradient(500px 300px at 30% 10%, rgba(201, 162, 75, 0.14), transparent 60%),
        linear-gradient(160deg, var(--surface-2), var(--surface));
    padding: 34px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}
.panel.big { min-height: 420px; }
.panel .panel-inner { position: relative; z-index: 2; }
.panel .panel-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.panel h3 { font-size: 1.6rem; margin-bottom: 6px; }
.panel p { color: var(--muted); font-size: 0.95rem; max-width: 46ch; }
.panel .big-gem {
    position: absolute;
    top: -30px; right: -20px;
    width: 240px; height: 240px;
    color: var(--gold);
    opacity: 0.16;
    transform: rotate(14deg);
}
.panel .big-gem svg { width: 100%; height: 100%; }

/* Photo panel */
.panel-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-2);
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}
.panel-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.panel-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 20, 0.10) 25%, rgba(11, 15, 20, 0.55) 65%, rgba(11, 15, 20, 0.94) 100%);
}
.panel-photo .panel-inner {
    position: relative;
    z-index: 2;
    padding: 34px;
    width: 100%;
}
.panel-photo h3 { font-size: 1.5rem; margin-bottom: 6px; }
.panel-photo p { color: var(--muted); font-size: 0.95rem; max-width: 46ch; }

/* Full-width image band */
.img-band {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    overflow: hidden;
}
.img-band img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.img-band::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.55) 50%, rgba(11, 15, 20, 0.92));
}
.img-band .container { position: relative; z-index: 2; }
.img-band .section-head { margin-bottom: 0; }
.img-band .lead { color: var(--text); opacity: 0.82; }

/* ---------- Pricing / tiers ---------- */
.tier {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier.featured {
    border-color: var(--gold);
    background: linear-gradient(170deg, #1a222d, #10161e);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}
.tier-tag {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b0f14;
    background: var(--gold);
    padding: 5px 12px;
    border-radius: 40px;
    margin-bottom: 18px;
}
.tier h3 { font-size: 1.5rem; margin-bottom: 6px; }
.tier .tier-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.tier .tier-price { font-family: var(--font-head); font-size: 1.9rem; color: var(--gold-light); margin-bottom: 4px; }
.tier .tier-per { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 24px; }
.tier ul { flex: 1; }
.tier ul li { padding: 9px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); color: var(--muted); font-size: 0.93rem; display: flex; gap: 10px; }
.tier ul li:first-child { border-top: none; }
.tier ul svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 4px; }
.tier .btn { margin-top: 28px; width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--surface);
    transition: var(--transition);
}
.faq-item.open { border-color: var(--border-2); }
.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text);
    text-align: left;
}
.faq-q .faq-icon {
    width: 26px; height: 26px; flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; line-height: 1;
    color: var(--gold);
    transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #0b0f14; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; }

/* ---------- Forms ---------- */
.form-wrap {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 40px;
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 700; color: var(--text); letter-spacing: 0.3px; }
.field label .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    transition: var(--transition);
    width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a24b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.field select option { background: var(--surface); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.alert {
    display: flex; gap: 16px; align-items: flex-start;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 28px;
    border: 1px solid;
}
.alert-icon {
    width: 32px; height: 32px; flex: 0 0 auto;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
}
.alert-success { background: rgba(62, 207, 142, 0.08); border-color: rgba(62, 207, 142, 0.4); color: #a7ecc8; }
.alert-success .alert-icon { background: #3ecf8e; color: #0b0f14; }
.alert-error { background: rgba(244, 93, 93, 0.08); border-color: rgba(244, 93, 93, 0.4); color: #f4b0b0; }
.alert-error .alert-icon { background: #f45d5d; color: #0b0f14; }
.alert-body p { margin-top: 3px; font-size: 0.93rem; color: inherit; opacity: 0.85; }

.form-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 18px; display: flex; align-items: center; gap: 8px; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; gap: 18px; }
.contact-card {
    display: flex; gap: 18px; align-items: flex-start;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 26px;
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.contact-card .card-icon { margin-bottom: 0; flex: 0 0 auto; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; }
.contact-card a:hover { color: var(--gold-light); }

/* ---------- Security / partners strip ---------- */
.partner-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 46px;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partner-strip span {
    font-family: var(--font-head);
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: var(--muted-2);
    opacity: 0.8;
}
.partner-strip b { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
    background: #080b0f;
    border-top: 1px solid var(--border);
    padding-top: 72px;
    margin-top: 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 52px;
}
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 18px 0 22px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: var(--muted); font-size: 0.93rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.93rem; }
.footer-contact svg { color: var(--gold); margin-top: 3px; flex: 0 0 auto; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 30px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted-2);
    font-size: 0.84rem;
}
.footer-disclaimer { max-width: 52ch; }

/* ---------- Misc ---------- */
.skip-link {
    position: absolute; top: -60px; left: 16px;
    background: var(--gold); color: #0b0f14;
    padding: 10px 18px; border-radius: 8px; font-weight: 700;
    z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.mt-0 { margin-top: 0; }
.center { text-align: center; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 70px; }
    .hero-visual { max-width: 520px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; gap: 44px; }
    .split.reverse .split-visual { order: 0; }
}

@media (max-width: 860px) {
    .section { padding: 72px 0; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: 78px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(9, 12, 17, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 18px 6vw 26px;
        gap: 6px;
        transform: translateY(-12px);
        opacity: 0; visibility: hidden;
        transition: var(--transition);
        margin-left: 0;
    }
    .site-nav.open { transform: none; opacity: 1; visibility: visible; }
    .nav-link { padding: 13px 8px; font-size: 1rem; }
    .nav-item { display: flex; flex-direction: column; }
    .nav-drop-toggle { justify-content: space-between; width: 100%; }
    .dropdown {
        position: static;
        transform: none;
        opacity: 1; visibility: visible;
        min-width: 0;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 4px 0 8px 14px;
        display: none;
    }
    .nav-item.open .dropdown { display: block; }
    .nav-cta { display: none; }
    .hero { padding-top: 150px; min-height: auto; }
    .stats-bar { margin-top: 40px; }
}

@media (max-width: 620px) {
    .grid-3, .grid-4, .grid-2, .form-grid, .contact-cards { grid-template-columns: 1fr; }
    .hero-float-badge { right: 6px; bottom: 16px; }
    .cta-band { padding: 44px 24px; }
    .form-wrap { padding: 30px 22px; }
    .footer-top { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
}
