:root {
    /* Палитра «Эдем Бюро» — мягкая нейтральная база с оливковым акцентом */
    --green-900: #2a2a2a;
    --green-800: #6b6b6b;
    --green-700: #7a7a7a;
    --green-600: #94B43D;
    --green-400: #A2C055;
    --green-100: #ebf2d6;
    --green-50:  #f4f7eb;
    --cream:     #ececec;
    --paper:     #f5f5f5;
    --ink:       #3a3a3a;
    --muted:     #888888;
    --line:      #dcdcdc;
    --accent:    #A2C055;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
  }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #4a4a4a;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
  }

  /* ============= HEADER ============= */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--green-900);
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo svg { width: 28px; height: 28px; }
  .logo-img { height: 40px; width: auto; max-width: 240px; display: block; }
  .nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
  .nav-links a {
    color: var(--green-900);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color .25s;
  }
  .nav-links a:hover { color: var(--green-600); }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--green-600);
    transition: width .3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .dropdown { position: relative; }
  .dropdown > a::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-right: 7px;
    transition: transform .25s;
    vertical-align: middle;
  }
  .dropdown:hover > a::before { transform: rotate(225deg) translateY(2px); }
  .dropdown-menu {
    position: absolute;
    top: 100%; left: -16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
    box-shadow: 0 18px 50px -20px rgba(60, 60, 60, 0.25);
    list-style: none;
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 6px;
  }
  .dropdown-menu li a:hover { background: var(--green-50); }
  .dropdown-menu li a::after { display: none; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--ink);
    font-weight: 500;
  }
  .btn-primary:hover { background: #94B43D; transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(162, 192, 85, 0.5); }
  .btn-outline {
    background: transparent;
    color: var(--green-900);
    border-color: var(--green-900);
  }
  .btn-outline:hover { background: var(--green-900); color: var(--paper); }
  .btn-ghost {
    background: transparent;
    color: var(--green-900);
    border-color: var(--line);
  }
  .btn-ghost:hover { border-color: var(--green-900); }
  .btn-light {
    background: var(--paper);
    color: var(--green-900);
  }
  .btn-light:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.25); }

  /* ============= HERO ============= */
  .hero {
    padding: 80px 0 110px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
  }
  .hero h1 {
    font-size: clamp(40px, 5.2vw, 68px);
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .hero-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.65;
  }
  .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-note {
    margin-top: 24px;
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-note::before {
    content: '✓';
    color: var(--green-600);
    font-weight: 700;
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    /* overflow видимый, чтобы бейджи не обрезались; медиа клипуется отдельно */
    overflow: visible;
    background: linear-gradient(135deg, var(--green-800), var(--green-900));
  }
  .hero-visual-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    background: linear-gradient(135deg, #3a3a3a 0%, #1e1e1e 100%);
  }
  .hero-visual-overlay {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.15) 0%, rgba(20, 20, 20, 0.4) 100%);
    pointer-events: none;
  }

  .hero-badge {
    position: absolute;
    background: var(--paper);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 24px 50px -18px rgba(60, 60, 60, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-badge.top { top: 30px; left: -36px; }
  .hero-badge.bot { bottom: 40px; right: -36px; }
  .hero-badge-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-badge-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
  .hero-badge-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--green-900);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-badge-text span {
    font-size: 12px;
    color: var(--muted);
  }

  /* ============= STATS ============= */
  .stats {
    background: var(--green-900);
    color: var(--paper);
    padding: 70px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .stat {
    text-align: left;
    position: relative;
    padding-left: 28px;
  }
  .stat::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 1px; height: calc(100% - 12px);
    background: rgba(247, 244, 236, 0.2);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 14px;
    color: var(--paper);
  }
  .stat-num .plus { color: var(--accent); }
  .stat-label {
    font-size: 14px;
    color: rgba(247, 244, 236, 0.7);
    line-height: 1.4;
    max-width: 200px;
  }

  /* ============= SECTION SHARED ============= */
  section { padding: 110px 0; }
  .section-head {
    margin-bottom: 64px;
    max-width: 760px;
  }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-size: clamp(34px, 4vw, 52px);
    margin-bottom: 22px;
  }
  .section-lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.65;
  }

  /* ============= BENEFITS (3 cards) ============= */
  .benefits {
    background: var(--cream);
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .benefit-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 44px 36px;
    position: relative;
    transition: all .35s ease;
  }
  .benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-600);
    box-shadow: 0 24px 50px -22px rgba(60, 60, 60, 0.25);
  }
  .benefit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    display: block;
  }
  .benefit-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .benefit-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }
  .benefit-icon {
    width: 56px; height: 56px;
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--green-100);
    border-radius: 50%;
  }
  .benefit-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  /* ============= OPTIONS (4 service formats) ============= */
  .options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .option-card {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 40px 36px;
    background: var(--paper);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: all .35s ease;
    cursor: pointer;
  }
  .option-card:hover {
    border-color: var(--green-700);
    background: var(--green-50);
  }
  .option-card-icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex; align-items: center; justify-content: center;
    transition: all .35s ease;
  }
  .option-card:hover .option-card-icon {
    background: var(--green-900);
  }
  .option-card-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s; }
  .option-card:hover .option-card-icon svg { stroke: var(--paper); }
  .option-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .option-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .option-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--green-900);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .option-link::after {
    content: '→';
    transition: transform .25s;
  }
  .option-card:hover .option-link::after { transform: translateX(4px); }

  /* ============= CHECKLIST (visit) ============= */
  .checklist {
    background: var(--green-900);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .checklist::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 192, 85, 0.1), transparent 70%);
  }
  .checklist .section-eyebrow { color: var(--green-400); }
  .checklist .section-eyebrow::before { background: var(--green-400); }
  .checklist h2 { color: var(--paper); }
  .checklist .section-lead { color: rgba(247, 244, 236, 0.75); }

  .checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .checklist-items { display: flex; flex-direction: column; gap: 4px; }
  .check-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(247, 244, 236, 0.12);
    align-items: start;
    cursor: default;
    transition: padding .3s;
  }
  .check-item:last-child { border-bottom: none; }
  .check-item:hover { padding-left: 8px; }
  .check-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
  }
  .check-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 8px;
  }
  .check-item p {
    font-size: 14.5px;
    color: rgba(247, 244, 236, 0.7);
    line-height: 1.65;
  }

  /* ============= EMERGENCY ============= */
  .emergency {
    background: var(--paper);
  }
  .emergency-wrap {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .emergency-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    pointer-events: none;
  }
  .emergency-pulse svg { width: 700px; height: 700px; stroke: var(--green-900); fill: none; stroke-width: 1; }

  .emergency-content { position: relative; z-index: 1; }
  .emergency-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-900);
    color: var(--paper);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .emergency-tag span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .emergency h2 { font-size: 42px; margin-bottom: 20px; }
  .emergency p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
  .emergency-features {
    display: flex; flex-direction: column; gap: 14px;
    position: relative; z-index: 1;
  }
  .emergency-features li {
    display: flex; align-items: flex-start; gap: 14px;
    list-style: none;
    padding: 18px 22px;
    background: var(--paper);
    border-radius: 4px;
    border: 1px solid var(--line);
  }
  .emergency-features li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
  .emergency-features strong { display: block; font-size: 15px; color: var(--green-900); margin-bottom: 2px; }
  .emergency-features span { font-size: 13.5px; color: var(--muted); }

  /* ============= TARIFFS ============= */
  .tariffs { background: var(--cream); }
  .tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .tariff {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    position: relative;
  }
  .tariff:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -25px rgba(60, 60, 60, 0.25);
  }
  .tariff.featured {
    background: var(--green-900);
    color: var(--paper);
    border-color: var(--green-900);
  }
  .tariff.featured h3,
  .tariff.featured .tariff-price { color: var(--paper); }
  .tariff.featured .tariff-includes li { color: rgba(247, 244, 236, 0.85); }
  .tariff.featured .tariff-includes li::before { background: var(--accent); }
  .tariff.featured .tariff-sub { color: rgba(247, 244, 236, 0.6); }
  .tariff.featured .tariff-meta { border-color: rgba(247, 244, 236, 0.15); color: rgba(247, 244, 236, 0.7); }

  .tariff-badge {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--accent);
    color: var(--green-900);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
  }

  .tariff h3 {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .tariff-sub {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
  }
  .tariff-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    color: var(--green-900);
    line-height: 1;
    margin-bottom: 6px;
  }
  .tariff-price .from {
    font-size: 16px;
    color: var(--muted);
    margin-right: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
  }
  .tariff.featured .tariff-price .from { color: rgba(247, 244, 236, 0.6); }
  .tariff-price .unit {
    font-size: 18px;
    font-weight: 400;
    color: var(--muted);
    margin-left: 4px;
  }
  .tariff.featured .tariff-price .unit { color: rgba(247, 244, 236, 0.6); }
  .tariff-meta {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 24px 0 28px;
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
  }
  .tariff-includes {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    flex-grow: 1;
  }
  .tariff-includes li {
    font-size: 14.5px;
    color: var(--ink);
    padding-left: 24px;
    position: relative;
    line-height: 1.55;
  }
  .tariff-includes li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 12px; height: 1px;
    background: var(--green-600);
  }
  .tariff-includes li.dim {
    color: var(--muted);
    opacity: 0.5;
    text-decoration: line-through;
  }
  .tariff .btn { width: 100%; }

  .tariffs-note {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
  }
  .tariffs-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

  /* ============= TRUST (why us) ============= */
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .trust-item {
    border-top: 1px solid var(--accent);
    padding-top: 32px;
  }
  .trust-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
  }
  .trust-item h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .trust-item p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ============= LOGOS (clients) ============= */
  .logos { background: var(--cream); padding: 90px 0; }
  .logos-head { text-align: center; margin-bottom: 56px; }
  .logos-head .section-eyebrow { justify-content: center; }
  .logos-head h2 { font-size: 38px; }
  .logos-track-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .logos-track {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
    width: max-content;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .logo-item {
    flex-shrink: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    opacity: 0.55;
    transition: all .3s;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  .logo-item:hover {
    opacity: 1;
    color: var(--green-900);
    border-color: var(--line);
  }

  /* ============= FAQ ============= */
  .faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .faq-items {
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-question {
    padding: 28px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--green-900);
    gap: 30px;
    transition: color .25s;
    user-select: none;
  }
  .faq-question:hover { color: var(--green-600); }
  .faq-toggle {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
    position: relative;
  }
  .faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--green-900);
    transition: transform .3s;
  }
  .faq-toggle::before { width: 12px; height: 1.2px; }
  .faq-toggle::after { width: 1.2px; height: 12px; }
  .faq-item.open .faq-toggle { background: var(--green-900); border-color: var(--green-900); }
  .faq-item.open .faq-toggle::before,
  .faq-item.open .faq-toggle::after { background: var(--paper); }
  .faq-item.open .faq-toggle::after { transform: rotate(90deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 28px;
  }

  /* ============= CTA + FORM ============= */
  .cta-section {
    background: var(--green-900);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 20%, rgba(162, 192, 85, 0.12), transparent 50%),
      radial-gradient(circle at 85% 80%, rgba(162, 192, 85, 0.15), transparent 50%);
  }
  .cta-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .cta-section .section-eyebrow { color: var(--green-400); }
  .cta-section .section-eyebrow::before { background: var(--green-400); }
  .cta-wrap h2 {
    color: var(--paper);
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 24px;
  }
  .cta-wrap p {
    color: rgba(247, 244, 236, 0.75);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .cta-bullets li {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px;
    color: rgba(247, 244, 236, 0.9);
  }
  .cta-bullets li::before {
    content: '';
    width: 18px; height: 18px;
    background: var(--green-700);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A2C055' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
  }

  .form-card {
    background: var(--paper);
    border-radius: 4px;
    padding: 48px;
    color: var(--ink);
  }
  .form-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .form-card .sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .form-row { margin-bottom: 18px; }
  .form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all .25s;
  }
  .form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none;
    border-color: var(--green-700);
    background: var(--paper);
  }
  .form-row textarea { resize: vertical; min-height: 90px; }
  .form-policy {
    font-size: 12.5px;
    color: #6b6b6b !important;
    margin-top: 18px;
    line-height: 1.55;
  }
  .form-policy a { color: #6f8c2e !important; text-decoration: underline; text-underline-offset: 3px; }

  /* ============= FOOTER ============= */
  footer {
    background: var(--green-900);
    color: rgba(247, 244, 236, 0.75);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(247, 244, 236, 0.1);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--paper);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-about {
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 320px;
  }
  .footer h4 {
    color: var(--paper);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    color: rgba(247, 244, 236, 0.75);
    text-decoration: none;
    font-size: 14.5px;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--paper); }
  .footer-bottom {
    border-top: 1px solid rgba(247, 244, 236, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(247, 244, 236, 0.5);
  }

  /* ============= MODAL ============= */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(60, 60, 60, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
  }
  .modal-overlay.show { display: flex; }
  .modal {
    background: var(--paper);
    border-radius: 8px;
    padding: 56px 48px;
    max-width: 440px;
    text-align: center;
    position: relative;
    animation: modalIn .35s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .modal-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--green-100);
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
  }
  .modal-icon svg { width: 30px; height: 30px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .modal h3 { font-size: 28px; margin-bottom: 14px; }
  .modal p { color: var(--muted); margin-bottom: 28px; }
  .modal-close {
    margin-top: 8px;
  }

  /* ============= RESPONSIVE ============= */
  @media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
    .benefits-grid, .options-grid, .tariffs-grid, .trust-grid { grid-template-columns: 1fr; gap: 18px; }
    .checklist-grid, .faq-wrap, .cta-wrap, .emergency-wrap { grid-template-columns: 1fr; gap: 50px; }
    .emergency-wrap { padding: 50px 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 640px) {
    
    .container { padding: 0 20px; }
    .container-wide { padding: 0 20px; }
    section { padding: 70px 0; }
    .stats { padding: 50px 0; }
    .stat-num { font-size: 48px; }
    .nav-links { display: none; }
    .hero { padding: 50px 0 70px; }
    .hero-badge.top { left: -10px; padding: 12px 16px; }
    .hero-badge.bot { right: -10px; padding: 12px 16px; }
    .hero-badge-text strong { font-size: 18px; }
    .form-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .section-head { margin-bottom: 40px; }
    .check-item { grid-template-columns: 36px 1fr; gap: 16px; padding: 22px 0; }
    .check-num { font-size: 22px; }
    .emergency-wrap { padding: 40px 24px; }
  }

  /* ============= BURGER + MOBILE MENU ============= */
  .burger {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: all .25s;
  }
  .burger:hover { border-color: var(--green-900); }
  .burger span {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: var(--green-900);
    transform: translateX(-50%);
    transition: all .3s ease;
  }
  .burger span:nth-child(1) { top: 16px; }
  .burger span:nth-child(2) { top: 21px; }
  .burger span:nth-child(3) { top: 26px; }
  .burger.open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 78px; left: 0; right: 0; bottom: 0;
    background: var(--paper);
    z-index: 99;
    overflow-y: auto;
    padding: 32px 24px 80px;
    animation: slideDown .3s ease;
  }
  .mobile-menu.open { display: block; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .mobile-menu-section {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }
  .mobile-menu-section:last-of-type { border-bottom: none; }
  .mobile-menu-section > a, .mobile-menu-section > button.mm-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--green-900);
    text-decoration: none;
    cursor: pointer;
    text-align: left;
  }
  .mobile-menu-section > button.mm-toggle::after {
    content: '';
    width: 8px; height: 8px;
    border-right: 1.5px solid var(--green-900);
    border-bottom: 1.5px solid var(--green-900);
    transform: rotate(45deg);
    transition: transform .25s;
  }
  .mobile-menu-section > button.mm-toggle.open::after {
    transform: rotate(-135deg);
  }
  .mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    margin-top: 0;
  }
  .mobile-submenu.open { max-height: 800px; margin-top: 14px; }
  .mobile-submenu li a {
    display: block;
    padding: 10px 0;
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: color .2s;
  }
  .mobile-submenu li a:hover, .mobile-submenu li a.active { color: var(--accent); }
  .mobile-menu-cta {
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }
  body.menu-open { overflow: hidden; }

  @media (max-width: 1024px) {
    .burger { display: block; }
    .nav .btn-primary { display: none; }
  }
  /* ============= ГЛОБАЛЬНЫЙ ПОПАП ОБРАТНОЙ СВЯЗИ ============= */
  .lead-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 31, 28, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .lead-popup-overlay.open { opacity: 1; visibility: visible; }
  .lead-popup {
    background: var(--paper);
    border-radius: 8px;
    padding: 44px;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(16px);
    transition: transform .3s ease;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
  }
  .lead-popup-overlay.open .lead-popup { transform: translateY(0); }
  .lead-popup-close {
    position: absolute;
    top: 18px; right: 20px;
    width: 36px; height: 36px;
    border: none;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    border-radius: 50%;
    transition: all .2s;
  }
  .lead-popup-close:hover { background: var(--cream); color: var(--green-900); }
  .lead-popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--green-900);
    margin-bottom: 8px;
  }
  .lead-popup-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 26px;
  }
  @media (max-width: 480px) {
    .lead-popup { padding: 32px 24px; }
    .lead-popup-title { font-size: 26px; }
  }

  /* ============= ФОТО-ФОН КАРТОЧКИ «СКОРАЯ ПОМОЩЬ» ============= */
  /* Фото — фон самой карточки (не всей секции) */
  .emergency-wrap { position: relative; overflow: hidden; }
  .emergency-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  /* затемнение поверх фото — чтобы текст читался */
  .emergency-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,31,28,0.68), rgba(26,31,28,0.80));
  }
  /* карточка с фото: своя заливка не нужна */
  .emergency-wrap:has(.emergency-bg) {
    background: transparent;
    border-color: rgba(255,255,255,0.12);
  }
  /* контент поверх фото */
  .emergency-wrap:has(.emergency-bg) .emergency-content,
  .emergency-wrap:has(.emergency-bg) .emergency-features { position: relative; z-index: 2; }
  .emergency-wrap:has(.emergency-bg) .emergency-pulse { display: none; }
  /* текст — светлый */
  .emergency-wrap:has(.emergency-bg) h2 { color: #fff; }
  .emergency-wrap:has(.emergency-bg) p { color: rgba(247,244,236,0.85); }
  .emergency-wrap:has(.emergency-bg) .emergency-features strong { color: #fff; }
  .emergency-wrap:has(.emergency-bg) .emergency-features span { color: rgba(247,244,236,0.72); }
  .emergency-wrap:has(.emergency-bg) .emergency-features li {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  /* Логотип в футере */
  .footer-logo-img { height: 42px; width: auto; max-width: 240px; display: block; }
