:root {
    --ink: #18213a;
    --ink-soft: #5b6278;
    --purple: #812fd1;
    --purple-dark: #592197;
    --purple-soft: #efe3ff;
    --teal: #008fa7;
    --teal-dark: #00788e;
    --mint: #eaf6f1;
    --card: #ffffff;
    --line: #d8dce9;
    --cloud: #f5f6fb;
    --shadow: 0 24px 80px rgba(24, 33, 58, .12);
    --radius-lg: 42px;
    --radius-md: 24px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Bahnschrift, Banhshift, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    font-weight: 400;
    line-height: 1.45;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button, input, textarea, select {
    font: inherit;
}
  .ca-home {
        overflow: hidden;
    }

    .ca-hero {
        position: relative;
        min-height: auto;
        padding: clamp(58px, 7vw, 96px) 0 clamp(70px, 8vw, 120px);
        background:
            radial-gradient(circle at 12% 12%, rgba(129, 47, 209, .13), transparent 32%),
            radial-gradient(circle at 88% 18%, rgba(0, 143, 167, .12), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    }

    .ca-hero::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        right: -210px;
        bottom: -260px;
        border-radius: 48% 52% 46% 54%;
        background: rgba(129, 47, 209, .08);
        z-index: 0;
    }

    .ca-hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
        align-items: center;
        gap: clamp(34px, 5vw, 72px);
    }

    .ca-hero-copy h1 {
        max-width: 760px;
        margin-bottom: 22px;
        font-size: clamp(44px, 6.6vw, 82px);
        font-weight: 600;
        line-height: .98;
        letter-spacing: -.065em;
    }

    .ca-hero-copy .lead {
        max-width: 650px;
    }

    .ca-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 32px;
    }

    .ca-trust-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 680px;
        margin-top: 34px;
    }

    .ca-trust-item {
        min-height: 96px;
        padding: 18px;
        border: 1px solid rgba(216, 220, 233, .95);
        border-radius: 22px;
        background: rgba(255, 255, 255, .9);
        box-shadow: 0 18px 46px rgba(24, 33, 58, .08);
    }

    .ca-trust-item i {
        display: inline-grid;
        place-items: center;
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
        border-radius: 12px;
        color: #fff;
        background: var(--purple);
        font-size: 15px;
    }

    .ca-trust-item strong {
        display: block;
        margin-bottom: 4px;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: -.02em;
    }

    .ca-trust-item span {
        color: var(--ink-soft);
        font-size: 14px;
    }

    .ca-hero-media {
        position: relative;
        min-height: 620px;
    }

    .ca-photo-stack {
        position: relative;
        min-height: 620px;
    }

    .ca-main-photo {
        position: absolute;
        inset: 18px 0 auto auto;
        width: min(100%, 640px);
        height: 500px;
        overflow: hidden;
        border-radius: 42px;
        background: #dfe5ef;
        box-shadow: 0 34px 90px rgba(24, 33, 58, .2);
    }

    .ca-main-photo img,
    .ca-floating-photo img,
    .ca-service-image img,
    .ca-process-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ca-main-photo::after,
    .ca-service-image::after,
    .ca-process-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 48%, rgba(24, 33, 58, .46));
        pointer-events: none;
    }

    .ca-floating-photo {
        position: absolute;
        left: 0;
        bottom: 28px;
        width: 245px;
        height: 285px;
        overflow: hidden;
        border: 10px solid #fff;
        border-radius: 36px;
        background: #fff;
        box-shadow: 0 26px 64px rgba(24, 33, 58, .2);
    }

    .ca-price-card {
        position: absolute;
        right: 34px;
        bottom: 0;
        width: min(330px, 72%);
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: 28px;
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 26px 65px rgba(24, 33, 58, .18);
        backdrop-filter: blur(16px);
    }

    .ca-price-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
    }

    .ca-price-icon {
        display: inline-grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border-radius: 16px;
        color: #fff;
        background: var(--teal);
        font-size: 19px;
    }

    .ca-price-card small {
        display: block;
        color: var(--ink-soft);
        font-size: 13px;
    }

    .ca-price-card b {
        display: block;
        margin-top: 3px;
        font-size: 28px;
        font-weight: 600;
        letter-spacing: -.04em;
        color: var(--purple);
    }

    .ca-mini-progress {
        display: grid;
        gap: 9px;
    }

    .ca-mini-progress span {
        display: block;
        height: 8px;
        border-radius: 999px;
        background: #e7eaf3;
        overflow: hidden;
    }

    .ca-mini-progress span::before {
        content: "";
        display: block;
        width: var(--w);
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--purple), var(--teal));
    }

    .ca-floating-badge {
        position: absolute;
        top: 0;
        left: 18px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 17px;
        border-radius: 999px;
        color: #fff;
        background: var(--purple);
        box-shadow: 0 18px 42px rgba(129, 47, 209, .26);
        font-weight: 600;
    }

    .ca-section {
        padding: clamp(58px, 8vw, 104px) 0;
    }

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

    .ca-section-head .lead {
        max-width: 520px;
        margin-bottom: 0;
        font-size: 18px;
    }

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

    .ca-service-card {
        position: relative;
        overflow: hidden;
        min-height: 460px;
        border-radius: 34px;
        background: #151d31;
        box-shadow: 0 24px 60px rgba(24, 33, 58, .14);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .ca-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 34px 78px rgba(24, 33, 58, .18);
    }

    .ca-service-image {
        position: absolute;
        inset: 0;
    }

    .ca-service-card:hover .ca-service-image img {
        transform: scale(1.045);
    }

    .ca-service-image img {
        transition: transform .35s ease;
    }

    .ca-service-content {
        position: absolute;
        inset: auto 0 0;
        z-index: 1;
        padding: 28px;
        color: #fff;
    }

    .ca-service-icon {
        display: inline-grid;
        place-items: center;
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
        border-radius: 17px;
        color: #fff;
        background: rgba(255, 255, 255, .18);
        backdrop-filter: blur(10px);
        font-size: 22px;
    }

    .ca-service-content h3 {
        color: #fff;
        font-size: 26px;
        font-weight: 600;
    }

    .ca-service-content p {
        color: rgba(255, 255, 255, .88);
        margin-bottom: 18px;
    }

    .ca-service-content a {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #fff;
        font-weight: 600;
        border-bottom: 2px solid rgba(255, 255, 255, .8);
    }

    .ca-wide-panel {
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: clamp(28px, 5vw, 70px);
        align-items: center;
        padding: clamp(32px, 5vw, 60px);
        border-radius: 42px;
        color: #fff;
        background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    }

    .ca-wide-panel::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        right: -140px;
        top: -150px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
    }

    .ca-wide-panel > * {
        position: relative;
        z-index: 1;
    }

    .ca-wide-panel .eyebrow,
    .ca-wide-panel h2,
    .ca-wide-panel p {
        color: #fff;
    }

    .ca-process-list {
        display: grid;
        gap: 14px;
    }

    .ca-process-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 14px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 22px;
        background: rgba(255, 255, 255, .1);
    }

    .ca-process-item i {
        display: grid;
        place-items: center;
        width: 52px;
        height: 52px;
        border-radius: 17px;
        color: var(--purple);
        background: #fff;
        font-size: 20px;
    }

    .ca-process-item h3 {
        color: #fff;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .ca-process-item p {
        color: rgba(255, 255, 255, .82);
        margin-bottom: 0;
    }

    .ca-process-photo {
        position: relative;
        min-height: 485px;
        overflow: hidden;
        border-radius: 34px;
        background: rgba(255, 255, 255, .12);
        box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
    }

    .ca-process-overlay {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 22px;
        z-index: 1;
        padding: 22px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .9);
        color: var(--ink);
        backdrop-filter: blur(12px);
    }

    .ca-process-overlay h3 {
        margin-bottom: 6px;
        font-weight: 600;
    }

    .ca-process-overlay p {
        margin-bottom: 0;
        color: var(--ink-soft);
    }

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

    .ca-benefit-card {
        min-height: 230px;
        padding: 26px;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: #fff;
        box-shadow: 0 18px 48px rgba(24, 33, 58, .08);
    }

    .ca-benefit-card i {
        display: inline-grid;
        place-items: center;
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 17px;
        color: var(--purple);
        background: var(--purple-soft);
        font-size: 20px;
    }

    .ca-benefit-card h3 {
        font-weight: 600;
    }

    .ca-benefit-card p {
        margin-bottom: 0;
        color: var(--ink-soft);
    }

    .ca-final-cta {
        padding: clamp(34px, 5vw, 56px);
        border-radius: 42px;
        background:
            radial-gradient(circle at 86% 12%, rgba(0, 143, 167, .16), transparent 28%),
            linear-gradient(135deg, #f7f8fc, #ffffff);
        border: 1px solid var(--line);
        box-shadow: 0 24px 70px rgba(24, 33, 58, .09);
    }

    .ca-final-cta-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 30px;
        align-items: center;
    }

    .ca-final-cta h2 {
        max-width: 780px;
    }

    .ca-final-cta p {
        max-width: 720px;
        color: var(--ink-soft);
        margin-bottom: 0;
    }

    @media (max-width: 1060px) {
        .ca-hero-grid,
        .ca-wide-panel,
        .ca-final-cta-grid {
            grid-template-columns: 1fr;
        }

        .ca-hero-media,
        .ca-photo-stack {
            min-height: 560px;
        }

        .ca-main-photo {
            left: 90px;
            right: auto;
            width: calc(100% - 90px);
        }

        .ca-service-grid {
            grid-template-columns: 1fr 1fr;
        }

        .ca-benefit-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 760px) {
        .ca-hero {
            padding-top: 38px;
        }

        .ca-hero-grid {
            gap: 32px;
        }

        .ca-trust-strip,
        .ca-service-grid,
        .ca-benefit-grid {
            grid-template-columns: 1fr;
        }

        .ca-hero-media,
        .ca-photo-stack {
            min-height: 500px;
        }

        .ca-main-photo {
            inset: 42px 0 auto 0;
            width: 100%;
            height: 365px;
            border-radius: 30px;
        }

        .ca-floating-photo {
            width: 168px;
            height: 205px;
            left: -4px;
            bottom: 8px;
            border-width: 7px;
            border-radius: 26px;
        }

        .ca-price-card {
            right: 0;
            bottom: 0;
            width: min(285px, 82%);
            padding: 18px;
            border-radius: 24px;
        }

        .ca-floating-badge {
            left: 0;
            top: 0;
            font-size: 14px;
        }

        .ca-section-head {
            display: block;
        }

        .ca-service-card {
            min-height: 390px;
            border-radius: 28px;
        }

        .ca-service-content {
            padding: 22px;
        }

        .ca-wide-panel,
        .ca-final-cta {
            border-radius: 30px;
        }

        .ca-process-photo {
            min-height: 360px;
            border-radius: 26px;
        }

        .ca-final-cta-grid {
            gap: 22px;
        }

        .ca-final-cta .btn {
            width: 100%;
        }
    }
.container {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(216, 220, 233, .85);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--purple);
    font-size: clamp(26px, 3vw, 39px);
    letter-spacing: -.06em;
    font-weight: 500;
}

.brand span:last-child,
.footer-brand {
    color: var(--ink);
}

.brand-mark {
    width: 35px;
    height: 35px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--purple), #b05dff);
    font-size: 24px;
    line-height: 1;
    letter-spacing: -.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 38px);
    font-size: 16px;
    font-weight: 500;
}

.main-nav a {
    position: relative;
    transition: color .25s ease, transform .25s ease;
}

.main-nav a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--purple);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.btn-nav,
.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 19px;
    color: #fff !important;
    background: var(--teal);
    border: 0;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(0, 143, 167, .22);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.btn:hover,
.btn-nav:hover,
button.btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 143, 167, .28);
}

.btn.secondary {
    background: #fff;
    color: var(--purple) !important;
    border: 1px solid rgba(129, 47, 209, .25);
    box-shadow: none;
}

.btn.secondary:hover {
    background: var(--purple-soft);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    padding: 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero::before,
.hero::after,
.shape-mint {
    content: "";
    position: absolute;
    border-radius: 44% 56% 52% 48%;
    background: var(--mint);
    z-index: -2;
}

.hero::before {
    width: 420px;
    height: 260px;
    top: -80px;
    left: 18%;
    transform: rotate(-36deg);
}

.hero::after {
    width: 330px;
    height: 420px;
    bottom: -170px;
    left: -100px;
    transform: rotate(-28deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 56px;
    padding: 78px 0 110px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--purple);
    font-weight: 600;
    letter-spacing: .01em;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(46px, 7vw, 86px);
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 600;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 600;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 600;
}

.text-purple {
    color: var(--purple);
}

.lead {
    font-size: clamp(18px, 2vw, 23px);
    color: var(--ink-soft);
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.quick-quote {
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(660px, 100%);
    min-height: 92px;
    margin-top: 38px;
    padding: 16px;
    border-radius: 27px;
    background: #fff;
    box-shadow: var(--shadow);
}

.quick-pill {
    flex: 1;
    min-height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--purple);
    background: var(--purple-soft);
    font-weight: 600;
}

.quick-icon {
    width: 22px;
    height: 22px;
    color: var(--purple);
}

.hero-note {
    display: flex;
    gap: 12px;
    max-width: 680px;
    margin-top: 26px;
    color: var(--ink-soft);
    font-size: 15px;
}

.info-dot {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--ink-soft);
    border-radius: 50%;
    font-weight: 600;
    font-size: 13px;
}

.hero-art {
    position: relative;
    min-height: 580px;
}

.check-mark {
    position: absolute;
    inset: 0;
    transform: translateX(20px);
}

.check-stem,
.check-arm,
.check-tail {
    position: absolute;
    border-radius: 999px;
    transform-origin: center;
}

.check-stem {
    width: 112px;
    height: 620px;
    right: 90px;
    top: -40px;
    background: #20283c;
    transform: rotate(23deg);
}

.check-tail {
    width: 118px;
    height: 360px;
    left: 160px;
    bottom: -70px;
    background: linear-gradient(180deg, var(--purple), var(--purple-dark));
    transform: rotate(-23deg);
}

.check-arm {
    width: 470px;
    height: 118px;
    left: 132px;
    bottom: 115px;
    background: linear-gradient(90deg, var(--purple-dark), #9d38e0);
    transform: rotate(23deg);
}

.person-card {
    position: absolute;
    top: 96px;
    right: 105px;
    width: min(310px, 52vw);
    min-height: 430px;
    border-radius: 160px 160px 45px 45px;
    background: linear-gradient(180deg, #f4f6fb, #fff);
    border: 1px solid rgba(216, 220, 233, .8);
    box-shadow: 0 24px 65px rgba(24, 33, 58, .14);
    overflow: hidden;
}

.person-head {
    width: 122px;
    height: 122px;
    margin: 48px auto 0;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 36%, #fff 0 7%, #e5d0c1 8% 55%, #caa390 56% 100%);
    position: relative;
}

.person-head::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 17px;
    width: 88px;
    height: 43px;
    border-radius: 48px 48px 15px 15px;
    background: #e9e9e9;
}

.person-body {
    width: 230px;
    height: 260px;
    margin: 10px auto 0;
    border-radius: 90px 90px 20px 20px;
    background: linear-gradient(90deg, #20283c 0 27%, #fff 28% 62%, #20283c 63% 100%);
}

.section {
    padding: 94px 0;
}

.section.compact {
    padding: 66px 0;
}

.purple-panel {
    color: #fff;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 58px);
    overflow: hidden;
    position: relative;
}

.purple-panel::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.panel-head {
    max-width: 620px;
    position: relative;
    z-index: 1;
}

.panel-head p,
.purple-panel p {
    color: rgba(255, 255, 255, .86);
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
}

.service-card,
.feature-card,
.review-card,
.value-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--card);
    padding: 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card {
    min-height: 210px;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .36);
}

.service-card:hover,
.feature-card:hover,
.review-card:hover,
.value-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(24, 33, 58, .12);
}

.service-icon,
.feature-icon,
.value-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 25px;
}

.feature-icon,
.value-icon {
    background: var(--purple-soft);
    color: var(--purple);
}

.service-card a,
.link-inline {
    display: inline-flex;
    margin-top: 14px;
    color: #fff;
    border-bottom: 2px solid currentColor;
    font-weight: 600;
}

.link-inline {
    color: var(--teal);
}

.two-col {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 52px;
    align-items: start;
}

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

.feature-card img,
.mock-card {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(135deg, #03a2b8, #f7fbff);
    margin-bottom: 20px;
}

.mock-card {
    display: grid;
    place-items: center;
    padding: 22px;
}

.mock-phone {
    width: 76%;
    height: 82%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(24, 33, 58, .16);
    padding: 16px;
}

.mock-line {
    height: 11px;
    width: 70%;
    margin: 0 0 13px;
    border-radius: 999px;
    background: #dfe5ef;
}

.mock-line.short {
    width: 45%;
}

.mock-cta {
    height: 34px;
    width: 88%;
    margin-top: 26px;
    border-radius: 12px;
    background: var(--teal);
}

.gray-panel {
    background: var(--cloud);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
}

.badge-row,
.review-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.badge,
.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}

.badge {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
}

.badge-medal {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00a1b7, #f8c55e);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.stars {
    color: #03b67a;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 10px;
}

.page-hero {
    padding: 92px 0 56px;
    background: linear-gradient(180deg, #fff, #fafbff);
}

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

.hero-mini-card {
    border-radius: var(--radius-lg);
    padding: 42px;
    background: linear-gradient(135deg, var(--purple-soft), #fff);
    border: 1px solid rgba(129, 47, 209, .16);
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 32px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
}

.timeline-num {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--purple);
    font-weight: 600;
}

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

.form-shell {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 30px;
    align-items: start;
}

.form-aside {
    position: sticky;
    top: 108px;
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
    background: linear-gradient(160deg, var(--purple-dark), var(--purple));
    box-shadow: var(--shadow);
}

.steps {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
}

.step-indicator.active {
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .15);
    font-weight: 600;
}

.quote-form {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
    box-shadow: var(--shadow);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    min-height: 58px;
    padding: 14px 17px;
    border: 1px solid #aeb5ca;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(129, 47, 209, .12);
}

.field-error {
    display: none;
    margin-top: 7px;
    color: #b42318;
    font-size: 13px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #b42318;
}

.field.has-error .field-error {
    display: block;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.summary-box {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    padding: 22px;
    border-radius: 20px;
    background: var(--cloud);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.summary-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.loading-card {
    width: min(520px, 100%);
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 42px;
    text-align: center;
}

.loader {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border: 7px solid var(--purple-soft);
    border-top-color: var(--purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.progress-line {
    height: 10px;
    border-radius: 999px;
    background: var(--cloud);
    overflow: hidden;
    margin-top: 22px;
}

.progress-line span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--purple), var(--teal));
}

.result-box {
    display: none;
    margin-top: 24px;
    padding: 24px;
    border-radius: 22px;
    background: #effaf7;
    border: 1px solid #a7e3d3;
}

.result-box.error {
    background: #fff3f1;
    border-color: #ffb4a8;
}

.estimate-price {
    margin: 8px 0;
    font-size: clamp(30px, 5vw, 44px);
    color: var(--purple);
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    color: #fff;
    background: #20283c;
    padding: 54px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr;
    gap: 36px;
}

.site-footer p,
.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, .78);
}

.site-footer h3 {
    color: #fff;
    font-size: 18px;
}

.site-footer a,
.site-footer span {
    display: block;
    margin: 9px 0;
}

.footer-brand {
    color: #fff;
    font-size: 26px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
}

@media (max-width: 1050px) {
    .hero-grid,
    .page-hero .container,
    .two-col,
    .form-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-art {
        min-height: 470px;
        order: -1;
    }

    .check-stem {
        right: 18%;
        height: 510px;
    }

    .check-arm {
        left: 23%;
        width: 390px;
    }

    .check-tail {
        left: 20%;
    }

    .person-card {
        right: 22%;
        top: 58px;
    }

    .cards-row,
    .feature-grid,
    .value-grid,
    .badge-row,
    .review-row,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-aside {
        position: static;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 78px;
        display: flex;
        gap: 40px;
        padding: 20px;
        border: 1px solid var(--line);
        /* border-radius: 24px; */
        background: #fff;
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease;
        height: calc( 100vh - 78px);
        align-items: flex-end;
        flex-direction: column;
        font-size: 26px;
    }

    body.menu-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
body.menu-open .main-nav .btn-nav:last-child { position:absolute; bottom:80px }
    body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-grid {
        padding: 46px 0 76px;
    }

    .hero-art {
        min-height: 320px;
    }

    .check-stem {
        width: 74px;
        height: 360px;
        right: 18%;
    }

    .check-tail {
        width: 78px;
        height: 250px;
        left: 19%;
    }

    .check-arm {
        width: 285px;
        height: 78px;
        left: 21%;
        bottom: 76px;
    }

    .person-card {
        width: 210px;
        min-height: 285px;
        top: 28px;
        right: 21%;
    }

    .person-head {
        width: 84px;
        height: 84px;
        margin-top: 30px;
    }

    .person-head::before {
        width: 62px;
        left: 10px;
    }

    .person-body {
        width: 150px;
        height: 170px;
    }

    .quick-quote,
    .hero-actions,
    .form-actions,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .cards-row,
    .feature-grid,
    .value-grid,
    .badge-row,
    .review-row,
    .contact-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .page-hero {
        padding: 58px 0 38px;
    }

    .summary-row {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
strong, b { font-weight: 600; }

/* Preventivo aggiornato */
.quote-page-hero .lead {
    max-width: 720px;
}

.quote-shell .form-aside {
    overflow: hidden;
}

.step-indicator.completed {
    color: #fff;
    background: rgba(255, 255, 255, .13);
}

.step-indicator.completed .step-dot {
    background: rgba(255, 255, 255, .30);
}

.quote-start-card {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 18px;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff, #fafbff);
}

.plate-field input {
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ios-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ios-check,
.ios-consent {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 13px;
    border: 1px solid #d7dcec;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.ios-check:hover,
.ios-consent:hover {
    border-color: rgba(129, 47, 209, .55);
    box-shadow: 0 12px 26px rgba(129, 47, 209, .08);
    transform: translateY(-1px);
}

.ios-check input,
.ios-consent input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.ios-switch {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 20px;
    border-radius: 999px;
    background: #d9deea;
    box-shadow: inset 0 0 0 1px rgba(24, 33, 58, .05);
    transition: background .2s ease, box-shadow .2s ease;
}

.ios-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(24, 33, 58, .18);
    transition: transform .2s ease;
}

.ios-check input:checked + .ios-switch,
.ios-consent input:checked + .ios-switch {
    background: var(--purple);
    box-shadow: inset 0 0 0 1px rgba(129, 47, 209, .12);
}

.ios-check input:checked + .ios-switch::after,
.ios-consent input:checked + .ios-switch::after {
    transform: translateX(14px);
}

.ios-check input:focus-visible + .ios-switch,
.ios-consent input:focus-visible + .ios-switch {
    outline: 3px solid rgba(129, 47, 209, .18);
    outline-offset: 3px;
}

.ios-label {
    line-height: 1.35;
    font-weight: 500;
    font-size: 14px;
}

.ios-check:has(input:checked),
.ios-consent:has(input:checked) {
    border-color: rgba(129, 47, 209, .62);
    background: #fbf7ff;
}

.privacy-field .field-error {
    margin-left: 4px;
}

.ios-consent {
    align-items: flex-start;
    padding: 15px;
}

.ios-consent .ios-switch {
    margin-top: 1px;
}

@supports not selector(:has(*)) {
    .ios-check,
    .ios-consent {
        background: #fff;
    }
}

@media (max-width: 980px) {
    .quote-start-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .quote-start-card {
        padding: 16px;
        border-radius: 22px;
    }

    .ios-check-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 22px 16px;
        border-radius: 28px;
    }

    .ios-check,
    .ios-consent {
        padding: 11px 12px;
        border-radius: 15px;
    }
}

/* Homepage aggiornata con immagini veicoli e icone Font Awesome */
.home-hero .eyebrow i,
.home-services-panel .eyebrow i,
.gray-panel .eyebrow i,
.review-row i {
    font-size: .95em;
}

.home-visual {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.home-visual img {
    width: min(100%, 620px);
    filter: drop-shadow(0 32px 42px rgba(24, 33, 58, .13));
}

.home-visual-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(216, 220, 233, .86);
    box-shadow: 0 22px 46px rgba(24, 33, 58, .13);
    font-weight: 600;
}

.home-visual-badge i {
    color: var(--purple);
}

.home-visual-badge.top {
    top: 90px;
    right: 22px;
}

.home-visual-badge.bottom {
    left: 18px;
    bottom: 110px;
}

.quick-pill {
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.quick-pill:hover {
    transform: translateY(-3px);
    background: #fff;
    color: var(--purple-dark);
}

.quick-pill i {
    font-size: 20px;
}

.home-services-panel {
    padding-bottom: clamp(28px, 4vw, 52px);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
}

.sector-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 20px 48px rgba(24, 33, 58, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sector-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 62px rgba(24, 33, 58, .18);
}

.sector-media {
    position: relative;
    aspect-ratio: 1.18;
    overflow: hidden;
    background: var(--cloud);
}

.sector-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.sector-card:hover .sector-media img {
    transform: scale(1.045);
}

.sector-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    box-shadow: 0 16px 28px rgba(24, 33, 58, .18);
    font-size: 22px;
}

.sector-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.sector-content p {
    color: var(--ink-soft);
    margin-bottom: 0;
}

.sector-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--teal);
    border-bottom: 2px solid currentColor;
    font-weight: 600;
}

.home-feature-grid {
    align-items: stretch;
}

.feature-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.15;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 20px;
    background: var(--cloud);
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.feature-card:hover .feature-visual img {
    transform: scale(1.04);
}

.feature-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feature-card h3 i {
    color: var(--purple);
    font-size: 19px;
}

.badge-medal i {
    font-size: 25px;
}

.stars {
    display: flex;
    gap: 4px;
}

@media (max-width: 1050px) {
    .home-visual {
        min-height: 450px;
        order: -1;
    }

    .home-visual img {
        width: min(100%, 540px);
    }

    .home-visual-badge.top {
        right: calc(50% - 260px);
        top: 36px;
    }

    .home-visual-badge.bottom {
        left: calc(50% - 270px);
        bottom: 50px;
    }

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

@media (max-width: 780px) {
    .home-visual {
        min-height: 330px;
    }

    .home-visual img {
        width: min(100%, 430px);
    }

    .home-visual-badge {
        min-height: 46px;
        padding: 0 14px;
        border-radius: 15px;
        font-size: 13px;
    }

    .home-visual-badge.top {
        right: 6px;
        top: 16px;
    }

    .home-visual-badge.bottom {
        left: 6px;
        bottom: 20px;
    }

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

    .sector-card {
        border-radius: 24px;
    }

    .sector-media {
        aspect-ratio: 1.65;
    }

    .feature-visual {
        aspect-ratio: 1.55;
    }
}

@media (max-width: 480px) {
    .home-visual {
        min-height: 285px;
    }

    .home-visual-badge {
        position: static;
        justify-self: stretch;
        margin-top: -12px;
        justify-content: center;
    }

    .home-visual-badge.bottom {
        display: none;
    }
}
