  :root {
    --bg: #F6F2E9;
    --surface: #FFFFFF;
    --green-600: #3A8259;
    --green-500: #4E9D6D;
    --green-400: #5FAF80;
    --green-100: #DCEEE1;
    --green-50: #E9F3EC;
    --ink: #16181A;
    --ink-muted: #5C6360;
    --ink-faint: #8A908C;
    --danger: #D9534F;
    --danger-bg: #FBE3E1;
    --hairline: rgba(22, 24, 26, 0.07);
    --display: ui-rounded, "SF Pro Rounded", "Avenir Next Rounded", "Avenir Next", system-ui, sans-serif;
    --text: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    --card-shadow: 0 1px 2px rgba(22, 24, 26, 0.04), 0 10px 30px rgba(22, 24, 26, 0.06);
    --gutter: clamp(20px, 5vw, 72px);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--text);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* фонови петна — фиксирани, но без background-attachment (стабилно на телефон) */
  body::before {
    content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
      radial-gradient(55% 45% at 88% -5%, rgba(94, 175, 128, 0.16), transparent 70%),
      radial-gradient(45% 40% at -5% 22%, rgba(94, 175, 128, 0.10), transparent 70%),
      radial-gradient(50% 40% at 50% 108%, rgba(94, 175, 128, 0.12), transparent 72%);
  }

  .wrap { max-width: 1140px; margin: 0 auto; padding-inline: var(--gutter); }
  a { color: inherit; text-decoration: none; }

  /* ---------- Header ---------- */
  header { padding-block: clamp(24px, 4vw, 40px); }
  .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 40px; height: 40px; border-radius: 12px; flex: none;
    background: linear-gradient(180deg, var(--green-500), var(--green-600));
    display: grid; place-items: center; color: #fff;
  }
  .brand-name { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; white-space: nowrap; }

  .nav { display: flex; gap: clamp(18px, 3vw, 32px); }
  .nav a { font-size: 15px; font-weight: 600; color: var(--ink-muted); transition: color 0.15s ease; }
  .nav a:hover { color: var(--green-600); }

  /* ---------- Общи ---------- */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--green-100); color: var(--green-600);
    font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 999px;
  }
  .eyebrow::before {
    content: ""; width: 7px; height: 7px; border-radius: 999px;
    background: var(--green-500); flex: none;
  }

  h1, h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.035em; line-height: 1.03; margin: 0; }
  h1 { font-size: clamp(42px, 5.8vw, 70px); }
  h1 .accent, h2 .accent { color: var(--green-500); }
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    h1 .accent, h2 .accent {
      background-image: linear-gradient(115deg, var(--green-500) 10%, #6FC08C 55%, var(--green-600));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
  }
  h2 { font-size: clamp(32px, 4.2vw, 48px); }

  .band { padding-block: clamp(56px, 8vw, 108px); }
  .band + .band { border-top: 1px solid var(--hairline); }
  .band > .eyebrow + h2 { margin: 22px 0 0; max-width: 17ch; }
  .band > h2 + .cards, .band > .eyebrow + .cards { margin-top: clamp(32px, 4vw, 52px); }
  .band > h2 { margin-bottom: 0; }

  /* ---------- Hero ---------- */
  .hero {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
    gap: clamp(32px, 5vw, 72px); align-items: center;
    padding-block: clamp(36px, 6vw, 84px);
  }
  .hero h1 { margin: 26px 0 22px; max-width: 12ch; }
  .hero .lede { color: var(--ink-muted); max-width: 42ch; margin: 0 0 32px; font-size: clamp(17px, 1.4vw, 19px); }

  .cta {
    display: inline-flex; align-items: center; justify-content: center;
    height: 56px; padding-inline: 34px;
    background: linear-gradient(180deg, var(--green-500), var(--green-600));
    color: #fff; border-radius: 999px;
    font-family: var(--display); font-weight: 700; font-size: 17px;
    box-shadow: 0 8px 20px rgba(58, 130, 89, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(58, 130, 89, 0.32); }
  .cta-note { font-size: 14.5px; color: var(--ink-faint); margin: 14px 0 0; }

  .pay-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: clamp(28px, 4vw, 44px); }
  .pay-row .pay-label { font-size: 15px; color: var(--ink-muted); margin-right: 6px; }
  .chip {
    padding: 10px 20px; border-radius: 999px; background: var(--surface);
    box-shadow: var(--card-shadow); font-size: 15px; font-weight: 700; white-space: nowrap;
  }
  .chip.soon {
    background: transparent; box-shadow: none;
    color: var(--ink-faint); font-weight: 500;
  }

  /* ---------- Телефон ---------- */
  .phone-stage { display: flex; justify-content: center; position: relative; }
  .phone-stage::before {
    content: ""; position: absolute; z-index: 0;
    width: 118%; aspect-ratio: 1; top: 50%; left: 50%; transform: translate(-50%, -48%);
    background: radial-gradient(closest-side, rgba(94, 175, 128, 0.30), transparent 72%);
    filter: blur(6px); pointer-events: none;
  }
  .phone {
    width: 292px; flex: none; background: #1F2421; position: relative; z-index: 1;
    border-radius: 46px; padding: 10px;
    box-shadow: 0 30px 60px rgba(22, 24, 26, 0.20), 0 6px 18px rgba(58, 130, 89, 0.14);
  }
  .screen { background: #FBF8F2; border-radius: 37px; overflow: hidden; position: relative; }
  .notch {
    position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
    width: 92px; height: 22px; background: #1F2421; border-radius: 999px;
  }
  .screen-body { padding: 44px 15px 12px; }

  .entrance {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green-100); color: var(--green-600);
    font-size: 11.5px; font-weight: 700; padding: 7px 13px;
    border-radius: 999px; margin-bottom: 14px;
  }
  .greeting { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
  .greeting-sub { font-size: 13px; color: var(--ink-muted); margin-top: 1px; line-height: 1.4; }

  .m-card {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 20px; padding: 15px; box-shadow: var(--card-shadow); margin-top: 14px;
  }
  .m-card.due { background: linear-gradient(170deg, #FFFFFF, #F3F9F4); }
  .m-label {
    font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--ink-faint); line-height: 1.4;
  }
  .m-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
  .m-badge {
    font-size: 10.5px; font-weight: 800; padding: 4px 9px; border-radius: 999px;
    background: var(--danger-bg); color: var(--danger); white-space: nowrap; flex: none;
  }
  .m-amount {
    font-family: ui-monospace, "SF Mono", Menlo, monospace; font-variant-numeric: tabular-nums;
    font-size: 33px; font-weight: 800; letter-spacing: -0.02em; color: var(--danger); margin: 8px 0 6px;
  }
  .m-split {
    display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
    font-size: 11.5px; color: var(--ink-muted); padding: 3px 0; line-height: 1.35;
  }
  .m-split span:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; font-weight: 700; }
  .m-due { font-size: 12px; color: var(--ink-muted); margin-top: 6px; }
  .m-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    height: 44px; margin-top: 12px; border-radius: 999px;
    background: linear-gradient(180deg, var(--green-500), var(--green-600));
    color: #fff; font-family: var(--display); font-weight: 700; font-size: 15px;
    box-shadow: 0 6px 16px rgba(58, 130, 89, 0.28);
  }
  .notice { display: flex; gap: 10px; margin-top: 8px; }
  .notice-dot { width: 26px; height: 26px; border-radius: 8px; background: var(--green-50); flex: none; }
  .notice-title { font-size: 13px; font-weight: 700; line-height: 1.35; display: block; }
  .notice-text { font-size: 12px; color: var(--ink-muted); line-height: 1.4; margin-top: 2px; display: block; }

  .tabbar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 11px 6px 16px; margin-top: 14px;
    border-top: 1px solid var(--hairline); background: var(--surface);
  }
  .tab { display: flex; flex-direction: column; align-items: center; gap: 5px; }
  .tab-icon { width: 18px; height: 18px; border-radius: 6px; background: #DDDEDA; }
  .tab-label { font-size: 10px; color: var(--ink-faint); font-weight: 600; }
  .tab.active .tab-icon { background: var(--green-500); }
  .tab.active .tab-label { color: var(--green-600); font-weight: 700; }

  /* ---------- Карти ---------- */
  .cards { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .card {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 24px; padding: 28px 26px 30px; box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(22, 24, 26, 0.08); }
  .cards > .card:nth-child(3n) { margin-top: clamp(18px, 2.6vw, 40px); }

  .card-icon {
    width: 44px; height: 44px; border-radius: 13px; margin-bottom: 18px;
    background: var(--green-50); color: var(--green-600); display: grid; place-items: center;
  }
  .card h3 {
    font-family: var(--display); font-weight: 800; font-size: 19px;
    letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 9px;
  }
  .card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-muted); }

  /* ---------- За домоуправители ---------- */
  .manager {
    display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px); align-items: center;
  }
  .manager h2 { max-width: 13ch; }
  .manager .lede { color: var(--ink-muted); margin: 20px 0 0; max-width: 40ch; }
  .m-list { display: grid; gap: 14px; }
  .m-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 20px; padding: 20px 22px; box-shadow: var(--card-shadow);
  }
  .m-item .tick {
    width: 28px; height: 28px; border-radius: 9px; flex: none;
    background: var(--green-50); color: var(--green-600); display: grid; place-items: center;
  }
  .m-item strong { font-family: var(--display); font-size: 17px; letter-spacing: -0.02em; display: block; }
  .m-item p { margin: 3px 0 0; font-size: 15px; color: var(--ink-muted); line-height: 1.5; }

  /* ---------- Спокойствие ---------- */
  .assure { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 44px); }
  .assure div strong { font-family: var(--display); font-size: 17.5px; letter-spacing: -0.02em; display: block; margin-bottom: 6px; }
  .assure div p { margin: 0; font-size: 15.5px; color: var(--ink-muted); line-height: 1.5; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--hairline); }
  .footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px; padding-block: clamp(28px, 4vw, 44px);
  }
  .footer-inner .copy { font-size: 15px; color: var(--ink-muted); }

  /* ---------- Адаптивност ---------- */
  @media (max-width: 980px) {
    .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cards > .card:nth-child(3n) { margin-top: 0; }
    .manager { grid-template-columns: minmax(0, 1fr); }
    .assure { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  }
  @media (max-width: 860px) {
    .hero {
      grid-template-columns: minmax(0, 1fr);
      padding-block: clamp(20px, 4vw, 40px);
      gap: clamp(28px, 6vw, 48px);
      text-align: center;
    }
    .hero h1 { max-width: 14ch; margin-inline: auto; }
    .hero .lede { max-width: none; }
    .hero .cta-note { margin-bottom: 0; }
    /* мокъпът си остава ляво подравнен, като в приложението */
    .hero .phone { text-align: left; }
    /* заглавието и бутонът остават първи — телефонът идва под тях */
    .phone-stage { order: 0; }
  }
  @media (max-width: 620px) {
    body { font-size: 16px; }
    .cards { grid-template-columns: minmax(0, 1fr); }
    .cta { width: 100%; }
    .nav { display: none; }
    .chip { padding: 9px 16px; font-size: 14px; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .card, .cta { transition: none; }
  }

  /* ---------- Бутон „Свържи се с нас“ в хедъра ---------- */
  .header-actions { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); }
  .btn-contact {
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding-inline: 22px; border-radius: 999px;
    background: linear-gradient(180deg, var(--green-500), var(--green-600));
    color: #fff; font-family: var(--display); font-weight: 700; font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(58, 130, 89, 0.26);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-contact:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(58, 130, 89, 0.3); }

  /* ---------- Страница „Свържи се с нас“ ---------- */
  .contact-hero { padding-block: clamp(36px, 6vw, 76px) clamp(28px, 4vw, 48px); }
  .contact-hero h1 { margin: 24px 0 20px; max-width: 15ch; }
  .contact-hero .lede { color: var(--ink-muted); max-width: 50ch; margin: 0; font-size: clamp(17px, 1.4vw, 19px); }

  .contact-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    gap: clamp(24px, 3vw, 40px); align-items: start;
    padding-bottom: clamp(56px, 8vw, 104px);
  }

  .booking {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 24px; padding: 10px; box-shadow: var(--card-shadow);
    overflow: hidden;
  }
  .booking iframe {
    display: block; width: 100%; height: 680px;
    border: 0; border-radius: 16px;
  }

  .contact-aside { display: grid; gap: clamp(16px, 2vw, 20px); }
  .contact-card {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 24px; padding: 26px 24px 28px; box-shadow: var(--card-shadow);
  }
  .contact-card .card-icon { margin-bottom: 16px; }
  .contact-card h2 {
    font-size: 21px; letter-spacing: -0.02em; margin: 0 0 8px;
  }
  .contact-card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-muted); }
  .contact-mail {
    display: inline-block; margin-top: 14px;
    font-family: var(--display); font-weight: 800; font-size: 18px;
    letter-spacing: -0.02em; color: var(--green-600);
    border-bottom: 2px solid var(--green-100);
    transition: border-color 0.15s ease;
  }
  .contact-mail:hover { border-bottom-color: var(--green-500); }

  .steps { display: grid; gap: 14px; margin: 16px 0 0; padding: 0; list-style: none; }
  .steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-muted); line-height: 1.5; }
  .steps .n {
    width: 26px; height: 26px; border-radius: 999px; flex: none;
    background: var(--green-50); color: var(--green-600);
    display: grid; place-items: center;
    font-family: var(--display); font-weight: 800; font-size: 13px;
  }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
    .booking iframe { height: 620px; }
  }
  @media (max-width: 620px) {
    .header-actions .nav { display: none; }
    .btn-contact { height: 40px; padding-inline: 16px; font-size: 14px; }
    .booking { padding: 8px; }
    .booking iframe { height: 560px; }
  }

  /* ---------- Две аудитории ---------- */
  .audience {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px); margin-top: 0;
  }
  .aud-card {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 28px; padding: clamp(26px, 3vw, 40px);
    box-shadow: var(--card-shadow);
    display: flex; flex-direction: column;
  }
  .aud-card .card-icon {
    width: 52px; height: 52px; border-radius: 16px; margin-bottom: 18px;
    background: linear-gradient(160deg, var(--green-500), var(--green-600));
    color: #fff; box-shadow: 0 8px 18px rgba(58, 130, 89, 0.26);
  }
  .aud-sub { display: block; font-size: 14px; color: var(--ink-muted); margin-top: 4px; }
  .aud-card .aud-kicker {
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--green-600);
  }
  .aud-card h2 {
    font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.03em;
    margin: 8px 0 18px; max-width: 16ch;
  }
  .aud-text { font-size: 16.5px; line-height: 1.62; color: var(--ink-muted); margin: 0 0 26px; }
  .feats { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
  .feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink-muted); }
  .feats li strong { color: var(--ink); font-weight: 700; }
  .feats .tick {
    width: 24px; height: 24px; border-radius: 8px; flex: none; margin-top: 1px;
    background: var(--green-50); color: var(--green-600); display: grid; place-items: center;
  }
  .aud-card .aud-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
    font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--green-600);
    transition: gap 0.15s ease;
  }
  .aud-card .aud-cta:hover { gap: 12px; }

  /* ---------- Аудитории: подточки и функции ---------- */
  /* ---------- НОВО: подточки вътре в картата ---------- */
    .aud-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
    .aud-list li {
      display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px;
      font-size: 16px; line-height: 1.5; color: var(--ink-muted);
    }
    .aud-list .dot {
      width: 22px; height: 22px; border-radius: 7px; margin-top: 2px;
      background: var(--green-50); color: var(--green-600);
      display: grid; place-items: center;
    }
    .aud-lead { font-size: 16px; line-height: 1.55; color: var(--ink-muted); margin: 0 0 18px; }
    /* иконката е готова рисунка — запълва зелената кутия изцяло */
    .aud-card .card-icon img { display: block; width: 100%; height: 100%; }
    .aud-close {
      font-size: 16px; line-height: 1.55; color: var(--green-600); font-weight: 700;
      margin: 0 0 26px;
    }
    /* подточките, които описват фирмите — леко навътре, за да се вижда че са към тях */
    .aud-sublist { padding-left: 34px; }
    .aud-sublist .aud-lead { margin: 0 0 12px; }

    /* ---------- НОВО: секция с функциите ---------- */
    .features {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(14px, 1.8vw, 22px);
      margin-top: clamp(32px, 4vw, 52px);
    }
    .feature {
      background: var(--surface); border: 1px solid var(--hairline);
      border-radius: 20px; padding: clamp(20px, 2.2vw, 26px);
    }
    .feature .f-icon {
      width: 40px; height: 40px; border-radius: 12px; margin-bottom: 14px;
      background: var(--green-50); color: var(--green-600);
      display: grid; place-items: center;
    }
    .feature h3 {
      font-family: var(--display); font-weight: 800;
      font-size: 17px; letter-spacing: -0.015em; color: var(--ink);
      margin: 0 0 6px;
    }
    .feature p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-muted); }

    /* картата за гласовите команди хваща целия ред — иначе остава сама на четвърти */
    .feature-wide {
      grid-column: 1 / -1;
      display: grid; grid-template-columns: 40px minmax(0, 1fr);
      gap: 16px; align-items: start;
    }
    .feature-wide .f-icon { margin-bottom: 0; }
    .feature-wide .f-head {
      display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 6px;
    }
    .feature-wide h3 { margin: 0; }
    .f-tag {
      font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
      padding: 3px 10px; border-radius: 999px; white-space: nowrap;
      background: var(--green-50); color: var(--green-600);
    }
    /* примерът с изреченото — той обяснява функцията по-добре от описанието */
    .feature-wide .f-primer {
      margin: 10px 0 0; padding: 11px 15px; border-radius: 12px;
      background: var(--green-50); color: var(--ink-muted);
      font-size: 14.5px; line-height: 1.55;
    }
    .feature-wide .f-primer b { color: var(--green-600); font-weight: 700; }

    @media (max-width: 900px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    @media (max-width: 560px) { .features { grid-template-columns: minmax(0, 1fr); } }

  /* ---------- Финален призив ---------- */
  .cta-band { padding-block: clamp(56px, 8vw, 104px); }
  .cta-inner {
    background: linear-gradient(160deg, var(--green-500), var(--green-600));
    border-radius: 32px; padding: clamp(36px, 5vw, 68px);
    text-align: center; color: #fff;
    box-shadow: 0 20px 44px rgba(58, 130, 89, 0.28);
  }
  .cta-inner h2 { color: #fff; max-width: 20ch; margin: 0 auto 14px; }
  .cta-inner p { margin: 0 auto 30px; max-width: 46ch; font-size: 17.5px; color: rgba(255,255,255,0.9); line-height: 1.55; }
  .cta-light {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 56px; padding-inline: 36px; border-radius: 999px;
    background: #fff; color: var(--green-600);
    font-family: var(--display); font-weight: 800; font-size: 17px;
    box-shadow: 0 8px 20px rgba(22, 24, 26, 0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .cta-light:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(22, 24, 26, 0.18); }

  @media (max-width: 780px) {
    .audience { grid-template-columns: minmax(0, 1fr); }
  }

  /* ---------- Лента с методи на плащане ---------- */
  .pay-band {
    display: flex; justify-content: center;
    padding-block: clamp(20px, 3vw, 40px);
  }
  .pay-band .pay-row { margin-top: 0; justify-content: center; }

  /* ---------- Калкулатор ---------- */
  .calc {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 28px; box-shadow: var(--card-shadow);
    padding: clamp(28px, 4vw, 48px); max-width: 720px; margin: 0 auto;
  }
  .calc-head { text-align: center; margin-bottom: clamp(24px, 3vw, 36px); }
  .calc-head h2 { margin: 14px 0 10px; }
  .calc-head p { margin: 0; color: var(--ink-muted); max-width: 42ch; margin-inline: auto; }

  .calc-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 24px); }

  .calc-field {
    display: flex; flex-direction: column; justify-content: center; gap: 14px;
    background: var(--bg); border-radius: 20px; padding: clamp(20px, 3vw, 28px);
  }
  .calc-label { font-weight: 700; font-size: 15px; color: var(--ink-muted); }
  .stepper { display: flex; align-items: center; gap: 10px; }
  .step {
    width: 46px; height: 46px; flex: none; border-radius: 999px;
    border: 1.5px solid var(--hairline); background: var(--surface);
    font-size: 24px; font-weight: 700; color: var(--green-600); cursor: pointer;
    display: grid; place-items: center; line-height: 1;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .step:hover { border-color: var(--green-500); background: var(--green-50); }
  .calc-input {
    flex: 1; min-width: 0; text-align: center;
    font-family: var(--display); font-weight: 800; font-size: 28px; color: var(--ink);
    background: var(--surface); border: 1.5px solid var(--hairline);
    border-radius: 14px; height: 52px; -moz-appearance: textfield;
  }
  .calc-input:focus { outline: none; border-color: var(--green-500); }
  .calc-input::-webkit-outer-spin-button,
  .calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  .calc-result {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; gap: 8px;
    background: linear-gradient(160deg, var(--green-500), var(--green-600));
    border-radius: 20px; padding: clamp(20px, 3vw, 28px); color: #fff;
    box-shadow: 0 10px 24px rgba(58, 130, 89, 0.24);
  }
  .calc-result-label {
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(255, 255, 255, 0.85);
  }
  .calc-amount {
    font-family: ui-monospace, "SF Mono", Menlo, monospace; font-variant-numeric: tabular-nums;
    font-weight: 800; font-size: clamp(30px, 4vw, 40px); letter-spacing: -0.02em;
    line-height: 1; white-space: nowrap;
  }
  .calc-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.8); }

  @media (max-width: 560px) { .calc-body { grid-template-columns: 1fr; } }

  /* ---------- Плавно появяване при скрол ---------- */
  @media (prefers-reduced-motion: no-preference) {
    html.anim .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                  transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: opacity, transform;
    }
    html.anim .reveal.in {
      opacity: 1;
      transform: none;
    }
  }

  /* Плавно появяване на hero при зареждане (чист CSS, винаги видимо в основата) */
  @media (prefers-reduced-motion: no-preference) {
    @keyframes ndFadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: none; }
    }
    .hero > div:first-child > * {
      animation: ndFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
    .hero > div:first-child > *:nth-child(2) { animation-delay: 0.10s; }
    .hero > div:first-child > *:nth-child(3) { animation-delay: 0.20s; }
    .phone { animation: ndFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both 0.14s; }
  }

  /* ---------- Въпроси и отговори ---------- */
  .faq { max-width: 720px; margin: 0 auto; }
  .faq-head { text-align: center; margin-bottom: clamp(24px, 3vw, 36px); }

  .faq-item {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 20px; box-shadow: var(--card-shadow);
    margin-bottom: 12px; overflow: hidden;
  }
  .faq-item summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px;
    font-family: var(--display); font-weight: 700; font-size: 17px;
    letter-spacing: -0.01em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--green-600); }
  .faq-chev {
    flex: none; color: var(--green-600); font-size: 14px;
    transition: transform 0.2s ease;
  }
  .faq-item[open] .faq-chev { transform: rotate(180deg); }
  .faq-item p {
    margin: 0; padding: 0 22px 20px;
    font-size: 15.5px; line-height: 1.6; color: var(--ink-muted);
  }

  .faq-link { color: var(--green-600); font-weight: 700; border-bottom: 2px solid var(--green-100); transition: border-color 0.15s ease; }
  .faq-link:hover { border-bottom-color: var(--green-500); }

  /* ---------- Падащо меню ---------- */
  .menu-wrap { position: relative; }
  .menu-btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 44px; padding-inline: 20px; border-radius: 999px;
    background: var(--surface); border: 1.5px solid var(--hairline);
    font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink);
    cursor: pointer; box-shadow: var(--card-shadow);
    transition: border-color 0.15s ease, color 0.15s ease;
  }
  .menu-btn:hover { border-color: var(--green-500); color: var(--green-600); }
  .menu-btn .menu-chev { font-size: 11px; color: var(--green-600); transition: transform 0.2s ease; }
  .menu-wrap.open .menu-btn .menu-chev { transform: rotate(180deg); }

  .menu {
    position: absolute; top: calc(100% + 12px); right: 0; z-index: 50;
    width: min(330px, calc(100vw - 2 * var(--gutter)));
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 22px; padding: 10px;
    box-shadow: 0 4px 10px rgba(22, 24, 26, 0.06), 0 24px 48px rgba(22, 24, 26, 0.14);
    opacity: 0; transform: translateY(8px) scale(0.98); transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .menu-wrap.open .menu { opacity: 1; transform: none; pointer-events: auto; }

  .menu a {
    display: flex; align-items: center; gap: 13px;
    padding: 11px 12px; border-radius: 15px;
    transition: background 0.13s ease;
  }
  .menu a:hover { background: var(--green-50); }
  .menu-ic {
    width: 40px; height: 40px; border-radius: 12px; flex: none;
    background: var(--green-50); color: var(--green-600);
    display: grid; place-items: center;
  }
  .menu a:hover .menu-ic { background: var(--surface); }
  .menu-t { font-family: var(--display); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; }
  .menu-s { display: block; font-size: 13px; color: var(--ink-muted); margin-top: 1px; }

  @media (max-width: 620px) {
    .menu-btn { height: 40px; padding-inline: 15px; font-size: 14px; }
  }

  /* ---------- Хоризонтално меню в хедъра ---------- */
  .topnav { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 14px); }
  .topnav a {
    position: relative;
    padding: 9px 14px; border-radius: 999px;
    font-size: 15.5px; font-weight: 600; color: var(--ink-muted);
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .topnav a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; border-radius: 2px; background: var(--green-500);
    transform: scaleX(0); transform-origin: center;
    transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .topnav a:hover { color: var(--green-600); background: var(--green-50); }
  .topnav a:hover::after { transform: scaleX(1); }

  @media (max-width: 1040px) {
    .topnav a { padding: 8px 10px; font-size: 14.5px; }
    .topnav a::after { left: 10px; right: 10px; }
  }
  @media (max-width: 1000px) { .topnav { display: none; } }

  /* ---------- Силуети на сгради в hero ---------- */
  .hero { position: relative; }
  .hero > div, .hero > .phone-stage { position: relative; z-index: 1; }
  .hero-band > .wrap { position: relative; z-index: 1; }

  .skyline {
    position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0;
    width: 100%; height: 100%;
    color: var(--green-600); opacity: 0.15;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to top, #000 40%, rgba(0,0,0,.55) 68%, transparent 100%);
    mask-image: linear-gradient(to top, #000 40%, rgba(0,0,0,.55) 68%, transparent 100%);
  }
  .skyline .win rect { fill: currentColor; fill-opacity: 0.14; stroke: none; }
  .skyline .sky-tree { opacity: 0.75; }

  @media (prefers-reduced-motion: no-preference) {
    @keyframes ndWindow {
      0%, 42%   { fill-opacity: 0.10; }
      50%, 88%  { fill-opacity: 0.85; }
      100%      { fill-opacity: 0.10; }
    }
    .skyline .win rect {
      animation: ndWindow 7s ease-in-out infinite;
      animation-delay: var(--d, 0s);
    }
  }

  @media (max-width: 860px) { .skyline { opacity: 0.12; } }

  /* ---------- Хамбургер за телефон ---------- */
  header { position: relative; }
  .burger {
    display: none; flex: none;
    width: 44px; height: 44px; padding: 0;
    border-radius: 14px; border: 0;
    background: transparent; box-shadow: none;
    cursor: pointer;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
  }
  .burger span {
    display: block; width: 18px; height: 2.5px; border-radius: 2px;
    background: var(--green-600);
    transition: transform 0.22s ease, opacity 0.18s ease;
  }
  body.mm-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.mm-open .burger span:nth-child(2) { opacity: 0; }
  body.mm-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobilemenu {
    display: none; flex-direction: column; gap: 4px;
    margin: 14px var(--gutter) 0;
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 22px; padding: 10px;
    box-shadow: 0 4px 10px rgba(22, 24, 26, 0.06), 0 24px 48px rgba(22, 24, 26, 0.14);
    opacity: 0; transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .mobilemenu a {
    padding: 14px 16px; border-radius: 15px;
    font-family: var(--display); font-weight: 700; font-size: 16.5px;
    transition: background 0.13s ease, color 0.13s ease;
  }
  .mobilemenu a:hover { background: var(--green-50); color: var(--green-600); }
  .mobilemenu .mm-cta {
    margin-top: 4px; text-align: center;
    background: linear-gradient(180deg, var(--green-500), var(--green-600));
    color: #fff; border-radius: 999px;
  }
  .mobilemenu .mm-cta:hover { color: #fff; }

  @media (max-width: 1000px) {
    .burger { display: flex; }
    .header-actions .btn-contact { display: none; }
    body.mm-open .mobilemenu { display: flex; opacity: 1; transform: none; }
  }

  /* ---------- Сгради: full-width секция, без 100vw ---------- */
  .hero-band {
    position: relative;
    overflow: hidden;            /* пази сградите вътре, без страничен отстъп */
  }
  .skyline {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    left: 0; right: 0; transform: none;
  }
  /* на телефон: сградите се показват по-едро и по-нависоко, за да се виждат добре */
  @media (max-width: 900px) {
    .skyline {
      width: 130%; left: 50%; transform: translateX(-50%);
      height: 78%; top: auto; bottom: 0;
      opacity: 0.26;
      -webkit-mask-image: linear-gradient(to top, #000 62%, rgba(0,0,0,.7) 84%, transparent 100%);
      mask-image: linear-gradient(to top, #000 62%, rgba(0,0,0,.7) 84%, transparent 100%);
    }
  }
  @media (max-width: 560px) {
    .skyline { width: 160%; height: 74%; opacity: 0.28; }
  }
  @media (max-width: 400px) {
    .skyline { width: 185%; height: 70%; }
  }
  html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    max-width: 100%;
  }

  /* ---------- Правни страници (Общи условия, Поверителност) ---------- */
  .legal-hero { padding-block: clamp(36px, 6vw, 72px) clamp(20px, 3vw, 32px); }
  .legal-hero h1 { margin: 24px 0 18px; max-width: 16ch; }
  .legal-hero .lede { color: var(--ink-muted); max-width: 56ch; margin: 0; font-size: clamp(17px, 1.4vw, 19px); }
  .legal-meta {
    margin: 18px 0 0; font-size: 14.5px; color: var(--ink-faint);
    letter-spacing: 0.01em;
  }

  .legal-status {
    max-width: 62ch; margin: 20px 0 0; padding: 14px 18px;
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: 14px;
    font-size: 15px; line-height: 1.6; color: var(--ink-muted);
  }

  .legal {
    max-width: 860px; margin-inline: auto;
    padding-bottom: clamp(56px, 8vw, 104px);
  }
  .legal h2 {
    font-family: var(--display); font-size: clamp(20px, 2vw, 24px);
    letter-spacing: -0.02em; margin: clamp(36px, 4vw, 52px) 0 14px;
    scroll-margin-top: 24px;
  }
  .legal p { margin: 0 0 14px; color: var(--ink-muted); font-size: 16.5px; line-height: 1.7; }
  .legal p strong, .legal li strong { color: var(--ink); font-weight: 700; }
  .legal ul, .legal ol { margin: 0 0 18px; padding-left: 22px; }
  .legal li { color: var(--ink-muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 8px; }
  .legal a { color: var(--green-600); border-bottom: 1px solid var(--green-100); }
  .legal a:hover { border-bottom-color: var(--green-500); }

  .legal-toc {
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 24px; padding: 26px 28px 22px; box-shadow: var(--card-shadow);
  }
  .legal-toc h2 { margin: 0 0 14px; font-size: 18px; }
  .legal-toc ol {
    margin: 0; padding-left: 20px;
    columns: 2; column-gap: 32px;
  }
  .legal-toc li { font-size: 15px; margin-bottom: 6px; break-inside: avoid; }
  .legal-toc a { border-bottom: 0; }
  .legal-toc a:hover { color: var(--green-600); }

  .legal h3 {
    font-family: var(--display); font-weight: 800; font-size: 17.5px;
    letter-spacing: -0.02em; line-height: 1.3;
    margin: 26px 0 10px; color: var(--ink);
  }

  .legal-table-wrap {
    margin: 18px 0 20px; overflow-x: auto;
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 20px; box-shadow: var(--card-shadow);
  }
  .legal-table-wrap table {
    width: 100%; min-width: 520px;
    border-collapse: collapse; font-size: 15.5px;
  }
  .legal-table-wrap th, .legal-table-wrap td {
    text-align: left; padding: 13px 18px; vertical-align: top;
    border-bottom: 1px solid var(--hairline); line-height: 1.55;
  }
  .legal-table-wrap thead th {
    font-family: var(--display); font-weight: 800; font-size: 13px;
    letter-spacing: 0.03em; text-transform: uppercase;
    color: var(--green-600); background: var(--green-50);
    white-space: nowrap;
  }
  .legal-table-wrap td { color: var(--ink-muted); }
  .legal-table-wrap tbody tr:last-child th,
  .legal-table-wrap tbody tr:last-child td { border-bottom: 0; }

  .legal-facts { list-style: none; padding: 0; margin: 18px 0 14px; display: grid; gap: 10px; }
  .legal-facts li {
    display: grid; grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 12px; padding: 12px 16px; margin: 0;
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 14px; font-size: 15.5px;
  }
  .legal-facts span { color: var(--ink-faint); }
  .legal-facts strong { color: var(--ink); font-weight: 600; }

  .legal-note {
    font-size: 14.5px !important; color: var(--ink-faint) !important;
    border-left: 3px solid var(--green-100); padding-left: 14px;
  }

  .legal-annex {
    margin-top: clamp(40px, 5vw, 64px);
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: 24px; padding: 28px 30px 26px; box-shadow: var(--card-shadow);
  }
  .legal-annex h2 { margin-top: 0; }
  .legal-form { list-style: none; padding: 0; }
  .legal-form li { font-size: 15.5px; color: var(--ink); }

  .footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
  .footer-legal a { font-size: 15px; font-weight: 600; color: var(--ink-muted); }
  .footer-legal a:hover { color: var(--green-600); }

  @media (max-width: 620px) {
    .legal-toc ol { columns: 1; }
    .legal-facts li { grid-template-columns: minmax(0, 1fr); gap: 2px; }
    .legal-annex { padding: 22px 20px; border-radius: 20px; }
  }

  /* на телефон мокъпът е леко по-малък, за да се виждат сградите отстрани */
  @media (max-width: 560px) {
    .phone { width: 270px; border-radius: 42px; padding: 9px; }
    .phone .screen { border-radius: 34px; }
    .phone .screen-body { padding: 40px 13px 10px; }
    .phone .entrance { font-size: 10.5px; padding: 6px 11px; }
    .phone .m-label { font-size: 9.5px; letter-spacing: 0.05em; }
    .phone .m-badge { font-size: 10px; padding: 4px 8px; }
    .phone .m-amount { font-size: 31px; }
    .phone .tab-label { font-size: 9.5px; }
  }
  @media (max-width: 400px) {
    .phone { width: 258px; }
  }

  /* ---------- Страница 404 ---------- */
  .notfound { padding-block: clamp(56px, 9vw, 128px) clamp(80px, 12vw, 176px); }
  .notfound h1 { margin: 24px 0 20px; max-width: 14ch; }
  .notfound .lede {
    color: var(--ink-muted); max-width: 46ch; margin: 0 0 32px;
    font-size: clamp(17px, 1.4vw, 19px);
  }
  .notfound-links { margin: 26px 0 0; font-size: 15.5px; color: var(--ink-faint); }
  .notfound-links a { color: var(--green-600); border-bottom: 1px solid var(--green-100); }
  .notfound-links a:hover { border-bottom-color: var(--green-500); }
