/* Clare — Warm Editorial Design System */

/* Lora — italic */
@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: 400 500;
    font-display: swap;
    src: url("../fonts/lora-italic-latin-ext.7b015a32d363.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: 'Lora';
    font-style: italic;
    font-weight: 400 500;
    font-display: swap;
    src: url("../fonts/lora-italic-latin.bf88700c66c9.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;
}

/* Lora — normal */
@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/lora-normal-latin-ext.d551ed729291.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: 'Lora';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/lora-normal-latin.662c56ecd8de.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;
}

/* Plus Jakarta Sans */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url("../fonts/plus-jakarta-sans-latin-ext.5ffe46eeb00d.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: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url("../fonts/plus-jakarta-sans-latin.52d04440a9fa.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;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Core palette — warm linen + deep slate */
    --c-bg: #FAF8F5;
    --c-bg-warm: #F3EFE8;
    --c-bg-section: #FFFFFF;
    --c-surface: #EEEAE2;

    --c-ink: #1C1A17;
    --c-ink-soft: #4A4540;
    --c-ink-muted: #8C877F;

    --c-primary: #2D4A43;
    --c-primary-mid: #729087;
    --c-primary-lt: #C4D3CE;

    --c-accent: #A67C52;
    --c-accent-lt: #E8DCCF;

    --c-border: #DDD9D0;
    --c-border-lt: #EDE9E2;

    /* Typography */
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.75rem;
    --sp-lg: 3rem;
    --sp-xl: 5rem;
    --sp-2xl: 8rem;

    /* Shape */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-full: 999px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.18s;
    --t-base: 0.3s;
    --t-slow: 0.5s;

    /* Container */
    --content-width: 1120px;
    --narrow-width: 720px;
    --text-width: 640px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--c-bg);
    color: var(--c-ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

::selection {
    background: var(--c-primary-lt);
    color: var(--c-primary);
}

*:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--c-ink);
    font-weight: 500;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

h4 {
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin-bottom: var(--sp-sm);
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--c-ink-soft);
    line-height: 1.75;
    font-weight: 300;
}

.label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-ink-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: var(--sp-md);
}

.container--narrow {
    max-width: var(--narrow-width);
    margin-inline: auto;
    padding-inline: var(--sp-md);
}

.container--text {
    max-width: var(--text-width);
    margin-inline: auto;
    padding-inline: var(--sp-md);
}

.section {
    padding-block: var(--sp-xl);
}

.section--lg {
    padding-block: var(--sp-2xl);
}

.section--sm {
    padding-block: var(--sp-lg);
}

.bg-warm {
    background-color: var(--c-bg-warm);
}

.bg-white {
    background-color: var(--c-bg-section);
}

.bg-surface {
    background-color: var(--c-surface);
}

.bg-primary {
    background-color: var(--c-primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.75rem 1.625rem;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--t-base) var(--ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

.btn-primary:hover {
    background-color: var(--c-primary-lt);
    border-color: var(--c-primary-mid);
    color: var(--c-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 74, 67, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn-secondary:hover {
    background-color: var(--c-border-lt);
    /* Subtle shift for the warm linen buttons */
    border-color: var(--c-border);
    color: var(--c-ink);
}

.btn-ghost {
    background: transparent;
    color: var(--c-ink-soft);
    border-color: var(--c-border);
}

.btn-ghost:hover {
    background: var(--c-surface);
    color: var(--c-ink);
    border-color: var(--c-border);
}

.btn-accent {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

.btn-accent:hover {
    background: #7A5330;
    transform: translateY(-1px);
}

.btn--lg {
    padding: 0.9375rem 2.25rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border-lt);
    isolation: isolate;
    overflow: visible
}

.navbar__inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: var(--sp-md);
    position: relative;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--c-primary);
    text-decoration: none;
    flex-shrink: 0;
    margin-right: auto;
    /* push everything else to the right on desktop */
}

.navbar__brand img {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
}

/* The collapsible section sits between brand and toggler on desktop,
   and drops below the bar on mobile. */
.navbar__collapse {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    flex: 1;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    /* push actions to far right */
    margin-right: auto;
}

.nav-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    padding: 0.4rem 0.75rem;
    border-radius: var(--r-full);
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--c-primary);
    background: var(--c-primary-lt);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

/* Mobile hamburger — hidden on desktop */
.navbar__toggler {
    display: none;
    background: none;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 0.375rem 0.5rem;
    cursor: pointer;
    color: var(--c-ink-soft);
    flex-shrink: 0;
    line-height: 0;
}

/* ── Dropdowns ─────────────────────────────────────────────── */
/* Toggled via JS (.dropdown--open), NOT :hover,
   so it works on touch devices and keyboard nav. */
.dropdown {
    position: relative;
}

.dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-bg-section);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: var(--sp-xs);
    min-width: 180px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    list-style: none;
    z-index: 300;
    /* animate in */
    transform: translateY(4px);
    opacity: 0;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    pointer-events: none;
}

.dropdown--open .dropdown__menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown__item {
    display: block;
    padding: 0.5rem 0.875rem;
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    color: var(--c-ink-soft);
    transition: all var(--t-fast) var(--ease);
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    line-height: 1.5;
}

.dropdown__item:hover,
.dropdown__item--active {
    background: var(--c-primary-lt);
    color: var(--c-primary);
}

.dropdown__item--active {
    font-weight: 600;
}

.dropdown__divider {
    height: 1px;
    background: var(--c-border-lt);
    margin-block: var(--sp-xs);
}

/* ── Notification badge ─────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: var(--r-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: #E05252;
    color: white;
    position: absolute;
    top: -4px;
    right: -4px;
    pointer-events: none;
}

/* ── Notification panel ─────────────────────────────────────── */
.notification-panel {
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0 !important;
    min-width: 0;
    /* override the 180px base */
}

.notification-item {
    padding: var(--sp-sm) var(--sp-md);
    border-bottom: 1px solid var(--c-border-lt);
    transition: background var(--t-fast) var(--ease);
    display: block;
    color: inherit;
    text-decoration: none;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: var(--c-bg-warm);
}

.notification-item--unread {
    background: var(--c-primary-lt);
}

.notification-item__title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.2rem;
    color: var(--c-ink);
}

.notification-item__body {
    font-size: 0.8125rem;
    color: var(--c-ink);
    margin-bottom: 0.2rem;
}

.notification-item__time {
    font-size: 0.75rem;
    color: var(--c-ink);
}

/* ── Bell icon button ───────────────────────────────────────── */
.navbar__bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r-full);
    color: var(--c-ink-soft);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    background: none;
    border: none;
    padding: 0;
}

.navbar__bell:hover {
    background: var(--c-surface);
    color: var(--c-ink);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .navbar__toggler {
        display: flex;
    }

    /* On mobile, brand + toggler sit in the inner row.
       The collapse drops below absolutely. */
    .navbar__brand {
        margin-right: auto;
    }

    .navbar__collapse {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--c-bg-section);
        border-bottom: 1px solid var(--c-border);
        padding: var(--sp-sm) var(--sp-md) var(--sp-md);
        gap: 0;
        z-index: 200;
        /* subtle shadow so it lifts above content */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .navbar__collapse--open {
        display: flex;
    }

    .navbar__nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-right: 0;
        padding-bottom: var(--sp-sm);
        border-bottom: 1px solid var(--c-border-lt);
    }

    .navbar__nav li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.6rem 0.75rem;
        border-radius: var(--r-sm);
    }

    .navbar__actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        padding-top: var(--sp-sm);
        gap: 0.5rem;
    }

    /* Dropdowns on mobile open downward normally,
       but avoid going off-screen by anchoring left instead of right */
    .dropdown__menu {
        right: auto;
        left: 0;
        min-width: 200px;
    }

    .notification-panel {
        width: 280px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--c-ink);
    color: var(--c-bg-warm);
    padding-block: var(--sp-xl);
    margin-top: auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-lg);
}

.footer__brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: var(--sp-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: #8C8880;
    line-height: 1.6;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8C8880;
    margin-bottom: var(--sp-sm);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: #B8B4AE;
    transition: color var(--t-fast) var(--ease);
}

.footer__links a:hover {
    color: #fff;
}

.footer__bottom {
    margin-top: var(--sp-lg);
    padding-top: var(--sp-md);
    border-top: 1px solid #2E2C29;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: #6B6860;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.footer__disclaimer {
    font-style: italic;
    color: #6B6860;
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   COMPONENTS — HERO
   ============================================================ */
.hero {
    padding-block: var(--sp-2xl) var(--sp-xl);
    background: var(--c-bg-section);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    /* white overlay */
    pointer-events: none;
}

.hero__inner {
    position: relative;
    max-width: 780px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--c-primary-lt);
    color: var(--c-primary);
    padding: 0.375rem 0.875rem;
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--sp-md);
    animation: fadeUp 0.6s var(--ease) both;
}

.hero__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
}

.hero h1 {
    margin-bottom: var(--sp-md);
    animation: fadeUp 0.6s var(--ease) 0.1s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--c-primary);
}

.hero .lead {
    max-width: 560px;
    margin-bottom: var(--sp-lg);
    animation: fadeUp 0.6s var(--ease) 0.2s both;
    color: black;
}

.hero__actions {
    display: flex;
    gap: var(--sp-sm);
    flex-wrap: wrap;
    animation: fadeUp 0.6s var(--ease) 0.3s both;
}

.hero__footnote {
    margin-top: var(--sp-md);
    font-size: 0.8125rem;
    color: var(--c-ink);
    animation: fadeUp 0.6s var(--ease) 0.4s both;
}

/* ============================================================
   COMPONENTS — SECTION HEADER
   ============================================================ */
.section-header {
    margin-bottom: var(--sp-lg);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-header__body {
    max-width: 560px;
    margin-inline: auto;
}

.section-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.section-header h2 {
    margin-bottom: var(--sp-sm);
}

.section-header__body {
    color: var(--c-ink-soft);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.section-header__action {
    margin-top: var(--sp-md);
}

/* ============================================================
   COMPONENTS — PROCESS STEP
   ============================================================ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, var(--c-primary-lt), var(--c-border-lt));
}

.process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--sp-md);
    padding-block: var(--sp-md);
    position: relative;
}

.process-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-bg-section);
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--c-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all var(--t-base) var(--ease);
}

.process-step:hover .process-step__number {
    background: var(--c-primary);
    color: white;
    border-color: var(--c-primary);
}

.process-step__content {
    padding-top: 0.875rem;
}

.process-step__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--c-ink);
}

.process-step__body {
    color: var(--c-ink-soft);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.process-step__image {
    margin-top: var(--sp-sm);
    border-radius: var(--r-md);
    overflow: hidden;
    max-width: 280px;
}

.process-step__image img {
    width: 100%;
    height: auto;
}

/* ============================================================
   COMPONENTS — FEATURE GRID
   ============================================================ */
.feature-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
}

.feature-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
}

@media (min-width: 600px) {

    /* 2x2 */
    .feature-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (min-width: 1000px) {

    /* 2x1 */
    .feature-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 4x1 */
    .feature-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--c-bg-section);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--r-lg);
    padding: var(--sp-md);
    transition: all var(--t-base) var(--ease);
}

.feature-card:hover {
    border-color: var(--c-primary-lt);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 90, 140, 0.08);
}

.feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--c-primary-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-sm);
    color: var(--c-primary);
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.feature-card__body {
    font-size: 0.9rem;
    color: var(--c-ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   COMPONENTS — PRICING CARD
   ============================================================ */
.pricing-card {
    background: var(--c-bg-section);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: calc(var(--sp-lg) * 1.1);
    width: 480px;
    margin-inline: auto;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

/* subtle glow accent instead of hard line */
.pricing-card::before {
    content: '';
    inset: 0;
    background: var(--c-primary-lt);
    border-radius: 20px;
    opacity: 0.15;
    pointer-events: none;
}

/* PRICE BLOCK */
.pricing-card__amount {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: var(--sp-sm);
}

.pricing-card__currency {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--c-ink-muted);
    margin-bottom: 0.6rem;
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--c-primary);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

/* modern pill instead of plain text */
.pricing-card__period {
    font-size: 0.75rem;
    color: var(--c-primary);
    background: var(--c-primary-lt);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

/* DESCRIPTION */
.pricing-card__description {
    color: var(--c-ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--sp-md);
}

/* FEATURES */
.pricing-card__features {
    list-style: none;
    margin-bottom: var(--sp-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--c-ink-soft);
}

/* cleaner, lighter check icon */
.pricing-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a6cf7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-right: 12px;
}

/* CTA spacing */
.pricing-card .btn {
    margin-top: auto;
}

/* ============================================================
   COMPONENTS — CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--c-primary);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-banner__text h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-banner__text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin: 0;
}

.cta-banner__action {
    flex-shrink: 0;
}

.btn-cta-light {
    background: #fff;
    color: var(--c-primary);
    border-color: #fff;
}

.btn-cta-light:hover {
    background: var(--c-bg-warm);
    border-color: var(--c-bg-warm);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__action {
        width: 100%;
    }

    .btn-cta-light {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   COMPONENTS — SAFETY ALERT
   ============================================================ */
.safety-alert {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    background: var(--c-accent-lt);
    border: 1px solid rgba(156, 107, 60, 0.2);
    border-left: 3px solid var(--c-accent);
    border-radius: var(--r-md);
    padding: var(--sp-md);
}

.safety-alert__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--c-accent);
    margin-top: 1px;
}

.safety-alert__content {
    font-size: 0.9375rem;
    color: var(--c-ink-soft);
    line-height: 1.6;
}

.safety-alert__content strong {
    color: var(--c-ink);
}

.safety-alert__content a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   COMPONENTS — TESTIMONIAL / QUOTE
   ============================================================ */
.quote-card {
    background: var(--c-bg-warm);
    border-radius: var(--r-lg);
    padding: var(--sp-lg);
    position: relative;
}

.quote-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--c-primary-lt);
    line-height: 1;
    position: absolute;
    top: var(--sp-sm);
    left: var(--sp-md);
}

.quote-card__text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--c-ink);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    padding-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.quote-card__author {
    font-size: 0.875rem;
    color: var(--c-ink-muted);
    font-weight: 500;
}

/* ============================================================
   COMPONENTS — DIVIDER
   ============================================================ */
.divider {
    height: 1px;
    background: var(--c-border-lt);
    border: none;
    margin: 0;
}

/* ============================================================
   COMPONENTS — ALERT / FLASH MESSAGES
   ============================================================ */
.flash-message {
    border-radius: var(--r-md);
    padding: var(--sp-sm) var(--sp-md);
    margin-bottom: var(--sp-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    animation: slideDown 0.3s var(--ease) both;
    font-size: 0.9375rem;
}

.flash-message--success {
    background: #EAF4EC;
    color: #1E5C2E;
    border: 1px solid #B6DFC0;
}

.flash-message--error {
    background: #FEF0F0;
    color: #8B1F1F;
    border: 1px solid #F5C6C6;
}

.flash-message--info {
    background: var(--c-primary-lt);
    color: var(--c-primary);
    border: 1px solid rgba(58, 90, 140, 0.2);
}

.flash-message--warning {
    background: #FFF8E6;
    color: #7A5800;
    border: 1px solid #F5DFA0;
}

.flash-message__close {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0.25rem;
    border-radius: var(--r-sm);
    transition: opacity var(--t-fast);
    flex-shrink: 0;
}

.flash-message__close:hover {
    opacity: 1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .section {
        padding-block: var(--sp-lg);
    }

    .section--lg {
        padding-block: var(--sp-xl);
    }

    .hero {
        padding-block: var(--sp-xl) var(--sp-lg);
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}