body {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* ── Shared design tokens as classes (keeps the HTML readable) ── */
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d32f2f;
    margin-bottom: 10px;
}
.section-index {
    font-size: 12px;
    font-weight: 700;
    color: #857370;
    letter-spacing: 0.06em;
}
.section-title {
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #1c1b1b;
}
.chip {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 18px;
}
.card-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #1c1b1b;
    margin-bottom: 6px;
}
.card-body {
    font-size: 13.5px;
    line-height: 1.6;
    color: #534341;
}
.feature-card {
    background: #fff;
    border: 1px solid #eadedd;
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
    border-color: #d9c4c1;
    box-shadow: 0 6px 24px rgba(28, 27, 27, 0.05);
    transform: translateY(-2px);
}

/* ── Nav ── */
.nav-link { position: relative; transition: color 0.2s ease; }
.nav-link:hover { color: #1c1b1b; }
#navbar.is-scrolled { border-bottom-color: #eae8e7; }

/* ── How-it-works steps ── */
.step-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f6f5f4;
    color: #534341;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.step-trigger-card:hover { border-color: rgba(211, 47, 47, 0.35); }
.step-trigger-card.is-active {
    border-color: #d32f2f;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.08);
}
.step-trigger-card.is-active .step-num {
    background: linear-gradient(135deg, #d32f2f, #9c1313);
    color: #fff;
}

/* ── FAQ ── */
.faq-btn:hover span { color: #d32f2f; }
.faq-item.is-open .faq-btn i { transform: rotate(45deg); }

/* ── Forms ── */
.field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #534341;
    margin-bottom: 6px;
}
.field {
    width: 100%;
    background: #f6f5f4;
    border: 1px solid #eae8e7;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 14px;
    color: #1c1b1b;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field::placeholder { color: #a99a97; }
.field:focus {
    background: #fff;
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
.field-green:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}
.field-blue:focus {
    border-color: #005faf;
    box-shadow: 0 0 0 3px rgba(0, 95, 175, 0.1);
}

/* ── Modals ── */
.modal.is-open { display: flex; }
.modal-panel {
    animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
body.modal-open { overflow: hidden; }

/* ── Scroll reveal (subtle — one-time, small distance, respects reduced motion) ── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .modal-panel { animation: none; }
    html { scroll-behavior: auto; }
}

/* ── Misc ── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }