 
:root {
    --bg: #f8f6f1;
    --bg-hero: #f0f4f8;
    --card: #ffffff;
    --foreground: #1e293b;
    --muted: #6b7280;
    --border: #e5e7eb;
    --primary: #1e293b;
    --accent: #c8842f;
    --accent-foreground: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lora', serif;
    background: var(--bg);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
}

.lucide {
    width: 1em;
    height: 1em;
    stroke-width: 2;
}

img {
    display: block;
}

/* ── NAVBAR ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.nav-inner {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.4);
}

.nav-bar {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.logo span {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-cta {
    background: #fff;
    color: var(--primary);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 999px;
    padding: 0.4rem 1.25rem;
    transition: background 0.2s;
    font-family: inherit;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

.nav-toggle .lucide {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 767px) {
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.4);
    padding: 1.5rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu .nav-cta {
    display: block;
    width: 100%;
    padding: 0.7rem;
    margin-top: 1rem;
}

section {
    scroll-margin-top: 4rem;
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 7rem 1.5rem 5rem;
    overflow: hidden;
    background: var(--bg-hero);
}

.hero-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.4);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
}

.pill .lucide {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero h1 .accent-italic {
    color: var(--accent);
    font-style: italic;
}

.hero p.sub {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    margin: 0 0 2rem;
    line-height: 1.6;
    max-width: 28rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.check-list .row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(30, 41, 59, 0.8);
}

.check-list .row .lucide {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* form card */
.form-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(30, 41, 59, 0.18);
    border: 1px solid rgba(229, 231, 235, 0.3);
    padding: 2rem;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(200, 132, 47, 0.10);
    border: 1px solid rgba(200, 132, 47, 0.20);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.form-badge-wrap {
    display: flex;
    justify-content: center;
}

.field {
    margin-bottom: 1rem;
}

.field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.input-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg);
}

.input-box .lucide {
    width: 1rem;
    height: 1rem;
    color: var(--muted);
    flex-shrink: 0;
}

.input-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--primary);
    font-family: inherit;
}

.input-box input::placeholder {
    color: var(--muted);
}

.field .help {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.375rem;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 10px 20px -6px rgba(200, 132, 47, 0.4);
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-accent:hover {
    background: rgba(200, 132, 47, 0.9);
    transform: scale(1.02);
}

.btn-accent .lucide {
    width: 1rem;
    height: 1rem;
}

/* ── STATS ── */
.stats {
    padding: 3.5rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.stats-grid {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat .val {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat .val {
        font-size: 2.25rem;
    }
}

.stat .lbl {
    font-size: 0.75rem;
    color: var(--muted);
}

/* sections */
.section {
    padding: 5rem 1.5rem;
}

.section.white {
    background: #fff;
}

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

.container {
    max-width: 64rem;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-head.tight {
    margin-bottom: 3rem;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .section-head h2 {
        font-size: 3rem;
    }
}

.section-head h2 .accent-italic {
    color: var(--accent);
    font-style: italic;
}

.section-head p {
    color: var(--muted);
    font-weight: 300;
    max-width: 36rem;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-size: 1rem;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
}

/* benefits / services grid */
.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-cards.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-base {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.4);
    background: #fff;
}

.card-center {
    text-align: center;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(200, 132, 47, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-box.left {
    margin: 0;
    margin-right: 0;
}

.icon-box .lucide {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.card-base h3 {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
    margin: 0 0 0.5rem;
}

.card-base.big h3 {
    font-size: 1rem;
}

.card-base p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.card-base.big p {
    font-size: 0.875rem;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.service-card .icon-box {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    margin: 0;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.service-card p {
    font-size: 0.875rem;
}

/* steps */
.step {
    position: relative;
    background: var(--bg);
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.3);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.step-num {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px -2px rgba(200, 132, 47, 0.4);
}

.step .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0.75rem auto 1rem;
}

.step .icon-box .lucide {
    width: 1.5rem;
    height: 1.5rem;
}

.step h3 {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.step p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* testimonials */
.testimonial {
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.4);
    background: var(--bg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.testimonial .quote {
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(200, 132, 47, 0.4);
    margin-bottom: 1rem;
}

.testimonial .text {
    font-size: 0.875rem;
    color: rgba(30, 41, 59, 0.7);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    flex: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.t-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(200, 132, 47, 0.20);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
}

.t-role {
    font-size: 0.75rem;
    color: var(--muted);
}

.t-stars {
    margin-left: auto;
    display: flex;
    gap: 0.125rem;
}

.t-stars .lucide {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
    fill: currentColor;
}

/* FAQ */
.faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.4);
    background: #fff;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    text-align: left;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.faq-q span {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.875rem;
}

.faq-q .chev {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-q.open .chev {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-a.open {
    max-height: 400px;
    opacity: 1;
}

.faq-a-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    border-top: 1px solid rgba(229, 231, 235, 0.3);
    padding-top: 1rem;
}

/* final CTA */
.final {
    padding: 6rem 1.5rem;
    background: var(--primary);
    text-align: center;
}

.final .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(200, 132, 47, 0.20);
    border: 1px solid rgba(200, 132, 47, 0.30);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.final .badge .lucide {
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
}

.final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .final h2 {
        font-size: 3rem;
    }
}

.final h2 .accent-italic {
    color: var(--accent);
    font-style: italic;
}

.final p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    max-width: 28rem;
    margin: 0 auto 2.5rem;
}

.final-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .final-btns {
        flex-direction: row;
    }
}

.btn-solid {
    background: var(--accent);
    color: var(--accent-foreground);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    padding: 1.5rem 3rem;
    border-radius: 999px;
    box-shadow: 0 20px 25px -8px rgba(200, 132, 47, 0.4);
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-solid:hover {
    background: rgba(200, 132, 47, 0.9);
    transform: scale(1.05);
}

.btn-ghost-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    font-family: inherit;
    padding: 1.5rem 2.5rem;
    border-radius: 999px;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn-ghost-light:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.final-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.final-trust .item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.final-trust .item .lucide {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--accent);
}

.final-trust .sep {
    width: 1px;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
}

/* footer */
footer {
    background: #131d34;
    border-top: 1px solid rgba(255, 251, 235, 0.05);
}

.footer-disclaimer {
    background: #0f172a;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    max-width: 80rem;
    margin: 0 auto;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-main {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.footer-brand span {
    font-weight: 600;
    font-size: 1.5rem;
    color: rgba(255, 251, 235, 1);
}

.footer-brand-desc {
    color: rgba(255, 251, 235, 0.4);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 24rem;
}

.footer-col h4 {
    color: rgba(255, 251, 235, 0.6);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 251, 235, 0.4);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: rgba(255, 251, 235, 0.7);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 251, 235, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 251, 235, 0.3);
    margin: 0;
}

.footer-company {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 251, 235, 0.05);
}

.footer-company h4 {
    color: rgba(255, 251, 235, 0.6);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.footer-company .name {
    color: rgba(255, 251, 235, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-company .addr {
    color: rgba(255, 251, 235, 0.4);
    font-size: 0.75rem;
    line-height: 1.6; 
}

@media (min-width: 768px) {
    .footer-company .row {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}
 