:root {
    --bg: #f2f6f4;
    --ink: #101820;
    --muted: #5f6b73;
    --green: #05a873;
    --green-dark: #047451;
    --mint: #d7f6e8;
    --line: #d8e3de;
    --charcoal: #0d171c;
    --white: #ffffff;
    --shadow: 0 28px 90px rgba(15, 35, 28, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--green) rgba(5, 168, 115, 0.08);
    scrollbar-width: thin;
}

section[id] {
    scroll-margin-top: 96px;
}

::selection {
    color: #ffffff;
    background: var(--green);
}

::-moz-selection {
    color: #ffffff;
    background: var(--green);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(5, 168, 115, 0.08);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green), var(--green-dark));
    border: 2px solid #f7fbf9;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background:
        linear-gradient(90deg, rgba(5, 168, 115, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 168, 115, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 12%, rgba(5, 168, 115, 0.18), transparent 30rem),
        linear-gradient(180deg, #fbfdfc 0%, var(--bg) 52%, #ffffff 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
}

body.has-policy-modal {
    overflow: hidden;
}

.built-hero {
    position: relative;
    width: calc(100vw - 16px);
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr);
    grid-template-rows: 1fr auto;
    gap: 16px 28px;
    margin-top: 8px;
    padding: clamp(34px, 4.3vw, 68px) clamp(28px, 4.4vw, 78px) 24px;
    border: 1px solid rgba(216, 227, 222, 0.95);
    border-radius: 8px;
    background:
        linear-gradient(107deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 66%, rgba(5,168,115,0.96) 66.2%, rgba(4,116,81,0.98) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.built-hero.section-wrap {
    width: calc(100vw - 16px);
}

.built-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 55% 8%, rgba(0, 0, 0, 0.045), transparent 22rem),
        linear-gradient(90deg, rgba(5,168,115,0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5,168,115,0.04) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
}

.built-hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.76) 46%, transparent 72%);
    opacity: 0;
    transform: translateX(-82%);
}

.built-hero .logo-row::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 10%;
    top: 48%;
    height: 54px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(5, 168, 115, 0.18), transparent);
    opacity: 0;
    transform: translateY(-50%) translateX(-35%);
    mix-blend-mode: multiply;
}

.built-hero-content,
.built-hero-photo,
.hero-bottom-stats {
    position: relative;
    z-index: 2;
}

.built-hero-content {
    align-self: center;
    display: grid;
    gap: clamp(22px, 3vw, 34px);
}

.logo-row {
    position: relative;
    display: block;
    max-width: 940px;
}

.hero-logo-image,
.logo-row picture {
    display: block;
    width: min(780px, 100%);
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(9, 20, 26, 0.18));
}

.hero-logo-image {
    width: 100%;
}

.logo-divider {
    position: relative;
    display: block;
    width: min(620px, 74%);
    height: 2px;
    margin: 18px 0 0 292px;
    background: linear-gradient(90deg, transparent, rgba(5, 168, 115, 0.42), transparent);
}

.logo-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(5, 168, 115, 0.08);
    transform: translate(-50%, -50%);
    animation: heroDotPulse 2600ms ease-in-out infinite;
}

.has-hero-motion .built-hero .hero-logo-image,
.has-hero-motion .built-hero .logo-divider,
.has-hero-motion .built-hero .hero-offer,
.has-hero-motion .built-hero .hero-service-bar,
.has-hero-motion .built-hero .hero-contact-grid,
.has-hero-motion .built-hero .quality-line,
.has-hero-motion .built-hero .hero-actions,
.has-hero-motion .built-hero .photo-ring,
.has-hero-motion .built-hero .mini-card,
.has-hero-motion .built-hero .floating-note,
.has-hero-motion .built-hero .signature-badge,
.has-hero-motion .built-hero .hero-bottom-stats {
    opacity: 0;
    transform: translateY(22px);
}

.has-hero-motion .is-loaded .built-hero::before {
    animation: heroSweep 1200ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.has-hero-motion .is-loaded .built-hero .logo-row::before {
    animation: logoScan 4200ms ease-in-out 1400ms infinite;
}

.has-hero-motion .is-loaded .built-hero .hero-logo-image {
    animation: heroReveal 720ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.has-hero-motion .is-loaded .built-hero .logo-divider {
    animation: dividerReveal 700ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

.has-hero-motion .is-loaded .built-hero .hero-offer {
    animation: heroReveal 680ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.has-hero-motion .is-loaded .built-hero .hero-service-bar {
    animation: heroReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both;
}

.has-hero-motion .is-loaded .built-hero .hero-contact-grid {
    animation: heroReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) 680ms both;
}

.has-hero-motion .is-loaded .built-hero .quality-line,
.has-hero-motion .is-loaded .built-hero .hero-actions {
    animation: heroReveal 560ms cubic-bezier(0.16, 1, 0.3, 1) 780ms both;
}

.has-hero-motion .is-loaded .built-hero .photo-ring {
    animation: photoReveal 860ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both, photoFloat 5200ms ease-in-out 1400ms infinite;
}

.has-hero-motion .is-loaded .built-hero .mini-card {
    animation: heroReveal 520ms cubic-bezier(0.16, 1, 0.3, 1) 740ms both, floatCard 4200ms ease-in-out 1400ms infinite;
}

.has-hero-motion .is-loaded .built-hero .floating-note {
    animation: heroReveal 520ms cubic-bezier(0.16, 1, 0.3, 1) 820ms both, floatCard 4600ms ease-in-out 1500ms infinite;
}

.has-hero-motion .is-loaded .built-hero .signature-badge {
    animation: heroReveal 560ms cubic-bezier(0.16, 1, 0.3, 1) 940ms both, signatureFloat 4800ms ease-in-out 1600ms infinite;
}

.has-hero-motion .is-loaded .built-hero .hero-bottom-stats {
    animation: heroReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) 980ms both;
}

.has-hero-motion .built-hero .hero-offer,
.has-hero-motion .built-hero .hero-service-bar,
.has-hero-motion .built-hero .hero-contact-grid,
.has-hero-motion .built-hero .quality-line,
.has-hero-motion .built-hero .hero-actions,
.has-hero-motion .built-hero .hero-bottom-stats {
    opacity: 1;
    transform: none;
    animation: none !important;
}

.has-hero-motion .built-hero .hero-logo-image,
.has-hero-motion .built-hero .logo-divider,
.has-hero-motion .built-hero .photo-ring,
.has-hero-motion .is-loaded .built-hero .hero-logo-image,
.has-hero-motion .is-loaded .built-hero .logo-divider,
.has-hero-motion .is-loaded .built-hero .photo-ring {
    opacity: 1;
    animation: none !important;
}

.has-hero-motion .built-hero .hero-logo-image,
.has-hero-motion .built-hero .logo-divider,
.has-hero-motion .is-loaded .built-hero .hero-logo-image,
.has-hero-motion .is-loaded .built-hero .logo-divider {
    transform: none;
}

.has-hero-motion .built-hero .photo-ring,
.has-hero-motion .is-loaded .built-hero .photo-ring {
    transform: translateY(-50%);
}

.as-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: clamp(76px, 7vw, 118px);
    line-height: 0.72;
    font-weight: 950;
}

.as-mark strong {
    color: var(--green-dark);
}

.as-mark strong span {
    color: var(--green);
}

.brand-title {
    margin: 0;
    color: var(--green);
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: 0.9;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-title span {
    color: #202d38;
}

.logo-row p {
    position: relative;
    margin: 20px 0 0;
    padding-bottom: 18px;
    color: var(--green-dark);
    font-size: clamp(16px, 1.55vw, 25px);
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.logo-row p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(100%, 560px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(5,168,115,0.45), transparent);
}

.logo-row p::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: min(46%, 280px);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
}

.hero-offer {
    max-width: 920px;
    margin-top: -8px;
}

.hero-offer h1 {
    max-width: 900px;
    margin: 0;
    color: #172532;
    font-size: clamp(34px, 3.45vw, 58px);
    line-height: 1.03;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-offer p {
    max-width: 820px;
    margin: 14px 0 0;
    color: #53616b;
    font-size: clamp(16px, 1.16vw, 20px);
    line-height: 1.55;
    font-weight: 560;
}

.hero-service-bar,
.hero-contact-grid,
.quality-line,
.hero-bottom-stats {
    max-width: 980px;
}

.hero-service-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 48px rgba(15,35,28,0.11);
}

.hero-service-bar span {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: #3a4650;
    font-size: clamp(14px, 1.08vw, 18px);
    font-weight: 760;
    border-right: 1px solid var(--line);
}

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

.hero-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr;
    gap: clamp(12px, 2vw, 24px);
}

.hero-contact-grid.profile-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    max-width: 760px;
}

.info-pill {
    min-width: 0;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 44px rgba(15,35,28,0.08);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.info-pill:hover,
article:hover,
.review-card:hover {
    border-color: rgba(5, 168, 115, 0.32);
    transform: translateY(-3px);
    box-shadow: 0 24px 66px rgba(15,35,28,0.14);
}

.info-pill small {
    display: block;
    margin-bottom: 4px;
    color: #61707b;
    font-size: 16px;
}

.info-pill strong {
    display: block;
    color: var(--green);
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: keep-all;
}

.info-pill em {
    color: #26323d;
    font-style: normal;
    font-weight: 650;
}

.quality-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #3d4a55;
    font-size: clamp(15px, 1.4vw, 22px);
    font-weight: 840;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.quality-line b {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    animation: qualityBlink 2600ms ease-in-out infinite;
}

.quality-line b:nth-of-type(2) {
    animation-delay: 450ms;
}

.quality-line b:nth-of-type(3) {
    animation-delay: 900ms;
}

.built-hero .hero-actions {
    margin-top: 0;
}

.built-hero-photo {
    min-height: 500px;
    align-self: center;
}

.pcb-traces {
    position: absolute;
    inset: -14% -12% -10% 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    clip-path: polygon(48% 0, 100% 0, 100% 100%, 30% 100%, 46% 62%, 50% 38%);
}

.trace {
    position: absolute;
    display: block;
    width: var(--w);
    height: var(--h);
    opacity: 0.72;
    border-color: rgba(255, 255, 255, 0.72);
    border-style: solid;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.18));
}

.trace::before,
.trace::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(5, 168, 115, 0.85);
}

.trace::before {
    left: -6px;
    top: -6px;
}

.trace::after {
    right: -6px;
    bottom: -6px;
}

.trace::before,
.trace::after,
.circuit-right {
    animation: circuitPulse 3600ms ease-in-out infinite;
}

.trace.t2::before,
.trace.t2::after,
.trace.t5::before,
.trace.t5::after {
    animation-delay: 700ms;
}

.trace.t3::before,
.trace.t3::after,
.trace.t6::before,
.trace.t6::after {
    animation-delay: 1300ms;
}

.trace.t1 {
    --w: 210px;
    --h: 62px;
    right: 18px;
    top: 42px;
    border-width: 2px 0 0 2px;
}

.trace.t2 {
    --w: 270px;
    --h: 94px;
    right: 86px;
    top: 112px;
    border-width: 0 2px 2px 0;
}

.trace.t3 {
    --w: 190px;
    --h: 74px;
    right: -8px;
    top: 250px;
    border-width: 2px 2px 0 0;
}

.trace.t4 {
    --w: 310px;
    --h: 96px;
    right: 18px;
    bottom: 174px;
    border-width: 0 0 2px 2px;
}

.trace.t5 {
    --w: 240px;
    --h: 70px;
    right: 128px;
    bottom: 72px;
    border-width: 2px 0 0 2px;
}

.trace.t6 {
    --w: 170px;
    --h: 128px;
    right: -24px;
    bottom: 30px;
    border-width: 0 2px 2px 0;
}

.photo-ring {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 48%;
    width: min(410px, 88%);
    aspect-ratio: 1;
    transform: translateY(-50%);
    border: 7px solid #ffffff;
    border-radius: 50%;
    outline: 4px solid rgba(255,255,255,0.58);
    box-shadow: 0 28px 84px rgba(0,0,0,0.28);
    overflow: hidden;
    background: #06131a;
}

.photo-ring::before {
    content: "";
    position: absolute;
    inset: -16px;
    border: 2px solid rgba(255,255,255,0.82);
    border-radius: 50%;
}

.photo-ring picture,
.photo-ring img {
    display: block;
    width: 100%;
    height: 100%;
}

.photo-ring img {
    object-fit: cover;
    object-position: 48% 52%;
}

.mini-card,
.floating-note {
    position: absolute;
    z-index: 4;
    min-height: 64px;
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 45px rgba(0,0,0,0.13);
    backdrop-filter: blur(14px);
}

.mini-card {
    left: auto;
    right: -34px;
    top: 6%;
    width: 176px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
}

.mini-card strong {
    color: var(--green);
    font-size: 30px;
}

.mini-card span,
.floating-note span {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e9eeee 52%, transparent 52%);
    background-size: 28px 100%;
}

.floating-note {
    right: -38px;
    width: 150px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.note-gear {
    top: 40%;
}

.note-graph {
    bottom: 18%;
    right: -18px;
}

.signature {
    position: absolute;
    z-index: 3;
    right: 30%;
    bottom: -1%;
    margin: 0;
    color: rgba(5, 168, 115, 0.72);
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: clamp(34px, 3vw, 54px);
    line-height: 0.9;
    transform: rotate(-8deg);
}

.role-text {
    position: absolute;
    z-index: 3;
    right: 25%;
    bottom: -4%;
    margin: 0;
    color: rgba(91, 104, 116, 0.75);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.signature-badge {
    position: absolute;
    z-index: 5;
    right: 15%;
    bottom: 4%;
    min-width: 250px;
    min-height: 58px;
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 7px 18px 8px;
    color: #122630;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    pointer-events: none;
    transform: none;
}

.signature-badge strong {
    color: var(--green);
    font-family: "Allura", "Segoe Script", "Brush Script MT", cursive;
    font-size: clamp(46px, 4vw, 68px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 0;
    transform: rotate(-4deg);
    text-shadow: 0 7px 16px rgba(5, 168, 115, 0.14);
}

.signature-badge strong::before {
    content: "";
    position: absolute;
    left: -18%;
    right: -22%;
    bottom: 7px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(5, 168, 115, 0.16), rgba(5, 168, 115, 0.58), rgba(5, 168, 115, 0.16), transparent);
    transform: rotate(-4deg);
}

.signature-badge strong::after {
    content: "";
    display: none;
}

.signature-badge span {
    color: #40505a;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-shadow: none;
}

.signature-badge span::before {
    content: none;
}

.hero-bottom-stats {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    margin-top: 10px;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(15,35,28,0.08);
    backdrop-filter: blur(12px);
}

.hero-bottom-stats div {
    min-height: 62px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
}

.hero-bottom-stats div:last-child {
    border-right: 0;
}

.hero-bottom-stats strong {
    color: #202d38;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1;
}

.hero-bottom-stats span {
    color: #5f6b73;
    font-weight: 650;
    line-height: 1.25;
}

.icon-globe,
.icon-gear,
.icon-brain,
.icon-telegram,
.icon-site,
.icon-shield,
.icon-graph,
.icon-like,
.icon-clients,
.icon-rocket,
.icon-secure {
    position: relative;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--green);
}

.icon-globe,
.icon-site {
    border: 3px solid currentColor;
    border-radius: 50%;
}

.icon-globe::before,
.icon-site::before {
    content: "";
    width: 3px;
    height: 100%;
    background: currentColor;
}

.icon-globe::after,
.icon-site::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    height: 3px;
    background: currentColor;
}

.icon-woo {
    width: 46px;
    height: 30px;
    color: #fff;
    border-radius: 7px;
    background: var(--green);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.icon-gear::before {
    content: "";
    width: 26px;
    height: 26px;
    border: 4px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 -11px 0 -7px currentColor, 0 11px 0 -7px currentColor, 11px 0 0 -7px currentColor, -11px 0 0 -7px currentColor;
}

.icon-brain::before {
    content: "";
    width: 30px;
    height: 28px;
    border: 4px solid currentColor;
    border-radius: 52% 48% 45% 55%;
}

.icon-telegram::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 30px solid currentColor;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    transform: rotate(-18deg);
}

.icon-shield::before,
.icon-secure::before {
    content: "";
    width: 28px;
    height: 32px;
    border: 4px solid currentColor;
    border-radius: 14px 14px 18px 18px;
}

.icon-shield::after,
.icon-secure::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 7px;
    border-left: 4px solid currentColor;
    border-bottom: 4px solid currentColor;
    transform: rotate(-45deg);
}

.icon-graph::before {
    content: "";
    width: 28px;
    height: 22px;
    border-left: 4px solid currentColor;
    border-bottom: 4px solid currentColor;
}

.icon-graph::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 14px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    transform: skew(-18deg) translate(3px, -2px);
}

.icon-like::before {
    content: "";
    width: 18px;
    height: 27px;
    border: 4px solid currentColor;
    border-radius: 8px;
    transform: rotate(8deg);
}

.icon-clients::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 4px solid currentColor;
    border-radius: 50%;
    box-shadow: 18px 4px 0 -3px #fff, 18px 4px 0 0 currentColor;
}

.icon-rocket::before {
    content: "";
    width: 18px;
    height: 34px;
    border: 4px solid currentColor;
    border-radius: 50% 50% 45% 45%;
    transform: rotate(42deg);
}

.circuit,
.dot-field {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.dot-field {
    left: 30px;
    top: 24px;
    width: 140px;
    height: 70px;
    background-image: radial-gradient(var(--green) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.95;
    animation: dotDrift 8200ms linear infinite;
}

.circuit-left {
    left: -30px;
    top: 22%;
    width: 180px;
    height: 360px;
    opacity: 0.22;
    background:
        linear-gradient(90deg, transparent 40px, var(--green) 41px, transparent 42px),
        linear-gradient(180deg, transparent 56px, var(--green) 57px, transparent 58px);
    background-size: 42px 62px;
}

.circuit-right {
    right: 0;
    top: 0;
    width: 34%;
    height: 100%;
    opacity: 0.22;
    background:
        radial-gradient(circle at 14% 8%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 42% 18%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 68% 33%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 24% 52%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 80% 64%, #fff 0 4px, transparent 5px),
        linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,0.72) 14% calc(14% + 2px), transparent calc(14% + 2px)),
        linear-gradient(90deg, transparent 0 42%, rgba(255,255,255,0.50) 42% calc(42% + 2px), transparent calc(42% + 2px)),
        linear-gradient(90deg, transparent 0 68%, rgba(255,255,255,0.62) 68% calc(68% + 2px), transparent calc(68% + 2px)),
        linear-gradient(180deg, transparent 0 18%, rgba(255,255,255,0.58) 18% calc(18% + 2px), transparent calc(18% + 2px)),
        linear-gradient(180deg, transparent 0 33%, rgba(255,255,255,0.48) 33% calc(33% + 2px), transparent calc(33% + 2px)),
        linear-gradient(180deg, transparent 0 64%, rgba(255,255,255,0.56) 64% calc(64% + 2px), transparent calc(64% + 2px));
    background-size: 100% 100%;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.12));
}

.circuit-right::before,
.circuit-right::after {
    content: "";
    position: absolute;
    inset: 4% 5%;
    opacity: 0.8;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,0.58) 48% calc(48% + 2px), transparent calc(48% + 2px)),
        linear-gradient(45deg, transparent 0 58%, rgba(255,255,255,0.42) 58% calc(58% + 2px), transparent calc(58% + 2px));
    background-size: 170px 96px;
}

.circuit-right::after {
    inset: 13% 0 0 22%;
    opacity: 0.45;
    transform: rotate(180deg);
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerReveal {
    from {
        opacity: 0;
        transform: scaleX(0.35);
        transform-origin: 50% 50%;
    }
    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: 50% 50%;
    }
}

@keyframes photoReveal {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes photoFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0) scale(1);
    }
    50% {
        transform: translateY(calc(-50% - 8px)) translateX(-4px) scale(1.012);
    }
}

@keyframes tabletPhotoReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes tabletPhotoFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-7px) scale(1.01);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes signatureFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes circuitPulse {
    0%, 100% {
        opacity: 0.45;
        filter: drop-shadow(0 0 2px rgba(255,255,255,0.1));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.34));
    }
}

@keyframes dotDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 32px 16px;
    }
}

@keyframes heroSweep {
    0% {
        opacity: 0;
        transform: translateX(-82%);
    }
    18% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateX(82%);
    }
}

@keyframes logoScan {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-38%);
    }
    18%, 46% {
        opacity: 0.95;
    }
    62% {
        opacity: 0;
        transform: translateY(-50%) translateX(42%);
    }
}

@keyframes qualityBlink {
    0%, 100% {
        opacity: 0.72;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 168, 115, 0.08);
    }
    50% {
        opacity: 1;
        transform: scale(1.14);
        box-shadow: 0 0 0 7px rgba(5, 168, 115, 0.12);
    }
}

@keyframes heroDotPulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(5, 168, 115, 0.08), 0 0 0 0 rgba(5, 168, 115, 0.18);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(5, 168, 115, 0.1), 0 0 0 20px rgba(5, 168, 115, 0);
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll:nth-child(even) {
    transform: translateY(28px) translateX(10px);
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .has-hero-motion .built-hero .hero-logo-image,
    .has-hero-motion .built-hero .logo-divider,
    .has-hero-motion .built-hero .hero-offer,
    .has-hero-motion .built-hero .hero-service-bar,
    .has-hero-motion .built-hero .hero-contact-grid,
    .has-hero-motion .built-hero .quality-line,
    .has-hero-motion .built-hero .hero-actions,
    .has-hero-motion .built-hero .photo-ring,
    .has-hero-motion .built-hero .mini-card,
    .has-hero-motion .built-hero .floating-note,
    .has-hero-motion .built-hero .signature-badge,
    .has-hero-motion .built-hero .hero-bottom-stats {
        opacity: 1;
        transform: none;
    }

    .has-hero-motion .built-hero .photo-ring {
        transform: translateY(-50%);
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.hero-service-bar .fa-solid,
.hero-service-bar .fa-brands,
.info-pill .fa-solid,
.info-pill .fa-brands,
.floating-note .fa-solid,
.hero-bottom-stats .fa-solid,
.hero-bottom-stats .fa-regular {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
}

.hero-service-bar .fa-wordpress-simple {
    width: 48px;
    height: 32px;
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), #12c58b);
    font-size: 21px;
}

.info-pill .fa-brands,
.info-pill .fa-solid {
    width: 54px;
    height: 54px;
    font-size: 34px;
}

.floating-note .fa-solid {
    font-size: 30px;
}

.hero-bottom-stats .fa-solid,
.hero-bottom-stats .fa-regular {
    font-size: 32px;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 64px);
    background: rgba(251, 253, 252, 0.86);
    border-bottom: 1px solid rgba(220, 230, 226, 0.72);
    backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.trust-strip,
.site-footer {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand picture {
    display: block;
    width: clamp(150px, 16vw, 230px);
}

.brand-logo {
    display: block;
    width: clamp(150px, 16vw, 230px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(9, 20, 26, 0.16));
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 34px;
    border-radius: 8px;
    color: var(--green);
    background: #e8fbf2;
    font-weight: 900;
}

.nav-links {
    gap: clamp(14px, 2.5vw, 34px);
    color: var(--muted);
    font-size: 15px;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 2px;
    transition: color 0.22s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(5, 168, 115, 0.12);
    opacity: 0;
    transform: translate(-50%, 4px) scale(0.65);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover {
    color: var(--green-dark);
}

.nav-links a.is-active {
    color: var(--green-dark);
    font-weight: 760;
}

.nav-links a.is-active::after {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.nav-telegram,
.menu-toggle {
    display: none;
}

.nav-links .nav-telegram {
    display: none !important;
}

.header-cta,
.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
}

.header-cta {
    padding: 0 18px;
    color: var(--green-dark);
    border: 1px solid rgba(7, 154, 104, 0.24);
}

@media (max-width: 1100px) {
    .site-header {
        gap: 12px;
    }

    .header-cta {
        display: none;
    }
}

.menu-toggle {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    gap: 5px;
    padding: 11px;
    border: 1px solid rgba(7, 154, 104, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--green-dark);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section-wrap {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    align-items: center;
    gap: clamp(28px, 5vw, 74px);
    padding: 58px 0 42px;
}

.hero-banner {
    position: relative;
    width: min(1480px, calc(100% - 32px));
    min-height: calc(100vh - 92px);
    margin-top: 18px;
    padding: clamp(34px, 5vw, 70px);
    border: 1px solid rgba(216, 227, 222, 0.9);
    border-radius: 8px;
    background:
        linear-gradient(110deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.94) 64%, rgba(5,168,115,0.93) 64.2%, rgba(4,116,81,0.95) 100%),
        radial-gradient(circle at 18% 15%, rgba(5, 168, 115, 0.12), transparent 18rem);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-banner::before,
.hero-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-banner::before {
    left: 22px;
    top: 22px;
    width: 132px;
    height: 70px;
    background-image: radial-gradient(var(--green) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.9;
}

.hero-banner::after {
    right: 0;
    top: 0;
    width: 33%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 18px, rgba(255,255,255,0.58) 19px, transparent 20px),
        linear-gradient(45deg, transparent 28px, rgba(255,255,255,0.28) 29px, transparent 30px);
    background-size: 90px 70px;
    opacity: 0.65;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 6.6vw, 92px);
    line-height: 0.94;
    letter-spacing: 0;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
    color: var(--green);
    font-size: clamp(86px, 12vw, 188px);
    line-height: 0.78;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-logo strong {
    color: var(--green-dark);
    text-shadow: 0 18px 34px rgba(5, 116, 81, 0.10);
}

.hero-logo strong span {
    color: var(--green);
}

.hero-logo .angle {
    color: var(--green);
    font-weight: 900;
}

.hero-brand {
    margin: 20px 0 0;
    color: #1d2a34;
    font-size: clamp(42px, 6.4vw, 94px);
    line-height: 0.9;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-subtitle {
    display: inline-flex;
    margin: 14px 0 0;
    color: var(--green-dark);
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-ribbon {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    margin-top: 28px;
    border: 1px solid rgba(216, 227, 222, 0.94);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 48px rgba(15, 35, 28, 0.10);
    overflow: hidden;
}

.service-ribbon span {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    color: #34434d;
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 750;
    border-right: 1px solid var(--line);
}

.service-ribbon span:last-child {
    border-right: 0;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin: 18px 0 10px;
    font-size: 22px;
}

.hero-text,
.contact p,
article p,
.process-list {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-text {
    max-width: 650px;
    margin: 26px 0 0;
}

.hero-actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    border: 0;
    cursor: pointer;
    padding: 0 22px;
    font-size: 16px;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 18px 42px rgba(5, 168, 115, 0.26);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 0;
}

.contact-cards a,
.contact-cards div {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(15, 35, 28, 0.08);
}

.contact-cards small {
    color: var(--muted);
    font-size: 14px;
}

.contact-cards strong {
    color: var(--green);
    font-size: clamp(16px, 1.8vw, 22px);
    overflow-wrap: anywhere;
}

.hero-portrait {
    position: relative;
    z-index: 2;
    min-height: 610px;
}

.portrait-ring {
    position: absolute;
    right: 0;
    top: 50%;
    width: min(520px, 100%);
    aspect-ratio: 1;
    transform: translateY(-50%);
    border: 8px solid #ffffff;
    border-radius: 50%;
    outline: 5px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    background: #05241a;
}

.portrait-ring img {
    width: 210%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 91% 50%;
    transform: translateX(-50%);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 8px;
    color: #1c3038;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
    backdrop-filter: blur(16px);
}

.floating-card strong {
    color: var(--green);
    font-size: 28px;
    line-height: 1;
}

.floating-card span {
    color: var(--muted);
    font-weight: 800;
}

.top-card {
    left: -8px;
    top: 54px;
}

.mid-card {
    right: -12px;
    top: 55%;
}

.low-card {
    right: 24px;
    bottom: 48px;
}

.trust-strip {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 28px;
    padding: 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--charcoal);
    font-weight: 800;
}

.trust-strip.is-after-hero {
    display: none;
}

.trust-strip span {
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
}

.trust-strip strong {
    color: var(--green);
    font-size: 24px;
}

.block {
    padding: 68px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.service-grid,
.proof-grid {
    display: grid;
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

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

.packages-section {
    padding-top: 46px;
}

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

.package-card {
    display: grid;
    gap: 16px;
    min-height: 430px;
    align-content: start;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,252,250,0.9)),
        linear-gradient(90deg, rgba(5,168,115,0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5,168,115,0.05) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}

.package-card.is-accent {
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 8%, rgba(127, 240, 191, 0.28), transparent 14rem),
        linear-gradient(135deg, rgba(5, 168, 115, 0.98), rgba(4, 116, 81, 0.98));
    border-color: rgba(5, 168, 115, 0.42);
}

.package-label {
    justify-self: start;
    padding: 7px 11px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    border: 1px solid rgba(5, 168, 115, 0.18);
    border-radius: 8px;
    background: rgba(5, 168, 115, 0.08);
}

.package-card.is-accent .package-label {
    color: #063126;
    background: #7ff0bf;
    border-color: transparent;
}

.package-card h3 {
    margin: 0;
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.08;
}

.package-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.package-card.is-accent p {
    color: rgba(255, 255, 255, 0.82);
}

.package-card ul {
    display: grid;
    gap: 10px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.package-card li {
    position: relative;
    padding-left: 24px;
    color: #34444f;
    font-weight: 650;
    line-height: 1.42;
}

.package-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(5, 168, 115, 0.1);
}

.package-card.is-accent li {
    color: rgba(255, 255, 255, 0.9);
}

.package-card.is-accent li::before {
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.package-link {
    align-self: end;
    justify-self: start;
    margin-top: auto;
    padding: 13px 18px;
    color: var(--white);
    text-decoration: none;
    font-weight: 850;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 15px 34px rgba(5, 168, 115, 0.2);
}

.package-card.is-accent .package-link {
    color: var(--green-dark);
    background: #ffffff;
}

.marketplace-section {
    padding-top: 28px;
}

.marketplace-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    padding: clamp(26px, 4vw, 52px);
    border: 1px solid rgba(5, 168, 115, 0.16);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 10%, rgba(5, 168, 115, 0.12), transparent 16rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 249, 0.94));
}

.marketplace-copy h2 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.05;
}

.marketplace-copy p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.marketplace-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.marketplace-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.marketplace-services {
    display: grid;
    gap: 10px;
}

.marketplace-services span {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #1b2b35;
    font-weight: 820;
    border: 1px solid rgba(5, 168, 115, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
}

.marketplace-services i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.about-section {
    padding-top: 46px;
}

.about-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 249, 0.9)),
        linear-gradient(90deg, rgba(5,168,115,0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5,168,115,0.05) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    box-shadow: 0 24px 70px rgba(15, 35, 28, 0.1);
}

.about-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(5, 168, 115, 0.18);
    border-radius: 50%;
}

.about-card .section-heading {
    max-width: 780px;
    margin-bottom: 24px;
}

.about-card .section-heading h2 {
    max-width: 700px;
    font-size: clamp(34px, 3.15vw, 48px);
    line-height: 1.08;
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
}

.about-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    display: grid;
    gap: 14px;
}

.about-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.about-visual {
    margin: 0;
    border: 1px solid rgba(5, 168, 115, 0.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 35, 28, 0.14);
}

.about-visual picture,
.about-visual img {
    display: block;
    width: 100%;
}

.about-visual img {
    aspect-ratio: 16 / 10.5;
    object-fit: cover;
}

.about-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.about-tags span {
    padding: 9px 14px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 820;
    border: 1px solid rgba(5, 168, 115, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
}

.about-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-actions .btn {
    gap: 10px;
}

.reviews-section {
    position: relative;
}

.reviews-heading {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.reviews-heading h2 {
    max-width: 780px;
}

.reviews-actions {
    display: inline-flex;
    gap: 10px;
    flex: 0 0 auto;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    color: var(--green);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(15, 35, 28, 0.08);
}

.carousel-btn:hover {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
}

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

.reviews-summary a {
    min-width: 0;
    padding: 18px 20px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15, 35, 28, 0.08);
}

.reviews-summary small {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.reviews-summary strong {
    display: block;
    margin-top: 6px;
    color: var(--green);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;
}

.reviews-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 34%);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 18px;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-height: 330px;
    scroll-snap-align: start;
    display: grid;
    align-content: space-between;
    gap: 16px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
        linear-gradient(90deg, rgba(5,168,115,0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5,168,115,0.06) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 62px rgba(15, 35, 28, 0.1);
}

.review-card.is-featured {
    background:
        linear-gradient(135deg, rgba(5,168,115,0.96), rgba(4,116,81,0.98)),
        linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.12) 1px, transparent 1px);
    color: #ffffff;
}

.review-card.is-critical {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,248,246,0.92)),
        linear-gradient(90deg, rgba(190, 72, 46, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(190, 72, 46, 0.06) 1px, transparent 1px);
    border-color: rgba(190, 72, 46, 0.28);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}

.review-source::after {
    content: "★★★★★";
    color: #f7b731;
    font-size: 13px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.review-card.is-featured .review-source,
.review-card.is-featured p,
.review-card.is-featured a {
    color: rgba(255, 255, 255, 0.86);
}

.review-card.is-featured .review-source::after {
    color: #ffffff;
}

.review-card.is-critical .review-source,
.review-card.is-critical a {
    color: #b9492f;
}

.review-card.is-critical .review-source::after {
    content: "★☆☆☆☆";
    color: #b9492f;
}

.review-card h3 {
    margin: 0;
    color: #172532;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.08;
}

.review-card.is-featured h3 {
    color: #ffffff;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    max-height: 178px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(5, 168, 115, 0.32) transparent;
}

.review-card p::-webkit-scrollbar {
    width: 4px;
}

.review-card p::-webkit-scrollbar-thumb {
    background: rgba(5, 168, 115, 0.32);
    border-radius: 999px;
}

.review-card a {
    justify-self: start;
    color: var(--green);
    font-weight: 850;
    text-decoration: none;
}

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

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.reviews-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(5, 168, 115, 0.22);
}

.reviews-dots span.is-active {
    width: 28px;
    background: var(--green);
}

.faq-section {
    padding-top: 44px;
}

.faq-accordion {
    display: grid;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 74px;
    padding: 22px 24px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 21px;
    line-height: 1.18;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    max-width: 760px;
}

.faq-question i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(5, 168, 115, 0.1);
    transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.faq-item.is-open .faq-question i {
    color: var(--white);
    background: var(--green);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    max-width: 820px;
    color: var(--muted);
    line-height: 1.66;
}

.quick-quiz {
    padding-top: 44px;
}

.quick-quiz .section-heading {
    max-width: 820px;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.quiz-grid button {
    min-height: 132px;
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 18px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,252,250,0.9)),
        linear-gradient(90deg, rgba(5,168,115,0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5,168,115,0.04) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    box-shadow: 0 16px 42px rgba(21, 48, 38, 0.07);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quiz-grid button:hover,
.quiz-grid button.is-selected {
    color: #ffffff;
    border-color: var(--green);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: translateY(-3px);
    box-shadow: 0 22px 58px rgba(5, 168, 115, 0.2);
}

.quiz-grid i {
    color: var(--green);
    font-size: 28px;
}

.quiz-grid button:hover i,
.quiz-grid button.is-selected i {
    color: #ffffff;
}

.quiz-grid span {
    font-weight: 850;
    text-align: center;
    line-height: 1.22;
}

.geo-page main {
    padding-bottom: 36px;
}

.geo-hero {
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.76fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    margin-top: 8px;
    padding: clamp(32px, 5vw, 64px);
    border: 1px solid rgba(216, 227, 222, 0.95);
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.geo-hero,
.geo-hero .geo-visual,
.geo-hero .geo-brand-mark,
.geo-hero .geo-mini,
.geo-hero .geo-signature,
.geo-hero .geo-stack span,
.geo-hero .btn {
    box-shadow: none;
}

.geo-hero .geo-orbit,
.geo-hero .geo-orbit::before,
.geo-hero .geo-orbit::after {
    box-shadow: none;
}

.geo-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;
}

.geo-hero p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.58;
}

.geo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.geo-visual {
    position: relative;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(5, 168, 115, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #f7fbf9;
    box-shadow: none;
}

.geo-visual > picture,
.geo-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.geo-visual::before,
.geo-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.geo-visual::before {
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 49%, rgba(255,255,255,0.2) 49% calc(49% + 2px), transparent calc(49% + 2px)),
        linear-gradient(45deg, transparent 0 57%, rgba(255,255,255,0.16) 57% calc(57% + 2px), transparent calc(57% + 2px));
    background-size: 120px 82px, 120px 82px;
    opacity: 0.55;
}

.geo-visual::after {
    z-index: 1;
    right: -72px;
    bottom: -92px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
}

.geo-orbit,
.geo-brand-mark,
.geo-mini,
.geo-signature,
.geo-stack,
.geo-proof {
    position: relative;
    z-index: 2;
}

.geo-orbit {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(380px, 78%);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 18px rgba(255,255,255,0.09), inset 0 0 0 1px rgba(5,168,115,0.12);
}

.geo-orbit::before,
.geo-orbit::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(5, 168, 115, 0.12);
}

.geo-orbit::before {
    right: 12%;
    top: 6%;
}

.geo-orbit::after {
    left: 10%;
    bottom: 18%;
}

.geo-brand-mark {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(350px, 72%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 28px;
    text-align: center;
    color: #14222c;
    border: 7px solid #ffffff;
    border-radius: 50%;
    outline: 4px solid rgba(255,255,255,0.52);
    background:
        radial-gradient(circle at 50% 34%, rgba(5, 168, 115, 0.2), transparent 9rem),
        linear-gradient(90deg, rgba(5, 168, 115, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 168, 115, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,248,244,0.96));
    background-size: auto, 24px 24px, 24px 24px, auto;
    box-shadow: none;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.geo-brand-mark strong {
    color: var(--green);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.9;
    letter-spacing: 0;
}

.geo-brand-mark span {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.geo-brand-mark small {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.geo-mini {
    position: absolute;
    z-index: 3;
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.geo-mini strong,
.geo-mini i {
    color: var(--green);
    font-size: 26px;
}

.geo-mini span {
    display: block;
    width: 72px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e9eeee 52%, transparent 52%);
    background-size: 24px 100%;
}

.geo-mini-code {
    left: 8%;
    top: 8%;
}

.geo-mini-gear {
    right: 3%;
    top: 32%;
}

.geo-mini-chart {
    right: 7%;
    bottom: 28%;
}

.geo-signature {
    position: absolute;
    left: 50%;
    bottom: 15%;
    z-index: 4;
    min-width: 210px;
    display: grid;
    justify-items: center;
    padding: 7px 16px 8px;
    border: 1px solid rgba(255,255,255,0.74);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 42px rgba(0,0,0,0.13);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.geo-signature strong {
    color: var(--green);
    font-family: "Allura", "Segoe Script", "Brush Script MT", cursive;
    font-size: 58px;
    line-height: 0.9;
    font-weight: 400;
}

.geo-signature span {
    color: #40505a;
    font-size: 10px;
    font-weight: 820;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.geo-stack {
    position: absolute;
    left: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    bottom: clamp(16px, 3vw, 26px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.geo-stack span {
    min-height: 52px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 10px;
    color: #1b2b35;
    font-size: 13px;
    font-weight: 820;
    border: 1px solid rgba(5, 168, 115, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(15, 35, 28, 0.07);
}

.geo-stack i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.geo-keywords {
    padding-bottom: 24px;
}

.geo-copy .about-card {
    max-width: 980px;
    margin: 0 auto;
}

.geo-copy p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

article,
.lead-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 44px rgba(21, 48, 38, 0.07);
}

article {
    padding: 26px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

article:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 64px rgba(21, 48, 38, 0.12);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
    align-items: start;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.process-list li {
    position: relative;
    padding: 0 0 28px 54px;
    border-left: 1px solid var(--line);
}

.process-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -20px;
    top: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-size: 15px;
    font-weight: 900;
}

.contact {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: clamp(34px, 5vw, 64px);
    align-items: stretch;
    padding: clamp(26px, 5vw, 58px);
    border-radius: 8px;
    color: #f5fffb;
    background:
        radial-gradient(circle at 18% 18%, rgba(127, 240, 191, 0.16), transparent 18rem),
        radial-gradient(circle at 90% 8%, rgba(215, 246, 232, 0.22), transparent 22rem),
        linear-gradient(135deg, rgba(13, 23, 28, 0.98), rgba(4, 116, 81, 0.95));
    box-shadow: var(--shadow);
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

.contact-copy,
.lead-form {
    position: relative;
    z-index: 1;
}

.contact-copy {
    display: grid;
    align-content: start;
}

.contact .eyebrow,
.contact .telegram-link {
    color: #7ff0bf;
}

.contact h2 {
    max-width: 560px;
    font-size: clamp(36px, 3.45vw, 52px);
    line-height: 1.05;
}

.contact p {
    color: rgba(245, 255, 251, 0.76);
}

.contact-schedule {
    display: grid;
    gap: 12px;
    margin-top: clamp(24px, 4vw, 42px);
}

.contact-schedule div,
.contact-schedule a {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 74px;
    padding: 15px 16px;
    border: 1px solid rgba(127, 240, 191, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-schedule i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: #083126;
    background: #7ff0bf;
    font-size: 21px;
}

.contact-schedule span {
    display: grid;
    gap: 4px;
}

.contact-schedule strong {
    color: #ffffff;
    font-size: 16px;
}

.contact-schedule small {
    color: rgba(245, 255, 251, 0.76);
    font-size: 14px;
    line-height: 1.35;
}

.telegram-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green-dark);
    font-weight: 900;
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3.3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    background:
        radial-gradient(circle at 100% 0%, rgba(5, 168, 115, 0.12), transparent 16rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 248, 0.96));
    box-shadow:
        0 28px 80px rgba(2, 28, 22, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.lead-form .form-head {
    display: grid;
    gap: 8px;
    margin-bottom: 6px;
}

.lead-form .form-head .eyebrow {
    margin: 0;
    color: var(--green-dark);
}

.lead-form h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.08;
}

.lead-form .form-head p:not(.eyebrow) {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.lead-form form,
.lead-form .wpcf7-form {
    display: grid;
    gap: 11px;
}

.lead-form p,
.lead-form .wpcf7-form p {
    margin: 0;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 650;
}

.lead-form label span,
.lead-form .wpcf7-form p > label {
    color: #14212a;
    font-size: 15px;
    font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.lead-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(143, 168, 158, 0.34);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    font: inherit;
    font-weight: 500;
    box-shadow:
        0 10px 26px rgba(17, 42, 34, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lead-form textarea,
.lead-form .wpcf7-textarea {
    min-height: 142px;
    max-height: 170px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: 3px solid rgba(7, 154, 104, 0.18);
    border-color: var(--green);
    background: #ffffff;
    box-shadow:
        0 16px 34px rgba(5, 168, 115, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lead-form .wpcf7-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(5, 168, 115, 0.24);
}

.form-actions-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.form-actions-row p {
    position: relative;
    margin: 0;
}

.form-actions-row .wpcf7-spinner {
    position: absolute;
    left: 50%;
    bottom: -26px;
    margin: 0;
    transform: translateX(-50%);
}

.lead-form .wpcf7-submit:hover,
.form-telegram-button:hover {
    transform: translateY(-1px);
}

.form-telegram-button {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(5, 168, 115, 0.2);
    border-radius: 8px;
    color: var(--green-dark);
    background: rgba(5, 168, 115, 0.09);
    font-weight: 800;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(95, 107, 115, 0.72);
    font-weight: 500;
}

.form-telegram-button i {
    font-size: 18px;
}

.lead-form .wpcf7-response-output {
    margin: 0;
    border-radius: 8px;
    color: var(--ink);
}

.form-note {
    margin: 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-note.success {
    color: #045f42;
    background: rgba(7, 154, 104, 0.12);
}

.form-note.error {
    color: #8d261d;
    background: #ffe8e5;
}

.site-footer {
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 28px clamp(18px, 4vw, 64px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-policy-link,
.cookie-details {
    border: 0;
    padding: 0;
    color: var(--green-dark);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.footer-policy-link:hover,
.cookie-details:hover {
    text-decoration: underline;
}

.cookie-consent {
    position: fixed;
    left: clamp(14px, 2vw, 28px);
    bottom: clamp(14px, 2vw, 28px);
    z-index: 90;
    width: min(520px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    color: var(--ink);
    border: 1px solid rgba(5, 168, 115, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,252,249,0.96)),
        linear-gradient(90deg, rgba(5,168,115,0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5,168,115,0.05) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
    box-shadow: 0 24px 70px rgba(15, 35, 28, 0.18);
}

.cookie-consent[hidden],
.policy-modal[hidden] {
    display: none;
}

.cookie-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.cookie-copy {
    min-width: 0;
}

.cookie-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.cookie-details {
    margin-top: 8px;
    font-size: 13px;
}

.cookie-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
}

.cookie-actions .btn,
.policy-actions .btn {
    min-height: 44px;
    padding: 0 14px;
}

.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}

.policy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 21, 25, 0.58);
    backdrop-filter: blur(8px);
}

.policy-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
    padding: clamp(24px, 3vw, 34px);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 8%, rgba(5, 168, 115, 0.14), transparent 16rem),
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,252,249,0.96));
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

.policy-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--green-dark);
    border: 1px solid rgba(5, 168, 115, 0.2);
    border-radius: 8px;
    background: rgba(5, 168, 115, 0.08);
    cursor: pointer;
}

.policy-dialog h2 {
    max-width: 720px;
    margin: 0 0 12px;
    padding-right: 44px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
}

.policy-dialog > p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.policy-grid article {
    padding: 18px;
    box-shadow: none;
}

.policy-grid h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.policy-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.policy-grid a {
    color: var(--green-dark);
    font-weight: 800;
}

.policy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .site-header {
        gap: 12px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: clamp(150px, 25vw, 205px);
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .nav-links {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
        color: var(--ink);
        border: 1px solid rgba(5, 168, 115, 0.18);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,252,249,0.96)),
            linear-gradient(90deg, rgba(5,168,115,0.06) 1px, transparent 1px),
            linear-gradient(180deg, rgba(5,168,115,0.05) 1px, transparent 1px);
        background-size: auto, 32px 32px, 32px 32px;
        box-shadow: 0 24px 70px rgba(15, 35, 28, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header.is-menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        min-height: 44px;
        justify-content: center;
        padding: 0 12px;
        border: 1px solid rgba(5, 168, 115, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.72);
    }

    .nav-links a::after {
        bottom: 5px;
    }

    .nav-links .nav-telegram {
        display: inline-flex !important;
        gap: 8px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
        border-color: transparent !important;
        font-weight: 850;
    }

    .built-hero {
        grid-template-columns: 1fr;
        padding: 28px 22px 22px;
        background:
            linear-gradient(90deg, rgba(5, 168, 115, 0.055) 1px, transparent 1px),
            linear-gradient(180deg, rgba(5, 168, 115, 0.045) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,252,250,0.96));
        background-size: 44px 44px, 44px 44px, auto;
    }

    .logo-row {
        text-align: center;
    }

    .hero-logo-image {
        margin: 0 auto;
        width: min(720px, 96%);
    }

    .logo-divider {
        width: min(540px, 70%);
        margin: 16px auto 0;
    }

    .hero-offer h1,
    .hero-offer p {
        max-width: 100%;
    }

    .hero-service-bar,
    .hero-contact-grid,
    .hero-bottom-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-contact-grid.profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-service-bar span:nth-child(2),
    .hero-bottom-stats div:nth-child(2) {
        border-right: 0;
    }

    .hero-service-bar span:nth-child(-n + 2),
    .hero-bottom-stats div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .quality-line {
        justify-content: flex-start;
        flex-wrap: wrap;
        letter-spacing: 0.16em;
    }

    .built-hero-photo {
        min-height: 540px;
    }

    .photo-ring {
        left: 50%;
        right: auto;
        width: min(480px, 86vw);
        transform: translate(-50%, -50%);
    }

    .signature {
        right: 42%;
    }

    .role-text {
        right: 34%;
    }

    .signature-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: 4%;
    }

    .hero,
    .split,
    .contact,
    .geo-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 44px;
    }

    .hero-banner {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 66%, rgba(5,168,115,0.94) 66.2%, rgba(4,116,81,0.95) 100%);
    }

    .hero-portrait {
        min-height: 520px;
    }

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

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

    .package-card {
        min-height: auto;
    }

    .marketplace-panel {
        grid-template-columns: 1fr;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .reviews-heading {
        align-items: flex-start;
    }

    .reviews-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-carousel {
        grid-auto-columns: minmax(280px, 72%);
    }

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

    .geo-hero {
        min-height: auto;
        text-align: center;
    }

    .geo-actions {
        justify-content: center;
    }

    .geo-visual {
        min-height: 520px;
    }

    .geo-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 641px) and (max-width: 1100px) {
    .built-hero,
    .built-hero.section-wrap {
        width: min(100% - 20px, 900px);
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
        gap: 24px;
        padding: 30px 24px 24px;
    }

    .built-hero-content {
        display: contents;
    }

    .built-hero-content > *,
    .built-hero-photo,
    .hero-bottom-stats {
        position: relative;
        z-index: 2;
    }

    .logo-row {
        order: 1;
        grid-column: 1 / -1;
    }

    .built-hero-photo {
        order: 2;
        grid-column: 2;
        grid-row: 2 / span 3;
        min-height: 430px;
        margin: 0;
        border: 1px solid rgba(5, 168, 115, 0.16);
        border-radius: 8px;
        background:
            radial-gradient(circle at 50% 18%, rgba(5, 168, 115, 0.13), transparent 18rem),
            linear-gradient(180deg, rgba(255,255,255,0.86), rgba(239,249,245,0.76));
        overflow: hidden;
    }

    .built-hero-photo .pcb-traces {
        inset: 0;
        opacity: 0.3;
        clip-path: none;
    }

    .hero-offer {
        order: 3;
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
        align-self: center;
        text-align: left;
    }

    .hero-service-bar {
        order: 4;
        grid-column: 1 / -1;
    }

    .hero-contact-grid {
        order: 5;
        grid-column: 1 / -1;
    }

    .quality-line {
        order: 6;
        grid-column: 1 / -1;
        justify-content: center;
    }

    .built-hero .hero-actions {
        order: 7;
        grid-column: 1;
        grid-row: 3;
        align-self: start;
        justify-content: flex-start;
    }

    .hero-bottom-stats {
        order: 8;
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .hero-logo-image {
        width: min(620px, 92%);
    }

    .logo-divider {
        width: min(500px, 72%);
    }

    .hero-offer h1 {
        max-width: 470px;
        font-size: clamp(31px, 4.7vw, 43px);
    }

    .hero-offer p {
        max-width: 470px;
        font-size: 16px;
    }

    .photo-ring {
        left: 50%;
        right: auto;
        top: 50%;
        width: min(350px, 40vw);
        transform: translate(-50%, -50%);
    }

    .has-hero-motion .is-loaded .built-hero .photo-ring {
        animation: tabletPhotoReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both, tabletPhotoFloat 5200ms ease-in-out 1400ms infinite;
    }

    .mini-card {
        left: calc(50% - 172px);
        right: auto;
        top: 7%;
        width: 136px;
        min-height: 54px;
        padding: 11px 13px;
    }

    .note-gear {
        right: calc(50% - 176px);
        top: 38%;
    }

    .note-graph {
        right: calc(50% - 170px);
        bottom: 17%;
    }

    .floating-note {
        width: 124px;
        min-height: 54px;
        padding: 11px 13px;
    }

    .signature-badge {
        right: 50%;
        bottom: 4%;
        min-width: 190px;
        min-height: 52px;
        transform: translateX(50%);
    }

    .signature-badge strong {
        font-size: 52px;
    }

    .signature-badge span {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

}

@media (max-width: 640px) {
    .site-header {
        padding: 14px 18px;
    }

    .nav-links {
        left: 14px;
        right: 14px;
        grid-template-columns: 1fr;
    }

    .nav-links a {
        justify-content: flex-start;
    }

    .section-wrap {
        width: min(100% - 28px, 1180px);
    }

    .built-hero,
    .built-hero.section-wrap {
        width: min(100% - 14px, 1680px);
        padding: 22px 14px 16px;
        gap: 18px;
        background:
            linear-gradient(90deg, rgba(5, 168, 115, 0.055) 1px, transparent 1px),
            linear-gradient(180deg, rgba(5, 168, 115, 0.045) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,252,250,0.96));
        background-size: 44px 44px, 44px 44px, auto;
    }

    .built-hero::after {
        background:
            radial-gradient(circle at 50% 24%, rgba(5, 168, 115, 0.09), transparent 15rem);
    }

    .circuit-right {
        opacity: 0.08;
    }

    .built-hero-content {
        display: contents;
    }

    .built-hero-content > *,
    .built-hero-photo,
    .hero-bottom-stats {
        position: relative;
        z-index: 2;
    }

    .logo-row {
        order: 1;
    }

    .built-hero-photo {
        order: 2;
    }

    .hero-offer {
        order: 3;
    }

    .hero-service-bar {
        order: 4;
    }

    .hero-contact-grid {
        order: 5;
    }

    .quality-line {
        order: 6;
    }

    .built-hero .hero-actions {
        order: 7;
    }

    .hero-bottom-stats {
        order: 8;
        background: rgba(255, 255, 255, 0.94);
    }

    .brand-logo {
        width: 154px;
    }

    .hero-logo-image {
        width: min(100%, 340px);
        margin: 0 auto;
    }

    .logo-divider {
        width: 82%;
        margin-top: 14px;
    }

    .hero-offer {
        margin-top: 4px;
        text-align: center;
    }

    .hero-offer h1 {
        font-size: 29px;
        line-height: 1.08;
    }

    .hero-offer p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.45;
    }

    .logo-row p {
        margin-top: 12px;
        text-align: center;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .logo-row p::after {
        left: 50%;
        width: 86%;
        transform: translateX(-50%);
    }

    .logo-row p::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-service-bar,
    .hero-contact-grid,
    .hero-bottom-stats {
        grid-template-columns: 1fr;
    }

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

    .hero-service-bar span,
    .hero-service-bar span:nth-child(2),
    .hero-bottom-stats div,
    .hero-bottom-stats div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-service-bar span:last-child,
    .hero-bottom-stats div:last-child {
        border-bottom: 0;
    }

    .info-pill {
        min-height: 66px;
        padding: 14px 16px;
    }

    .quality-line {
        justify-content: center;
        gap: 10px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .built-hero-photo {
        min-height: 386px;
        margin: 0 -6px 4px;
    }

    .photo-ring {
        left: 50%;
        right: auto;
        width: min(330px, 82vw);
        top: 48%;
        transform: translate(-50%, -50%);
    }

    .has-hero-motion .is-loaded .built-hero .photo-ring {
        animation: mobilePhotoReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both, mobilePhotoFloat 5200ms ease-in-out 1400ms infinite;
    }

    .mini-card {
        left: 8px;
        top: 7%;
        width: 118px;
        min-height: 50px;
        padding: 10px 12px;
    }

    .mini-card strong {
        font-size: 24px;
    }

    .floating-note {
        width: 104px;
        min-height: 50px;
        padding: 10px 12px;
    }

    .note-gear {
        right: 8px;
        top: 34%;
    }

    .note-graph {
        right: 18px;
        bottom: 18%;
    }

    .signature {
        right: 38%;
        bottom: 8%;
        font-size: 42px;
    }

    .role-text {
        right: 18%;
        bottom: 3%;
        font-size: 11px;
    }

    .signature-badge {
        right: 50%;
        bottom: 2%;
        min-width: 190px;
        padding: 6px 12px;
        transform: translateX(50%);
    }

    .signature-badge strong {
        font-size: 50px;
    }

    .signature-badge span {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    @keyframes mobilePhotoReveal {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.92);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    @keyframes mobilePhotoFloat {
        0%, 100% {
            transform: translate(-50%, -50%) translateY(0) scale(1);
        }
        50% {
            transform: translate(-50%, -50%) translateY(-7px) scale(1.01);
        }
    }

    h1 {
        font-size: 42px;
    }

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

    .package-grid,
    .quiz-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-panel {
        padding: 24px 18px;
    }

    .marketplace-copy h2 {
        font-size: 30px;
        line-height: 1.12;
    }

    .marketplace-copy p:not(.eyebrow) {
        font-size: 16px;
    }

    .marketplace-actions {
        display: grid;
    }

    .marketplace-services span {
        min-height: 54px;
        grid-template-columns: 38px minmax(0, 1fr);
        font-size: 14px;
    }

    .marketplace-services i {
        width: 38px;
        height: 38px;
    }

    .quiz-grid button {
        min-height: 88px;
        grid-template-columns: 36px minmax(0, 1fr);
        justify-items: start;
        text-align: left;
    }

    .quiz-grid span {
        text-align: left;
    }

    .about-card {
        padding: 24px 18px;
    }

    .about-card .section-heading {
        margin-bottom: 18px;
    }

    .about-card .section-heading h2 {
        font-size: 30px;
        line-height: 1.12;
    }

    .about-copy {
        gap: 12px;
    }

    .about-copy p {
        font-size: 15px;
        line-height: 1.58;
    }

    .about-visual img {
        aspect-ratio: 4 / 3;
    }

    .about-actions {
        display: grid;
    }

    .contact {
        padding: 28px 18px;
        gap: 24px;
    }

    .geo-hero {
        width: min(100% - 14px, 1180px);
        padding: 26px 16px;
    }

    .geo-hero h1 {
        font-size: 32px;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .geo-actions {
        display: grid;
    }

    .geo-visual {
        min-height: 500px;
    }

    .geo-brand-mark {
        width: min(300px, 72vw);
    }

    .geo-mini-code {
        left: 8px;
        top: 8%;
    }

    .geo-mini-gear {
        right: 8px;
        top: 34%;
    }

    .geo-mini-chart {
        right: 16px;
        bottom: 24%;
    }

    .geo-signature {
        bottom: 15%;
        min-width: 180px;
    }

    .geo-stack {
        grid-template-columns: 1fr;
        bottom: 14px;
    }

    .contact h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .contact-schedule div,
    .contact-schedule a {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 13px;
    }

    .contact-schedule i {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .telegram-link {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .lead-form {
        padding: 22px 18px;
    }

    .form-actions-row {
        grid-template-columns: 1fr;
    }

    .reviews-heading {
        display: grid;
        gap: 18px;
    }

    .reviews-heading h2 {
        max-width: 100%;
        font-size: 33px;
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        overflow: hidden;
    }

    .faq-question {
        min-height: 66px;
        padding: 18px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
    }

    .reviews-carousel {
        grid-auto-columns: minmax(290px, 86%);
        margin-right: -14px;
    }

    .review-card {
        min-height: 330px;
        padding: 20px;
    }

    .review-card h3 {
        font-size: 28px;
        line-height: 1.12;
    }

    .cookie-consent {
        right: 14px;
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 14px;
    }

    .cookie-icon {
        width: 38px;
        height: 38px;
    }

    .cookie-actions,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .policy-modal {
        padding: 12px;
    }

    .policy-dialog {
        max-height: calc(100vh - 24px);
        padding: 22px 16px;
    }

    .policy-dialog h2 {
        font-size: 28px;
    }

    .hero-stats div {
        flex: 1 1 120px;
    }

    .block {
        padding: 58px 0;
    }

    #contact.contact.block {
        padding: 28px 18px;
    }
}

@media (max-width: 260px) {
    body {
        min-width: 0;
    }

    .site-header {
        padding: 10px 8px;
    }

    .brand-logo {
        width: 118px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 9px;
    }

    .nav-links {
        left: 8px;
        right: 8px;
        padding: 8px;
    }

    .nav-links a {
        min-height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .section-wrap,
    .built-hero,
    .built-hero.section-wrap {
        width: calc(100vw - 8px);
    }

    .built-hero,
    .built-hero.section-wrap {
        padding: 16px 8px 12px;
        gap: 14px;
    }

    .built-hero *,
    .section-wrap *,
    .contact *,
    .site-footer * {
        min-width: 0;
    }

    .reveal-on-scroll,
    .reveal-on-scroll:nth-child(even) {
        transform: translateY(24px);
    }

    .reveal-on-scroll.is-visible {
        transform: translateY(0);
    }

    .circuit,
    .dot-field,
    .pcb-traces,
    .mini-card,
    .floating-note {
        display: none;
    }

    .logo-row,
    .hero-offer,
    .hero-service-bar,
    .hero-contact-grid,
    .quality-line,
    .hero-actions,
    .hero-bottom-stats {
        width: 100%;
        max-width: 100%;
    }

    .hero-logo-image {
        width: 100%;
        max-width: 100%;
    }

    .logo-divider {
        width: 80%;
        max-width: 150px;
    }

    .hero-offer h1 {
        font-size: 23px;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .hero-offer p {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .built-hero-photo {
        min-height: 252px;
        margin: 0;
    }

    .photo-ring {
        width: min(210px, 92vw);
    }

    .signature-badge {
        left: 50%;
        right: auto;
        min-width: 142px;
        min-height: 44px;
        padding: 4px 8px;
        transform: translateX(-50%);
    }

    .has-hero-motion .is-loaded .built-hero .signature-badge {
        opacity: 1;
        animation: none;
        transform: translateX(-50%);
    }

    .signature-badge strong {
        font-size: 38px;
    }

    .signature-badge span {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .hero-service-bar span,
    .info-pill,
    .hero-bottom-stats div {
        min-height: 54px;
        gap: 8px;
        padding: 10px;
        font-size: 13px;
    }

    .hero-service-bar .fa-solid,
    .hero-service-bar .fa-brands,
    .info-pill .fa-solid,
    .info-pill .fa-brands,
    .hero-bottom-stats .fa-solid,
    .hero-bottom-stats .fa-regular {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }

    .info-pill {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .info-pill small {
        font-size: 12px;
    }

    .info-pill strong {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .quality-line {
        gap: 7px;
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .built-hero .hero-actions,
    .about-actions,
    .policy-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn,
    .package-link,
    .form-telegram-button,
    .lead-form .wpcf7-submit {
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    .block {
        padding: 42px 0;
    }

    .section-heading h2,
    .about-card .section-heading h2,
    .contact h2,
    .reviews-heading h2,
    .marketplace-copy h2 {
        font-size: 24px;
        overflow-wrap: anywhere;
    }

    article,
    .about-card,
    .lead-form,
    .package-card,
    .review-card,
    .faq-item,
    .policy-grid article {
        padding: 16px 12px;
    }

    .package-card h3,
    .review-card h3 {
        font-size: 22px;
        overflow-wrap: anywhere;
    }

    .quiz-grid button {
        grid-template-columns: 30px minmax(0, 1fr);
        min-height: 76px;
        padding: 12px 10px;
    }

    .contact,
    #contact.contact.block {
        padding: 22px 10px;
    }

    .geo-hero {
        width: calc(100vw - 8px);
        padding: 20px 10px;
    }

    .geo-hero h1 {
        font-size: 25px;
    }

    .geo-hero p:not(.eyebrow),
    .geo-copy p {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .geo-visual {
        min-height: 330px;
        padding: 16px 10px;
    }

    .geo-orbit {
        width: 190px;
    }

    .geo-brand-mark {
        top: 40%;
        width: min(190px, 82vw);
        border-width: 5px;
        outline-width: 3px;
        padding: 16px;
    }

    .geo-mini {
        display: none;
    }

    .geo-signature {
        bottom: 25%;
        min-width: 142px;
        padding: 4px 8px;
    }

    .geo-signature strong {
        font-size: 38px;
    }

    .geo-signature span {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .geo-stack {
        grid-template-columns: 1fr;
        bottom: 10px;
    }

    .geo-stack span {
        min-height: 46px;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
        font-size: 13px;
    }

    .geo-stack i {
        width: 32px;
        height: 32px;
    }

    .geo-proof {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .contact-schedule div,
    .contact-schedule a {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .contact-schedule i {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .lead-form {
        padding: 18px 10px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea,
    .lead-form .wpcf7-form-control:not(.wpcf7-submit) {
        min-height: 44px;
        padding: 11px 10px;
        font-size: 13px;
    }

    .faq-question {
        gap: 10px;
        padding: 14px 12px;
        font-size: 16px;
    }

    .faq-question i {
        width: 30px;
        height: 30px;
    }

    .reviews-carousel {
        width: 100%;
        margin-right: 0;
        grid-auto-columns: minmax(184px, 100%);
    }

    .cookie-consent {
        left: 6px;
        right: 6px;
        bottom: 6px;
        width: auto;
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .cookie-icon {
        width: 34px;
        height: 34px;
    }

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

    .policy-modal {
        padding: 6px;
    }

    .policy-dialog {
        padding: 18px 10px;
    }

    .policy-dialog h2 {
        padding-right: 34px;
        font-size: 23px;
    }

    .policy-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }

    .site-footer {
        display: grid;
        gap: 10px;
        padding: 22px 10px;
        font-size: 13px;
    }
}

.geo-page .geo-visual {
    min-height: 0;
    padding: 0;
    border: 0;
    background: #f7fbf9;
}

.geo-page .geo-hero {
    border: 0;
}

.geo-page .geo-visual::before,
.geo-page .geo-visual::after {
    display: none;
}

.geo-page .geo-visual > picture,
.geo-page .geo-visual img {
    display: block;
    width: 100%;
    height: auto;
}
