:root {
    --ink: #10213d;
    --ink-2: #1c3153;
    --muted: #66758d;
    --muted-2: #8290a5;
    --primary: #2f6bff;
    --primary-dark: #1b4ed1;
    --primary-soft: #eaf0ff;
    --accent: #ffb44a;
    --accent-dark: #ef941f;
    --success: #1ea77b;
    --danger: #d84f5f;
    --surface: #ffffff;
    --surface-2: #f6f8fc;
    --surface-3: #edf2fa;
    --border: #dfe6f1;
    --shadow-sm: 0 8px 24px rgba(16, 33, 61, 0.08);
    --shadow-md: 0 18px 50px rgba(16, 33, 61, 0.12);
    --shadow-lg: 0 32px 80px rgba(16, 33, 61, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1200px;
    --header-height: 82px;
    --ease: cubic-bezier(.2, .75, .3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

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

h1,
h2,
h3 {
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
    font-size: 1.35rem;
}

::selection {
    color: #fff;
    background: var(--primary);
}

:focus-visible {
    outline: 3px solid rgba(47, 107, 255, .42);
    outline-offset: 3px;
}

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

.section {
    position: relative;
    padding: 106px 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
    transition: transform .2s;
}

.skip-link:focus {
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .75s var(--ease),
        transform .75s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s, border-color .25s, background .25s;
}

.site-header.is-scrolled {
    border-color: rgba(223, 230, 241, .8);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 26px rgba(16, 33, 61, .07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 22px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #5f8fff);
    box-shadow: 0 8px 20px rgba(47, 107, 255, .24);
}

.brand-mark svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: -.02em;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .7rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: var(--ink-2);
    font-size: .89rem;
    font-weight: 650;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    border-radius: 2px;
    background: var(--primary);
    transition: transform .2s;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-contact {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25;
}

.header-phone {
    color: var(--ink);
    font-size: .95rem;
    font-weight: 800;
}

.header-contact span {
    margin-top: 3px;
    color: var(--muted);
    font-size: .7rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .22s, opacity .22s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 20px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-md);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu nav {
    display: grid;
    margin-bottom: 18px;
}

.mobile-menu nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
}

/* Buttons */
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}

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

.button:active {
    transform: translateY(0);
}

.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #5a88ff);
    box-shadow: 0 13px 28px rgba(47, 107, 255, .26);
}

.button-primary:hover {
    box-shadow: 0 17px 34px rgba(47, 107, 255, .34);
}

.button-accent {
    color: var(--ink);
    background: linear-gradient(135deg, #ffc565, var(--accent));
    box-shadow: 0 12px 26px rgba(255, 180, 74, .25);
}

.button-accent:hover {
    box-shadow: 0 16px 32px rgba(255, 180, 74, .34);
}

.button-ghost {
    border-color: var(--border);
    color: var(--ink);
    background: rgba(255, 255, 255, .78);
}

.button-ghost:hover {
    border-color: #bfcbea;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.button-light {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.button-full {
    width: 100%;
}

/* Common headings */
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.section-heading p {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading-centered {
    max-width: 900px;
    grid-template-columns: 1fr;
    margin-inline: auto;
    text-align: center;
}

.section-heading-centered p {
    max-width: 720px;
    margin: 0 auto;
}

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: #a9c2ff;
}

/* Notices */
.form-notice {
    position: relative;
    z-index: 15;
    color: #fff;
}

.form-notice-success {
    background: var(--success);
}

.form-notice-error {
    background: var(--danger);
}

.notice-inner {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding-block: 10px;
}

.notice-inner strong {
    flex: 0 0 auto;
}

.notice-inner span {
    opacity: .9;
    font-size: .9rem;
}

.notice-inner button {
    width: 34px;
    height: 34px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    font-size: 1.35rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: calc(100vh - var(--header-height));
    padding-top: 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(47, 107, 255, .11), transparent 31%),
        linear-gradient(180deg, #f7f9ff 0%, #fff 90%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    top: 5%;
    right: -120px;
    width: 390px;
    height: 390px;
    background: rgba(255, 180, 74, .14);
}

.hero-glow-two {
    bottom: 12%;
    left: -160px;
    width: 330px;
    height: 330px;
    background: rgba(47, 107, 255, .1);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr);
    align-items: center;
    gap: 74px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid #d9e3fb;
    border-radius: 999px;
    color: var(--ink-2);
    background: rgba(255, 255, 255, .76);
    font-size: .76rem;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(16, 33, 61, .04);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(30, 167, 123, .12);
}

.hero h1 {
    max-width: 660px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.6vw, 5.3rem);
    line-height: .98;
    letter-spacing: -.062em;
}

.hero h1 span {
    color: var(--primary);
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 31px;
    color: var(--muted);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
    line-height: 1.72;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--ink-2);
    font-size: .82rem;
    font-weight: 700;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-points li span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--success);
    background: rgba(30, 167, 123, .12);
    font-size: .7rem;
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 36px;
    background: rgba(255, 255, 255, .52);
    box-shadow: var(--shadow-lg);
    transform: rotate(1.2deg);
}

.hero-image-wrap::before {
    position: absolute;
    z-index: -1;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 26px;
    background-image: radial-gradient(rgba(47, 107, 255, .4) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 25px;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    transform: rotate(-1.2deg);
}

.hero-float-card small,
.hero-float-card span {
    display: block;
    color: var(--muted);
    font-size: .68rem;
}

.hero-float-card strong {
    display: block;
    color: var(--ink);
    font-size: .86rem;
    line-height: 1.2;
}

.hero-float-price {
    bottom: 38px;
    left: -38px;
}

.float-icon {
    display: grid !important;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff !important;
    background: var(--primary);
    font-size: 1.08rem !important;
    font-weight: 900;
}

.hero-float-rating {
    top: 34px;
    right: -27px;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 8px;
}

.hero-float-rating .rating-stars {
    grid-column: 1 / -1;
}

.rating-stars {
    color: #f2a727 !important;
    font-size: .78rem !important;
    letter-spacing: .08em;
    white-space: nowrap;
}

.trust-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    padding: 26px 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.trust-strip > div {
    display: flex;
    flex-direction: column;
    padding-inline: 27px;
    border-right: 1px solid var(--border);
}

.trust-strip > div:first-child {
    padding-left: 0;
}

.trust-strip > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-strip strong {
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.trust-strip span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .78rem;
}

/* Services */
.services {
    background: var(--surface);
}

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

.service-card {
    position: relative;
    min-height: 100%;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.service-card::after {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 50%;
    background: var(--primary-soft);
    transition: transform .35s var(--ease);
}

.service-card:hover {
    z-index: 2;
    transform: translateY(-7px);
    border-color: #c8d5f4;
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    transform: scale(1.45);
}

.service-card-featured {
    border-color: #b9caff;
    background: linear-gradient(155deg, #f8faff 0%, #eef3ff 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: #dce6ff;
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 45px;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
}

.service-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-number {
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 10px;
    color: rgba(47, 107, 255, .1);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1;
}

.service-card h3,
.service-card p,
.service-card ul,
.service-price {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .9rem;
}

.service-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 23px;
    padding: 0;
    list-style: none;
    color: var(--ink-2);
    font-size: .78rem;
}

.service-card li {
    position: relative;
    padding-left: 15px;
}

.service-card li::before {
    position: absolute;
    top: .64em;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: var(--primary);
}

.service-price {
    display: inline-flex;
    margin-top: auto;
    padding: 7px 11px;
    border-radius: 9px;
    color: var(--ink);
    background: var(--surface-3);
    font-size: .78rem;
    font-weight: 850;
}

.pricing-note {
    margin: 20px 0 0;
    color: var(--muted-2);
    font-size: .75rem;
    text-align: right;
}

/* Forms */
.field {
    display: grid;
    gap: 8px;
}

.field > span,
.option-group legend {
    color: var(--ink-2);
    font-size: .76rem;
    font-weight: 750;
}

.field em {
    color: var(--muted-2);
    font-size: .68rem;
    font-style: normal;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

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

.field input::placeholder,
.field textarea::placeholder {
    color: #9ba7b9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(47, 107, 255, .1);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(216, 79, 95, .1);
}

.field-error {
    color: var(--danger);
    font-size: .7rem;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.45;
}

.consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin: 2px 0 0;
    accent-color: var(--primary);
}

/* Calculator */
.calculator-section {
    overflow: hidden;
    background: var(--surface-2);
}

.calculator-shell {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr);
    gap: 70px;
    padding: 62px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 0 100%, rgba(47, 107, 255, .7), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(255, 180, 74, .16), transparent 28%),
        #122440;
    box-shadow: var(--shadow-lg);
}

.calculator-shell::before {
    position: absolute;
    top: -140px;
    left: 38%;
    width: 340px;
    height: 340px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .02), 0 0 0 140px rgba(255, 255, 255, .015);
    pointer-events: none;
}

.calculator-copy,
.calculator {
    position: relative;
    z-index: 2;
}

.calculator-copy h2 {
    margin-bottom: 20px;
}

.calculator-copy > p {
    max-width: 470px;
    margin-bottom: 32px;
    color: #b6c2d6;
}

.calculator-benefit {
    display: flex;
    max-width: 430px;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
}

.calculator-benefit > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--ink);
    background: var(--accent);
    font-size: 1.3rem;
}

.calculator-benefit strong,
.calculator-benefit small {
    display: block;
}

.calculator-benefit strong {
    font-size: .88rem;
}

.calculator-benefit small {
    margin-top: 2px;
    color: #aebbd0;
    font-size: .68rem;
}

.calculator {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.option-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.option-group legend {
    margin-bottom: 8px;
}

.check-card {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: flex-start;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.check-card:has(input:checked) {
    border-color: #aac0ff;
    background: var(--primary-soft);
}

.check-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-check {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    border: 1.5px solid #b8c3d4;
    border-radius: 5px;
    background: #fff;
}

.check-card input:checked + .custom-check {
    border-color: var(--primary);
    background: var(--primary);
}

.check-card input:checked + .custom-check::after {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 5px;
    height: 8px;
    content: "";
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.check-card strong,
.check-card small {
    display: block;
}

.check-card strong {
    font-size: .75rem;
    line-height: 1.25;
}

.check-card small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .62rem;
    line-height: 1.3;
}

.calculator-result {
    display: grid;
    padding: 18px;
    border-radius: 14px;
    color: var(--ink);
    background: var(--surface-2);
    text-align: center;
}

.calculator-result span {
    color: var(--muted);
    font-size: .72rem;
}

.calculator-result strong {
    margin: 4px 0 2px;
    color: var(--primary-dark);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.2;
    letter-spacing: -.04em;
}

.calculator-result small {
    color: var(--muted-2);
    font-size: .65rem;
}

/* Before / after */
.compare-section {
    background: #fff;
}

.compare-grid {
    display: grid;
    grid-template-columns: minmax(330px, .7fr) minmax(520px, 1.3fr);
    align-items: center;
    gap: 70px;
}

.compare-copy h2 {
    margin-bottom: 20px;
}

.compare-copy > p {
    margin-bottom: 32px;
    color: var(--muted);
}

.compare-facts {
    display: grid;
    gap: 2px;
}

.compare-facts > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.compare-facts strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.compare-facts span {
    color: var(--muted);
    font-size: .8rem;
}

.before-after {
    --position: 52%;
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 25px;
    background: var(--surface-3);
    box-shadow: var(--shadow-lg);
    user-select: none;
}

.before-after > img,
.after-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-layer {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-divider {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 3px;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 0 14px rgba(16, 33, 61, .28);
    pointer-events: none;
}

.compare-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    color: var(--ink);
    background: var(--accent);
    box-shadow: var(--shadow-md);
    font-size: 1.1rem;
    font-weight: 900;
}

.compare-range {
    position: absolute;
    z-index: 5;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.compare-label {
    position: absolute;
    z-index: 3;
    top: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 33, 61, .72);
    font-size: .7rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.compare-label-before {
    left: 20px;
}

.compare-label-after {
    right: 20px;
}

/* Sliders */
.projects-section {
    overflow: hidden;
    background: var(--surface-2);
}

.slider {
    --slides-per-view: 1;
    --slider-gap: 22px;
    overflow: hidden;
}

.projects-slider {
    width: min(calc(100% - 30px), 1360px);
    margin-inline: auto;
    padding: 4px 22px 10px;
}

.slider-track {
    display: flex;
    gap: var(--slider-gap);
    transform: translate3d(0, 0, 0);
    transition: transform .55s var(--ease);
    will-change: transform;
}

.slide {
    min-width: 0;
    flex: 0 0 var(--slide-basis, 100%);
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-button {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.slider-button:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

.slider-button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.slider-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: #c5cede;
    cursor: pointer;
    transition: width .25s, background .25s;
}

.slider-dot.is-active {
    width: 24px;
    background: var(--primary);
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 34px rgba(16, 33, 61, .07);
    transition: transform .3s var(--ease), box-shadow .3s;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.project-image {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: var(--surface-3);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.project-card:hover .project-image img {
    transform: scale(1.035);
}

.project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    font-size: .67rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(16, 33, 61, .11);
    backdrop-filter: blur(8px);
}

.project-body {
    padding: 22px;
}

.project-body h3 {
    min-height: 3em;
    margin-bottom: 15px;
    font-size: 1.13rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.project-meta span {
    padding: 5px 8px;
    border-radius: 7px;
    color: var(--muted);
    background: var(--surface-2);
    font-size: .64rem;
    font-weight: 700;
}

.project-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.project-bottom span {
    color: var(--muted);
    font-size: .67rem;
}

.project-bottom strong {
    white-space: nowrap;
    font-size: .93rem;
}

/* Benefits */
.benefits-section {
    background: #fff;
}

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

.benefit-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: var(--ink);
}

.benefit-card:nth-child(even) {
    background: var(--primary-dark);
}

.benefit-card::after {
    position: absolute;
    right: -45px;
    bottom: -50px;
    width: 145px;
    height: 145px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, .035);
}

.benefit-icon {
    display: inline-flex;
    margin-bottom: 50px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    color: #c8d6f0;
    font-size: .65rem;
    font-weight: 850;
}

.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    margin-bottom: 11px;
    font-size: 1.12rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: #bdc9dc;
    font-size: .81rem;
}

/* Steps */
.steps-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(47, 107, 255, .4), transparent 26%),
        #0e1d34;
}

.steps-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
}

.steps-copy {
    position: sticky;
    top: calc(var(--header-height) + 35px);
    align-self: start;
}

.steps-copy h2 {
    margin-bottom: 20px;
}

.steps-copy p {
    max-width: 440px;
    margin-bottom: 30px;
    color: #aebbd0;
}

.timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 18px;
    padding: 0 0 35px;
}

.timeline li:not(:last-child)::before {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 26px;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, .16);
}

.timeline-number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    color: var(--accent);
    background: rgba(255, 255, 255, .06);
    font-size: .74rem;
    font-weight: 900;
}

.timeline h3 {
    margin: 3px 0 8px;
    font-size: 1.13rem;
}

.timeline p {
    max-width: 520px;
    margin: 0;
    color: #aebbd0;
    font-size: .83rem;
}

.timeline small {
    margin-top: 8px;
    color: #71819a;
    font-size: .65rem;
    white-space: nowrap;
}

/* Reviews */
.reviews-section {
    background: var(--surface-2);
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-self: end;
}

.review-summary > strong {
    font-size: 2.5rem;
    line-height: 1;
}

.review-summary div {
    display: flex;
    flex-direction: column;
}

.review-summary small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .66rem;
}

.review-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 30px rgba(16, 33, 61, .06);
}

.review-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.avatar {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #8caaff);
    font-size: .78rem;
    font-weight: 900;
}

.review-top h3 {
    margin: 0 0 3px;
    font-size: .92rem;
    letter-spacing: -.015em;
}

.review-top div > span {
    display: block;
    color: var(--muted);
    font-size: .67rem;
}

.review-card blockquote {
    min-height: 112px;
    margin: 0 0 23px;
    color: var(--ink-2);
    font-size: .92rem;
    line-height: 1.72;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: .66rem;
}

.review-footer span {
    color: var(--success);
    font-weight: 750;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.review-nav .slider-dots {
    margin-top: 0;
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 90px;
}

.faq-copy {
    align-self: start;
}

.faq-copy h2 {
    margin-bottom: 20px;
}

.faq-copy > p {
    color: var(--muted);
}

.faq-help {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 15px;
    border-radius: 16px;
    background: var(--surface-2);
}

.faq-help > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--primary);
    font-weight: 900;
}

.faq-help strong,
.faq-help a {
    display: block;
}

.faq-help strong {
    font-size: .76rem;
}

.faq-help a {
    color: var(--primary);
    font-size: .8rem;
    font-weight: 800;
}

.accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.accordion-item i {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: var(--surface-2);
}

.accordion-item i::before,
.accordion-item i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    transform: translate(-50%, -50%);
    border-radius: 2px;
    background: var(--ink);
    transition: transform .2s;
}

.accordion-item i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i {
    color: #fff;
    background: var(--primary);
}

.accordion-item button[aria-expanded="true"] i::before,
.accordion-item button[aria-expanded="true"] i::after {
    background: #fff;
}

.accordion-item button[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
    padding: 0 60px 24px 0;
}

.accordion-panel[hidden] {
    display: none;
}

.accordion-panel p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

/* Contact */
.contact-section {
    padding-bottom: 40px;
    overflow: hidden;
    background: var(--surface-2);
}

.contact-shell {
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 70px;
    padding: 64px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 8% 0%, rgba(47, 107, 255, .65), transparent 35%),
        linear-gradient(135deg, #112440, #0d1c31);
    box-shadow: var(--shadow-lg);
}

.contact-shell::after {
    position: absolute;
    right: -130px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .015);
}

.contact-info,
.lead-form {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    margin-bottom: 18px;
}

.contact-info > p {
    max-width: 520px;
    color: #afbdd1;
}

.contact-list {
    display: grid;
    gap: 11px;
    margin-top: 30px;
}

.contact-list > a,
.contact-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
}

.contact-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    color: var(--accent);
    background: rgba(255, 255, 255, .06);
    font-weight: 900;
}

.contact-list small,
.contact-list strong {
    display: block;
}

.contact-list small {
    color: #8292aa;
    font-size: .64rem;
}

.contact-list strong {
    margin-top: 2px;
    font-size: .83rem;
}

.contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #bec9d9;
    background: rgba(255, 255, 255, .06);
    font-size: .68rem;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #41d89d;
    box-shadow: 0 0 0 5px rgba(65, 216, 157, .1);
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: 30px;
    border-radius: 22px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.form-heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.form-heading strong {
    font-size: 1.3rem;
    letter-spacing: -.035em;
}

.form-heading span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .7rem;
}

.inline-message {
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.45;
}

.inline-message-success {
    border-color: rgba(30, 167, 123, .22);
    color: #147557;
    background: rgba(30, 167, 123, .1);
}

.inline-message-error {
    border-color: rgba(216, 79, 95, .22);
    color: #b23c4a;
    background: rgba(216, 79, 95, .09);
}

.demo-note {
    color: var(--muted-2);
    font-size: .62rem;
    text-align: center;
}

/* Map */
.map-section {
    padding: 0 0 0;
    background: var(--surface-2);
}

.map-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.map-visual > img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.map-card {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    min-width: 310px;
    align-items: center;
    gap: 13px;
    padding: 17px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 17px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.map-pin {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--primary);
    font-size: 1.25rem;
}

.map-card strong,
.map-card span,
.map-card small {
    display: block;
}

.map-card strong {
    font-size: .82rem;
}

.map-card span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .7rem;
}

.map-card small {
    margin-top: 3px;
    color: var(--muted-2);
    font-size: .58rem;
}

/* Footer */
.site-footer {
    padding: 65px 0 25px;
    color: #fff;
    background: #0a1729;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr 1fr;
    gap: 60px;
    padding-bottom: 45px;
}

.brand-light .brand-copy small {
    color: #8190a7;
}

.footer-brand p {
    max-width: 330px;
    margin: 22px 0 0;
    color: #7f8da3;
    font-size: .8rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column > strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: .78rem;
}

.footer-column a,
.footer-column span {
    color: #8090a7;
    font-size: .74rem;
    transition: color .2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-contacts a:first-of-type {
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #64738a;
    font-size: .64rem;
}

/* Modals */
.modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 29, .7);
    backdrop-filter: blur(8px);
    animation: fadeIn .22s ease-out;
}

.modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    max-height: calc(100vh - 40px);
    padding: 34px;
    overflow-y: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .32);
    animation: modalIn .3s var(--ease);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--muted);
    background: var(--surface-2);
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.modal-dialog h2 {
    max-width: 360px;
    margin: 0 40px 11px 0;
    font-size: 2rem;
}

.modal-dialog > p {
    margin-bottom: 23px;
    color: var(--muted);
    font-size: .82rem;
}

.modal-form {
    display: grid;
    gap: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating call */
.floating-call {
    position: fixed;
    z-index: 800;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px 8px 8px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 15px 34px rgba(47, 107, 255, .36);
    cursor: pointer;
    transition: transform .2s;
}

.floating-call:hover {
    transform: translateY(-3px);
}

.floating-call > span {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--accent);
    font-size: 1rem;
}

.floating-call small {
    font-size: .67rem;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1120px) {
    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav a {
        font-size: .82rem;
    }

    .header-contact {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
        gap: 45px;
    }

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

    .calculator-shell {
        gap: 45px;
        padding: 50px;
    }

    .compare-grid {
        gap: 45px;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 72px;
    }

    .section {
        padding: 84px 0;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        padding-top: 58px;
    }

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

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        max-width: 700px;
        margin-inline: auto;
    }

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

    .trust-strip > div {
        padding: 17px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-strip > div:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .trust-strip > div:nth-child(n+3) {
        border-bottom: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calculator-shell,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .calculator-copy > p {
        max-width: 680px;
    }

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

    .compare-copy {
        max-width: 680px;
    }

    .before-after {
        width: 100%;
        max-width: 820px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .steps-copy {
        position: static;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-copy {
        max-width: 680px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .section {
        padding: 68px 0;
    }

    h2 {
        font-size: clamp(2rem, 10vw, 2.65rem);
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.25rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 10px;
    }

    .hero-image-wrap {
        padding: 9px;
        border-radius: 25px;
    }

    .hero-image-wrap img {
        border-radius: 18px;
    }

    .hero-float-price {
        bottom: -18px;
        left: 8px;
    }

    .hero-float-rating {
        top: 17px;
        right: -4px;
    }

    .hero-float-card {
        padding: 10px 12px;
    }

    .trust-strip {
        margin-top: 70px;
        padding: 12px;
    }

    .trust-strip > div {
        padding: 14px 11px;
    }

    .trust-strip strong {
        font-size: 1.17rem;
    }

    .trust-strip span {
        font-size: .66rem;
    }

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

    .service-card {
        padding: 24px;
    }

    .calculator-shell,
    .contact-shell {
        width: min(calc(100% - 20px), var(--container));
        padding: 29px 18px;
        border-radius: 23px;
    }

    .form-row-two,
    .option-group {
        grid-template-columns: 1fr;
    }

    .check-card {
        min-height: 62px;
    }

    .calculator {
        padding: 18px;
    }

    .compare-facts > div {
        grid-template-columns: 100px 1fr;
    }

    .before-after {
        aspect-ratio: 1 / .82;
        border-radius: 18px;
    }

    .projects-slider {
        width: calc(100% - 4px);
        padding-inline: 14px;
    }

    .section-heading > .slider-controls {
        margin-top: 2px;
    }

    .project-body h3 {
        min-height: 0;
    }

    .timeline li {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .timeline-number {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .timeline li:not(:last-child)::before {
        top: 44px;
        left: 22px;
    }

    .timeline small {
        grid-column: 2;
        margin-top: -26px;
    }

    .review-top {
        grid-template-columns: auto 1fr;
    }

    .review-top > .rating-stars {
        grid-column: 1 / -1;
    }

    .review-card {
        padding: 23px;
    }

    .review-card blockquote {
        min-height: 0;
    }

    .review-footer {
        flex-direction: column;
        gap: 5px;
    }

    .review-summary {
        justify-self: start;
    }

    .accordion-item button {
        padding: 20px 0;
        font-size: .9rem;
    }

    .accordion-panel {
        padding-right: 0;
    }

    .lead-form {
        padding: 20px;
    }

    .map-card {
        min-width: 0;
        width: calc(100% - 30px);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 22px;
    }

    .footer-brand,
    .footer-contacts {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .floating-call {
        right: 14px;
        bottom: 14px;
        padding-right: 8px;
    }

    .floating-call small {
        display: none;
    }

    .modal-dialog {
        padding: 28px 20px 22px;
        border-radius: 21px;
    }

    .modal-dialog h2 {
        font-size: 1.72rem;
    }

    .notice-inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .notice-inner strong,
    .notice-inner span {
        width: calc(100% - 50px);
    }

    .notice-inner button {
        position: absolute;
        top: 10px;
        right: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
