/* ═══════════════════════════════════════════════════
   АзбукаРемонта — Styles
   Minimalist dark theme · Green accent · Geometric
   ═══════════════════════════════════════════════════ */

/* ── Prevent horizontal overflow globally ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

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

/* ── CSS Variables ── */
:root {
    --green: #00e676;
    --green-dark: #00c853;
    --green-dim: rgba(0, 230, 118, 0.15);
    --green-glow: rgba(0, 230, 118, 0.25);
    --green-subtle: rgba(0, 230, 118, 0.08);
  
    --bg: #050a05;
    --bg-elevated: #0a120a;
    --bg-card: #0d150d;
    --bg-card-hover: #111a11;
    --border: rgba(0, 230, 118, 0.1);
    --border-strong: rgba(0, 230, 118, 0.2);
  
    --text: #e8f0e8;
    --text-secondary: #7a9a7a;
    --text-dim: #4a6a4a;
  
    --font-display: 'Unbounded', cursive;
    --font-body: 'Manrope', sans-serif;
  
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
  
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
    --container: 1200px;
    --gutter: 24px;
  }
  
  /* ── Preloader ── */
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    isolation: isolate;
    will-change: opacity;
  }
  
  .preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  body:has(.preloader:not(.done)) {
    overflow: hidden;
  }
  
  .preloader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  
  .preloader__logo svg {
    display: block;
  }
  
  .preloader__rect {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: preloaderDraw 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  @keyframes preloaderDraw {
    0%   { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
  }
  
  .preloader__letter {
    animation: preloaderFadeIn 0.6s ease 0.8s forwards;
  }
  
  @keyframes preloaderFadeIn {
    to { opacity: 1; }
  }
  
  .preloader__bar {
    width: 160px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .preloader__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .preloader__text {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: preloaderFadeIn 0.5s ease 0.4s forwards;
  }
  
  /* Preloader geometric shapes */
  .preloader__geo {
    position: absolute;
    opacity: 0;
    animation: preloaderGeoIn 1s ease forwards;
  }
  
  .preloader__geo-1 { top: 20%; left: 15%; animation-delay: 0.2s; }
  .preloader__geo-2 { top: 25%; right: 18%; animation-delay: 0.5s; }
  .preloader__geo-3 { bottom: 25%; left: 20%; animation-delay: 0.7s; }
  .preloader__geo-4 { bottom: 20%; right: 15%; animation-delay: 0.4s; }
  
  @keyframes preloaderGeoIn {
    0%   { opacity: 0; transform: scale(0.5) rotate(-30deg); }
    50%  { opacity: 1; }
    100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  }
  
  /* ── Reset & Base ── */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
  }
  
  /* ── Layered Background ── */
  .bg-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
  }
  
  /* Layer 1: Large ambient gradient blobs */
  .bg-layer__gradients {
    position: absolute;
    inset: 0;
  }
  
  .bg-layer__gradients::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(0, 200, 83, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: bgBlob1 20s ease-in-out infinite alternate;
  }
  
  .bg-layer__gradients::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.06) 0%, rgba(0, 200, 83, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    animation: bgBlob2 25s ease-in-out infinite alternate;
  }
  
  @keyframes bgBlob1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50%  { transform: translate(-80px, 60px) scale(1.15); opacity: 1; }
    100% { transform: translate(40px, -40px) scale(0.95); opacity: 0.8; }
  }
  
  @keyframes bgBlob2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50%  { transform: translate(60px, -50px) scale(1.1); opacity: 0.9; }
    100% { transform: translate(-30px, 30px) scale(1.05); opacity: 0.7; }
  }
  
  /* Layer 2: Subtle mesh grid */
  .bg-layer__grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  }
  
  /* Layer 3: Glow spot center */
  .bg-layer__glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    animation: bgCenterGlow 15s ease-in-out infinite alternate;
  }
  
  @keyframes bgCenterGlow {
    0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  img { max-width: 100%; display: block; }
  button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
  input, select, textarea { font: inherit; color: inherit; }
  
  ::selection {
    background: var(--green);
    color: var(--bg);
  }
  
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  
  .accent { color: var(--green); }
  
  /* ── Geometric Background ── */
  .geo-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  
  .geo-shape {
    position: absolute;
    opacity: 0;
    animation: geoFloat 20s ease-in-out infinite;
  }
  
  .geo-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid transparent;
    border-bottom-color: rgba(0, 230, 118, 0.07);
    filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.1));
  }
  
  .geo-hexagon {
    width: 50px;
    height: 29px;
    background: transparent;
    border: 1.5px solid rgba(0, 230, 118, 0.12);
    position: relative;
  }
  .geo-hexagon::before,
  .geo-hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
  }
  .geo-hexagon::before {
    bottom: 100%;
    border-bottom: 14px solid rgba(0, 230, 118, 0.12);
  }
  .geo-hexagon::after {
    top: 100%;
    border-top: 14px solid rgba(0, 230, 118, 0.12);
  }
  
  .geo-diamond {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(0, 230, 118, 0.14);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 6px rgba(0, 230, 118, 0.08));
  }
  
  .geo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 230, 118, 0.12);
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.06));
  }
  
  /* Spread shapes across full page, various sizes */
  .geo-1  { top: 5%;   left: 4%;   animation-delay: 0s;   animation-duration: 22s; }
  .geo-2  { top: 12%;  right: 6%;  animation-delay: 3s;   animation-duration: 25s; }
  .geo-3  { top: 30%;  left: 8%;   animation-delay: 5s;   animation-duration: 18s; }
  .geo-4  { top: 42%;  right: 10%; animation-delay: 8s;   animation-duration: 20s; }
  .geo-5  { top: 55%;  left: 3%;   animation-delay: 2s;   animation-duration: 24s; }
  .geo-6  { top: 65%;  right: 4%;  animation-delay: 6s;   animation-duration: 19s; }
  .geo-7  { top: 78%;  left: 12%;  animation-delay: 4s;   animation-duration: 21s; }
  .geo-8  { top: 20%;  left: 40%;  animation-delay: 7s;   animation-duration: 23s; }
  .geo-9  { top: 50%;  right: 20%; animation-delay: 1s;   animation-duration: 26s; }
  .geo-10 { top: 88%;  right: 8%;  animation-delay: 9s;   animation-duration: 17s; }
  .geo-11 { top: 92%;  left: 40%;  animation-delay: 2.5s; animation-duration: 20s; }
  .geo-12 { top: 38%;  right: 35%; animation-delay: 4.5s; animation-duration: 22s; }
  .geo-13 { top: 72%;  left: 35%;  animation-delay: 6.5s; animation-duration: 19s; }
  .geo-14 { top: 18%;  left: 25%;  animation-delay: 1.5s; animation-duration: 24s; }
  .geo-15 { top: 48%;  left: 50%;  animation-delay: 8.5s; animation-duration: 21s; }
  
  @keyframes geoFloat {
    0%, 100% {
      opacity: 0;
      transform: translateY(0) rotate(0deg);
    }
    15% {
      opacity: 0.8;
    }
    50% {
      opacity: 0.5;
      transform: translateY(-40px) rotate(180deg);
    }
    85% {
      opacity: 0.8;
    }
  }
  
  /* ── Top Banner ── */
  .top-banner {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    color: var(--bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    overflow: hidden;
  }
  
  .top-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 8px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 500;
  }
  
  .top-banner__icon {
    display: flex;
    animation: pulse 2s ease-in-out infinite;
  }
  
  .top-banner__text strong {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  
  .top-banner__cta {
    background: rgba(0, 0, 0, 0.15);
    color: var(--bg);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.78rem;
    transition: background var(--transition-fast);
    white-space: nowrap;
  }
  
  .top-banner__cta:hover {
    background: rgba(0, 0, 0, 0.3);
    color: var(--bg);
  }
  
  .top-banner {
    touch-action: pan-x;
    cursor: grab;
    user-select: none;
  }
  
  /* ── Navigation ── */
  .nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition), top var(--transition);
  }
  
  .nav.scrolled {
    top: 0;
    background: rgba(5, 10, 5, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  
  .nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  .nav__logo-icon {
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .nav__logo-text { white-space: nowrap; }
  
  .nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.01em;
  }
  
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green);
    transition: width var(--transition);
  }
  
  .nav__link:hover {
    color: var(--text);
  }
  
  .nav__link:hover::after {
    width: 100%;
  }
  
  .nav__link--cta {
    color: var(--bg);
    background: var(--green);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
  }
  
  .nav__link--cta::after { display: none; }
  
  .nav__link--cta:hover {
    background: var(--green-dark);
    color: var(--bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--green-glow);
  }
  
  .nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  
  .nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
  }
  
  .nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.active span:nth-child(2) { opacity: 0; }
  .nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .btn--primary {
    background: var(--green);
    color: var(--bg);
  }
  
  .btn--primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow);
  }
  
  .btn--ghost {
    border: 1.5px solid var(--border-strong);
    color: var(--text);
    background: transparent;
  }
  
  .btn--ghost:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
  }
  
  .btn--full { width: 100%; justify-content: center; }
  
  /* ── Section Shared ── */
  .section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
  }
  
  .section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--green);
    transform: translateY(-50%) rotate(45deg);
  }
  
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  
  .section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
  
  .section-header .section-desc {
    margin: 0 auto;
  }
  
  /* ── Reveal Animation ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ═══════════════════════════════════════════════════
     HERO
     ═══════════════════════════════════════════════════ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--green-dim) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
  }
  
  @keyframes heroGlow {
    0%   { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.15); }
  }
  
  .hero__content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green);
    background: var(--green-subtle);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  
  .hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
  }
  
  .hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  
  .hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
  }
  
  .hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.18);
    border-radius: 999px;
    margin-bottom: 36px;
    font-size: 0.86rem;
  }

  .hero__rating-stars {
    display: inline-flex;
    gap: 2px;
    color: #ffcc4d;
  }

  .hero__rating strong {
    color: var(--text-primary);
    font-weight: 700;
  }

  .hero__rating-meta {
    color: var(--text-secondary);
  }

  .hero__rating-meta a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .hero__rating-meta a:hover { text-decoration: none; }

  .hero__stats {
    display: flex;
    gap: 40px;
  }
  
  .hero__stat {
    display: flex;
    flex-direction: column;
  }
  
  .hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
  }
  
  .hero__stat-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  
  .hero__stat-pct {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
  }
  
  .hero__stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 4px;
  }
  
  /* Hero device 3D */
  .hero__visual {
    display: flex;
    justify-content: center;
    perspective: 1200px;
  }
  
  .hero__device {
    position: relative;
    transform-style: preserve-3d;
    animation: deviceFloat 6s ease-in-out infinite;
  }
  
  @keyframes deviceFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50%      { transform: translateY(-15px) rotateY(5deg) rotateX(-5deg); }
  }
  
  .hero__device-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, var(--green-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite alternate;
  }
  
  @keyframes glowPulse {
    0%   { opacity: 0.4; }
    100% { opacity: 0.8; }
  }
  
  .hero__device-phone {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #111a11, #0a120a);
    border-radius: 36px;
    border: 2px solid var(--border-strong);
    padding: 12px;
    position: relative;
    box-shadow:
      0 0 0 1px rgba(0, 230, 118, 0.05),
      0 25px 80px rgba(0, 0, 0, 0.6),
      0 0 60px var(--green-dim),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
  }
  
  .hero__device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0f0a 0%, #060b06 100%);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 20px;
  }
  
  .hero__device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #111a11;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
  }
  
  .hero__device-camera {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a2a1a;
    border: 1.5px solid #2a3a2a;
    position: relative;
  }
  
  .hero__device-camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.15);
  }
  
  /* Phone Status Bar */
  .phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 0;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  
  .phone-statusbar__time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
  }
  
  .phone-statusbar__right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
  }
  
  /* Phone App UI */
  .phone-app {
    width: 100%;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    margin-top: 8px;
  }
  
  .phone-app__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  
  .phone-app__title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  
  /* Status Card */
  .phone-app__status-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--green-subtle);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .phone-app__status-icon {
    flex-shrink: 0;
  }
  
  .phone-app__status-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
  }
  
  .phone-app__status-sub {
    display: block;
    font-size: 0.62rem;
    color: var(--text-dim);
    margin-top: 2px;
  }
  
  /* Progress */
  .phone-app__progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .phone-app__progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: var(--text-dim);
    font-weight: 500;
  }
  
  .phone-app__progress-pct {
    color: var(--green);
    font-weight: 700;
  }
  
  .phone-app__progress {
    height: 5px;
    background: var(--bg-elevated);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .phone-app__progress-bar {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    border-radius: 3px;
    animation: progressGrow 4s ease-in-out infinite;
  }
  
  @keyframes progressGrow {
    0%   { width: 30%; }
    50%  { width: 85%; }
    100% { width: 30%; }
  }
  
  /* Service Items */
  .phone-app__services {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .phone-app__service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 230, 118, 0.06);
    font-size: 0.65rem;
    color: var(--text-secondary);
  }
  
  .phone-app__service-item:last-child { border-bottom: none; }
  
  .phone-app__service-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid var(--text-dim);
    flex-shrink: 0;
  }
  
  .phone-app__service-dot--done {
    background: var(--green);
    border-color: var(--green);
  }
  
  .phone-app__service-dot--active {
    border-color: var(--green);
    animation: pulse 2s ease-in-out infinite;
  }
  
  .phone-app__service-badge {
    margin-left: auto;
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .phone-app__service-badge--done {
    background: rgba(0, 230, 118, 0.1);
    color: var(--green);
  }
  
  .phone-app__service-badge--active {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    animation: pulse 2s ease-in-out infinite;
  }
  
  /* Bottom */
  .phone-app__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-elevated);
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-top: auto;
  }
  
  .phone-app__estimate {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: var(--text-secondary);
  }
  
  .phone-app__price {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
  }
  
  /* Home Indicator */
  .phone-home-indicator {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin: auto auto 8px;
  }
  
  /* Floating shapes around device */
  .hero__float-shape {
    position: absolute;
    animation: shapeOrbit 8s ease-in-out infinite;
  }
  
  .hero__float-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
  }
  
  .hero__float-2 {
    bottom: 20%;
    left: -25px;
    animation-delay: 2.5s;
  }
  
  .hero__float-3 {
    top: 50%;
    right: -40px;
    animation-delay: 5s;
  }
  
  @keyframes shapeOrbit {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.6; }
    50%      { transform: translateY(-20px) rotate(180deg) scale(1.1); opacity: 1; }
  }
  
  /* ═══════════════════════════════════════════════════
     BRANDS MARQUEE
     ═══════════════════════════════════════════════════ */
  .brands {
    padding: 40px 0 60px;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .brands__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    margin-bottom: 24px;
  }

  .brands__marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  }

  .brands__track {
    display: flex;
    gap: 60px;
    animation: brandsScroll 38s linear infinite;
    width: max-content;
  }

  @keyframes brandsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.55;
    transition: opacity 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    letter-spacing: -0.02em;
  }

  .brand:hover {
    opacity: 1;
    color: var(--green);
  }

  .brands__marquee:hover .brands__track {
    animation-play-state: paused;
  }

  @media (max-width: 768px) {
    .brand { font-size: 1.2rem; }
    .brands__track { gap: 40px; }
  }

  /* ═══════════════════════════════════════════════════
     SERVICES
     ═══════════════════════════════════════════════════ */
  .services {
    padding: 120px 0;
    position: relative;
  }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 800px;
  }
  
  .service-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--green-dim);
  }
  
  .service-card__inner {
    position: relative;
    z-index: 2;
  }
  
  .service-card__geo {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.3;
    transition: opacity var(--transition);
    z-index: 1;
  }
  
  .service-card:hover .service-card__geo {
    opacity: 0.6;
  }
  
  .service-card__icon {
    color: var(--green);
    margin-bottom: 24px;
  }
  
  .service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  
  .service-card__desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .service-card__list {
    list-style: none;
    margin-bottom: 24px;
  }
  
  .service-card__list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
  }
  
  .service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--green);
    transform: translateY(-50%) rotate(45deg);
  }
  
  .service-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  
  .service-card__price {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--green);
    font-size: 1rem;
  }
  
  .service-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
  }
  
  .service-card__link:hover {
    color: var(--green);
  }
  
  /* ═══════════════════════════════════════════════════
     ABOUT
     ═══════════════════════════════════════════════════ */
  .about {
    padding: 120px 0;
    position: relative;
  }
  
  .about__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
  }
  
  /* ── Orbit composition ── */
  .orbit {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    isolation: isolate;
  }

  /* Расширяющиеся зелёные кольца — пульс */
  .orbit__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-left: -70px;
    border-radius: 50%;
    border: 1px solid rgba(0, 230, 118, 0.5);
    animation: orbitPulse 4s ease-out infinite;
    pointer-events: none;
    z-index: 0;
  }

  .orbit__pulse--1 { animation-delay: 0s; }
  .orbit__pulse--2 { animation-delay: 1.3s; }
  .orbit__pulse--3 { animation-delay: 2.6s; }

  @keyframes orbitPulse {
    0%   { transform: scale(0.6); opacity: 0.7; }
    80%  { opacity: 0; }
    100% { transform: scale(2.6); opacity: 0; }
  }

  /* Центральное ядро */
  .orbit__core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-left: -70px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 30% 25%, rgba(0, 230, 118, 0.18), transparent 60%),
      linear-gradient(155deg, rgba(20, 30, 22, 0.95), rgba(8, 12, 9, 0.95));
    border: 1px solid rgba(0, 230, 118, 0.35);
    box-shadow:
      0 0 60px rgba(0, 230, 118, 0.18),
      inset 0 0 40px rgba(0, 230, 118, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .orbit__core-years {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 24px rgba(0, 230, 118, 0.5);
  }

  .orbit__core-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
  }

  .orbit__core-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.25), transparent 65%);
    z-index: -1;
    filter: blur(12px);
    animation: coreBreathe 4s ease-in-out infinite;
  }

  @keyframes coreBreathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.08); opacity: 1; }
  }

  /* Орбитальные кольца */
  .orbit__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform-origin: center;
  }

  .orbit__ring-line {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(0, 230, 118, 0.18);
  }

  .orbit__ring--inner {
    width: 260px;
    height: 260px;
    margin-top: -130px;
    margin-left: -130px;
    animation: orbitSpin 26s linear infinite;
    z-index: 3;
  }

  .orbit__ring--outer {
    width: 400px;
    height: 400px;
    margin-top: -200px;
    margin-left: -200px;
    animation: orbitSpinReverse 38s linear infinite;
    z-index: 2;
  }

  @keyframes orbitSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes orbitSpinReverse {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
  }

  /* Узлы на орбитах */
  .orbit__node {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -24px;
    border-radius: 50%;
    background: linear-gradient(140deg, rgba(20, 28, 22, 0.95), rgba(8, 14, 10, 0.95));
    border: 1px solid rgba(0, 230, 118, 0.35);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 0 20px rgba(0, 230, 118, 0.2),
      inset 0 0 12px rgba(0, 230, 118, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Контр-вращение чтобы иконки не крутились */
  .orbit__ring--inner .orbit__node { animation: orbitNodeStraight 26s linear infinite; }
  .orbit__ring--outer .orbit__node { animation: orbitNodeStraightReverse 38s linear infinite; }

  @keyframes orbitNodeStraight {
    0%   { transform: translate(var(--tx, 0), var(--ty, 0)) rotate(0deg); }
    100% { transform: translate(var(--tx, 0), var(--ty, 0)) rotate(-360deg); }
  }

  @keyframes orbitNodeStraightReverse {
    0%   { transform: translate(var(--tx, 0), var(--ty, 0)) rotate(0deg); }
    100% { transform: translate(var(--tx, 0), var(--ty, 0)) rotate(360deg); }
  }

  .orbit__ring--inner .orbit__node:hover,
  .orbit__ring--outer .orbit__node:hover {
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
  }

  /* Расположение узлов на внутреннем кольце (3 шт. через 120°, радиус 130) */
  .orbit__node--phone  { --tx: 0px;     --ty: -130px; }
  .orbit__node--tablet { --tx: 113px;   --ty: 65px;   }
  .orbit__node--laptop { --tx: -113px;  --ty: 65px;   }

  /* Расположение узлов на внешнем кольце (4 шт. через 90°, радиус 200) */
  .orbit__node--shield { --tx: 0px;     --ty: -200px; }
  .orbit__node--star   { --tx: 200px;   --ty: 0px;    }
  .orbit__node--clock  { --tx: 0px;     --ty: 200px;  }
  .orbit__node--bolt   { --tx: -200px;  --ty: 0px;    }

  /* Плавающие метрики */
  .orbit__stat {
    position: absolute;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(15, 22, 18, 0.7);
    border: 1px solid rgba(0, 230, 118, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    z-index: 4;
    animation: orbitStatFloat 6s ease-in-out infinite;
  }

  .orbit__stat strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 2px;
  }

  .orbit__stat span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .orbit__stat--1 { top: 6%;  left: -4%;  animation-delay: 0s; }
  .orbit__stat--2 { top: 8%;  right: -2%; animation-delay: 1.5s; }
  .orbit__stat--3 { bottom: 8%; right: 4%; animation-delay: 3s; }

  @keyframes orbitStatFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  
  .about__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  
  .about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
  }
  
  .about__feature:hover {
    background: var(--green-subtle);
    border-color: var(--border);
  }
  
  .about__feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-subtle);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--green);
    flex-shrink: 0;
  }
  
  .about__feature h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .about__feature p {
    font-size: 0.85rem;
    color: var(--text-dim);
  }
  
  /* ═══════════════════════════════════════════════════
     PROCESS
     ═══════════════════════════════════════════════════ */
  .process {
    padding: 120px 0;
    position: relative;
  }
  
  .process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .process__line {
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green) 0%, var(--border) 100%);
  }
  
  .process__step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
  }
  
  .process__step:last-child { margin-bottom: 0; }
  
  .process__step-marker {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    flex-shrink: 0;
    z-index: 2;
    transition: all var(--transition);
  }
  
  .process__step-marker span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
  }
  
  .process__step:hover .process__step-marker {
    background: var(--green);
    box-shadow: 0 0 30px var(--green-glow);
  }
  
  .process__step:hover .process__step-marker span {
    color: var(--bg);
  }
  
  .process__step-content {
    padding: 20px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
  }
  
  .process__step:hover .process__step-content {
    border-color: var(--border-strong);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .process__step-geo {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.15;
  }
  
  .process__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  
  .process__step-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  /* ═══════════════════════════════════════════════════
     PRICING
     ═══════════════════════════════════════════════════ */
  .pricing {
    padding: 120px 0;
    position: relative;
  }
  
  .pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
  }
  
  .pricing__card:hover {
    border-color: var(--border-strong);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .pricing__card--featured {
    border-color: var(--green);
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.05) 0%, var(--bg-card) 100%);
  }
  
  .pricing__card--featured:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--green-dim);
  }
  
  .pricing__card-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--green);
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  
  .pricing__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--green);
  }
  
  .pricing__card-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
  }
  
  .pricing__list {
    list-style: none;
  }
  
  .pricing__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }
  
  .pricing__list li:last-child { border-bottom: none; }
  
  .pricing__list li span:first-child {
    color: var(--text-secondary);
  }
  
  .pricing__list li span:last-child {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
  }

  /* ═══════════════════════════════════════════════════
     TRUST BLOCK
     ═══════════════════════════════════════════════════ */
  .trust {
    padding: 60px 0;
  }

  .trust__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    background:
      radial-gradient(circle at 0% 50%, rgba(0, 230, 118, 0.1), transparent 60%),
      linear-gradient(135deg, rgba(15, 22, 18, 0.85), rgba(8, 12, 10, 0.85));
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  }

  .trust__seal {
    flex-shrink: 0;
    animation: trustSpin 30s linear infinite;
    filter: drop-shadow(0 0 24px rgba(0, 230, 118, 0.35));
  }

  @keyframes trustSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .trust__label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--green);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .trust__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .trust__text {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .trust__list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-primary);
  }

  @media (max-width: 760px) {
    .trust__card {
      grid-template-columns: 1fr;
      padding: 32px 24px;
      gap: 28px;
      text-align: left;
    }
    .trust__seal { margin: 0 auto; }
    .trust__list { grid-template-columns: 1fr; }
  }

  /* ═══════════════════════════════════════════════════
     CALCULATOR
     ═══════════════════════════════════════════════════ */
  .calc {
    padding: 100px 0;
    position: relative;
  }

  .calc__wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    background:
      radial-gradient(circle at 20% 20%, rgba(0, 230, 118, 0.08), transparent 60%),
      linear-gradient(160deg, rgba(15, 22, 18, 0.7), rgba(8, 12, 10, 0.7));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .calc__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .calc__step {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .calc__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    font-weight: 700;
    font-size: 0.78rem;
    font-family: var(--font-display);
  }

  .calc__step-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: -4px;
  }

  .calc__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .calc__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: rgba(20, 28, 22, 0.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .calc__chip svg {
    color: currentColor;
  }

  .calc__chip:hover {
    border-color: rgba(0, 230, 118, 0.4);
    color: var(--text-primary);
  }

  .calc__chip.active {
    background: rgba(0, 230, 118, 0.14);
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.08);
  }

  .calc__result {
    background:
      radial-gradient(circle at 80% 0%, rgba(0, 230, 118, 0.18), transparent 60%),
      linear-gradient(160deg, rgba(0, 230, 118, 0.06), rgba(8, 12, 10, 0.7));
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: sticky;
    top: 100px;
    align-self: start;
  }

  .calc__result-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
  }

  .calc__result-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 4px 0 8px;
  }

  .calc__result-price #calcPriceFrom {
    font-size: 0.95rem;
    color: var(--text-secondary);
  }

  .calc__result-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 24px rgba(0, 230, 118, 0.35);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .calc__result-amount.bump {
    transform: scale(1.08);
  }

  .calc__result-cur {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
  }

  .calc__result-time {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
  }

  .calc__result-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .calc__result-note {
    font-size: 0.74rem;
    color: var(--text-dim);
  }

  @media (max-width: 900px) {
    .calc__wrap {
      grid-template-columns: 1fr;
      padding: 28px 22px;
    }
    .calc__result {
      position: static;
    }
  }

  .reviews__source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(252, 63, 29, 0.08);
    border: 1px solid rgba(252, 63, 29, 0.25);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-top: 12px;
  }

  .reviews__source:hover {
    background: rgba(252, 63, 29, 0.15);
    transform: translateY(-2px);
  }

  /* ═══════════════════════════════════════════════════
     REVIEWS
     ═══════════════════════════════════════════════════ */
  .reviews {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .reviews__slider {
    position: relative;
    overflow: hidden;
  }
  
  .reviews__track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .reviews__card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
  }
  
  .reviews__card:hover {
    border-color: var(--border-strong);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .reviews__stars {
    color: var(--green);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  
  .reviews__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .reviews__author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .reviews__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-subtle);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
  }
  
  .reviews__author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
  }
  
  .reviews__author span {
    font-size: 0.78rem;
    color: var(--text-dim);
  }
  
  .reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
  }
  
  .reviews__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
  }
  
  .reviews__btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-subtle);
  }
  
  .reviews__dots {
    display: flex;
    gap: 8px;
  }
  
  .reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
    transition: all var(--transition-fast);
    cursor: pointer;
  }
  
  .reviews__dot.active {
    background: var(--green);
    width: 24px;
    border-radius: 4px;
  }
  
  /* ═══════════════════════════════════════════════════
     CONTACT
     ═══════════════════════════════════════════════════ */
  .contact {
    padding: 120px 0;
    position: relative;
  }
  
  .contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .contact__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  
  .contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  
  .contact__detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-subtle);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
  }
  
  .contact__detail strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .contact__detail p {
    font-size: 0.88rem;
    color: var(--text-secondary);
  }
  
  /* Form */
  .contact__form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
  }
  
  /* ── Быстрые кнопки связи ── */
  .contact__quick {
    margin-bottom: 24px;
  }
  .contact__quick-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 12px;
  }
  .contact__quick-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .contact__quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 14px 10px;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
  }
  .contact__quick-btn span {
    font-size: 0.82rem;
    font-weight: 600;
  }
  .contact__quick-btn small {
    font-size: 0.68rem;
    color: var(--text-dim);
    line-height: 1.2;
  }
  .contact__quick-btn svg {
    flex-shrink: 0;
  }
  .contact__quick-btn:hover,
  .contact__quick-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  }
  .contact__quick-btn--phone {
    color: var(--green);
    border-color: rgba(0, 230, 118, 0.25);
  }
  .contact__quick-btn--phone:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: var(--green);
    box-shadow: 0 8px 24px -8px rgba(0, 230, 118, 0.3);
  }
  .contact__quick-btn--tg {
    color: #29b6f6;
    border-color: rgba(41, 182, 246, 0.25);
  }
  .contact__quick-btn--tg:hover {
    background: rgba(41, 182, 246, 0.08);
    border-color: #29b6f6;
    box-shadow: 0 8px 24px -8px rgba(41, 182, 246, 0.3);
  }
  .contact__quick-btn--wa {
    color: #66bb6a;
    border-color: rgba(102, 187, 106, 0.25);
    position: relative;
  }
  .contact__quick-btn--wa:hover {
    background: rgba(102, 187, 106, 0.08);
    border-color: #66bb6a;
  }
  .contact__quick-btn--wa.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }

  /* Тост-уведомление */
  .wa-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 183, 77, 0.3);
    color: #ffb74d;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
    max-width: calc(100vw - 32px);
    text-align: center;
    white-space: normal;
  }
  .wa-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* Лого в nav */
  .nav__logo-img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
  }

  .contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-dim);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-dim);
  }
  
  .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a9a7a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  
  .form-group select option {
    background: var(--bg-card);
    color: var(--text);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .form-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
  }

  .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    user-select: none;
  }

  .form-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1.5px solid var(--border-strong);
    border-radius: 4px;
    background: var(--bg-card);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
  }

  .form-consent input[type="checkbox"]:checked {
    background: var(--green);
    border-color: var(--green);
  }

  .form-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .form-consent a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .form-consent a:hover {
    text-decoration: none;
  }

  .form-group input.is-error,
  .form-group textarea.is-error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
  }

  .form-consent.shake {
    animation: shake 0.4s ease;
  }

  /* Honeypot: невидимо, но не для display:none (чтобы боты заполнили) */
  .form-honey {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
  }

  .form-status {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
  }

  .form-status.is-success {
    display: block;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.4);
    color: var(--green);
  }

  .form-status.is-error {
    display: block;
    background: rgba(255, 90, 90, 0.12);
    border: 1px solid rgba(255, 90, 90, 0.4);
    color: #ff8a8a;
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
  }
  
  /* ═══════════════════════════════════════════════════
     BEFORE / AFTER SLIDER
     ═══════════════════════════════════════════════════ */
  .before-after {
    padding: 120px 0;
    position: relative;
  }
  
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .ba-slider {
    position: relative;
  }
  
  .ba-slider__wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: ew-resize;
    user-select: none;
  }
  
  .ba-slider__before,
  .ba-slider__after {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  
  .ba-slider__before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
  }
  
  .ba-slider__after {
    z-index: 1;
  }
  
  .ba-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .ba-slider__tag {
    position: absolute;
    top: 14px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 4;
    pointer-events: none;
  }

  .ba-slider__tag--before {
    left: 14px;
    background: rgba(255, 90, 90, 0.18);
    color: #ff8a8a;
    border: 1px solid rgba(255, 120, 120, 0.35);
  }

  .ba-slider__tag--after {
    right: 14px;
    background: rgba(0, 230, 118, 0.18);
    color: var(--green);
    border: 1px solid rgba(0, 230, 118, 0.35);
  }

  /* Лёгкий тинт для контраста */
  .ba-slider__before::after,
  .ba-slider__after::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
  }
  
  .ba-slider__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .ba-slider__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--green);
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 12px var(--green-glow);
    transition: none;
  }
  
  .ba-slider__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    pointer-events: none;
    box-shadow: 0 4px 20px var(--green-glow), 0 0 0 4px rgba(0, 230, 118, 0.2);
    transition: none;
  }
  
  .ba-slider__caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 16px;
  }
  
  @media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
  }
  
  /* ═══════════════════════════════════════════════════
     FAQ ACCORDION
     ═══════════════════════════════════════════════════ */
  .faq {
    padding: 120px 0;
    position: relative;
  }
  
  .faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
  }
  
  .faq__item.active {
    border-color: var(--border-strong);
  }
  
  .faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    background: var(--bg-card);
    transition: background var(--transition-fast), color var(--transition-fast);
  }
  
  .faq__question:hover {
    background: var(--bg-card-hover);
  }
  
  .faq__item.active .faq__question {
    color: var(--green);
  }
  
  .faq__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
  }
  
  .faq__icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .faq__icon span:first-child {
    transform: translate(-50%, -50%);
  }
  
  .faq__icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .faq__item.active .faq__icon span {
    background: var(--green);
  }
  
  .faq__item.active .faq__icon span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  
  .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .faq__item.active .faq__answer {
    max-height: 300px;
  }
  
  .faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }
  
  /* ═══════════════════════════════════════════════════
     STICKY MESSENGER CTA
     ═══════════════════════════════════════════════════ */
  .sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    pointer-events: none;
  }

  .sticky-cta.sticky-cta--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  
  @media (max-width: 768px) {
    .sticky-cta { bottom: 80px; right: 16px; }
  }
  
  .sticky-cta__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--green-glow), 0 0 0 0 rgba(0, 230, 118, 0.3);
    transition: all var(--transition);
    animation: stickyPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
  }
  
  @keyframes stickyPulse {
    0%, 100% { box-shadow: 0 8px 30px var(--green-glow), 0 0 0 0 rgba(0, 230, 118, 0.3); }
    50%      { box-shadow: 0 8px 30px var(--green-glow), 0 0 0 12px rgba(0, 230, 118, 0); }
  }
  
  .sticky-cta__toggle:hover {
    transform: scale(1.08);
    background: var(--green-dark);
  }
  
  .sticky-cta__icon-close { display: none; }
  .sticky-cta.open .sticky-cta__icon-chat { display: none; }
  .sticky-cta.open .sticky-cta__icon-close { display: block; }
  .sticky-cta.open .sticky-cta__toggle { animation: none; }
  
  .sticky-cta__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }
  
  .sticky-cta.open .sticky-cta__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  
  .sticky-cta__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .sticky-cta__link--wa {
    background: #25d366;
    color: #fff;
  }
  
  .sticky-cta__link--wa:hover { background: #1fb855; color: #fff; transform: translateX(-4px); }
  
  .sticky-cta__link--tg {
    background: #2aabee;
    color: #fff;
  }
  
  .sticky-cta__link--tg:hover { background: #229ed9; color: #fff; transform: translateX(-4px); }
  
  .sticky-cta__link--phone {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--green);
  }
  
  .sticky-cta__link--phone:hover { background: var(--bg-card-hover); transform: translateX(-4px); color: var(--green); }
  
  /* ═══════════════════════════════════════════════════
     ANIMATED PRICE HOVER
     ═══════════════════════════════════════════════════ */
  .pricing__list li {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 6px;
    position: relative;
  }
  
  .pricing__list li span:first-child {
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .pricing__list li span:last-child {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, font-size 0.3s ease;
    display: inline-block;
  }
  
  /* Hover on individual row */
  .pricing__list li:hover {
    background: var(--green-subtle);
    padding-left: 12px;
    padding-right: 12px;
    margin: 0 -12px;
    border-bottom-color: transparent;
  }
  
  .pricing__list li:hover span:first-child {
    color: var(--text);
  }
  
  .pricing__list li:hover span:last-child {
    color: var(--green);
    transform: scale(1.12);
    font-weight: 800;
  }
  
  /* Whole card hover — cascade animation */
  .pricing__card:hover .pricing__list li span:last-child {
    color: var(--green);
  }
  
  /* Price "flip" animation class (added by JS) */
  .price-animate {
    animation: priceFlip 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  @keyframes priceFlip {
    0%   { opacity: 0; transform: translateY(-10px) scale(0.8); }
    50%  { opacity: 1; transform: translateY(2px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
  }
  
  /* ═══════════════════════════════════════════════════
     BOTTOM BAR (mobile CTA)
     ═══════════════════════════════════════════════════ */
  .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    display: none;
    gap: 8px;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(5, 10, 5, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
  }
  
  @media (max-width: 768px) {
    .bottom-bar { display: flex; }
  }
  
  .bottom-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
  }
  
  .bottom-bar__btn--call {
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
  }
  
  .bottom-bar__btn--call:hover {
    background: var(--green-subtle);
  }
  
  .bottom-bar__btn--form {
    background: var(--green);
    color: var(--bg);
    border: 1.5px solid var(--green);
  }
  
  .bottom-bar__btn--form:hover {
    background: var(--green-dark);
  }
  
  /* ═══════════════════════════════════════════════════
     CONTACT MAP
     ═══════════════════════════════════════════════════ */
  .contact__map {
    margin-top: 60px;
  }
  
  .contact__map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
  }
  
  .contact__map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
  }
  
  .contact__map-frame iframe {
    display: block;
    width: 100%;
    min-height: 300px;
    filter: grayscale(0.6) brightness(0.4) contrast(1.2);
    transition: filter var(--transition);
  }
  
  .contact__map-frame:hover iframe {
    filter: grayscale(0.3) brightness(0.5) contrast(1.1);
  }
  
  /* ═══════════════════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════════════════ */
  .footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
  }
  
  .footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
  }
  
  .footer__tagline {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-top: 12px;
    max-width: 280px;
  }
  
  .footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 16px;
  }
  
  .footer__col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color var(--transition-fast);
  }
  
  .footer__col a:hover { color: var(--green); }
  
  .footer__bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .footer__bottom p {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin: 0;
  }

  .footer__legal {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer__legal a {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer__legal a:hover {
    color: var(--green);
  }

  .footer__legal span {
    color: var(--border-strong);
  }

  @media (max-width: 580px) {
    .footer__bottom { justify-content: center; text-align: center; }
  }
  
  /* ═══════════════════════════════════════════════════
     3D TILT CARD EFFECT
     ═══════════════════════════════════════════════════ */
  .tilt-card {
    transform-style: preserve-3d;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .tilt-card .service-card__inner,
  .tilt-card .pricing__card-header,
  .tilt-card .pricing__list {
    transform: translateZ(30px);
  }
  
  /* ═══════════════════════════════════════════════════
     MODALS
     ═══════════════════════════════════════════════════ */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    display: none;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px var(--green-dim);
  }
  
  .modal-overlay.active .modal.active {
    display: flex;
    transform: translateY(0) scale(1);
  }
  
  .modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--border);
  }
  
  .modal__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .modal__title-row h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  .modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
  }
  
  .modal__close:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-subtle);
  }
  
  .modal__body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
  }
  
  .modal__section {
    margin-bottom: 24px;
  }
  
  .modal__section:last-of-type { margin-bottom: 0; }
  
  .modal__section h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-left: 12px;
    border-left: 2px solid var(--green);
  }
  
  .modal__price-list {
    display: flex;
    flex-direction: column;
  }
  
  .modal__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }
  
  .modal__price-row:last-child { border-bottom: none; }
  
  .modal__price-row span:first-child {
    color: var(--text-secondary);
  }
  
  .modal__price-row span:last-child {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    margin-left: 12px;
  }
  
  .modal__note {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 16px;
    font-style: italic;
  }
  
  .modal__footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border);
  }
  
  .modal__cta {
    width: 100%;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .modal {
      max-height: 90vh;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      align-self: flex-end;
    }
  
    .modal-overlay {
      align-items: flex-end;
      padding: 0;
    }
  
    .top-banner__text { font-size: 0.72rem; }
    .top-banner__inner { gap: 8px; }
  }
  
  /* ═══════════════════════════════════════════════════
     NOISE + DOT GRID OVERLAY
     ═══════════════════════════════════════════════════ */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
  }
  
  /* Section divider glow */
  .services, .about, .process, .pricing, .reviews, .contact, .before-after, .faq {
    position: relative;
  }
  
  .services::before, .pricing::before, .before-after::before, .faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 230, 118, 0.25) 50%, transparent 100%);
  }
  
  /* Section ambient glow */
  .services::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
  }
  
  .about::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.035) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
  }
  
  .reviews::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
  }
  
  .contact::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 230, 118, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
  }
  
  /* ═══════════════════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero__content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
  
    .hero__visual {
      order: -1;
    }
  
    .hero__desc { margin-left: auto; margin-right: auto; }
  
    .hero__device-phone {
      width: 200px;
      height: 400px;
    }
  
    .hero__device { animation: deviceFloat 6s ease-in-out infinite; }
  
    .services__grid,
    .pricing__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .about__layout {
      grid-template-columns: 1fr;
      gap: 60px;
    }
  
    .about__visual { order: -1; }
  
    .contact__layout {
      grid-template-columns: 1fr;
    }
  
    .footer__inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .reviews__card {
      flex: 0 0 calc(50% - 12px);
    }
  }
  
  /* ═══════════════════════════════════════════════════
     MOBILE — ≤ 768px
     ═══════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    :root { --gutter: 16px; }

    /* ── Фоновые слои — убираем тяжёлые эффекты ── */
    .bg-layer { display: none; }
    .geo-bg   { display: none; }
    body::after { display: none; }
    body {
      background:
        radial-gradient(ellipse 100% 40% at 50% 0%, rgba(0, 230, 118, 0.07) 0%, transparent 60%),
        var(--bg);
    }
    .services::after, .about::after, .reviews::after, .contact::after { display: none; }

    /* ── Навигация ── */
    .nav__links {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5, 10, 5, 0.97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
      z-index: 999;
    }
    .nav__links.active { display: flex; }
    .nav__links .nav__link { font-size: 1.1rem; }
    .nav__burger { display: flex; z-index: 1001; }

    /* ── Hero ── */
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero__content { grid-template-columns: 1fr; gap: 28px; text-align: center; }

    /* На мобиле скрываем телефон-макет — занимает слишком много места */
    .hero__visual { display: none; }

    .hero__text { order: 1; }
    .hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .hero__desc { margin-left: auto; margin-right: auto; font-size: 0.95rem; }

    .hero__actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }
    .hero__actions .btn { justify-content: center; }

    .hero__rating {
      justify-content: center;
      flex-wrap: wrap;
      font-size: 0.8rem;
    }

    .hero__stats {
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero__stat-num { font-size: 1.5rem; }
    .hero__stat-pct { font-size: 1rem; }
    .hero__stat-label { font-size: 0.68rem; }

    /* ── Секции: паддинги ── */
    .services, .about, .process, .pricing, .reviews,
    .contact, .before-after, .faq, .calc, .trust {
      padding: 60px 0;
    }
    .brands { padding: 28px 0 36px; }

    .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

    /* ── Услуги, Цены ── */
    .services__grid,
    .pricing__grid {
      grid-template-columns: 1fr;
    }

    /* ── О нас — орбита ── */
    .about__layout { grid-template-columns: 1fr; gap: 40px; }
    .about__visual { order: -1; }

    /* На телефоне орбита: только ядро + внутреннее кольцо, убираем статы и внешнее */
    .orbit { max-width: 260px; height: 260px; }
    .orbit__ring--outer,
    .orbit__stat--1,
    .orbit__stat--2,
    .orbit__stat--3 { display: none; }

    .orbit__core {
      width: 120px; height: 120px;
      margin-top: -60px; margin-left: -60px;
      border-radius: 24px;
    }
    .orbit__core-years { font-size: 2.4rem; }
    .orbit__core-label { font-size: 0.72rem; }

    .orbit__ring--inner {
      width: 220px; height: 220px;
      margin-top: -110px; margin-left: -110px;
    }
    .orbit__pulse {
      width: 100px; height: 100px;
      margin-top: -50px; margin-left: -50px;
    }
    .orbit__node { width: 40px; height: 40px; margin-top: -20px; margin-left: -20px; }
    .orbit__node--phone  { --tx: 0;      --ty: -110px; }
    .orbit__node--tablet { --tx: 95px;   --ty: 55px;   }
    .orbit__node--laptop { --tx: -95px;  --ty: 55px;   }

    /* ── О нас — фичи ── */
    .about__features { gap: 16px; }

    /* ── Процесс ── */
    .process__timeline { gap: 24px; }
    .process__step { flex-direction: column; align-items: flex-start; gap: 12px; }
    .process__line { display: none; }

    /* ── Гарантия ── */
    .trust__card {
      grid-template-columns: 1fr;
      padding: 28px 20px;
      gap: 24px;
      text-align: left;
    }
    .trust__seal { margin: 0 auto; width: 72px; height: 72px; }
    .trust__seal svg { width: 72px; height: 72px; }
    .trust__title { font-size: 1.4rem; }
    .trust__list { grid-template-columns: 1fr; gap: 10px; }
    .trust__list li { font-size: 0.9rem; }

    /* ── Калькулятор ── */
    .calc__wrap {
      grid-template-columns: 1fr;
      padding: 22px 18px;
      gap: 28px;
    }
    .calc__result { position: static; }
    .calc__chip { font-size: 0.8rem; padding: 8px 12px; }
    .calc__result-amount { font-size: 2.6rem; }

    /* ── Отзывы ── */
    .reviews__card { flex: 0 0 100%; }

    /* ── До/После ── */
    .ba-grid { grid-template-columns: 1fr; gap: 24px; }

    /* ── Контакты ── */
    .contact__layout { grid-template-columns: 1fr; gap: 40px; }
    .contact__quick-btns { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .contact__quick-btn { padding: 12px 6px; }
    .contact__quick-btn span { font-size: 0.75rem; }
    .contact__quick-btn small { display: none; }
    .wa-toast { bottom: 80px; font-size: 0.82rem; }

    /* ── Подвал ── */
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__links { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding-bottom: 80px; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

    /* ── Действия в Hero ── */
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }

    /* ── Брендовая лента ── */
    .brand { font-size: 1.1rem; }
    .brands__track { gap: 32px; }
  }

  /* ═══════════════════════════════════════════════════
     SMALL PHONES — ≤ 480px
     ═══════════════════════════════════════════════════ */
  @media (max-width: 480px) {
    :root { --gutter: 14px; }

    .top-banner__cta { display: none; }
    .top-banner__text { font-size: 0.75rem; }

    .hero { padding: 88px 0 52px; }
    .hero__title { font-size: clamp(1.6rem, 7.5vw, 2rem); }
    .hero__badge { font-size: 0.72rem; padding: 6px 12px; }
    .hero__desc { font-size: 0.88rem; }

    .section-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
    .section-desc { font-size: 0.9rem; }

    /* Кнопки — полная ширина */
    .btn { padding: 14px 20px; font-size: 0.92rem; }

    /* Сервис-карточки */
    .service-card { padding: 24px 20px; }
    .service-card__icon svg { width: 36px; height: 36px; }
    .service-card__title { font-size: 1.1rem; }

    /* Орбита ещё компактнее */
    .orbit { max-width: 220px; height: 220px; }
    .orbit__core {
      width: 100px; height: 100px;
      margin-top: -50px; margin-left: -50px;
    }
    .orbit__core-years { font-size: 1.9rem; }
    .orbit__ring--inner {
      width: 190px; height: 190px;
      margin-top: -95px; margin-left: -95px;
    }
    .orbit__node--phone  { --tx: 0;     --ty: -95px; }
    .orbit__node--tablet { --tx: 82px;  --ty: 47px;  }
    .orbit__node--laptop { --tx: -82px; --ty: 47px;  }

    /* Цены */
    .pricing__card { padding: 24px 18px; }
    .pricing__list li { font-size: 0.85rem; gap: 8px; }

    /* Калькулятор */
    .calc__chips { gap: 6px; }
    .calc__chip { font-size: 0.75rem; padding: 7px 10px; }
    .calc__result-amount { font-size: 2.2rem; }
    .calc__result { padding: 22px 18px; }

    /* FAQ */
    .faq__question span { font-size: 0.9rem; }

    /* Форма */
    .form-group label { font-size: 0.88rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 0.92rem; padding: 12px 14px; }

    /* До/После подписи */
    .ba-slider__caption { font-size: 0.8rem; }

    /* Контакты */
    .contact__detail { gap: 12px; }
    .contact__detail strong { font-size: 0.92rem; }
    .contact__detail p { font-size: 0.88rem; }

    /* Карта */
    .contact__map-frame iframe { height: 220px; }

    /* Sticky CTA ниже на маленьком экране */
    .sticky-cta { bottom: 72px; right: 12px; }
    .bottom-bar { padding: 8px 12px; }
  }
  
  /* ═══════════════════════════════════════════════════
     LARGE SCREENS (1440px+)
     ═══════════════════════════════════════════════════ */
  @media (min-width: 1440px) {
    :root {
      --container: 1360px;
      --gutter: 40px;
    }
  
    body { font-size: 17px; }
  
    .hero__title { font-size: clamp(3rem, 4.5vw, 5rem); }
    .hero__desc { font-size: 1.25rem; max-width: 580px; }
    .hero__badge { font-size: 0.9rem; padding: 10px 20px; }
    .hero__stat-num { font-size: 2.2rem; }
    .hero__stat-pct { font-size: 1.5rem; }
    .hero__stat-label { font-size: 0.88rem; }
    .hero__stats { gap: 56px; }
  
    .hero__device-phone { width: 300px; height: 600px; border-radius: 42px; }
    .hero__device-phone .hero__device-screen { border-radius: 32px; }
    .hero__device-notch { width: 130px; height: 32px; }
    .phone-app { padding: 14px 20px; gap: 16px; }
    .phone-app__title { font-size: 0.78rem; }
    .phone-app__status-label { font-size: 0.82rem; }
    .phone-app__status-sub { font-size: 0.7rem; }
    .phone-app__service-item { font-size: 0.72rem; padding: 9px 0; }
    .phone-app__service-badge { font-size: 0.6rem; }
    .phone-app__price { font-size: 0.92rem; }
    .phone-app__estimate { font-size: 0.72rem; }
    .phone-app__progress-header { font-size: 0.68rem; }
    .phone-statusbar__time { font-size: 0.78rem; }
    .phone-home-indicator { width: 120px; height: 5px; }
  
    .btn { font-size: 1.05rem; padding: 16px 34px; }
    .btn--ghost { padding: 14px 28px; }
  
    .section-title { font-size: clamp(2.4rem, 4vw, 3.8rem); }
    .section-desc { font-size: 1.2rem; max-width: 640px; }
    .section-label { font-size: 0.8rem; }
  
    .service-card { padding: 48px 38px; }
    .service-card__title { font-size: 1.5rem; }
    .service-card__desc { font-size: 1rem; }
    .service-card__list li { font-size: 0.95rem; }
    .service-card__price { font-size: 1.1rem; }
  
    /* Orbit — крупнее на больших экранах */
    .orbit { max-width: 540px; }
    .orbit__core {
      width: 170px; height: 170px;
      margin-top: -85px; margin-left: -85px;
      border-radius: 32px;
    }
    .orbit__core-years { font-size: 3.6rem; }
    .orbit__core-label { font-size: 0.85rem; }

    .orbit__ring--inner {
      width: 320px; height: 320px;
      margin-top: -160px; margin-left: -160px;
    }
    .orbit__ring--outer {
      width: 480px; height: 480px;
      margin-top: -240px; margin-left: -240px;
    }

    .orbit__node--phone  { --tx: 0;      --ty: -160px; }
    .orbit__node--tablet { --tx: 139px;  --ty: 80px;   }
    .orbit__node--laptop { --tx: -139px; --ty: 80px;   }

    .orbit__node--shield { --tx: 0;      --ty: -240px; }
    .orbit__node--star   { --tx: 240px;  --ty: 0;      }
    .orbit__node--clock  { --tx: 0;      --ty: 240px;  }
    .orbit__node--bolt   { --tx: -240px; --ty: 0;      }

    .orbit__stat strong { font-size: 1.3rem; }
    .orbit__stat span { font-size: 0.75rem; }
    .about__text { font-size: 1.15rem; }
    .about__feature h4 { font-size: 1rem; }
    .about__feature p { font-size: 0.92rem; }
    .about__feature-icon { width: 50px; height: 50px; }
  
    .process__step-marker { width: 84px; height: 84px; }
    .process__step-marker span { font-size: 1.2rem; }
    .process__step-content h3 { font-size: 1.3rem; }
    .process__step-content p { font-size: 1rem; }
  
    .pricing__card { padding: 44px 34px; }
    .pricing__card-header h3 { font-size: 1.35rem; }
    .pricing__list li { font-size: 1rem; padding: 14px 0; }
  
    .reviews__card { padding: 38px 34px; }
    .reviews__text { font-size: 1.05rem; }
    .reviews__author strong { font-size: 0.95rem; }
  
    .faq__question { padding: 24px 28px; font-size: 1.05rem; }
    .faq__answer p { font-size: 1rem; padding: 0 28px 24px; }
  
    .nav__link { font-size: 0.95rem; }
    .nav__logo { font-size: 1.25rem; }
    .nav__link--cta { padding: 10px 24px; }
  
    .contact__desc { font-size: 1.15rem; }
    .contact__detail strong { font-size: 0.95rem; }
    .contact__detail p { font-size: 0.95rem; }
    .contact__form-wrap { padding: 48px 44px; }
    .form-group label { font-size: 0.88rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 1.05rem; padding: 16px 18px; }
  
    .footer__col h4 { font-size: 0.85rem; }
    .footer__col a { font-size: 0.95rem; }
    .footer__tagline { font-size: 0.95rem; }
  }
  
  /* ═══════════════════════════════════════════════════
     EXTRA LARGE SCREENS (1920px+)
     ═══════════════════════════════════════════════════ */
  @media (min-width: 1920px) {
    :root {
      --container: 1520px;
      --gutter: 48px;
    }
  
    body { font-size: 18px; }
  
    .hero { padding: 180px 0 120px; }
    .hero__title { font-size: 5.2rem; }
    .hero__desc { font-size: 1.35rem; max-width: 640px; }
    .hero__stat-num { font-size: 2.6rem; }
    .hero__stats { gap: 64px; }
  
    .hero__device-phone { width: 340px; height: 680px; }
  
    .section-title { font-size: 4rem; }
  
    .services, .about, .process, .pricing, .reviews, .contact, .before-after, .faq {
      padding: 140px 0;
    }
  
    .services__grid, .pricing__grid { gap: 32px; }
    .about__layout { gap: 100px; }
  
    .sticky-cta__toggle { width: 64px; height: 64px; }
  }
  
  /* ── Smooth scroll offset for fixed nav ── */
  html {
    scroll-padding-top: 100px;
  }
  
  /* ── Custom scrollbar ── */
  ::-webkit-scrollbar {
    width: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--green);
  }

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

    .orbit__pulse,
    .orbit__core-glow,
    .orbit__ring--inner,
    .orbit__ring--outer,
    .orbit__stat,
    .brands__track,
    .trust__seal,
    .geo-shape,
    .hero__device,
    .hero__float-shape {
      animation: none !important;
    }

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

  /* ═══════════════════════════════════════════════════
     ACCESSIBILITY: focus styles
     ═══════════════════════════════════════════════════ */
  :focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
  }

  button:focus-visible,
  a:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

  /* Skip-link для скринридеров */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    background: var(--green);
    color: var(--bg);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s ease;
  }

  .skip-link:focus {
    top: 12px;
  }
  