:root {
    --ink: #203038;
    --muted: #617178;
    --paper: #fff;
    --soft: #f4f8f9;
    --line: #dce7e9;
    --blue: #079fc9;
    --blue-d: #087fa1;
    --green: #65b943;
    --pink: #ec4263;
    --yellow: #f2b51f;
    --violet: #7359c6;
    --navy: #123b4c;
    --radius: 24px;
    --shadow: 0 22px 60px rgba(17,55,69,.10);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

img,
svg {
    display: flex;
    max-width: 100;
    background-position: center top;
    flex-direction: 100%;
    gap: 12px;
    align-self: start;
    font-size: -13px;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 36px),var(--max));
    margin-inline: auto;
}

.skip {
    position: absolute;
    left: -9999px;
}

.skip:focus {
    left: 16px;
    top: 16px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 1000;
}

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: .88rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
}

.topbar a {
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220,231,233,.82);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.brand img {
    width: 230px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 650;
    font-size: .95rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--blue-d);
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff!important;
    box-shadow: 0 10px 25px rgba(236,66,99,.22);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    font-size: 1.4rem;
}

.hero {
    padding: 72px 0 54px;
    overflow: hidden;
    background: radial-gradient(circle at 12% 18%,rgba(7,159,201,.08),transparent 31%),radial-gradient(circle at 89% 70%,rgba(236,66,99,.08),transparent 30%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 54px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-d);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg,var(--pink),var(--yellow),var(--green),var(--blue));
}

h1,
h2,
h3 {
    line-height: 1.12;
    margin: 0 0 18px;
    font-size: -1px;
}

h1 {
    font-size: clamp(2.6rem,6vw,5.25rem);
    letter-spacing: -.045em;
    max-width: 820px;
}

h2 {
    font-size: clamp(2rem,4vw,3.55rem);
    letter-spacing: -.035em;
}

h3 {
    font-size: 1.25rem;
}

.lead {
    font-size: clamp(1.07rem,2vw,1.3rem);
    color: var(--muted);
    max-width: 660px;
}

.hero-actions,
.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    transition: .2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 14px 32px rgba(236,66,99,.22);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(17,55,69,.06);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
    color: var(--muted);
    font-size: .93rem;
}

.hero-proof strong {
    display: block;
    color: var(--ink);
    font-size: 1.12rem;
}

.hero-proof span {
    padding-right: 20px;
    border-right: 1px solid var(--line);
}

.hero-proof span:last-child {
    border-right: 0;
}

.hero-visual {
    position: relative;
}

.hero-visual:before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(242,181,31,.18);
    right: -60px;
    top: -28px;
    filter: blur(2px);
    z-index: -1;
}

.section {
    padding: 50px 0;
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    background: var(--navy);
    color: #fff;
}

.section-dark .muted {
    color: rgba(255,255,255,.72);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: end;
    margin-bottom: 42px;
}

.section-head>div:first-child {
    max-width: 720px;
}

.section-head p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
}

.kicker {
    font-weight: 800;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    margin-bottom: 10px;
}

.muted {
    color: var(--muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 34px rgba(17,55,69,.055);
}

.card p {
    color: var(--muted);
    margin-bottom: 0;
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    font-size: 1.35rem;
    font-weight: 900;
}

.i-yellow {
    background: #fff5d8;
    color: #ae7a00;
}

.i-green {
    background: #edf9e9;
    color: #3da21d;
}

.i-blue {
    background: #e8f7fb;
    color: #087fa1;
}

.i-pink {
    background: #fff0f3;
    color: #c72d50;
}

.i-violet {
    background: #f0edfb;
    color: #6047b5;
}

.i-orange {
    background: #fff0e6;
    color: #c65d20;
}

.solutions .card {
    min-height: 245px;
    position: relative;
    overflow: hidden;
}

.solutions .card:after {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    right: -35px;
    bottom: -35px;
    background: var(--tint,#eef7fa);
}

.link-arrow {
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
    text-decoration: none;
    font-weight: 800;
    color: var(--blue-d);
}

.method {
    counter-reset: step;
}

.method-item {
    position: relative;
    padding: 26px 24px 26px 74px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.method-item:before {
    counter-increment: step;
    content: counter(step,decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 23px;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.11);
    font-weight: 900;
    color: #fff;
}

.method-item h3 {
    margin-bottom: 7px;
}

.method-item p {
    margin: 0;
    color: rgba(255,255,255,.67);
}

.feature {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 58px;
    align-items: center;
}

.feature.reverse {
    grid-template-columns: 1.08fr .92fr;
}

.feature.reverse .visual {
    order: 2;
}

.checklist {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 32px;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eaf8ef;
    color: #348d52;
    font-weight: 900;
    font-size: .8rem;
}

.band {
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(115deg,#153f51,#0a7998);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: var(--shadow);
}

.band h2 {
    font-size: clamp(1.8rem,3.4vw,3rem);
    margin-bottom: 8px;
}

.band p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.stat {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.stat strong {
    display: block;
    font-size: 1.85rem;
    letter-spacing: -.04em;
}

.stat span {
    color: var(--muted);
    font-size: .9rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-weight: 700;
    font-size: .88rem;
}

.page-hero {
    padding: 70px 0 58px;
    background: linear-gradient(180deg,#f4fafb,#fff);
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 54px;
    align-items: center;
}

.breadcrumbs {
    font-size: .87rem;
    color: var(--muted);
    margin-bottom: 22px;
}

.breadcrumbs a {
    text-decoration: none;
}

.timeline {
    display: grid;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 0 0 32px;
}

.timeline-num {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: #e9f7fb;
    color: var(--blue-d);
    font-weight: 900;
}

.timeline-content {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.plan {
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 30px;
    background: #fff;
}

.plan.featured {
    border: 2px solid var(--pink);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.plan-label {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff0f3;
    color: #bd2b4b;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.plan ul {
    padding-left: 20px;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 30px;
}

.contact-card {
    background: var(--navy);
    color: #fff;
    border-radius: 30px;
    padding: 34px;
}

.contact-card a {
    color: #fff;
}

.contact-item {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.15);
}

.contact-item:first-of-type {
    margin-top: 20px;
}

.form-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 34px;
    background: #fff;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-weight: 750;
    font-size: .9rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid #cbd9dc;
    border-radius: 14px;
    padding: 13px 14px;
    background: #fbfdfd;
    color: var(--ink);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.consent {
    font-size: .82rem;
    color: var(--muted);
}

.notice {
    display: none;
    margin-top: 16px;
    padding: 13px 15px;
    border-radius: 14px;
    background: #eaf8ef;
    color: #2f7548;
    font-weight: 700;
}

.faq {
    display: grid;
    gap: 12px;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0 20px;
    background: #fff;
}

.faq summary {
    padding: 18px 0;
    font-weight: 800;
    cursor: pointer;
}

.faq p {
    margin-top: 0;
    color: var(--muted);
}

.footer {
    background: #0c2f3d;
    color: #fff;
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr 1fr;
    gap: 36px;
}

.footer-logo {
    width: 210px;

    /* filter: brightness(0) invert(1) */
    opacity: .95;
}

.footer p,
.footer a {
    color: rgba(255,255,255,.68);
}

.footer a {
    text-decoration: none;
}

.footer h3 {
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: .84rem;
    color: rgba(255,255,255,.55);
}

.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(236,66,99,.3);
    font-size: 2.25em;
}

.legal {
    max-width: 860px;
}

.legal h2 {
    font-size: 1.65rem;
    margin-top: 42px;
}

.legal p,
.legal li {
    color: var(--muted);
}

@media (max-width:980px){
    .main-nav {
        position: absolute;
        top: 82px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .feature,
    .feature.reverse,
    .page-hero .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature.reverse .visual {
        order: 0;
    }

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-3,
    .price-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .band {
        grid-template-columns: 1fr;
    }

    .topbar .container {
        justify-content: center;
    }

    .topbar .hide-mobile {
        display: none;
    }
}

@media (max-width:650px){
    .container {
        width: min(calc(100% - 24px),var(--max));
    }

    .brand img {
        width: 190px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-grid {
        gap: 34px;
    }

    h1 {
        font-size: 2.7rem;
    }

    .hero-proof {
        align-items: flex-start;
        gap: 12px;
    }

    .hero-proof span {
        padding-right: 12px;
    }

    .section {
        padding: 68px 0;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 16px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .price-grid,
    .stats,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

    .card {
        padding: 24px;
    }

    .band {
        padding: 28px;
    }

    .plan.featured {
        transform: none;
    }

    .footer-bottom {
        display: block;
    }

    .floating-call {
        width: 52px;
        height: 52px;
    }

    .topbar {
        font-size: .78rem;
    }
}


