:root {
    color-scheme: dark;
    --bg: #020617;
    --surface: #08111f;
    --surface-strong: #0f172a;
    --surface-soft: rgba(15, 23, 42, .72);
    --border: rgba(148, 163, 184, .16);
    --border-strong: rgba(148, 163, 184, .34);
    --accent: #22c55e;
    --accent-bright: #4ade80;
    --accent-dark: #16a34a;
    --accent-soft: rgba(34, 197, 94, .12);
    --text: #f8fafc;
    --text-soft: #a8b3c4;
    --text-muted: #64748b;
    --danger: #fb7185;
    --warning: #fbbf24;
    --shadow: 0 24px 80px rgba(0, 0, 0, .34);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 12% -8%, rgba(34, 197, 94, .17), transparent 32rem),
        radial-gradient(circle at 92% 8%, rgba(14, 116, 144, .1), transparent 30rem),
        var(--bg);
    -webkit-font-smoothing: antialiased;
}
body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: .2;
    background-image:
        linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
p { line-height: 1.75; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    color: #020617;
    background: var(--accent-bright);
    border-radius: 10px;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(2, 6, 23, .82);
    backdrop-filter: blur(18px);
}
.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(74, 222, 128, .36);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(34, 197, 94, .22), rgba(15, 23, 42, .8));
    box-shadow: 0 0 32px rgba(34, 197, 94, .16);
}
.brand-mark::after { content: "⚡"; color: var(--accent-bright); font-size: 20px; line-height: 1; filter: drop-shadow(0 0 7px rgba(74, 222, 128, .75)); }
.brand-text strong { display: block; font-size: 17px; letter-spacing: .16em; }
.brand-text span { display: block; margin-top: 2px; color: var(--text-muted); font-size: 10px; letter-spacing: .05em; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 5px; }
.nav-links a {
    padding: 9px 11px;
    color: var(--text-soft);
    font-size: 13px;
    border-radius: 10px;
    transition: color .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(148, 163, 184, .08); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-soft);
}
.burger span { display: block; height: 2px; margin: 4px 0; background: var(--text); border-radius: 2px; }

.btn-primary, .btn-ghost {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
    border: 1px solid var(--accent);
    color: #031409;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    box-shadow: 0 10px 34px rgba(34, 197, 94, .18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(34, 197, 94, .28); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text-soft); background: rgba(15, 23, 42, .5); }
.btn-ghost:hover { color: var(--text); border-color: rgba(74, 222, 128, .55); background: var(--accent-soft); }
.btn-block { width: 100%; }

.hero { position: relative; padding: 110px 0 76px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: clamp(36px, 7vw, 88px); }
.hero-eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--accent-bright);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.hero-eyebrow::before, .section-kicker::before { width: 22px; height: 1px; content: ""; background: var(--accent); }
.hero-title { max-width: 720px; margin: 0; font-size: clamp(44px, 6.2vw, 76px); line-height: .98; letter-spacing: -.06em; }
.hero-title span { color: var(--accent-bright); }
.hero-sub { max-width: 650px; margin: 24px 0 0; color: var(--text-soft); font-size: clamp(16px, 2vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--text-muted); font-size: 12px; }
.trust-row span::before { margin-right: 7px; color: var(--accent); content: "✓"; }
.hero-card, .content-card, .service-card, .step-card, .form-card {
    border: 1px solid var(--border);
    background: linear-gradient(150deg, rgba(15, 23, 42, .92), rgba(6, 13, 25, .82));
    box-shadow: var(--shadow);
}
.hero-card { position: relative; padding: 24px; overflow: hidden; border-radius: 28px; }
.hero-card::before { position: absolute; width: 250px; height: 250px; top: -140px; right: -80px; content: ""; background: var(--accent); border-radius: 50%; filter: blur(95px); opacity: .25; }
.hero-card-header, .hero-card-footer { position: relative; display: flex; justify-content: space-between; gap: 10px; color: var(--text-muted); font-size: 12px; }
.hero-card-pill { padding: 5px 9px; color: var(--accent-bright); background: var(--accent-soft); border: 1px solid rgba(34,197,94,.3); border-radius: 999px; }
.hero-card-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.hero-card-item { padding: 16px; border: 1px solid var(--border); border-radius: 15px; background: rgba(2, 6, 23, .58); }
.hero-card-item strong { display: block; margin-bottom: 5px; font-size: 15px; }
.hero-card-item span { color: var(--text-muted); font-size: 12px; }

.section { padding: 78px 0; }
.section-compact { padding: 38px 0; }
.proof-strip { border-block: 1px solid var(--border); background: rgba(8,17,31,.56); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { padding: 24px; border-right: 1px solid var(--border); }
.proof-grid > div:first-child { border-left: 1px solid var(--border); }
.proof-grid strong { display: block; color: var(--text); font-size: 17px; }
.proof-grid span { display: block; margin-top: 4px; color: var(--text-muted); font-size: 11px; }
.section-header { max-width: 730px; margin-bottom: 34px; }
.section-title { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.section-sub { margin: 12px 0 0; color: var(--text-soft); }
.services-grid, .info-grid, .process-grid { display: grid; gap: 16px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.info-grid { grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .step-card, .content-card { position: relative; padding: 24px; border-radius: var(--radius); }
.service-card { overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.service-card::after { position: absolute; right: 20px; bottom: 16px; color: var(--accent); font-size: 22px; content: "↗"; opacity: .65; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(74, 222, 128, .42); }
.service-label { margin-bottom: 16px; color: var(--accent-bright); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.service-title { margin: 0 0 9px; font-size: 20px; }
.service-text, .step-text, .content-card p, .content-card li { color: var(--text-soft); }
.service-tag { display: inline-flex; margin-top: 18px; color: var(--text); font-size: 12px; font-weight: 700; }
.step-card { box-shadow: none; }
.step-number { display: block; margin-bottom: 22px; color: var(--accent); font-size: 12px; font-weight: 900; }
.step-title { margin: 0 0 8px; font-size: 17px; }
.content-card h2, .content-card h3 { margin-top: 0; }
.content-card ul { padding-left: 19px; margin-bottom: 0; }
.content-card li + li { margin-top: 7px; }
.content-card-accent { border-color: rgba(34,197,94,.3); background: linear-gradient(145deg, rgba(34,197,94,.12), rgba(15,23,42,.85)); }
.showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 6vw, 72px); align-items: center; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0; list-style: none; color: var(--text-soft); }
.check-list li::before { display: inline-grid; width: 22px; height: 22px; margin-right: 10px; place-items: center; color: #031409; content: "✓"; border-radius: 50%; background: var(--accent); font-size: 12px; font-weight: 900; }
.showcase-panel { position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; overflow: hidden; border: 1px solid rgba(34,197,94,.3); border-radius: 30px; background: radial-gradient(circle at 50% 28%, rgba(34,197,94,.3), transparent 28%), linear-gradient(155deg, #0f172a, #030712); box-shadow: var(--shadow); }
.showcase-panel::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(34,197,94,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(34,197,94,.08) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(#000, transparent 75%); }
.showcase-panel p, .showcase-panel strong { position: relative; }
.showcase-panel p { max-width: 420px; margin: 0 0 12px; font-size: 19px; line-height: 1.55; }
.showcase-panel strong { color: var(--accent-bright); font-size: 12px; letter-spacing: .12em; }
.bolt-large { position: absolute; top: 32px; left: 50%; color: var(--accent-bright); font-size: 92px; transform: translateX(-50%); filter: drop-shadow(0 0 26px rgba(34,197,94,.65)); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--border); border-radius: 16px; background: var(--surface-soft); }
.faq-list details[open] { border-color: rgba(34,197,94,.3); }
.faq-list summary { position: relative; padding: 20px 54px 20px 22px; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 22px; color: var(--accent); content: "+"; font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--text-soft); }
.landing-contact { border-top: 1px solid var(--border); background: radial-gradient(circle at 0 50%, rgba(34,197,94,.1), transparent 38%); }
.landing-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 7vw, 86px); align-items: start; }
.contact-mini { margin-top: 28px; color: var(--text-soft); }

.page-hero { padding: 98px 0 44px; }
.page-hero h1 { max-width: 850px; margin: 0 0 18px; font-size: clamp(38px, 6vw, 66px); line-height: 1.03; letter-spacing: -.055em; }
.page-hero p { max-width: 740px; margin: 0; color: var(--text-soft); font-size: 18px; }
.contact-strip { padding: 34px 0 84px; }
.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(26px, 5vw, 48px);
    border: 1px solid rgba(34,197,94,.28);
    border-radius: 28px;
    background: radial-gradient(circle at 10% 0, rgba(34,197,94,.18), transparent 45%), var(--surface);
    box-shadow: var(--shadow);
}
.contact-main h3 { margin: 0 0 8px; font-size: clamp(23px, 4vw, 35px); }
.contact-main p { max-width: 680px; margin: 0; color: var(--text-soft); }

.form-shell { width: min(650px, calc(100% - 40px)); margin: 0 auto; padding: 86px 0; }
.form-card { padding: clamp(24px, 5vw, 42px); border-radius: 26px; }
.form-card h1 { margin: 0 0 10px; font-size: clamp(28px, 5vw, 40px); letter-spacing: -.04em; }
.form-intro { margin: 0 0 28px; color: var(--text-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
.form-grid .full { grid-column: 1 / -1; }
form > div, .form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 7px; color: #dbe5f2; font-size: 13px; font-weight: 700; }
input:not([type="checkbox"]):not([type="radio"]), select, textarea, .input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--text);
    border: 1px solid var(--border-strong);
    outline: none;
    border-radius: 12px;
    background: rgba(2, 6, 23, .75);
    transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 160px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(34,197,94,.1); }
input[type="checkbox"] { width: 17px; height: 17px; margin: 0 8px 0 0; accent-color: var(--accent); vertical-align: -3px; }
.form-help, .form-footer { color: var(--text-muted); font-size: 12px; }
.form-footer { margin-top: 20px; text-align: center; }
.form-footer a, .text-link { color: var(--accent-bright); }
.form-error, .form-errors, form ul { margin: 7px 0 0; padding: 0; color: var(--danger); font-size: 12px; list-style: none; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.notice, .flash { padding: 14px 16px; border-radius: 13px; }
.notice { color: var(--text-soft); border: 1px solid var(--border); background: var(--surface-soft); }
.flash-stack { position: fixed; top: 88px; right: 20px; z-index: 90; width: min(390px, calc(100% - 40px)); }
.flash { margin-bottom: 8px; color: var(--text); border: 1px solid rgba(34,197,94,.4); background: rgba(6, 78, 59, .96); box-shadow: var(--shadow); }
.flash-error, .flash-danger { border-color: rgba(251,113,133,.5); background: rgba(127,29,29,.96); }

.footer { padding: 52px 0 28px; border-top: 1px solid var(--border); background: rgba(2,6,23,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.footer-brand p { max-width: 440px; color: var(--text-muted); font-size: 13px; }
.footer h2 { margin: 0 0 14px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 9px; color: var(--text-soft); font-size: 13px; }
.footer-links a:hover { color: var(--accent-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 15px; margin-top: 38px; padding-top: 20px; color: var(--text-muted); border-top: 1px solid var(--border); font-size: 11px; }
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--accent-bright);
    border: 1px solid rgba(34,197,94,.38);
    border-radius: 14px;
    background: rgba(15,23,42,.9);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
}
.back-to-top.shown { opacity: 1; visibility: visible; transform: none; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
    .nav-cta .btn-ghost { display: none; }
    .hero-grid { grid-template-columns: 1fr 380px; gap: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 840px) {
    .burger { display: block; }
    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(8,17,31,.98);
        box-shadow: var(--shadow);
    }
    .nav-open .nav-links { display: flex; flex-direction: column; }
    .nav-links a { padding: 12px; }
    .hero { padding-top: 76px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { max-width: 520px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase, .landing-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .container { width: min(100% - 28px, var(--container)); }
    .nav { min-height: 68px; }
    .brand-text span, .nav-cta { display: none; }
    .hero { padding: 64px 0 44px; }
    .hero-title { font-size: clamp(39px, 13vw, 56px); }
    .hero-card-grid, .services-grid, .process-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-grid > div { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .page-hero { padding: 68px 0 24px; }
    .page-hero p { font-size: 16px; }
    .section { padding: 54px 0; }
    .contact-box { align-items: flex-start; flex-direction: column; }
    .form-shell { padding: 52px 0; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* Direction visuelle 2026 — plus éditoriale, précise et professionnelle. */
:root {
    --bg: #05080d;
    --surface: #0b1018;
    --surface-strong: #111824;
    --surface-soft: rgba(16, 23, 34, .76);
    --border: rgba(207, 224, 244, .11);
    --border-strong: rgba(207, 224, 244, .22);
    --accent: #58d68d;
    --accent-bright: #8bf0b3;
    --accent-dark: #2ca866;
    --accent-soft: rgba(88, 214, 141, .1);
    --text: #f4f7fb;
    --text-soft: #b4bfcc;
    --text-muted: #788698;
    --shadow: 0 28px 90px rgba(0, 0, 0, .38);
    --radius: 18px;
    --radius-sm: 11px;
    --container: 1240px;
}

body {
    background:
        radial-gradient(circle at 88% -6%, rgba(88, 214, 141, .1), transparent 30rem),
        radial-gradient(circle at 6% 34%, rgba(59, 130, 246, .06), transparent 28rem),
        var(--bg);
}

body::before {
    opacity: .12;
    background-size: 64px 64px;
}

.header {
    border-bottom-color: var(--border);
    background: rgba(5, 8, 13, .82);
}

.nav { min-height: 82px; }
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #101a17;
    box-shadow: inset 0 0 0 1px rgba(139, 240, 179, .05);
}
.brand-text strong { font-size: 16px; letter-spacing: .2em; }
.nav-links { gap: 2px; }
.nav-links a { padding: 10px 12px; font-size: 12px; font-weight: 650; }
.nav-links a[aria-current="page"] { color: var(--accent-bright); }

.btn-primary, .btn-ghost {
    min-height: 46px;
    padding-inline: 20px;
    border-radius: 9px;
    font-size: 12px;
    letter-spacing: .015em;
}
.btn-primary {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 12px 32px rgba(44, 168, 102, .16);
}
.btn-primary:hover { background: var(--accent-bright); }

.hero { min-height: 690px; display: flex; align-items: center; padding: 92px 0 94px; }
.hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr); }
.hero-eyebrow, .section-kicker { font-size: 10px; letter-spacing: .22em; }
.hero-title {
    max-width: 790px;
    font-size: clamp(50px, 5.5vw, 78px);
    line-height: 1.01;
    letter-spacing: -.058em;
}
.hero-title span { display: block; color: var(--accent-bright); }
.hero-sub { max-width: 660px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; }
.hero-actions { margin-top: 34px; }
.trust-row { gap: 10px 24px; margin-top: 30px; }
.trust-row span { color: #8996a6; }

.hero-card {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(18, 26, 38, .97), rgba(7, 11, 17, .98));
}
.hero-card::before { opacity: .13; }
.dashboard-title { color: var(--text); font-weight: 750; }
.hero-card-pill { display: inline-flex; align-items: center; gap: 7px; }
.hero-card-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 10px var(--accent); }
.dashboard-focus {
    position: relative;
    margin: 24px 0 12px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(5, 8, 13, .54);
}
.dashboard-focus > span, .item-index { color: var(--accent-bright); font-size: 9px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.dashboard-focus strong { display: block; max-width: 360px; margin-top: 10px; font-size: 21px; line-height: 1.3; }
.dashboard-focus p { margin: 8px 0 0; color: var(--text-muted); font-size: 12px; line-height: 1.6; }
.hero-card-grid { gap: 8px; margin: 8px 0 22px; }
.hero-card-item { min-height: 116px; padding: 15px; border-radius: 12px; background: rgba(5, 8, 13, .46); }
.hero-card-item .item-index { display: block; margin-bottom: 18px; }
.hero-card-item strong { font-size: 14px; }
.hero-card-footer strong { color: var(--text-soft); font-weight: 650; }

.proof-strip { background: rgba(9, 14, 21, .72); }
.proof-grid > div { padding: 28px 26px; }
.proof-grid strong { font-size: 18px; letter-spacing: -.02em; }

.section { padding: 92px 0; }
.section-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.08; }
.section-sub { font-size: 16px; }
.service-card, .step-card, .content-card, .form-card {
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(17, 24, 36, .94), rgba(8, 13, 20, .92));
}
.service-card, .content-card { padding: 28px; }
.service-card:hover { transform: translateY(-3px); }
.service-card::after { font-size: 18px; }
.service-label { font-size: 9px; letter-spacing: .2em; }
.service-title { font-size: 21px; }
.showcase-panel { border-radius: 20px; }
.contact-box { border-radius: 18px; }

@media (max-width: 1020px) {
    .hero-grid { grid-template-columns: 1fr 390px; }
}

@media (max-width: 840px) {
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { max-width: 620px; }
}

@media (max-width: 620px) {
    .nav { min-height: 70px; }
    .hero { padding: 66px 0 58px; }
    .hero-title { font-size: clamp(40px, 12vw, 56px); }
    .hero-title span { display: inline; }
    .hero-card { padding: 18px; }
    .dashboard-focus { padding: 18px; }
    .hero-card-item { min-height: 0; }
    .section { padding: 64px 0; }
}
