/* ==========================================================================
   ВАСИЛЕВ И СИН 77 ЕООД — Отпушване на канали и откриване на течове
   Палитра и типография: продължение на съществуващия бус и банер.
   ========================================================================== */

:root {
  --navy-950: #04101f;
  --navy-900: #08203f;
  --navy-800: #0d2f5a;
  --navy-700: #14487f;
  --navy-600: #1d63a8;

  --red-700:  #a90d1a;
  --red-600:  #d81324;
  --red-500:  #ef1f2f;

  --cyan-400: #33a7e0;
  --cyan-200: #a9dcf5;

  --mist-50:  #f4f8fc;
  --mist-100: #e7eff7;
  --mist-200: #cfdcea;
  --mist-300: #a9bed3;

  --slate-500: #5d7086;
  --ink:       #0a1524;
  --white:     #ffffff;

  --amber-400: #ffb020;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Fira Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --radius: 4px;
  --bar-h: 72px;

  --shadow-sm: 0 1px 2px rgba(4,16,31,.08), 0 2px 8px rgba(4,16,31,.06);
  --shadow-md: 0 4px 12px rgba(4,16,31,.10), 0 12px 32px rgba(4,16,31,.10);
  --shadow-red: 0 4px 0 var(--red-700), 0 10px 24px rgba(216,19,36,.34);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-700); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: .002em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--amber-400);
  outline-offset: 3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber-400); color: var(--ink); padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- eyebrow / section heads ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-600); margin: 0 0 12px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::after { content: ""; height: 1px; flex: 1; background: var(--mist-200); max-width: 90px; }
.eyebrow--light { color: var(--cyan-400); }
.eyebrow--light::after { background: rgba(255,255,255,.18); }

.sec-h {
  font-size: clamp(29px, 4.2vw, 44px);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 18px; color: var(--slate-500); max-width: 62ch; margin-bottom: 0;
}
.sec-head { margin-bottom: 40px; }

section { padding: 68px 0; }
.sec--mist { background: var(--mist-50); }
.sec--navy { background: var(--navy-900); color: var(--mist-100); }
.sec--navy .sec-h { color: var(--white); }
.sec--navy .sec-sub { color: var(--mist-300); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hdr-in {
  height: var(--bar-h);
  display: flex; align-items: center; gap: 22px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  background: var(--red-600); border-radius: 3px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff;
  letter-spacing: -.02em;
}
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  color: var(--white); text-transform: uppercase; letter-spacing: .01em;
}
.brand-sub { font-size: 11px; color: var(--mist-300); letter-spacing: .07em; text-transform: uppercase; }

.nav { display: flex; gap: 4px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--mist-200); text-decoration: none;
  padding: 8px 12px; border-radius: 3px; white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav a:hover { background: rgba(255,255,255,.09); color: var(--white); }
.nav a[aria-current="page"] { color: var(--white); box-shadow: inset 0 -2px 0 var(--red-600); }

.hdr-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red-600); color: #fff; text-decoration: none;
  padding: 11px 18px; border-radius: 3px;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
  transition: background .15s, transform .1s;
}
.hdr-call:hover { background: var(--red-500); }
.hdr-call:active { transform: translateY(1px); }
.hdr-call svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

.burger {
  display: none; background: none; border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px; width: 42px; height: 42px; cursor: pointer;
  padding: 0; place-items: center;
}
.burger span { display: block; width: 20px; height: 2px; background: #fff; margin: 3px auto; transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; padding: 0;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 78% 8%, rgba(51,167,224,.20), transparent 62%),
    radial-gradient(700px 400px at 6% 96%, rgba(20,72,127,.42), transparent 68%);
  pointer-events: none;
}
.hero-in {
  position: relative; z-index: 2;
  display: block; max-width: 760px;
  padding: 56px 20px 62px;
}

.live {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px; padding: 7px 15px 7px 12px; margin-bottom: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2bd66a; flex: none;
  box-shadow: 0 0 0 0 rgba(43,214,106,.7);
  animation: ping 2.2s cubic-bezier(.66,0,0,1) infinite;
}
@keyframes ping {
  70%  { box-shadow: 0 0 0 9px rgba(43,214,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,214,106,0); }
}

.hero h1 {
  font-size: clamp(34px, 5.3vw, 60px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--cyan-400); }

/* Градовете живеят вътре в H1: и за Google, и за окото на клиента. */
.h1-towns { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.h1-towns span {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  letter-spacing: .03em; text-transform: none; line-height: 1.4;
  background: rgba(51,167,224,.14); border: 1px solid rgba(51,167,224,.38);
  color: var(--cyan-200); border-radius: 100px; padding: 5px 13px;
}

.hero-lead {
  font-size: clamp(17px, 2vw, 20px); color: var(--mist-200);
  max-width: 54ch; margin-bottom: 26px;
}

.hero-media { position: relative; display: flex; flex-direction: column; justify-content: center; }
.hero-media img {
  width: 100%; height: auto; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  object-fit: contain;
}
/* банер реклама (широка, 2.33:1) — показваме в естествено съотношение, без разтягане */
.hero-media--banner img { aspect-ratio: 1568 / 672; object-fit: cover; }
/* портретна снимка в хоризонтален слот — да не разтяга хероя */
.hero-media--tall img {
  height: 460px; object-fit: cover; object-position: center 32%;
}
.hero-media figcaption {
  margin-top: 10px; font-size: 12.5px; color: var(--mist-300); text-align: center;
}

/* ---------- the loud element: call button ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn-call {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--red-600); color: #fff; text-decoration: none;
  padding: 17px 28px; border-radius: 5px;
  box-shadow: var(--shadow-red);
  transition: background .15s, transform .08s, box-shadow .08s;
}
.btn-call:hover { background: var(--red-500); }
.btn-call:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--red-700), 0 4px 12px rgba(216,19,36,.3); }
.btn-call svg { width: 27px; height: 27px; fill: #fff; flex: none; }
.btn-call-txt { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.btn-call-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.btn-call-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 27px; letter-spacing: .015em;
}

.btn-viber {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.26);
  color: #fff; text-decoration: none;
  padding: 15px 20px; border-radius: 5px;
  font-weight: 600; font-size: 15px;
  transition: background .15s;
}
.btn-viber:hover { background: rgba(255,255,255,.16); }
.btn-viber svg { width: 19px; height: 19px; fill: #7360f2; flex: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy-800); color: var(--navy-800); text-decoration: none;
  padding: 14px 22px; border-radius: 5px; font-weight: 700; font-size: 15px;
  background: transparent; transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--navy-800); color: #fff; }

.hero-micro {
  margin: 18px 0 0; font-size: 14px; color: var(--mist-300);
  display: flex; flex-wrap: wrap; gap: 6px 18px;
}
.hero-micro li { display: flex; align-items: center; gap: 7px; }
.hero-micro li::before {
  content: ""; width: 14px; height: 14px; flex: none;
  background: var(--cyan-400);
  -webkit-mask: var(--check) center/contain no-repeat;
  mask: var(--check) center/contain no-repeat;
}
:root {
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust {
  background: var(--navy-800);
  border-top: 3px solid var(--red-600);
  padding: 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-i {
  padding: 24px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: var(--white);
}
.trust-i:last-child { border-right: 0; }
.trust-i b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 19px; text-transform: uppercase; margin-bottom: 3px; letter-spacing: .01em;
}
.trust-i span { font-size: 14px; color: var(--mist-300); line-height: 1.45; display: block; }

/* ==========================================================================
   CARDS — какво отпушваме / методи
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--white); border: 1px solid var(--mist-200);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mist-300); }
.card-ico {
  width: 46px; height: 46px; border-radius: 3px; margin-bottom: 16px;
  background: var(--navy-900); display: grid; place-items: center;
}
.card-ico svg { width: 24px; height: 24px; fill: var(--cyan-400); }
.card h3 {
  font-size: 21px; text-transform: uppercase; margin-bottom: 8px; color: var(--navy-900);
}
.card p { font-size: 15.5px; color: var(--slate-500); margin: 0; line-height: 1.55; }

/* ==========================================================================
   PROCESS — реална последователност, затова е номерирана
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step {
  padding: 0 22px 0 0; position: relative;
}
.step::before {
  content: ""; position: absolute; left: 0; top: 15px; right: 0; height: 2px;
  background: var(--mist-200);
}
.step:last-child::before { right: 22px; }
.step-n {
  position: relative; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red-600); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  margin-bottom: 16px;
}
.sec--navy .step::before { background: rgba(255,255,255,.16); }
.step h3 { font-size: 19px; text-transform: uppercase; margin-bottom: 7px; color: var(--white); }
.step p { font-size: 14.5px; color: var(--mist-300); margin: 0; line-height: 1.5; padding-right: 8px; }

/* ==========================================================================
   TECH — машините
   ========================================================================== */
.tech { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-i {
  border: 1px solid var(--mist-200); border-radius: var(--radius);
  background: var(--white); overflow: hidden; display: flex; flex-direction: column;
}
.tech-ph { aspect-ratio: 4/3; overflow: hidden; background: var(--mist-100); }
.tech-ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.tech-b { padding: 22px; flex: 1; }
.tech-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--red-600); margin-bottom: 8px;
}
.tech-i h3 { font-size: 21px; text-transform: uppercase; color: var(--navy-900); margin-bottom: 9px; }
.tech-i p { font-size: 15px; color: var(--slate-500); margin: 0 0 12px; line-height: 1.55; }
.tech-spec {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tech-spec li {
  font-size: 12px; font-weight: 600; background: var(--mist-100);
  border: 1px solid var(--mist-200); color: var(--navy-800);
  padding: 3px 9px; border-radius: 100px;
}

/* ==========================================================================
   HONEST BOX — какво НЕ поемаме
   ========================================================================== */
.honest {
  display: grid; grid-template-columns: 34px 1fr; gap: 18px;
  background: #fffaf0; border: 1px solid #f2dfb4;
  border-left: 4px solid var(--amber-400);
  border-radius: var(--radius); padding: 26px 28px; margin-top: 34px;
}
.honest svg { width: 30px; height: 30px; fill: #c98a06; margin-top: 2px; }
.honest h3 { font-size: 20px; text-transform: uppercase; color: #7a5405; margin-bottom: 9px; }
.honest p { font-size: 15.5px; color: #6b4f16; margin: 0 0 10px; line-height: 1.6; }
.honest p:last-child { margin-bottom: 0; }
.honest strong { color: #4d3808; }

/* ==========================================================================
   ПОДПИС: КРАЙБРЕЖНА ЛИНИЯ  (реален географски ред юг → север)
   ========================================================================== */
.coast { padding: 78px 0 74px; }
.coast-wrap { position: relative; margin-top: 46px; }
.coast-line {
  position: absolute; left: 0; right: 0; top: 13px; height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--navy-700));
  border-radius: 3px;
}
.coast-stops {
  position: relative; display: grid; grid-template-columns: repeat(6, 1fr);
}
.coast-s { text-align: center; padding: 0 4px; }
.coast-txt-mobile { display: contents; }
.coast-dot {
  width: 29px; height: 29px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--white); border: 3px solid var(--navy-700);
  display: grid; place-items: center; position: relative; z-index: 2;
}
.coast-dot::after {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red-600);
}
.coast-s b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 17px; text-transform: uppercase; color: var(--navy-900); line-height: 1.12;
}
.coast-s span { font-size: 13px; color: var(--slate-500); display: block; margin-top: 3px; }
.coast-ends {
  display: flex; justify-content: space-between; margin-top: 22px;
  font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--mist-300);
}
.coast-more {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--mist-200);
  font-size: 15.5px; color: var(--slate-500);
}
.coast-more strong { color: var(--navy-900); }

/* ==========================================================================
   ГАЛЕРИЯ
   ========================================================================== */
.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal figure {
  margin: 0; position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--navy-950); aspect-ratio: 3/4;
}
.gal img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, opacity .5s ease;
}
.gal figure:hover img { transform: scale(1.05); }
.gal figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 13px 11px;
  background: linear-gradient(transparent, rgba(4,16,31,.9) 62%);
  color: #fff; font-size: 13px; font-weight: 600; line-height: 1.35;
}
.gal--3 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   БУСЪТ
   ========================================================================== */
.bus {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: center;
  background: var(--white); border: 1px solid var(--mist-200);
  border-left: 4px solid var(--navy-700);
  border-radius: var(--radius); padding: 30px; margin-top: 32px;
}
.bus h3 { font-size: 25px; text-transform: uppercase; color: var(--navy-900); margin-bottom: 10px; }
.bus p { font-size: 15.5px; color: var(--slate-500); margin: 0 0 .7em; line-height: 1.55; }
.bus p:last-child { margin-bottom: 0; }
.bus strong { color: var(--navy-900); }
.bus img {
  border-radius: 3px; box-shadow: var(--shadow-sm);
  width: 100%; height: 340px; object-fit: cover; object-position: center;
  align-self: center;
}

/* ==========================================================================
   ЦЕНИ
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.price-list li {
  display: grid; grid-template-columns: 26px 1fr; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--mist-200);
}
.price-list li:first-child { padding-top: 0; }
.price-list li::before {
  content: ""; width: 22px; height: 22px; margin-top: 2px;
  background: var(--navy-700);
  -webkit-mask: var(--check) center/contain no-repeat;
  mask: var(--check) center/contain no-repeat;
}
.price-list b {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 19px;
  text-transform: uppercase; color: var(--navy-900); margin-bottom: 2px;
}
.price-list span { font-size: 15px; color: var(--slate-500); line-height: 1.5; }

.price-box {
  background: var(--navy-900); color: var(--mist-200); border-radius: var(--radius);
  padding: 32px 30px; position: sticky; top: calc(var(--bar-h) + 16px);
}
.price-box h3 { font-size: 24px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.price-box p { font-size: 15.5px; color: var(--mist-300); }
.price-box .btn-call { width: 100%; justify-content: center; margin-top: 6px; }

/* ==========================================================================
   ЧЗВ
   ========================================================================== */
.faq { max-width: 860px; }
.faq details {
  border: 1px solid var(--mist-200); border-radius: var(--radius);
  margin-bottom: 10px; background: var(--white);
  transition: border-color .15s;
}
.faq details[open] { border-color: var(--navy-700); }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 52px 19px 22px; position: relative;
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  color: var(--navy-900); text-transform: uppercase; line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px;
  border-right: 2.5px solid var(--red-600); border-bottom: 2.5px solid var(--red-600);
  transform: rotate(45deg); transform-origin: center; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 16px; color: var(--slate-500); margin: 0 0 .8em; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--navy-900); }

/* ==========================================================================
   ФИНАЛЕН CTA
   ========================================================================== */
.final { background: var(--navy-950); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 50% 0%, rgba(51,167,224,.20), transparent 65%);
}
.final .wrap { position: relative; z-index: 2; }
.final h2 { font-size: clamp(30px, 4.6vw, 50px); text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.final p { font-size: 18px; color: var(--mist-300); max-width: 56ch; margin: 0 auto 30px; }
.final .cta-row { justify-content: center; }
.final-meta {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left;
}
.final-meta div b {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--cyan-400); margin-bottom: 5px;
}
.final-meta div span { font-size: 15px; color: var(--mist-200); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr { background: #020a14; color: var(--mist-300); padding: 44px 0 108px; font-size: 14.5px; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.ftr h4 {
  font-size: 13px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px; font-family: var(--font-body); font-weight: 700;
}
.ftr a { color: var(--mist-300); text-decoration: none; }
.ftr a:hover { color: var(--white); text-decoration: underline; }
.ftr li { margin-bottom: 6px; }
.ftr-bot {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #5b6b7d;
}
.ftr-num {
  font-family: var(--font-display); font-size: 27px; color: #fff;
  text-decoration: none; display: inline-block; margin-bottom: 8px;
}
.ftr-num:hover { color: var(--red-500); text-decoration: none; }

/* ==========================================================================
   ЛЕПКАВА ЛЕНТА ЗА ОБАЖДАНЕ
   ========================================================================== */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(4,16,31,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.3);
}
.sticky-call {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  background: var(--red-600); color: #fff; text-decoration: none;
  border-radius: 5px; padding: 13px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: .02em;
  box-shadow: 0 3px 0 var(--red-700);
}
.sticky-call:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--red-700); }
.sticky-call svg { width: 20px; height: 20px; fill: #fff; flex: none; }
.sticky-vib {
  display: grid; place-items: center; width: 52px;
  background: #7360f2; border-radius: 5px; box-shadow: 0 3px 0 #4b3ac2;
}
.sticky-vib svg { width: 22px; height: 22px; fill: #fff; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.rv.in { opacity: 1; transform: none; }

/* ==========================================================================
   АДАПТИВНОСТ
   ========================================================================== */
@media (max-width: 1040px) {
  /* Текстът и червеният бутон са първи — снимката идва под тях,
     за да е бутонът над сгъвката на телефон. */
  .hero-in { grid-template-columns: 1fr; gap: 30px; padding-top: 34px; }
  .hero-media--tall img { height: 300px; }
  .bus { grid-template-columns: 1fr; gap: 20px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .tech { grid-template-columns: 1fr; }
  .tech-i { flex-direction: row; }
  .tech-ph { width: 210px; flex: none; aspect-ratio: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .step::before { display: none; }
  .step { padding-right: 0; }
  .gal { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-box { position: static; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute; top: var(--bar-h); left: 0; right: 0;
    background: var(--navy-950); border-bottom: 1px solid rgba(255,255,255,.12);
    flex-direction: column; padding: 10px; gap: 2px;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 16px; }
  .burger { display: grid; }
  .hdr-call { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-i { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-i:nth-child(2n) { border-right: 0; }
  .trust-i:nth-last-child(-n+2) { border-bottom: 0; }
  .coast-line { display: none; }
  .coast-stops { grid-template-columns: 1fr; gap: 0; position: relative; }
  /* една непрекъсната линия зад всички точки */
  .coast-stops::before {
    content: ""; position: absolute; left: 11px; top: 12px; bottom: 12px; width: 2px;
    background: linear-gradient(180deg, var(--cyan-400), var(--navy-700)); z-index: 0;
  }
  .coast-s {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 11px 0; text-align: left; position: relative; z-index: 1;
  }
  .coast-dot { width: 24px; height: 24px; margin: 2px 0 0 0; flex: none; }
  .coast-dot::after { width: 8px; height: 8px; }
  .coast-txt-mobile { display: flex; flex-direction: column; min-width: 0; }
  .coast-s b { font-size: 17px; line-height: 1.15; margin: 0; white-space: normal; }
  .coast-s span { font-size: 13.5px; line-height: 1.35; color: var(--slate-500); }
  .coast-ends { display: none; }
    .final-meta { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; line-height: 1.55; }

  /* по-малко разстояние между секциите */
  section { padding: 36px 0; }
  .sec-head { margin-bottom: 26px; }

  /* по-компактни заглавия */
  .sec-h { font-size: clamp(24px, 6.5vw, 30px); margin-bottom: 10px; }
  .sec-sub { font-size: 15px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); margin-bottom: 14px; }
  .hero-lead { font-size: 16px; margin-bottom: 20px; }
  .hero-in { padding: 32px 20px 40px; }
  .live { margin-bottom: 14px; font-size: 11.5px; padding: 6px 12px 6px 10px; }

  /* компактен бус */
  .bus img { height: 200px; }
  .bus { padding: 22px; gap: 16px; }
  .bus h3 { font-size: 21px; }
  .bus p { font-size: 14.5px; }

  /* по-малки картички */
  .card { padding: 20px 18px; }
  .card h3 { font-size: 19px; }
  .card p { font-size: 14.5px; }
  .card-ico { width: 40px; height: 40px; margin-bottom: 12px; }

  /* компактна галерия - 2 колони, по-малки */
  .gal { gap: 6px; }
  .gal figcaption { font-size: 11px; padding: 18px 9px 8px; }

  /* техника */
  .tech-i h3 { font-size: 19px; }
  .tech-b { padding: 18px; }

  /* стъпки */
  .step h3 { font-size: 17px; }
  .step p { font-size: 14px; }

  /* ЧЗВ */
  .faq summary { font-size: 16px; padding: 15px 44px 15px 16px; }
  .faq-a p { font-size: 14.5px; }

  /* honest box */
  .honest h3 { font-size: 18px; }
  .honest p { font-size: 14.5px; }

  /* coast още по-компактен */
  .coast { padding: 34px 0; }
  .coast-s { padding: 9px 0; }
  .coast-s b { font-size: 16px; }
  .coast-s span { font-size: 13px; }

  /* финал */
  .final h2 { font-size: clamp(24px, 7vw, 32px); }
  .final p { font-size: 15.5px; }

  /* бутони малко по-малки */
  .btn-call { padding: 14px 22px; }
  .btn-call-num { font-size: 24px; }
  section { padding: 48px 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .gal { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gal--3 { grid-template-columns: repeat(2, 1fr); }
  .tech-i { flex-direction: column; }
  .tech-ph { width: 100%; aspect-ratio: 4/3; }
  .ftr-grid { grid-template-columns: 1fr; gap: 26px; }
  .honest { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
  .btn-call { width: 100%; justify-content: center; }
  .btn-viber { width: 100%; justify-content: center; }
  .brand-sub { display: none; }
  .hero-micro { flex-direction: column; gap: 7px; }
  .faq summary { font-size: 18px; padding: 16px 46px 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
}

@media print {
  .sticky, .burger, .nav { display: none; }
}
