:root {
    --bg: #f5f8f4;
    --surface: #ffffff;
    --surface-soft: #edf4ee;
    --surface-green: #dff0e4;
    --ink: #10231b;
    --ink-soft: #53665d;
    --green-950: #082419;
    --green-900: #0d3324;
    --green-800: #125037;
    --green-700: #18704a;
    --green-600: #21945f;
    --green-500: #38b979;
    --green-300: #8fdbad;
    --green-100: #e4f5ea;
    --red: #e14e45;
    --red-dark: #b9332d;
    --line: rgba(13, 51, 36, .12);
    --line-strong: rgba(13, 51, 36, .2);
    --shadow-sm: 0 10px 30px rgba(12, 44, 31, .08);
    --shadow-md: 0 24px 70px rgba(12, 44, 31, .12);
    --shadow-lg: 0 36px 100px rgba(7, 31, 21, .18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --container: 1180px;
    --header-height: 76px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.dialog-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

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

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

button {
    color: inherit;
}

::selection {
    background: var(--green-300);
    color: var(--green-950);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--green-950);
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(245, 248, 244, .84);
    backdrop-filter: blur(18px) saturate(1.2);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 8px 30px rgba(12, 44, 31, .06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.brand-mark {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    background: transparent;
    box-shadow: 0 9px 20px rgba(13, 51, 36, .18);
}

.brand-mark img {
    width: 38px;
    height: 38px;
    border-radius: 13px;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    letter-spacing: -.04em;
    font-size: 18px;
    font-weight: 850;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    color: #394b42;
    font-size: 14px;
    font-weight: 700;
}

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

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

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(56, 185, 121, .34);
    outline-offset: 3px;
}

.button-small {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 13px;
}

.button-large {
    min-height: 54px;
    padding-inline: 24px;
}

.button-full {
    width: 100%;
}

.button-primary {
    background: var(--green-700);
    color: #fff;
    box-shadow: 0 13px 28px rgba(24, 112, 74, .22);
}

.button-primary:hover {
    background: var(--green-800);
    box-shadow: 0 16px 34px rgba(24, 112, 74, .3);
}

.button-primary svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .76);
    color: var(--green-900);
}

.button-secondary:hover {
    border-color: rgba(24, 112, 74, .36);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.button-dark {
    background: var(--green-950);
    color: #fff;
    box-shadow: 0 14px 30px rgba(8, 36, 25, .22);
}

.button-light {
    background: #fff;
    color: var(--green-900);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .14);
}

.button-danger {
    background: var(--red);
    color: #fff;
}

.hero {
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    padding-top: 46px;
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(24, 112, 74, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 112, 74, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 82%);
    content: "";
    pointer-events: none;
}

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

.hero-glow-one {
    top: 4%;
    right: -180px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(143, 219, 173, .44), rgba(143, 219, 173, 0) 70%);
}

.hero-glow-two {
    bottom: 0;
    left: -200px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(225, 78, 69, .10), rgba(225, 78, 69, 0) 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 46px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 6px rgba(56, 185, 121, .13);
}

.hero h1,
.section-heading h2,
.pricing-intro h2,
.maintenance-copy h2,
.contact-copy h2,
.messenger-card h2,
.faq-heading h2 {
    margin: 0;
    letter-spacing: -.055em;
    line-height: .98;
}

.hero h1 {
    max-width: 780px;
    margin-top: 22px;
    font-size: clamp(44px, 12vw, 78px);
    font-weight: 900;
}

.hero h1 em {
    display: block;
    color: var(--green-700);
    font-style: normal;
}

.hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: clamp(17px, 4vw, 20px);
    line-height: 1.55;
}

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

.trust-row {
    display: grid;
    margin-top: 28px;
    gap: 10px;
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #405349;
    font-size: 13px;
    font-weight: 750;
}

.trust-row svg {
    width: 18px;
    height: 18px;
    color: var(--green-700);
}

.hero-visual {
    position: relative;
    width: min(100%, 560px);
    margin-inline: auto;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 32px 32px 78px 32px;
    background: linear-gradient(145deg, #cde6d6, #f3f7f3);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
}

.hero-image-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 15px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(12px);
    color: var(--green-900);
    font-size: 12px;
    font-weight: 800;
}

.hero-image-label span,
.online-dot,
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 5px rgba(56, 185, 121, .15);
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(15px);
}

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

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    color: var(--ink-soft);
    font-size: 10px;
}

.floating-card-top {
    top: 26px;
    left: -10px;
}

.floating-card-bottom {
    right: -4px;
    bottom: 70px;
}

.floating-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    background: var(--green-100);
    color: var(--green-700);
}

.floating-icon svg {
    width: 18px;
    height: 18px;
}

.quick-strip {
    background: var(--red);
    color: #fff;
}

.quick-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-block: 18px;
    gap: 14px;
}

.quick-strip-inner div {
    display: flex;
    flex-direction: column;
}

.quick-strip strong {
    font-size: 15px;
}

.quick-strip span {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.quick-strip a {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .11);
    font-weight: 850;
}

.services-section {
    background: var(--surface);
}

.section-heading {
    display: grid;
    margin-bottom: 34px;
    gap: 18px;
}

.section-heading h2,
.pricing-intro h2,
.maintenance-copy h2,
.contact-copy h2,
.messenger-card h2,
.faq-heading h2 {
    margin-top: 12px;
    font-size: clamp(36px, 8vw, 58px);
    font-weight: 900;
}

.section-heading p,
.pricing-intro > p,
.maintenance-copy > p,
.contact-copy > p,
.messenger-card > div > p,
.faq-heading > p {
    max-width: 600px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.services-grid {
    display: grid;
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 8px 30px rgba(12, 44, 31, .045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    border-color: rgba(24, 112, 74, .22);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-media {
    position: relative;
    overflow: hidden;
    margin: 8px 8px 0;
    border-radius: 25px;
    background: var(--surface-soft);
}

.service-media img {
    width: 100%;
    aspect-ratio: 1.52 / 1;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.service-card:hover .service-media img {
    transform: scale(1.035);
}

.service-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, .83);
    color: var(--green-900);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.service-body {
    padding: 22px;
}

.service-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 15px;
    background: var(--green-100);
    color: var(--green-700);
}

.service-icon svg {
    width: 23px;
    height: 23px;
}

.service-price {
    color: var(--green-700);
    font-size: 15px;
    font-weight: 900;
}

.service-card h3 {
    margin: 20px 0 8px;
    letter-spacing: -.025em;
    font-size: 23px;
    line-height: 1.15;
}

.service-card p {
    min-height: 72px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.text-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--green-700);
    cursor: pointer;
    font-size: 14px;
    font-weight: 850;
}

.text-button span {
    font-size: 20px;
    transition: transform .2s ease;
}

.text-button:hover span {
    transform: translateX(4px);
}

.more-services {
    display: grid;
    align-items: center;
    margin-top: 20px;
    border-radius: var(--radius-lg);
    padding: 28px;
    background: linear-gradient(130deg, var(--green-100), #f7faf7 70%);
    gap: 24px;
}

.more-services h3 {
    margin: 10px 0 10px;
    letter-spacing: -.03em;
    font-size: 27px;
}

.more-services p {
    max-width: 760px;
    margin: 0;
    color: var(--ink-soft);
}

.pricing-section {
    overflow: hidden;
}

.pricing-section::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 219, 173, .35), transparent 70%);
    content: "";
}

.pricing-grid {
    position: relative;
    display: grid;
    align-items: start;
    gap: 36px;
}

.pricing-intro {
    position: static;
}

.pricing-intro code {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.price-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, .7);
}

.price-note svg {
    flex: 0 0 25px;
    width: 25px;
    color: var(--green-700);
}

.price-note span,
.price-note strong {
    display: block;
}

.price-note span {
    color: var(--ink-soft);
    font-size: 13px;
}

.price-note strong {
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 15px;
}

.price-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 12px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-md);
}

.price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding: 16px 10px;
}

.price-row span {
    color: var(--ink-soft);
    font-size: 13px;
}

.price-row strong {
    max-width: 48%;
    text-align: right;
    font-size: 13px;
}

.price-card .button {
    margin-top: 12px;
}

.process-section {
    background: var(--surface);
}

.section-heading.centered {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered > div,
.section-heading.centered > span {
    margin-inline: auto;
}

.section-heading.centered p {
    margin-inline: auto;
}

.process-grid {
    display: grid;
    margin: 42px 0 0;
    padding: 0;
    gap: 14px;
    list-style: none;
}

.process-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px;
    background: #fbfdfb;
}

.process-card > span {
    position: absolute;
    top: -14px;
    right: 10px;
    color: rgba(24, 112, 74, .07);
    font-size: 92px;
    font-weight: 950;
    line-height: 1;
}

.process-card > div {
    position: relative;
    z-index: 1;
}

.process-card svg {
    width: 32px;
    height: 32px;
    color: var(--green-700);
}

.process-card h3 {
    margin: 35px 0 8px;
    font-size: 21px;
}

.process-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.maintenance-section {
    background: var(--surface);
    padding-top: 0;
}

.maintenance-card {
    display: grid;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0d3828, #0a241a);
    box-shadow: var(--shadow-lg);
}

.maintenance-visual {
    min-height: 330px;
    background: #163f2f;
}

.maintenance-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maintenance-copy {
    padding: 34px 26px 40px;
    color: #fff;
}

.section-kicker-light {
    color: var(--green-300);
}

.maintenance-copy > p {
    color: rgba(255, 255, 255, .68);
}

.check-list {
    display: grid;
    margin: 26px 0 30px;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 700;
}

.check-list li::before {
    display: grid;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: rgba(143, 219, 173, .15);
    color: var(--green-300);
    content: "✓";
    font-size: 12px;
}

.contact-section {
    background: linear-gradient(180deg, var(--bg), #edf4ef);
}

.contact-grid {
    display: grid;
    gap: 32px;
}

.contact-links {
    display: grid;
    margin-top: 28px;
    gap: 10px;
}

.contact-links a {
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, .72);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-links a:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-links a > span:first-child,
.location-card > div,
.telegram-icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 18px;
    font-weight: 900;
}

.contact-links svg,
.location-card svg {
    width: 21px;
    height: 21px;
}

.contact-links small,
.contact-links strong,
.location-card small,
.location-card strong,
.location-card em {
    display: block;
}

.contact-links small,
.location-card small {
    color: var(--ink-soft);
    font-size: 11px;
}

.contact-links strong,
.location-card strong {
    margin-top: 2px;
    font-size: 14px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 16px;
    border-radius: 20px;
    padding: 15px;
    background: var(--green-900);
    color: #fff;
}

.location-card > div {
    background: rgba(255, 255, 255, .1);
    color: var(--green-300);
}

.location-card small,
.location-card em {
    color: rgba(255, 255, 255, .62);
}

.location-card em {
    margin-top: 3px;
    font-size: 11px;
    font-style: normal;
}

.lead-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.lead-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: 22px;
    background: linear-gradient(135deg, #fbfdfb, var(--green-100));
}

.lead-card-head > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-card-head strong {
    font-size: 14px;
}

.lead-card-head small {
    max-width: 110px;
    color: var(--ink-soft);
    text-align: right;
    font-size: 10px;
}

.lead-form {
    display: grid;
    padding: 22px;
    gap: 15px;
}

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

.field > span,
.contact-choice legend {
    color: #34483e;
    font-size: 12px;
    font-weight: 800;
}

.field input,
.field select,
.field textarea,
.admin-search input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 0 14px;
    background: #fbfdfb;
    color: var(--ink);
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(24, 112, 74, .34);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green-600);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(56, 185, 121, .12);
}

.field input[aria-invalid="true"] {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(225, 78, 69, .1);
}

.field small {
    min-height: 0;
    color: var(--red-dark);
    font-size: 11px;
}

.contact-choice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    border: 0;
    padding: 0;
    gap: 7px;
}

.contact-choice legend {
    grid-column: 1 / -1;
    margin-bottom: 3px;
}

.contact-choice label {
    position: relative;
}

.contact-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-choice span {
    display: grid;
    min-height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8faf8;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.contact-choice input:checked + span {
    border-color: var(--green-700);
    background: var(--green-100);
    color: var(--green-800);
}

.contact-choice input:focus-visible + span {
    outline: 3px solid rgba(56, 185, 121, .3);
    outline-offset: 2px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 11px;
}

.consent input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--green-700);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.button-spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .75s linear infinite;
}

.lead-form.is-loading .button-spinner {
    display: block;
}

.lead-form.is-loading button[type="submit"] {
    pointer-events: none;
    opacity: .8;
}

.form-status {
    min-height: 18px;
    margin: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.form-status.is-error {
    color: var(--red-dark);
}

.form-status.is-success {
    color: var(--green-700);
}

.messenger-section {
    background: #edf4ef;
    padding-top: 0;
}

.messenger-card {
    display: grid;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    gap: 30px;
}

.messenger-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    gap: 10px;
}

.qr-wrap {
    display: grid;
    width: fit-content;
    justify-items: center;
    margin-inline: auto;
    border-radius: 24px;
    padding: 14px;
    background: var(--green-950);
    box-shadow: var(--shadow-md);
}

.qr-wrap img {
    width: 190px;
    height: 190px;
    border-radius: 14px;
    background: #fff;
}

.qr-wrap span {
    margin-top: 10px;
    color: var(--green-300);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    gap: 34px;
}

.accordion {
    display: grid;
    gap: 10px;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfdfb;
}

.accordion-item button {
    display: flex;
    width: 100%;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 16px 18px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 850;
}

.accordion-item button i {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-100);
}

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

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

.accordion-item.is-open button i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.accordion-panel p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 18px;
    color: var(--ink-soft);
    font-size: 14px;
    transition: padding .25s ease;
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel p {
    padding-bottom: 18px;
}

.site-footer {
    padding: 54px 0 92px;
    background: var(--green-950);
    color: #fff;
}

.footer-grid {
    display: grid;
    gap: 32px;
}


.brand-footer .brand-copy small {
    color: rgba(255, 255, 255, .52);
}

.footer-grid > div:first-child p {
    max-width: 320px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-grid small {
    color: var(--green-300);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-grid strong,
.footer-grid a {
    font-size: 14px;
}

.footer-grid span {
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    color: rgba(255, 255, 255, .38);
    gap: 10px;
    font-size: 11px;
}

.mobile-cta {
    position: fixed;
    z-index: 80;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: 52px 1fr;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 18px;
    padding: 6px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 20px 60px rgba(8, 36, 25, .2);
    backdrop-filter: blur(15px);
    gap: 6px;
    transition: transform .25s ease, opacity .25s ease;
}

.mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
}

.mobile-cta a,
.mobile-cta button {
    min-height: 50px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 850;
}

.mobile-cta a {
    display: grid;
    place-items: center;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 18px;
}

.mobile-cta button {
    background: var(--green-700);
    color: #fff;
}

.contact-dialog,
.confirm-dialog {
    width: min(calc(100% - 24px), 480px);
    max-height: calc(100dvh - 24px);
    overflow: visible;
    border: 0;
    border-radius: 28px;
    padding: 0;
    background: transparent;
    color: var(--ink);
}

.contact-dialog::backdrop,
.confirm-dialog::backdrop {
    background: rgba(3, 20, 13, .68);
    backdrop-filter: blur(7px);
}

.dialog-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 28px;
    padding: 28px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.dialog-card::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 219, 173, .42), transparent 70%);
    content: "";
    pointer-events: none;
}

.dialog-card > * {
    position: relative;
}

.dialog-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .84);
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
}

.dialog-card h2 {
    margin: 10px 0 8px;
    letter-spacing: -.04em;
    font-size: 32px;
    line-height: 1.05;
}

.dialog-card > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.dialog-actions {
    display: grid;
    margin: 24px 0 16px;
    gap: 9px;
}

.dialog-actions a {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    background: #fbfdfb;
    transition: border-color .2s ease, transform .2s ease;
}

.dialog-actions a:hover {
    border-color: rgba(24, 112, 74, .3);
    transform: translateX(3px);
}

.dialog-actions a > span {
    display: grid;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 12px;
    font-weight: 900;
}

.dialog-actions strong,
.dialog-actions small {
    grid-column: 2;
}

.dialog-actions strong {
    font-size: 13px;
}

.dialog-actions small {
    color: var(--ink-soft);
    font-size: 10px;
}

.toast {
    position: fixed;
    z-index: 200;
    right: 16px;
    bottom: 90px;
    left: 16px;
    border-radius: 15px;
    padding: 14px 16px;
    background: var(--green-950);
    color: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .25s ease, transform .25s ease;
    font-size: 13px;
    font-weight: 750;
}

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

.toast.is-error {
    background: var(--red-dark);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

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

@media (min-width: 560px) {
    .hero-actions,
    .messenger-buttons {
        flex-direction: row;
    }

    .trust-row {
        grid-template-columns: repeat(3, max-content);
        gap: 18px;
    }

    .quick-strip-inner {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 760px) {
    :root {
        --header-height: 82px;
    }

    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .section {
        padding: 104px 0;
    }

    .header-inner > .button {
        min-width: 158px;
    }

    .hero {
        padding-top: 68px;
    }

    .section-heading {
        grid-template-columns: 1.2fr .8fr;
        align-items: end;
        margin-bottom: 46px;
    }

    .section-heading.centered {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .more-services {
        grid-template-columns: 1fr auto;
        padding: 34px;
    }

    .pricing-grid {
        grid-template-columns: .88fr 1.12fr;
        gap: 70px;
    }

    .pricing-intro {
        position: sticky;
        top: calc(var(--header-height) + 36px);
    }

    .price-card {
        padding: 18px;
    }

    .price-row {
        padding: 18px 12px;
    }

    .price-row span,
    .price-row strong {
        font-size: 14px;
    }

    .maintenance-card {
        grid-template-columns: 1fr 1fr;
    }

    .maintenance-copy {
        padding: 58px 48px;
    }

    .contact-grid {
        grid-template-columns: .9fr 1.1fr;
        align-items: start;
        gap: 70px;
    }

    .messenger-card {
        grid-template-columns: 1fr auto;
        padding: 42px 50px;
    }

    .faq-grid {
        grid-template-columns: .82fr 1.18fr;
        gap: 70px;
    }

    .site-footer {
        padding-bottom: 46px;
    }

    .mobile-cta {
        display: none;
    }

    .toast {
        right: 24px;
        bottom: 24px;
        left: auto;
        width: min(390px, calc(100% - 48px));
    }
}

@media (min-width: 980px) {
    .desktop-nav {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1.08fr .92fr;
        gap: 68px;
    }

    .hero h1 {
        font-size: clamp(64px, 6.3vw, 88px);
    }

    .floating-card-top {
        left: -28px;
    }

    .floating-card-bottom {
        right: -24px;
    }

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

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

    .process-card:nth-child(even) {
        transform: translateY(20px);
    }

    .process-card:nth-child(even).is-visible {
        transform: translateY(20px);
    }
}

@media (max-width: 460px) {
    .header-inner > .button {
        padding-inline: 12px;
        font-size: 11px;
    }

    .brand-copy small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .floating-card-top {
        top: 18px;
    }

    .floating-card-bottom {
        bottom: 66px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .floating-card small {
        font-size: 9px;
    }

    .contact-choice {
        grid-template-columns: 1fr;
    }
}

@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;
    }
}
.field > span em {
    color: var(--ink-soft);
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
}

.field textarea {
    min-height: 92px;
    resize: vertical;
    padding-block: 13px;
}

#lead-form {
    scroll-margin-top: 110px;
}


/* SUPPORT_IT_DIRECT_FORM_V2 */
#callback-form {
    scroll-margin-top: 96px;
}

.mobile-cta a.mobile-cta-primary {
    display: grid;
    place-items: center;
    background: var(--green-700);
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.mobile-cta a.mobile-cta-primary:hover {
    background: var(--green-800);
    color: #fff;
}

/* BEGIN SUPPORT_IT_SHOWCASE_PUBLIC_V1 */
.showcase-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0, rgba(75, 206, 139, .22), transparent 34%),
        radial-gradient(circle at 0 100%, rgba(225, 78, 69, .12), transparent 32%),
        linear-gradient(145deg, var(--green-950), var(--green-800));
    color: #fff;
}

.showcase-heading {
    align-items: end;
}

.showcase-heading .section-kicker,
.showcase-heading p {
    color: rgba(255, 255, 255, .7);
}

.showcase-heading h2 {
    color: #fff;
}

.showcase-grid {
    display: grid;
    margin-top: 32px;
    gap: 14px;
    grid-template-columns: 1fr;
}

.showcase-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(3, 19, 12, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 82px rgba(3, 19, 12, .32);
}

.showcase-card-open {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.showcase-card-open:focus-visible {
    outline: 4px solid var(--green-300);
    outline-offset: -4px;
}

.showcase-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
}

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

.showcase-card:hover .showcase-card-media img {
    transform: scale(1.035);
}

.showcase-no-image {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: linear-gradient(135deg, var(--surface-green), #fff);
    color: var(--green-800);
    font-weight: 900;
}

.showcase-badges {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;
    display: flex;
    gap: 7px;
}

.showcase-badge {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.showcase-badge.is-hot {
    background: var(--red);
}

.showcase-badge.is-top {
    background: var(--green-700);
}

.showcase-image-count {
    position: absolute;
    right: 13px;
    bottom: 13px;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(8, 36, 25, .78);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.showcase-card-body {
    display: flex;
    min-height: 235px;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.showcase-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--green-800);
}

.showcase-price strong {
    letter-spacing: -.04em;
    font-size: 25px;
    line-height: 1;
}

.showcase-price small {
    color: var(--ink-soft);
    font-size: 11px;
}

.showcase-card-title {
    margin-top: 16px;
    letter-spacing: -.025em;
    font-size: 20px;
    line-height: 1.18;
}

.showcase-card-description {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.showcase-card-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 850;
}

.showcase-card-more i {
    font-size: 18px;
    font-style: normal;
}

.showcase-empty {
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    padding: 30px;
    background: rgba(255, 255, 255, .08);
    text-align: center;
    backdrop-filter: blur(12px);
}

.showcase-empty h3 {
    margin: 0 0 8px;
    font-size: 25px;
}

.showcase-empty p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.showcase-loader {
    display: grid;
    min-height: 70px;
    place-items: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    text-align: center;
}

.showcase-load-button {
    margin-top: 10px;
}

.showcase-dialog {
    width: min(94vw, 1080px);
    max-width: none;
    max-height: 92dvh;
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    padding: 0;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-lg);
}

.showcase-dialog::backdrop {
    background: rgba(4, 20, 13, .72);
    backdrop-filter: blur(8px);
}

.showcase-dialog-close {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    cursor: pointer;
    font-size: 25px;
    box-shadow: var(--shadow-sm);
}

.showcase-dialog-grid {
    display: grid;
    max-height: 92dvh;
    overflow: auto;
}

.showcase-dialog-gallery,
.showcase-dialog-copy {
    min-width: 0;
}

.showcase-dialog-gallery {
    padding: 16px;
    background: var(--surface-soft);
}

.showcase-dialog-main-image {
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 4 / 3;
    background: #fff;
}

.showcase-dialog-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-dialog-thumbs {
    display: grid;
    margin-top: 10px;
    gap: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.showcase-dialog-thumbs button {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0;
    background: #fff;
    cursor: pointer;
    aspect-ratio: 1;
}

.showcase-dialog-thumbs button.is-active {
    border-color: var(--green-600);
}

.showcase-dialog-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-dialog-copy {
    display: flex;
    flex-direction: column;
    padding: 34px 26px 28px;
}

.showcase-dialog-copy h2 {
    margin: 18px 0 12px;
    letter-spacing: -.045em;
    font-size: clamp(30px, 7vw, 50px);
    line-height: 1.02;
}

.showcase-dialog-copy > p {
    margin: 0;
    color: var(--ink-soft);
    white-space: pre-line;
}

.showcase-dialog-copy .showcase-price {
    margin-top: 26px;
}

.showcase-dialog-actions {
    display: grid;
    margin-top: auto;
    padding-top: 28px;
    gap: 9px;
}

@media (min-width: 620px) {
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    .showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .showcase-dialog-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(350px, .8fr);
    }

    .showcase-dialog-gallery {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-card,
    .showcase-card-media img {
        transition: none;
    }
}
/* END SUPPORT_IT_SHOWCASE_PUBLIC_V1 */
