  :root {
    --green: #1B3D2A;
    --green-dark: #0F2618;
    --green-mid: #254d35;
    --green-light: #f0f5f1;
    --gold: #C8963C;
    --gold-light: #e8b96a;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-dark: #374151;
    --gray-light: #f9fafb;
    --border: #e5e7eb;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  /* Сброс глобального оранжевого цвета ссылок Тильды */
  .hero a, .hero a:hover, .hero a:visited,
  header a, header a:hover, header a:visited,
  footer a, footer a:hover, footer a:visited,
  section a, section a:hover, section a:visited,
  .stats-bar a, .cta-final a,
  a.btn-consult, a.btn-consult:hover, a.btn-consult:visited,
  a.btn-primary, a.btn-primary:hover, a.btn-primary:visited {
    text-decoration: none !important;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-dark);
    background: #fff;
    overflow-x: hidden;
  }

  /* ─── HEADER ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 44px; height: 44px;
    background: var(--gold);
    clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
    display: flex; align-items: center; justify-content: center;
  }

  .logo-icon svg { width: 22px; height: 22px; }

  .logo-text { line-height: 1.1; }
  .logo-text .t1 { display: block; font-size: 18px; font-weight: 700; color: var(--green) !important; letter-spacing: 1px; }
  .logo-text .t2 { display: block; font-size: 11px; font-weight: 600; color: var(--gold) !important; letter-spacing: 2px; }

  nav { flex: 1; }
  nav ul { display: flex; gap: 28px; list-style: none; }
  nav a {
    font-size: 13px; font-weight: 500; color: var(--gray-dark) !important;
    text-decoration: none !important; white-space: nowrap;
    transition: color .2s;
  }
  nav a:hover { color: var(--green) !important; }

  .header-contacts {
    display: flex; align-items: center; gap: 16px;
    flex-shrink: 0;
  }

  .phone-block { display: flex; align-items: center; gap: 10px; }

  .phone-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
  }

  .phone-icon svg { width: 16px; height: 16px; }

  .phone-info { line-height: 1.2; }
  .phone-info .num { font-size: 14px; font-weight: 700; color: var(--green); }
  .phone-info .hours { font-size: 11px; color: var(--gray); }

  .btn-consult {
    background: var(--green);
    color: var(--white) !important;
    border: none;
    padding: 10px 22px;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .btn-consult:hover { background: var(--green-mid); transform: translateY(-1px); color: var(--white) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.10) 42%, rgba(255,255,255,0.03) 100%),
      linear-gradient(to bottom, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 14%),
      url('https://static.tildacdn.com/tild6631-3964-4538-b636-303435623530/fon.png') center/cover no-repeat;
  }

  .hero-waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    opacity: 0.15;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
  }

  .hero-left { max-width: 680px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .hero-badge svg { width: 16px; height: 16px; }

  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 800;
    color: var(--green);
    line-height: 1.12;
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
    max-width: 480px;
    margin-bottom: 36px;
  }

  .hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(27,61,42,0.2);
    border-radius: 32px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
  }

  .pill svg { width: 14px; height: 14px; color: var(--gold); }

  .hero-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(27,61,42,0.15), 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    z-index: 3;
  }

  .form-group { position: relative; margin-bottom: 14px; }

  .form-group svg {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    color: var(--gray);
    pointer-events: none;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 13px 14px 13px 40px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--gray-dark);
    background: #fff;
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-group input::placeholder { color: #aab0b8; }
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--green);
  }

  .select-arrow {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
  }

  .btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: background .2s, transform .15s;
  }

  .btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
  .btn-submit svg { width: 16px; height: 16px; }

  .form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--gray);
  }

  .form-privacy svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--green);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
  }

  .stats-waves {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 40%;
    opacity: 0.08;
    pointer-events: none;
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; }

  .stat-icon {
    width: 48px; height: 48px;
    background: rgba(200,150,60,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .stat-icon svg { width: 24px; height: 24px; color: var(--gold); }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    margin-top: 4px;
  }

  /* ─── SECTIONS ─── */
  .section { padding: 96px 32px; }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 32px; height: 2px;
    background: var(--gold);
  }

  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 56px;
  }

  /* ─── PROBLEM ─── */
  .problem-bg { background: var(--green-light); }

  .cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(27,61,42,0.07);
    transition: transform .2s, box-shadow .2s;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27,61,42,0.12);
  }

  .card-icon {
    width: 52px; height: 52px;
    background: rgba(200,150,60,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }

  .card-icon svg { width: 26px; height: 26px; color: var(--gold); }

  .card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
  }

  .card-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray);
  }

  /* ─── OFFER ─── */
  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .offer-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white) !important;
    border: none;
    padding: 14px 32px;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
  }

  .btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); color: var(--white) !important; }

  .offer-visual {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    border-radius: 24px;
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    align-self: start;
  }

  .offer-visual::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border: 2px solid rgba(200,150,60,0.2);
    border-radius: 50%;
  }

  .offer-visual::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -20px;
    width: 260px; height: 260px;
    border: 2px solid rgba(200,150,60,0.1);
    border-radius: 50%;
  }

  .offer-visual-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold);
    position: relative; z-index: 1;
  }

  .offer-checklist {
    list-style: none;
    position: relative; z-index: 1;
  }

  .offer-checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
  }

  .check-dot {
    width: 20px; height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .check-dot svg { width: 10px; height: 10px; color: var(--white); }

  /* ─── PROCESS ─── */
  .process-bg { background: var(--green-light); }

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

  .step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(27,61,42,0.06);
    transition: transform .2s;
  }

  .step-card:hover { transform: translateY(-3px); }

  .step-num {
    width: 44px; height: 44px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
  }

  .step-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray);
  }

  /* ─── DOCUMENTS ─── */
  .docs-dark {
    background: var(--green);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .docs-dark .section-h2 { color: var(--white); }
  .docs-dark .section-sub { color: rgba(255,255,255,0.7); }

  .docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .doc-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 28px;
    transition: background .2s, transform .2s;
  }

  .doc-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
  }

  .doc-icon {
    width: 52px; height: 52px;
    background: rgba(200,150,60,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }

  .doc-icon svg { width: 26px; height: 26px; color: var(--gold); }

  .doc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .doc-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
  }

  .docs-deco {
    position: absolute;
    right: -80px; top: -80px;
    width: 400px; height: 400px;
    border: 2px solid rgba(200,150,60,0.08);
    border-radius: 50%;
    pointer-events: none;
  }

  .docs-deco2 {
    position: absolute;
    left: -60px; bottom: -100px;
    width: 320px; height: 320px;
    border: 2px solid rgba(200,150,60,0.06);
    border-radius: 50%;
    pointer-events: none;
  }

  /* ─── DIGITAL ─── */
  .digital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .digital-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
  }

  .quote-block {
    border-left: 4px solid var(--gold);
    background: var(--green-light);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-top: 8px;
  }

  .quote-block p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin: 0;
  }

  .digital-right {
    background: var(--green);
    border-radius: 20px;
    padding: 40px 36px;
    color: var(--white);
  }

  .digital-right-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .digit-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .digit-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

  .digit-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
    flex-shrink: 0;
  }

  .digit-row-text { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.85); }
  .digit-row-text strong { color: var(--white); }

  /* ─── TIMING ─── */
  .timing-bg { background: var(--green-light); }

  .timing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .timing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(27,61,42,0.06);
  }

  .timing-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
  }

  .timing-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
  }

  .timing-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
    flex-shrink: 0;
  }

  .warning-block {
    background: var(--green);
    border-radius: 16px;
    padding: 28px 32px;
    color: var(--white);
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .warning-icon { flex-shrink: 0; margin-top: 2px; }
  .warning-icon svg { width: 28px; height: 28px; color: var(--gold); }

  .warning-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.9); }
  .warning-text strong { color: var(--gold); }

  /* ─── FAQ ─── */
  .faq-list { max-width: 800px; }

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

  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color .2s;
  }

  .faq-q:hover { color: var(--gold); }

  .faq-arrow {
    width: 28px; height: 28px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
  }

  .faq-arrow svg { width: 12px; height: 12px; color: var(--gold); }

  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-item.open .faq-q { color: var(--gold); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
  }

  .faq-item.open .faq-a { max-height: 300px; }

  .faq-a-inner {
    padding-bottom: 22px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
  }

  /* ─── CTA FINAL ─── */
  .cta-final {
    background: var(--green);
    padding: 96px 32px;
    position: relative;
    overflow: hidden;
  }

  .cta-final-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative; z-index: 1;
  }

  .cta-left .section-h2 { color: var(--white); }

  .cta-left p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
  }

  .cta-benefits { list-style: none; }

  .cta-benefits li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
  }

  .cta-benefits li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

  .cta-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }

  .cta-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200,150,60,0.1);
    pointer-events: none;
  }

  .cta-deco1 { width: 500px; height: 500px; top: -200px; right: -100px; }
  .cta-deco2 { width: 300px; height: 300px; bottom: -100px; left: 5%; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--green-dark);
    padding: 60px 32px 32px;
  }

  .footer-inner { max-width: 1280px; margin: 0 auto; }

  .footer-top {
    display: grid;
    grid-template-columns: 280px 1fr 200px;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }

  .footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 16px;
  }

  .footer-nav h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; }
  .footer-nav a { font-size: 13px; color: rgba(255,255,255,0.65) !important; text-decoration: none !important; transition: color .2s; }
  .footer-nav a:hover { color: var(--white) !important; }

  .footer-contacts h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-contacts p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
  .footer-contacts .big-phone { font-size: 16px; font-weight: 700; color: var(--white); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }

  .footer-bottom a { color: rgba(255,255,255,0.4) !important; text-decoration: none !important; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.7) !important; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * { animation: fadeUp .7s ease both; }
  .hero-badge { animation-delay: .1s; }
  .hero-h1 { animation-delay: .2s; }
  .hero-sub { animation-delay: .3s; }
  .hero-pills { animation-delay: .4s; }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    align-items: center;
    justify-content: center;
  }

  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  }

  .modal-icon {
    width: 64px; height: 64px;
    background: rgba(27,61,42,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }

  .modal-icon svg { width: 32px; height: 32px; color: var(--green); }
  .modal h3 { font-size: 22px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
  .modal p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }

  .modal-close {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: background .2s;
  }

  .modal-close:hover { background: var(--green-mid); }

  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item { border-right: none; padding: 0; }
    .cards-3, .docs-grid { grid-template-columns: 1fr 1fr; }
    .offer-grid, .digital-grid, .cta-final-inner { grid-template-columns: 1fr; }
    .timing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 640px) {
    .cards-3, .docs-grid { grid-template-columns: 1fr; }
    .hero-pills { flex-direction: column; }
    .header-inner { gap: 16px; }
    nav { display: none; }
    .phone-info { display: none; }  /* ← скрываем текст, иконка остаётся */
	.header-contacts { gap: 34px !important; }  /* ← добавить */
	.header-contacts a[href^="tel"] { margin-left: 12px; }
	.footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }
