
:root {
    --cream:       #FDF6ED;
    --warm-white:  #FFFAF4;
    --amber:       #E8A838;
    --amber-light: #F5C96A;
    --amber-dark:  #C4852A;
    --sage:        #5C8C6A;
    --sage-light:  #8DB89A;
    --sage-dark:   #3D6B4F;
    --coral:       #E07058;
    --coral-light: #F0A090;
    --sky:         #5B8DB8;
    --sky-light:   #A8C8E8;
    --lavender:    #8B7BB8;
    --ink:         #2C2416;
    --ink-soft:    #4A3F2F;
    --muted:       #8A7B68;
    --border:      #E8D9C4;
    --shadow:      rgba(44, 36, 22, 0.08);
    --shadow-md:   rgba(44, 36, 22, 0.15);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   32px;

    --max-w:       1200px;
    --nav-h:       72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; display: block; }
a  { color: var(--sage-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-dark); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--ink);
    font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-soft); }
small { font-size: .8rem; color: var(--muted); }

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.page-main { flex: 1; padding-top: var(--nav-h); }

.text-center  { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap { gap: 1.5rem; }

/* ── Grid ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--warm-white);
    border-bottom: 1.5px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow);
}
.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}
.brand-icon { font-size: 1.6rem; }
.brand-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: wrap;
}
.nav-links li a {
    display: block;
    padding: .4rem .8rem;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.nav-links li a:hover { background: var(--cream); color: var(--sage-dark); }

.btn-nav {
    border: 1.5px solid var(--border) !important;
    background: transparent;
}
.btn-nav-primary {
    background: var(--sage) !important;
    color: #fff !important;
    border-color: var(--sage) !important;
}
.btn-nav-primary:hover { background: var(--sage-dark) !important; }

/* Hamburger (CSS-only) */
.nav-toggle-input { display: none; }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1.6rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary   { background: var(--sage);   color: #fff; border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: #fff; }
.btn-amber     { background: var(--amber);  color: var(--ink); border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: #fff; }
.btn-outline   { background: transparent; color: var(--sage-dark); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: #fff; }
.btn-danger    { background: var(--coral);  color: #fff; border-color: var(--coral); }
.btn-danger:hover { background: #c05848; border-color: #c05848; color: #fff; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--shadow-md); }

.card-dream {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.card-dream .dream-category {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .25rem .7rem;
    border-radius: 100px;
    background: var(--amber-light);
    color: var(--ink);
}
.card-dream h3 { font-size: 1.2rem; }
.card-dream p  { font-size: .9rem; line-height: 1.6; }

.dream-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.dream-meta span {
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .25rem;
}
.status-badge {
    display: inline-block;
    padding: .2rem .7rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
}
.status-Submitted    { background: #EEF2FF; color: #4338CA; }
.status-Verified     { background: #ECFDF5; color: #065F46; }
.status-Matched      { background: #FFF7ED; color: #9A3412; }
.status-In-Progress  { background: #F0FDF4; color: #166534; }
.status-Dream-Achieved { background: #FEF9C3; color: #713F12; }

/* Category color accent strip */
.card-dream::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--amber));
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #FDF0DC 0%, #EEF6EC 50%, #E8F4F8 100%);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8A838' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -90px;
    top: 25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,168,56,.18) 0%, rgba(232,168,56,0) 68%);
    animation: drift 10s ease-in-out infinite;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}
.hero-content::before {
    width: 180px;
    height: 180px;
    left: -70px;
    top: 60px;
    background: radial-gradient(circle, rgba(92,140,106,.18), rgba(92,140,106,0) 72%);
}
.hero-content::after {
    width: 140px;
    height: 140px;
    right: -40px;
    top: 220px;
    background: radial-gradient(circle, rgba(91,141,184,.2), rgba(91,141,184,0) 72%);
}
.hero-eyebrow {
    display: inline-block;
    background: var(--amber-light);
    color: var(--ink);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    max-width: 760px;
    margin: 0 auto 1.25rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
}
.hero-sub {
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    color: var(--ink-soft);
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 1.15rem;
    display: flex;
    justify-content: center;
    gap: .55rem;
    flex-wrap: wrap;
}
.hero-trust-item {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #365848;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(92,140,106,.24);
    border-radius: 999px;
    padding: .32rem .72rem;
    backdrop-filter: blur(2px);
}
.hero-actions .btn {
    transition: transform .22s ease, box-shadow .22s ease, background-color .2s, border-color .2s, color .2s;
}
.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(44, 36, 22, 0.16);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    min-width: 150px;
    padding: .85rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.75);
    background: rgba(255,255,255,.68);
    box-shadow: 0 10px 24px rgba(44, 36, 22, 0.06);
}
.hero .stat-item {
    transition: transform .2s ease;
}
.hero .stat-item:hover {
    transform: translateY(-3px);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage-dark);
    line-height: 1;
}
.stat-label { font-size: .85rem; color: var(--muted); margin-top: .3rem; }

/* Home page reveal + motion */
.js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(18px) scale(.99);
    transition: opacity .62s ease, transform .62s ease;
    will-change: opacity, transform;
}
.js-reveal [data-reveal].in-view {
    opacity: 1;
    transform: none;
}
.js-reveal .step-card:nth-child(1) { transition-delay: .04s; }
.js-reveal .step-card:nth-child(2) { transition-delay: .1s; }
.js-reveal .step-card:nth-child(3) { transition-delay: .16s; }
.js-reveal .step-card:nth-child(4) { transition-delay: .22s; }
.js-reveal .hero-stats .stat-item:nth-child(1) { transition-delay: .08s; }
.js-reveal .hero-stats .stat-item:nth-child(2) { transition-delay: .14s; }
.js-reveal .hero-stats .stat-item:nth-child(3) { transition-delay: .2s; }

.step-card,
.category-pill,
.card-dream {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px var(--shadow-md);
}
.category-pill:hover {
    transform: translateY(-2px);
}

@keyframes drift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-16px, -14px, 0) scale(1.06); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

/* ── Section Headings ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sage);
    margin-bottom: .5rem;
}

/* ── How It Works ───────────────────────────────────────────── */
.how-it-works { background: var(--warm-white); }
.step-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.step-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-light), var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.25rem;
}
.step-card h3 { margin-bottom: .5rem; }

/* ── Category Pills ─────────────────────────────────────────── */
.categories { background: var(--cream); }
.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.2rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--warm-white);
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.category-pill:hover,
.category-pill.active {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-page {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}
.form-card {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 4px 30px var(--shadow);
}
.form-card h1 { font-size: 1.9rem; margin-bottom: .4rem; }
.form-card .form-sub { font-size: .95rem; color: var(--muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .4rem;
}
.form-control {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-control:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(92, 140, 106, .15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-hint { font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.form-divider { text-align: center; color: var(--muted); margin: 1.25rem 0; font-size: .85rem; }

.form-wide { max-width: 720px; }
.form-xl   { max-width: 900px; }

/* ── Flash Messages ─────────────────────────────────────────── */
.flash {
    max-width: var(--max-w);
    margin: 1rem auto;
    padding: .9rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9rem;
    font-weight: 500;
}
.flash-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.flash-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.flash-info    { background: #DBEAFE; color: #1E40AF; border: 1px solid #93C5FD; }
.flash-close   { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: inherit; line-height: 1; }

/* ── Tables ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: var(--warm-white); }
thead { background: var(--cream); }
th {
    padding: .9rem 1.1rem;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    border-bottom: 1.5px solid var(--border);
}
td {
    padding: .9rem 1.1rem;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream); }

/* ── Dashboard Admin ────────────────────────────────────────── */
.dashboard-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: calc(100vh - var(--nav-h));
}
.sidebar {
    background: var(--ink);
    padding: 2rem 1rem;
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}
.sidebar-title {
    font-family: var(--font-display);
    color: var(--amber-light);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 0 .75rem;
    margin-bottom: 1.25rem;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .75rem;
    border-radius: var(--radius);
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    font-weight: 500;
    transition: all .2s;
    margin-bottom: .2rem;
}
.sidebar-link:hover, .sidebar-link.active {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.sidebar-icon { font-size: 1.1rem; }

.dashboard-content { padding: 2.5rem; overflow-y: auto; }
.dashboard-header { margin-bottom: 2rem; }
.dashboard-header h1 { font-size: 1.8rem; }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}
.stat-card .stat-number { font-size: 2rem; }
.stat-card .stat-label  { font-size: .8rem; margin-top: .25rem; }

/* ── Page Sections ───────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #EEF6EC, #FDF0DC);
    padding: 3.5rem 0 3rem;
    text-align: center;
}
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p  { font-size: 1.05rem; }

/* ── Filter Bar ─────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 2rem;
}
.filter-bar select { max-width: 220px; }

/* ── Empty State ────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--ink-soft); margin-bottom: .5rem; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--sage-dark), var(--sage));
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--sage-dark); border-color: #fff; }
.btn-white:hover { background: var(--cream); border-color: var(--cream); color: var(--sage-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: #1f1f1f;
    color: rgba(255,255,255,.88);
    padding: 2.2rem 0 0;
    margin-top: 2rem;
}
.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-brand .nav-brand { margin-bottom: .5rem; }
.footer-brand .brand-icon {
    font-size: 1rem;
    color: rgba(255,255,255,.95);
}
.footer-brand .brand-text { color: #fff; font-size: 1.1rem; }
.footer-tagline {
    color: rgba(255,255,255,.78);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: .8rem;
}
.footer-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    max-width: 420px;
}
.footer-contact-card {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.9);
}
.footer-contact-card span { font-size: .76rem; color: rgba(255,255,255,.56); text-transform: uppercase; letter-spacing: .04em; }
.footer-contact-card strong { font-size: .9rem; font-weight: 500; color: #fff; }
.footer-location {
    margin-top: .6rem;
    color: rgba(255,255,255,.7);
    font-size: .84rem;
    font-weight: 500;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.footer-col {
    padding: 0;
    border: none;
}
.footer-col h4 {
    font-family: var(--font-body);
    color: #fff;
    font-size: .9rem;
    margin-bottom: .55rem;
    font-weight: 600;
    letter-spacing: .01em;
}
.footer-col li { margin-bottom: .35rem; }
.footer-col a {
    color: rgba(255,255,255,.74);
    font-size: .85rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: .95rem 1rem 1rem;
    font-size: .78rem;
}
.footer-bottom p { color: rgba(255,255,255,.58); margin: 0; }

/* ── Accordion (dream detail toggle) ───────────────────────── */
.detail-section {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.detail-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* ── Progress Steps ─────────────────────────────────────────── */
.progress-steps {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    padding: 1rem 0;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    flex: 1;
    min-width: 80px;
    position: relative;
}
.step::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.step:last-child::after { display: none; }
.step-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    z-index: 1;
    color: var(--muted);
}
.step.done .step-dot { background: var(--sage); border-color: var(--sage); color: #fff; }
.step.active .step-dot { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.step-name { font-size: .7rem; color: var(--muted); text-align: center; }
.step.done  .step-name, .step.active .step-name { color: var(--ink); font-weight: 600; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: .4rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--warm-white);
    color: var(--ink-soft);
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s;
    text-decoration: none;
}
.page-link:hover, .page-link.active {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1.5px solid var(--border);
        box-shadow: 0 8px 24px var(--shadow-md);
        align-items: flex-start;
    }
    .nav-toggle-input:checked ~ .nav-links { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links li a { width: 100%; }

    .hero { padding: 4rem 0 3rem; }
    .hero-content::before,
    .hero-content::after { display: none; }
    .hero-trust { gap: .4rem; }
    .hero-trust-item { font-size: .7rem; }
    .hero-stats { gap: .7rem; margin-top: 1.15rem; }
    .hero .stat-item { min-width: 122px; padding: .7rem .8rem; }

    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; height: auto; }

    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-contact-cards { grid-template-columns: 1fr; }
    .footer-col { padding: 0; }

    .form-row { grid-template-columns: 1fr; }

    .section { padding: 3rem 0; }
    .form-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; }
    .hero .stat-item { min-width: 108px; }
    .cta-actions  { flex-direction: column; align-items: center; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-col { padding-bottom: .2rem; }
    .stat-cards   { grid-template-columns: 1fr 1fr; }
}

/* ── Utility ────────────────────────────────────────────────── */
.text-muted  { color: var(--muted); }
.text-sage   { color: var(--sage-dark); }
.text-amber  { color: var(--amber-dark); }
.text-coral  { color: var(--coral); }
.fw-bold     { font-weight: 700; }
.d-flex      { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap   { flex-wrap: wrap; }
.w-100       { width: 100%; }

/* ── Print-friendly ─────────────────────────────────────────── */
@media print {
    .navbar, .site-footer, .btn { display: none; }
}

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

