/* Faturisti marketing site — standalone, no build step. */
:root {
    --indigo: #4f46e5;
    --indigo-dark: #4338ca;
    --indigo-50: #eef2ff;
    --ink: #0f172a;
    --slate: #475569;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg-soft: #f8fafc;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px -12px rgba(15, 23, 42, .18);
    --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Figtree', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; text-wrap: balance; }

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1rem; color: var(--slate); }

.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--indigo); background: var(--indigo-50);
    padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: .95rem; padding: 12px 22px; border-radius: 10px;
    border: 1px solid transparent; cursor: pointer; transition: transform .06s ease, background .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 0 8px 20px -8px rgba(79, 70, 229, .6); }
.btn-primary:hover { background: var(--indigo-dark); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

/* Header / nav */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .85); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand img { height: 34px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu a { font-weight: 500; color: var(--slate); font-size: .95rem; }
.nav-menu a:hover { color: var(--ink); }
.nav-menu a.nav-login { color: var(--ink); font-weight: 600; }
.nav-menu a.btn { color: #fff; }

.nav-toggle, .nav-burger { display: none; }
.nav-burger { flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Sections */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }

/* Hero */
.hero { padding: 88px 0 72px; background: radial-gradient(1200px 500px at 50% -10%, var(--indigo-50), #fff 70%); }
.hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hero p.lead { margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.hero-shot {
    max-width: 960px; margin: 56px auto 0; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; background: #fff;
}
.hero-shot .bar { height: 34px; background: var(--bg-soft); border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.hero-shot .bar i { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; display: block; }
.hero-shot .body { padding: 30px; }

/* Trust row */
.trust { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-weight: 600; font-size: .95rem; }

/* Feature grid */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; transition: box-shadow .18s ease, transform .18s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card .ic {
    width: 44px; height: 44px; border-radius: 11px; background: var(--indigo-50); color: var(--indigo);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px;
}
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; font-size: .96rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step .num {
    width: 38px; height: 38px; border-radius: 50%; background: var(--indigo); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px;
}

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--indigo), #6366f1); color: #fff; border-radius: 20px; padding: 56px 40px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e0e7ff; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-ghost { background: #fff; color: var(--indigo); border-color: #fff; }

/* Prose (legal pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin-top: 2em; }
.prose p, .prose li { color: var(--slate); }
.prose ul { padding-left: 1.2em; }
.page-head { padding: 64px 0 24px; }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-head .lead { margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
    font: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-50); }
.contact-aside { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.contact-aside .row { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-aside .row .ic { color: var(--indigo); font-size: 20px; }

/* Footer */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 56px 0 28px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: .95; margin-bottom: 14px; }
.footer-brand p { color: #94a3b8; font-size: .92rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: #94a3b8; font-size: .93rem; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 40px; padding-top: 22px; font-size: .86rem; color: #64748b; }

/* Responsive */
@media (max-width: 860px) {
    .grid-3, .steps { grid-template-columns: 1fr; }
    .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    section { padding: 60px 0; }

    .nav-burger { display: flex; }
    .nav-menu {
        position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch;
        gap: 4px; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 20px;
        box-shadow: var(--shadow); display: none;
    }
    .nav-toggle:checked ~ .nav-menu { display: flex; }
    .nav-menu a { padding: 10px 4px; }
    .nav-menu a.btn { justify-content: center; margin-top: 6px; }
}
