:root {
    --bg: #f7fbff;
    --surface: rgba(255, 255, 255, .78);
    --surface-solid: #ffffff;
    --ink: #071426;
    --muted: #53657c;
    --line: rgba(30, 99, 190, .12);
    --blue: #246bfe;
    --blue-2: #25c8ff;
    --cyan: #31d5ff;
    --navy: #061427;
    --shadow: 0 24px 70px rgba(31, 84, 150, .14);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(37, 200, 255, .14), transparent 32rem),
        radial-gradient(circle at top right, rgba(36, 107, 254, .13), transparent 30rem),
        linear-gradient(180deg, #fafdff 0%, #f3f8ff 42%, #ffffff 100%);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 100;
    width: min(1180px, calc(100% - 32px));
    margin: 16px auto 0;
    min-height: 68px;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(24px);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(30, 86, 165, .11);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 1.1rem;
}
.brand span span { color: var(--blue); }
.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 26px rgba(36, 107, 254, .32);
    position: relative;
}
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    border-left-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #2b3c50;
    font-size: .94rem;
    font-weight: 650;
}
.nav-links a { opacity: .82; transition: opacity .2s ease, color .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--blue); }
.nav-cta {
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), #1ab8ff);
    box-shadow: 0 16px 34px rgba(36, 107, 254, .25);
}

.section-pad { padding: 110px 0; }
.hero { padding-top: 96px; }
.hero-grid, .split-grid, .compare-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--blue);
    font-size: .79rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.eyebrow.light { color: #8cdfff; }

h1, h2, h3 { margin: 0; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); max-width: 850px; }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.55rem); }
h3 { font-size: 1.25rem; letter-spacing: -.035em; line-height: 1.1; }
p { color: var(--muted); line-height: 1.72; font-size: 1.035rem; }
.hero-subtitle { font-size: 1.16rem; max-width: 680px; margin: 24px 0 0; }

.hero-actions, .form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 999px;
    font: inherit;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #18c1ff);
    box-shadow: 0 18px 42px rgba(36, 107, 254, .28);
}
.btn-secondary {
    color: #10223a;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(24, 80, 148, .12);
    box-shadow: 0 12px 30px rgba(30, 86, 165, .09);
}
.btn.full { width: 100%; margin-top: 10px; }

.trust-strip {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.trust-strip div {
    padding: 17px;
    border-radius: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(36,107,254,.1);
    box-shadow: 0 16px 46px rgba(31,84,150,.08);
}
.trust-strip strong { display: block; font-size: .92rem; }
.trust-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: .82rem; line-height: 1.35; }

.hero-visual, .section-visual, .wide-visual, .contact-copy img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.75);
}
.hero-visual img { aspect-ratio: 16 / 9; object-fit: cover; }
.section-visual img, .wide-visual img, .contact-copy img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.problem-section { background: linear-gradient(180deg, transparent 0%, rgba(230,244,255,.66) 100%); }
.soft-section { background: linear-gradient(180deg, rgba(246,250,255,.45), rgba(232,245,255,.55)); }
.section-copy > p { max-width: 640px; }
.center-head {
    text-align: center;
    max-width: 880px;
    margin-bottom: 54px;
}
.center-head .eyebrow { justify-content: center; }
.center-head p { margin-inline: auto; max-width: 760px; }

.pain-list, .process-list { display: grid; gap: 14px; margin-top: 28px; }
.pain-list article, .process-list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(36,107,254,.1);
    box-shadow: 0 18px 42px rgba(31,84,150,.07);
}
.pain-list span, .process-list span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 26px rgba(36,107,254,.24);
}
.pain-list p, .process-list p { margin: 6px 0 0; font-size: .94rem; line-height: 1.55; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.feature-card, .target-card {
    padding: 25px;
    border-radius: 26px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(36,107,254,.1);
    box-shadow: 0 20px 48px rgba(31,84,150,.08);
}
.feature-card p, .target-card p { margin-bottom: 0; font-size: .95rem; }
.icon-dot {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--cyan) 26%, var(--blue));
    box-shadow: 0 14px 26px rgba(36,107,254,.24);
}

.dark-band {
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(49,213,255,.22), transparent 32rem),
        linear-gradient(135deg, #061427, #0c2342 52%, #071426);
}
.dark-band p { color: rgba(255,255,255,.72); }
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.compare-col {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.14);
}
.compare-col.muted { background: rgba(255,255,255,.06); opacity: .82; }
.compare-col.active {
    background: linear-gradient(135deg, rgba(36,107,254,.38), rgba(49,213,255,.16));
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.compare-col ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.compare-col li { color: rgba(255,255,255,.8); position: relative; padding-left: 22px; line-height: 1.45; }
.compare-col li::before { content: "•"; position: absolute; left: 0; color: var(--cyan); }

.check-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.check-grid span {
    padding: 16px 16px 16px 44px;
    position: relative;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(36,107,254,.1);
    color: #253a53;
    font-weight: 700;
    line-height: 1.35;
}
.check-grid span::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 14px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: .72rem;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}
.wide-visual { margin-top: 24px; }

.contact-section {
    background:
        radial-gradient(circle at 15% 30%, rgba(49,213,255,.18), transparent 32rem),
        linear-gradient(180deg, rgba(247,251,255,.9), #ffffff);
}
.contact-grid { align-items: start; }
.contact-copy img { margin-top: 28px; }
.contact-card {
    padding: 28px;
    border-radius: 34px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(36,107,254,.12);
    box-shadow: 0 28px 80px rgba(31,84,150,.16);
    backdrop-filter: blur(22px);
}
.form-progress {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 6px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #edf6ff;
}
.form-progress button {
    border: 0;
    padding: 12px;
    border-radius: 999px;
    color: #52667e;
    background: transparent;
    font: inherit;
    font-weight: 850;
}
.form-progress button.active {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 26px rgba(36,107,254,.22);
}
.form-progress button:disabled { opacity: .45; }

fieldset { border: 0; padding: 0; margin: 0; }
legend {
    margin-bottom: 18px;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -.04em;
}
label {
    display: grid;
    gap: 8px;
    color: #26374d;
    font-weight: 750;
    font-size: .92rem;
    margin-bottom: 14px;
}
.field.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
input, textarea {
    width: 100%;
    border: 1px solid rgba(36,107,254,.14);
    border-radius: 16px;
    padding: 15px 16px;
    color: var(--ink);
    background: rgba(247,251,255,.85);
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus {
    border-color: rgba(36,107,254,.52);
    box-shadow: 0 0 0 4px rgba(36,107,254,.1);
    background: #fff;
}
.validation-errors {
    margin: 10px 0 18px;
    padding: 14px 18px;
    border-radius: 18px;
    color: #9a2336;
    background: #fff1f4;
    font-weight: 650;
}
/*.success-box {
    text-align: center;
    padding: 36px 18px;
}
.success-box span {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: #fff;
    border-radius: 24px;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 44px rgba(36,107,254,.28);
}
.success-box p { margin-inline: auto; max-width: 480px; }*/

.site-footer {
    padding: 34px 0;
    background: #061427;
    color: #fff;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.site-footer p { color: rgba(255,255,255,.62); margin: 8px 0 0; font-size: .92rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.72); font-weight: 700; }
.footer-links a:hover { color: #fff; }

.reveal {
    animation: reveal .8s ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
}
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
@keyframes reveal {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { animation: none; }
    .btn:hover { transform: none; }
}

@media (max-width: 980px) {
    .nav-links { display: none; }
    .hero-grid, .split-grid, .compare-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero { padding-top: 72px; }
    .section-pad { padding: 78px 0; }
    .reverse-on-mobile .section-visual { order: -1; }
    .trust-strip, .target-grid { grid-template-columns: 1fr; }
    .comparison, .feature-grid, .check-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .site-header { width: calc(100% - 20px); top: 8px; margin-top: 8px; padding: 9px 9px 9px 13px; }
    .brand { font-size: 1rem; }
    .brand-mark { width: 30px; height: 30px; border-radius: 10px; }
    .nav-cta { padding: 11px 13px; font-size: .84rem; }
    h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
    h2 { font-size: clamp(2.1rem, 9vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .field.two { grid-template-columns: 1fr; gap: 0; }
    .contact-card { padding: 20px; border-radius: 26px; }
    .footer-grid { flex-direction: column; align-items: flex-start; }
}

.error-box {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(220, 38, 38, 0.22);
    background: rgba(254, 242, 242, 0.9);
    color: #991b1b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.success-box {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(47, 128, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(50, 213, 255, 0.18), transparent 35%), rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

    .success-box h3 {
        margin: 0 0 0.5rem;
        color: #071426;
        font-size: 1.45rem;
    }

    .success-box p {
        margin: 0;
        color: #53627a;
    }

.validation-message {
    margin-top: 0.4rem;
    color: #dc2626;
    font-size: 0.85rem;
}

.form-actions.split {
    justify-content: space-between;
}

button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(42px) scale(0.985);
    filter: blur(8px);
    animation: finalReveal linear forwards;
    animation-timeline: view();
    animation-range: entry 12% cover 42%;
    will-change: opacity, transform, filter;
}

.final-cta-section {
    position: relative;
    padding: clamp(150px, 12vw, 250px) 0 clamp(150px, 11vw, 250px);
    /*background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.055), transparent 24%), #000000;*/
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

    .final-cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent 28%);
        pointer-events: none;
    }

.final-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@keyframes finalReveal {
    0% {
        opacity: 0;
        transform: translateY(42px) scale(0.985);
        filter: blur(8px);
    }

    45% {
        opacity: 0.35;
        transform: translateY(24px) scale(0.992);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.legal-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(47, 128, 255, 0.12), transparent 34rem), radial-gradient(circle at top right, rgba(50, 213, 255, 0.10), transparent 32rem), #f7f9fc;
    padding: 6rem 1.25rem 5rem;
}

.legal-hero {
    max-width: 980px;
    margin: 0 auto 2rem;
    padding: 3rem 0 1.5rem;
}

    .legal-hero h1 {
        margin: 0.4rem 0 0.75rem;
        font-size: clamp(2.4rem, 5vw, 4.8rem);
        line-height: 0.98;
        letter-spacing: -0.06em;
        color: #071426;
    }

    .legal-hero p {
        max-width: 720px;
        margin: 0;
        color: #53627a;
        font-size: 1.08rem;
        line-height: 1.7;
    }

.legal-content {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.legal-card {
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.06);
}

    .legal-card h2 {
        margin: 0 0 1rem;
        color: #071426;
        font-size: clamp(1.25rem, 2vw, 1.65rem);
        letter-spacing: -0.03em;
    }

    .legal-card p,
    .legal-card li {
        color: #53627a;
        line-height: 1.75;
        font-size: 1rem;
    }

    .legal-card p {
        margin: 0 0 1rem;
    }

        .legal-card p:last-child {
            margin-bottom: 0;
        }

    .legal-card ul {
        margin: 0 0 1rem;
        padding-left: 1.25rem;
    }

    .legal-card a {
        color: #1f6fff;
        text-decoration: none;
        font-weight: 650;
    }

        .legal-card a:hover {
            text-decoration: underline;
        }

.legal-note {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(47, 128, 255, 0.08);
    color: #334155 !important;
    font-size: 0.92rem !important;
}

@media (max-width: 760px) {
    .legal-page {
        padding-top: 5rem;
    }

    .legal-hero {
        padding-top: 2rem;
    }

    .legal-card {
        border-radius: 22px;
    }
}

.telephony-section {
    position: relative;
}

.telephony-highlight {
    margin: 1.35rem 0 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(47, 128, 255, 0.16);
    background: linear-gradient(135deg, rgba(47, 128, 255, 0.10), rgba(50, 213, 255, 0.07)), rgba(255, 255, 255, 0.78);
    color: #334155;
    line-height: 1.65;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

    .telephony-highlight strong {
        color: #071426;
    }

.product-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.product-card {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.055);
}

.product-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 20%, rgba(50, 213, 255, 0.45), transparent 42%), linear-gradient(135deg, rgba(47, 128, 255, 0.16), rgba(7, 20, 38, 0.05));
    color: #071426;
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(47, 128, 255, 0.18);
}

.product-card h3 {
    margin: 0 0 0.35rem;
    color: #071426;
    font-size: 1.08rem;
    letter-spacing: -0.025em;
}

.product-card p {
    margin: 0;
    color: #53627a;
    line-height: 1.6;
    font-size: 0.96rem;
}

@media (max-width: 760px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-icon {
        width: 3rem;
        height: 3rem;
    }
}