:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-2: #f0f2f7;
    --text: #15171d;
    --muted: #697180;
    --line: rgba(18, 24, 38, .12);
    --brand: #ef3829;
    --brand-dark: #c9281c;
    --accent: #39d66b;
    --ink: #09111f;
    --shadow: 0 24px 70px rgba(14, 23, 38, .12);
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Roboto", Sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(239, 56, 41, .14), transparent 26rem),
        radial-gradient(circle at 90% 8%, rgba(57, 214, 107, .12), transparent 22rem),
        linear-gradient(180deg, #fff 0%, #f6f7fb 34%, #fff 100%);
    z-index: -2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
    z-index: 999;
}
.skip-link:focus { left: 10px; }
.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}
.narrow { max-width: 900px; text-align: center; }
.section { padding: 96px 0; }
.section-tight { padding: 30px 0 90px; }
.section-kicker, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.section-kicker::before, .eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
h1, h2, h3 { margin: 0; line-height: 1.07; letter-spacing: -.04em; }
h1, h2, h3 { font-size: 40px; }
p { margin: 0; color: var(--muted); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    min-height: 84px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 24px;
}
.brand img { width: 108px; height: auto; }
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    color: #4c5461;
    font-weight: 650;
}
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    color: var(--text);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15, 23, 42, .14); }
.btn-primary { background: linear-gradient(135deg, var(--brand), #ff6a35); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .72); border: 1px solid rgba(255, 255, 255, .9); }
.btn-support { background: var(--brand); color: #fff; border-radius: 8px; min-height: 42px; }
.btn-small { min-height: 42px; padding: 0 16px; background: #68717d; color: #fff; border-radius: 8px; font-size: .78rem; text-transform: uppercase; letter-spacing: .02em; }
.btn-full { width: 100%; border-radius: 10px; }
.hero { padding: 105px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.hero-copy p { max-width: 720px; margin-top: 24px; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: center;
    gap: 10px 14px;
    margin-top: 34px;
    max-width: 620px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .7);
}
.trust-row strong { font-size: 1.5rem; color: var(--brand); }
.trust-row span { color: var(--muted); font-weight: 650; }
.hero-panel {
    position: relative;
    min-height: 520px;
    border-radius: 48px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.46)),
        radial-gradient(circle at 30% 20%, rgba(239,56,41,.20), transparent 15rem),
        radial-gradient(circle at 70% 85%, rgba(57,214,107,.20), transparent 16rem);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .78);
    overflow: hidden;
}
.hero-panel::before {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(9, 17, 31, .08);
    border-radius: 34px;
    background-image: linear-gradient(rgba(9,17,31,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(9,17,31,.05) 1px, transparent 1px);
    background-size: 42px 42px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .92; }
.orb-one { width: 150px; height: 150px; background: var(--brand); top: 70px; right: 70px; }
.orb-two { width: 100px; height: 100px; background: var(--accent); bottom: 76px; left: 54px; }
.dashboard-card {
    position: absolute;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 25px 60px rgba(15,23,42,.14);
    backdrop-filter: blur(16px);
}
.card-main {
    left: 54px;
    right: 54px;
    top: 155px;
    padding: 34px;
}
.card-main span { display: block; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; margin-bottom: 12px; }
.card-main strong { display: block; font-size: clamp(1.9rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.05em; color: var(--ink); }
.progress-line { height: 12px; border-radius: 999px; background: #edf0f5; margin-top: 28px; overflow: hidden; }
.progress-line i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.card-mini { padding: 16px 20px; font-weight: 900; color: var(--ink); }
.card-a { top: 64px; left: 54px; }
.card-b { right: 36px; bottom: 126px; }
.card-c { left: 110px; bottom: 54px; }
.intro { padding-bottom: 30px; }
.intro p { margin-top: 22px; font-size: 1.05rem; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 28px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(15,23,42,.13); background: #fff; }
.service-icon { width: 168px; height: 58px; object-fit: contain; margin-bottom: 24px; }
.service-card h3 { color: #34363b; max-width: 340px; }
.service-card p { margin: 24px 0 28px; flex: 1; font-size: 1rem; }
.contact-band {
    background: linear-gradient(135deg, #111827 0%, #1d2637 58%, #2c1210 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-band::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    right: -160px;
    top: -160px;
    background: rgba(239, 56, 41, .34);
    filter: blur(20px);
}
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; position: relative; }
.contact-copy h2 { color: #fff; margin-bottom: 22px; }
.contact-copy p { color: rgba(255,255,255,.72); margin-top: 18px; }
.contact-form {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 90px rgba(0,0,0,.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: rgba(255,255,255,.78); font-weight: 700; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    color: var(--text);
    padding: 14px 15px;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(57,214,107,.14); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.consent { display: flex !important; grid-template-columns: auto 1fr; gap: 10px !important; align-items: start; font-size: .92rem; }
.consent input { width: auto; margin-top: 4px; }
.consent a { color: #fff; text-decoration: underline; }
.bot-field { position: absolute; left: -10000px; opacity: 0; height: 0; overflow: hidden; }
.form-status { min-height: 24px; margin-bottom: 12px; color: rgba(255,255,255,.8); font-weight: 750; }
.form-status.success { color: #a7f3d0; }
.form-status.error { color: #fecaca; }
.clients { background: #fff; }
.clients h2 { text-align: center; margin-bottom: 42px; }
.clients .section-kicker { justify-content: center; display: flex; width: fit-content; margin-inline: auto; }
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
.client-logo {
    min-height: 145px;
    display: grid;
    place-items: center;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 46px rgba(15,23,42,.06);
}
.client-logo img { max-height: 92px; object-fit: contain; }
.final-cta { padding-top: 70px; }
.final-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 44px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: radial-gradient(circle at 16% 20%, rgba(255,255,255,.18), transparent 22rem), linear-gradient(135deg, var(--brand), #101827 65%);
    box-shadow: var(--shadow);
}
.final-card h2 { color: #fff; max-width: 850px; }
.site-footer {
    padding: 42px 0;
    background: #fff;
    border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-brand img { width: 92px; height: auto; margin-bottom: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-weight: 700; }
.footer-links a:hover { color: var(--brand); }
.floating-support {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: none;
    background: var(--brand);
    color: #fff;
    padding: 13px 16px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(239, 56, 41, .34);
}
.legal-hero { padding-bottom: 30px; }
.legal-hero h1 { font-size: 40px; }
.legal-hero p { margin-top: 16px; }
.legal-section { padding-top: 30px; }
.legal-card {
    padding: clamp(28px, 5vw, 56px);
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.legal-card h2 { font-size: 40px; margin: 34px 0 14px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card ul { color: var(--muted); }
.legal-text { white-space: normal; color: #3c4350; line-height: 1.8; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
    .nav-wrap { grid-template-columns: 1fr auto auto; }
    .nav-toggle {
        display: inline-grid;
        gap: 5px;
        width: 44px;
        height: 44px;
        place-content: center;
        border: 0;
        border-radius: 12px;
        background: #f1f3f7;
        cursor: pointer;
    }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 999px; }
    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .hero-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-panel { min-height: 430px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .container { width: min(100% - 28px, var(--container)); }
    .section { padding: 72px 0; }
    .hero { padding-top: 70px; }
    .nav-wrap { min-height: 72px; grid-template-columns: 1fr auto; }
    .btn-support { display: none; }
    .floating-support { display: inline-flex; }
    .hero-actions, .trust-row, .field-row, .final-card { grid-template-columns: 1fr; }
    .trust-row { display: grid; }
    .hero-panel { min-height: 350px; border-radius: 30px; }
    .card-main { left: 22px; right: 22px; top: 120px; padding: 24px; }
    .card-a { top: 38px; left: 24px; }
    .card-b { right: 22px; bottom: 88px; }
    .card-c { left: 22px; bottom: 28px; }
    .service-grid, .client-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .contact-form { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; }
}
