@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/manrope-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/manrope-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   SecureAgain - modern design system
   Static, lightweight, fast. No build step.
   ============================================================ */

:root {
    --bg: #0a1524;
    --bg-2: #0e1e33;
    --surface: #13273f;
    --surface-2: #19314c;
    --border: rgba(255, 255, 255, 0.10);
    --border-gold: rgba(240, 211, 107, 0.32);
    --text: #e9eef6;
    --muted: #a4b4c8;
    --gold: #f0d36b;
    --gold-2: #d9b94e;
    --gold-soft: rgba(240, 211, 107, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
    --maxw: 1120px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    background-image:
        radial-gradient(900px 520px at 85% -5%, rgba(240, 211, 107, 0.10), transparent 60%),
        radial-gradient(820px 560px at 5% 0%, rgba(56, 110, 190, 0.20), transparent 58%);
    background-attachment: fixed;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}
h2, h3 {
    color: var(--gold);
    margin-bottom: 10px;
}
p, li {
    line-height: 1.7;
    margin-bottom: 15px;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--gold);
}

.grad-text {
    background: linear-gradient(100deg, #ffe9a6 0%, var(--gold) 45%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

/* ---------- Header ---------- */
header {
    position: relative;
    background:
        radial-gradient(600px 220px at 50% -40%, rgba(240, 211, 107, 0.18), transparent 70%),
        linear-gradient(180deg, #081320 0%, #0b1a2c 100%);
    padding: 34px 20px 26px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
}
.brand:hover {
    color: var(--gold);
}
.brand-mark {
    width: 56px;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(240, 211, 107, 0.22));
}
.brand-name {
    font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.25;
    padding-bottom: 0.12em;
    background: linear-gradient(100deg, #ffe9a6 0%, var(--gold) 55%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
header p {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ---------- Primary navigation (glass) ---------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    padding: 12px 16px;
    background: rgba(9, 20, 34, 0.74);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--border);
}
.site-nav a {
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-nav a:hover, .site-nav a:focus {
    color: var(--gold);
    background: var(--gold-soft);
}

/* Nav dropdown groups */
.nav-group {
    position: relative;
}
.nav-group-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    cursor: default;
    user-select: none;
}
.nav-group-label::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.55;
    margin-top: 2px;
}
.nav-group:hover .nav-group-label,
.nav-group:focus-within .nav-group-label {
    color: var(--gold);
    background: var(--gold-soft);
}
.nav-group-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    padding: 10px 8px 8px;
    background: rgba(9, 20, 34, 0.96);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    gap: 2px;
    z-index: 200;
}
/* Invisible bridge so the menu stays open while moving the mouse down */
.nav-group-panel::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.nav-group:hover .nav-group-panel,
.nav-group:focus-within .nav-group-panel {
    display: flex;
}
.nav-group-panel a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    text-align: left;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg {
    width: 20px;
    height: 20px;
}
.btn-primary {
    background: linear-gradient(135deg, #ffe39a 0%, var(--gold) 55%, var(--gold-2) 100%);
    color: #1a1400;
    box-shadow: 0 10px 24px rgba(240, 211, 107, 0.28);
}
.btn-primary:hover {
    color: #1a1400;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(240, 211, 107, 0.38);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
    border: 1.5px solid var(--border-gold);
}
.btn-secondary:hover {
    background: var(--gold-soft);
    color: var(--gold);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* ---------- Sections ---------- */
section {
    padding: 30px 20px;
    max-width: var(--maxw);
    margin: auto;
    scroll-margin-top: 84px;
}
.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.section-head h2 {
    font-size: clamp(1.7rem, 1rem + 2.4vw, 2.5rem);
    margin: 0 0 10px;
}
.section-intro {
    color: var(--muted);
    font-size: 1.12rem;
    margin: 0;
    max-width: 720px;
}
.section-intro a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.section-intro a:hover {
    color: #ffffff;
}

/* ---------- Hero ---------- */
.hero {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: clamp(48px, 6vw, 92px) 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.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: 46px 46px;
    mask-image: radial-gradient(70% 70% at 50% 35%, #000 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(70% 70% at 50% 35%, #000 0%, transparent 100%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.hero-content {
    max-width: 620px;
}
.hero h1 {
    font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.4rem);
    font-weight: 800;
    margin: 18px 0 20px;
}
.hero-sub {
    color: #d3d3dd;
    font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem);
    line-height: 1.65;
    margin: 0 0 32px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-trust svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}
.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-art svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(240, 211, 107, 0.16));
}

/* ---------- Audience lanes (homepage) ---------- */
.audience-lanes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0 auto 56px;
    max-width: var(--max-width);
    padding: 0 var(--page-pad);
}
.audience-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 24px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.audience-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.audience-card strong {
    font-size: 1.2rem;
    color: var(--gold);
}
.audience-card span {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}
.local-note {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}
.local-note strong {
    color: var(--text);
}
.contact-details {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}
.contact-details a {
    color: var(--gold);
    text-decoration: none;
}
.contact-details a:hover {
    text-decoration: underline;
}
.form-warning {
    margin: 0 0 18px;
    padding: 14px 18px;
    background: rgba(240, 211, 107, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}
.form-warning strong {
    color: var(--gold);
}
.what-you-get {
    margin-top: 8px;
}
@media (max-width: 900px) {
    .audience-lanes {
        grid-template-columns: 1fr;
    }
}

/* ---------- Service groups + cards ---------- */
.service-group {
    margin-bottom: 42px;
}
.group-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.group-title {
    color: var(--gold);
    font-size: 1.4rem;
    margin: 0;
}
.group-note {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0 0 20px;
    max-width: 760px;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.service-card {
    position: relative;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    padding: 26px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
    overflow: hidden;
}
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--border-gold), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.28s var(--ease);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
    border-color: var(--border-gold);
}
.service-card:hover::after {
    opacity: 1;
}
.service-card .card-link {
    display: block;
    color: inherit;
}
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    margin-bottom: 16px;
}
.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}
.service-card h4 {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
}
.service-card p {
    color: var(--muted);
    margin-bottom: 14px;
}
.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
}
.card-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s var(--ease);
}
.service-card:hover .card-arrow svg {
    transform: translateX(4px);
}

/* ---------- Digital Legacy feature ---------- */
.legacy-feature {
    max-width: var(--maxw);
    margin: 20px auto 30px;
    padding: clamp(28px, 4vw, 48px);
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(240, 211, 107, 0.16), transparent 60%),
        linear-gradient(135deg, #1c2740 0%, #13273f 65%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.legacy-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}
.legacy-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #1a1400;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}
.legacy-feature h2 {
    margin-top: 0;
    font-size: clamp(1.6rem, 1rem + 2vw, 2.2rem);
}
.legacy-feature p {
    font-size: 1.12rem;
    color: #ddd6c2;
    max-width: 640px;
}
.legacy-feature--lead {
    margin: clamp(36px, 5vw, 52px) auto clamp(28px, 4vw, 40px);
    scroll-margin-top: 90px;
}
.legacy-hook {
    font-size: clamp(1.08rem, 0.95rem + 0.5vw, 1.2rem);
    color: var(--text);
    line-height: 1.65;
    font-weight: 500;
}
.legacy-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}
.legacy-art {
    display: flex;
    justify-content: center;
}
.legacy-art svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    color: var(--gold);
    filter: drop-shadow(0 14px 30px rgba(240, 211, 107, 0.2));
}

/* ---------- How it works ---------- */
.how-it-works .section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 640px;
}
.how-it-works .eyebrow {
    margin-left: auto;
    margin-right: auto;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 10px;
}
.step {
    position: relative;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform 0.28s var(--ease), border-color 0.28s var(--ease);
}
.step:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
}
.step-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe39a, var(--gold-2));
    color: #1a1400;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}
.step-icon {
    color: var(--gold);
}
.step-icon svg {
    width: 28px;
    height: 28px;
}
.step h3 {
    color: var(--text);
    margin: 0 0 8px;
    font-size: 1.2rem;
}
.step p {
    margin-bottom: 0;
    color: var(--muted);
}

/* ---------- Trust / stats ---------- */
.trust {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: var(--maxw);
    margin: 20px auto 30px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-soft);
}
.trust h2 {
    margin-top: 0;
}
.trust p {
    color: var(--muted);
    max-width: 760px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 18px;
}
.stat svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
    flex-shrink: 0;
}
.stat strong {
    display: block;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.3;
}
.stat span {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ---------- Contact form ---------- */
#contact {
    max-width: 760px;
}
.contact-reassurance {
    margin-bottom: 22px;
}
.contact-reassurance p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
}
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}
input, textarea, select {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
select {
    cursor: pointer;
}
select option {
    color: #111;
    background: #fff;
}
input::placeholder, textarea::placeholder {
    color: #8a8a96;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}
button {
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #ffe39a 0%, var(--gold) 55%, var(--gold-2) 100%);
    color: #1a1400;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(240, 211, 107, 0.32);
}
.form-privacy-note {
    margin-top: 14px;
    font-size: 0.92rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
}
.form-privacy-note a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.form-privacy-note a:hover {
    color: #ffffff;
}

/* ---------- Back / inline buttons ---------- */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
    border: 1.5px solid var(--border-gold);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.back-btn:hover {
    background: var(--gold-soft);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 22px;
}
.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ---------- FAQ (why-digital-legacy-matters) ---------- */
.faq-group {
    margin-bottom: 28px;
}
.faq-question {
    width: 100%;
    text-align: left;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    outline: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    margin-bottom: 6px;
}
.faq-question .faq-arrow {
    color: var(--gold);
    margin-right: 10px;
}
.faq-question.active,
.faq-question[aria-expanded="true"] {
    color: var(--gold);
    background: var(--surface-2);
}
.faq-question:hover, .faq-question:focus {
    background: var(--surface-2);
    color: var(--gold);
}
.faq-answer {
    display: none;
    background: var(--bg-2);
    color: var(--muted);
    padding: 16px 22px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    margin-bottom: 10px;
    border-left: 3px solid var(--gold);
}

/* ---------- Footer ---------- */
footer {
    margin-top: auto;
    text-align: center;
    padding: 30px 20px 34px;
    background: linear-gradient(180deg, #0b1a2c 0%, #081320 100%);
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--muted);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.footer-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}
footer a {
    color: var(--gold);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* ---------- Scroll reveal (progressive enhancement) ---------- */
.reveal-on .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-on .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        max-width: 640px;
        margin: 0 auto;
    }
    .hero-cta, .hero-trust {
        justify-content: center;
    }
    .hero-art {
        order: -1;
    }
    .hero-art svg {
        max-width: 300px;
    }
    .legacy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .legacy-tag, .legacy-cta {
        justify-content: center;
    }
    .legacy-art {
        order: -1;
    }
}
@media (max-width: 600px) {
    .hero-cta .btn,
    .legacy-cta .btn {
        width: 100%;
    }
    .site-nav {
        gap: 2px 4px;
    }
    .site-nav a {
        font-size: 0.9rem;
        padding: 7px 11px;
    }
}

/* ---------- Inner page hero ---------- */
.page-hero {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: clamp(34px, 4vw, 62px) 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(720px 320px at 82% -25%, rgba(240, 211, 107, 0.12), transparent 62%);
}
.page-hero-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
}
.page-hero .breadcrumb {
    margin-bottom: 12px;
}
.page-hero h1 {
    font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.9rem);
    font-weight: 800;
    margin: 14px 0 16px;
}
.lead {
    color: #d3d3dd;
    font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
    line-height: 1.7;
    margin: 0 0 26px;
    max-width: 660px;
}
.page-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.page-hero-art {
    display: flex;
    justify-content: center;
}
.page-hero-art svg {
    width: 100%;
    max-width: 270px;
    height: auto;
    color: var(--gold);
    filter: drop-shadow(0 16px 40px rgba(240, 211, 107, 0.16));
}

/* ---------- Icon check-list ---------- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 14px;
}
.check-list.single {
    grid-template-columns: 1fr;
    max-width: 780px;
}
.check-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin: 0;
    color: var(--text);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.check-list li:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}
.check-list li svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.check-list li strong {
    color: var(--text);
}
.check-list li .ci-text span {
    color: var(--muted);
    display: block;
    font-size: 0.96rem;
}

/* ---------- Callout / note box ---------- */
.note-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    margin: 0;
}
.note-box h3 {
    margin-top: 0;
    color: var(--text);
}
.note-box p {
    margin-bottom: 0;
    color: var(--muted);
}

/* Content section spacing helpers */
.content-section {
    margin-bottom: 8px;
}
.content-section h2 {
    font-size: clamp(1.5rem, 1rem + 1.6vw, 2rem);
}

@media (max-width: 860px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-hero .breadcrumb {
        text-align: left;
    }
    .page-hero-cta {
        justify-content: center;
    }
    .page-hero-art {
        order: -1;
    }
    .page-hero-art svg {
        max-width: 200px;
    }
}

/* ---------- Mobile menu (CSS-only hamburger) ---------- */
.nav-toggle-cb {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
}
.nav-toggle svg {
    width: 24px;
    height: 24px;
}
.nav-toggle .icon-close {
    display: none;
}
.nav-toggle-cb:focus-visible + .nav-toggle {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
}

@media (max-width: 720px) {
    .site-nav {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 0;
        padding: 10px 16px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-top: 10px;
    }
    .nav-links a {
        padding: 13px 16px;
        border-radius: 12px;
        font-size: 1.05rem;
        background: rgba(255, 255, 255, 0.03);
    }
    .nav-group {
        width: 100%;
    }
    .nav-group-label {
        width: 100%;
        padding: 10px 16px 6px;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--muted);
        background: transparent;
    }
    .nav-group-label::after {
        display: none;
    }
    .nav-group:hover .nav-group-label,
    .nav-group:focus-within .nav-group-label {
        color: var(--muted);
        background: transparent;
    }
    .nav-group-panel {
        display: flex;
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        padding: 0 0 6px;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        gap: 4px;
    }
    .nav-group-panel::before {
        display: none;
    }
    .nav-group-panel a {
        padding: 11px 16px 11px 24px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.03);
        white-space: normal;
    }
    .nav-toggle-cb:checked ~ .nav-links {
        display: flex;
    }
    .nav-toggle-cb:checked + .nav-toggle .icon-open {
        display: none;
    }
    .nav-toggle-cb:checked + .nav-toggle .icon-close {
        display: inline;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation: none !important;
        transition: none !important;
    }
    .reveal-on .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- Pricing ---------- */
.price-from,
.card-price {
    display: inline-block;
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
}
.price-from {
    margin-bottom: 14px;
}
.price-from-note {
    font-size: 0.82em;
    font-weight: 600;
    color: var(--muted);
}
.email-example {
    display: inline-block;
    margin: 8px 0 18px;
    padding: 12px 20px;
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.card-price {
    display: block;
    width: fit-content;
    margin: 2px 0 10px;
    font-size: 0.82rem;
}
.card-price-note {
    font-size: 0.88em;
    font-weight: 600;
    color: var(--muted);
}
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.price-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 22px 24px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.price-item-main {
    flex: 1 1 280px;
}
.price-item h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}
.price-item h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
.price-item h3 a:hover {
    color: var(--gold);
}
.price-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    max-width: 560px;
}
.price-amount {
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    white-space: nowrap;
}
.price-note {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 2px;
}

/* ---------- Email package options ---------- */
.email-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 8px;
}
.email-option {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.email-option:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}
.email-option--featured {
    border-color: var(--border-gold);
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.email-option-tag {
    display: inline-block;
    width: fit-content;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.email-option-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe39a, var(--gold-2));
    color: #1a1400;
    font-size: 1.35rem;
    font-weight: 800;
}
.email-option h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text);
}
.email-option-best {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}
.email-option-price {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.email-option-price strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 4px;
}
.email-option-price .price-period {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--text);
}
.email-option-price span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}
.email-option .check-list {
    margin: 0;
    flex: 1;
}
.email-option .check-list li {
    padding: 10px 12px;
    font-size: 0.95rem;
}
.email-tier-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.email-tier-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.email-tier-list li:last-child {
    border-bottom: none;
}
.email-tier-list .tier-label {
    color: var(--text);
    font-weight: 600;
}
.email-tier-list .tier-price {
    color: var(--gold);
    font-weight: 800;
    white-space: nowrap;
}
.email-option-price--compact {
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
}
.email-setup-note {
    margin-bottom: 22px;
}

/* ---------- Security & form hardening ---------- */
.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.thank-you-panel {
    text-align: center;
}
.thank-you-panel .thank-you-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.thank-you-panel h2 {
    margin-top: 0;
}
.thank-you-panel p {
    margin-left: auto;
    margin-right: auto;
}
.thank-you-panel .legacy-cta {
    justify-content: center;
}
