/* Nokito Clean · споделена дизайн система
   Токени и правила: ../../brand/DESIGN.md
   Използва се от всички страници. Не дублирай CSS в отделни файлове. */

:root {
  --navy: #123047;
  --mint: #31C48D;
  --aqua: #E8F7F2;
  --white: #FFFFFF;
  --light: #F4F6F7;
  --text: #1F2933;
  --muted: #667085;
  --line: #D9DEE3;
  --warn-bg: #FFF8E8;
  --warn-border: #F4D99A;
  --warn-text: #594118;
  --shadow: 0 20px 50px rgba(18, 48, 71, .10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body.nav-open { overflow: hidden; }

body {
  margin: 0;
  font-family: Inter, Arial, Aptos, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4 {
  font-family: Manrope, Arial, sans-serif;
  color: var(--navy);
  letter-spacing: -.045em;
  line-height: 1.04;
  margin: 0;
}

h1 { font-size: clamp(34px, 4.3vw, 54px); max-width: 780px; }

.lead { margin: 20px 0 0; font-size: clamp(17px, 1.7vw, 19px); color: #405262; max-width: 660px; }
.microcopy { margin: 16px 0 0; color: var(--muted); font-size: 15px; max-width: 680px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.88); font-size: 14px; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; align-items: center; }
.topbar strong { color: #fff; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217,222,227,.8);
}

.nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand-logo { min-width: 0; }
.site-logo { display: block; width: 150px; max-width: 40vw; height: auto; }
.mobile-nav-logo { display: block; width: 124px; max-width: 46vw; height: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--aqua);
  border: 1px solid rgba(49,196,141,.28);
  color: var(--navy); flex: 0 0 auto;
}
.mark svg { width: 27px; height: 27px; }

.brand-name { font-family: Manrope, Arial, sans-serif; font-weight: 850; letter-spacing: -.03em; color: var(--navy); font-size: 22px; line-height: 1; }
.brand-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }

nav { display: flex; align-items: center; gap: 22px; font-weight: 700; color: #334155; font-size: 14px; }
nav a:hover, nav a:focus-visible { color: var(--navy); }
nav a[aria-current="page"] { color: var(--navy); border-bottom: 2px solid var(--mint); padding-bottom: 2px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.phone { font-weight: 850; color: var(--navy); white-space: nowrap; }

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(18,48,71,.2);
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--navy); position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; border-radius: 2px; background: var(--navy);
  transition: .18s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Менюто е цял екран със собствен скрол.
   Преди беше разгъващ се списък, който излизаше под ръба на екрана
   и последните точки бяха недостижими. */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--white);
  flex-direction: column;
  overscroll-behavior: contain;
}
.mobile-nav.open { display: flex; }

.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}
.mobile-nav-head .brand-name { font-size: 20px; }
.mobile-nav-close {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 30px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  font-family: inherit;
  padding: 0;
  flex: 0 0 auto;
}
.mobile-nav-close:active { background: var(--mint); color: var(--navy); }
.mobile-nav-close:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }

.mobile-nav-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px 20px 40px;
}

.mnav-call { width: 100%; font-size: 17px; }
.mnav-viber { width: 100%; margin-top: 10px; }

.mnav-group {
  margin: 26px 0 6px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}

.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a.mnav-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 52px; padding: 12px 0;
  font-weight: 800; font-size: 17px; color: var(--navy);
  border-bottom: 1px solid rgba(217,222,227,.7);
}
.mobile-nav a.mnav-link .meta {
  font-weight: 700; font-size: 14px; color: var(--muted); white-space: nowrap;
}
.mobile-nav a.mnav-link[aria-current="page"] {
  color: var(--navy);
  box-shadow: inset 3px 0 0 var(--mint);
  padding-left: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-sm); padding: 13px 18px;
  font-weight: 850; border: 1px solid transparent;
  transition: .18s ease; cursor: pointer; line-height: 1.1;
  font-family: inherit; font-size: 16px; text-align: center;
  min-height: 46px;
}
.btn-primary { background: var(--mint); color: var(--navy); box-shadow: 0 12px 24px rgba(49,196,141,.22); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 28px rgba(49,196,141,.26); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: rgba(18,48,71,.2); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; }
.btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 14%, rgba(49,196,141,.22), transparent 32%),
    linear-gradient(180deg, #fff 0%, #F7FBFA 100%);
  /* Хедърът е ~126px с лентата отгоре. 74px отстъп отгоре оставяха
     около 260px празно, преди заглавието да се появи. */
  padding: 44px 0 62px;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 12px; border-radius: 999px;
  background: var(--aqua); color: var(--navy);
  font-weight: 850; font-size: 14px; margin-bottom: 16px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.trust-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; max-width: 670px; }
.trust-pill {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(217,222,227,.88);
  padding: 12px 14px; border-radius: 14px;
  font-weight: 750; color: #304252; font-size: 15px;
}

.check, .x-mark {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 950; flex: 0 0 auto; font-size: 13px;
  color: var(--navy);
}
.check { background: var(--mint); }
.x-mark { background: rgba(217,222,227,.6); }

.hero-card {
  background: var(--white); border: 1px solid rgba(217,222,227,.88);
  border-radius: 30px; box-shadow: var(--shadow); padding: 22px; position: relative;
}

.mock-photo {
  border-radius: 22px; min-height: 250px;
  background:
    linear-gradient(135deg, rgba(18,48,71,.9), rgba(18,48,71,.72)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 76px);
  color: #fff; padding: 28px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.mock-photo .big { font-family: Manrope, Arial, sans-serif; font-size: 30px; line-height: 1.08; font-weight: 900; letter-spacing: -.04em; max-width: 360px; }

.floating-list { display: grid; gap: 10px; margin-top: 16px; }
.float-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--light); border-radius: 16px; padding: 13px 14px;
  font-weight: 800; color: var(--navy); font-size: 15px;
}

.icon-box {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--aqua); display: grid; place-items: center;
  flex: 0 0 auto; color: var(--navy);
}
.icon-box svg { width: 20px; height: 20px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
main > section:first-child:not(.hero) { padding-top: 48px; }
.section-alt { background: var(--light); }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 26px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 38px); max-width: 680px; }
.section-head p { color: var(--muted); max-width: 460px; margin: 0; font-size: 17px; }

/* ---------- Cards / services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid rgba(217,222,227,.9); background: #fff;
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: 0 12px 28px rgba(18,48,71,.05);
}
.card h3 { font-size: 22px; margin: 16px 0 10px; letter-spacing: -.035em; }
.card p { color: var(--muted); margin: 0; }

.note {
  margin-top: 22px; padding: 16px 18px; border-radius: 18px;
  background: var(--warn-bg); color: var(--warn-text);
  border: 1px solid var(--warn-border); font-weight: 650;
}

/* ---------- Who grid ---------- */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.who-card {
  border: 1px solid rgba(217,222,227,.9); background: #fff;
  border-radius: var(--radius-md); padding: 20px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; color: var(--navy);
}
.who-card .label { font-size: 17px; }

/* ---------- Why block ---------- */
.why {
  background: var(--aqua); border-radius: 28px; padding: 36px;
  border: 1px solid rgba(49,196,141,.22);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center;
}
.why h2 { font-size: clamp(28px, 3.4vw, 40px); }
.why p { color: #3c5962; margin: 14px 0 0; font-size: 17px; }
.why-bullets { display: grid; gap: 12px; background: #fff; border: 1px solid rgba(49,196,141,.22); border-radius: 20px; padding: 22px; }
.why-bullets ul { margin: 0; padding: 0; display: grid; gap: 12px; }
.why-bullets li { list-style: none; display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-weight: 650; }

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pkg {
  background: #fff; border: 1px solid rgba(217,222,227,.9);
  border-radius: 24px; padding: 28px; position: relative;
  display: flex; flex-direction: column;
}
.pkg.featured { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 24px 48px rgba(18,48,71,.18); }
.pkg.featured h3, .pkg.featured .price { color: #fff; }
.pkg.featured .pkg-tag { background: rgba(49,196,141,.16); color: #BDF4DC; border-color: rgba(49,196,141,.28); }
.pkg.featured .pkg-lead, .pkg.featured .price small { color: rgba(255,255,255,.78); }
.pkg.featured ul li { color: rgba(255,255,255,.88); }
.pkg.featured .pkg-note { border-top-color: rgba(255,255,255,.18); color: rgba(255,255,255,.72); }

.pkg-tag {
  display: inline-flex; padding: 6px 11px; border-radius: 999px;
  background: var(--aqua); color: var(--navy); border: 1px solid rgba(49,196,141,.28);
  font-weight: 850; font-size: 13px; margin-bottom: 14px; width: fit-content;
}
.pkg h3 { font-size: 26px; letter-spacing: -.035em; margin-bottom: 8px; }

.price {
  font-family: Manrope, Arial, sans-serif;
  font-size: 34px; font-weight: 900; color: var(--navy);
  letter-spacing: -.04em; margin: 4px 0 14px; line-height: 1.1;
}
.price small { font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: 0; }

.pkg-lead { color: var(--muted); margin: 0 0 18px; font-size: 15px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.pkg ul li { display: flex; gap: 10px; align-items: flex-start; font-weight: 650; color: var(--text); font-size: 15px; }
.pkg-note { margin-top: auto; padding-top: 14px; border-top: 1px dashed rgba(217,222,227,.9); color: var(--muted); font-size: 13px; }

.pricing-note {
  margin-top: 26px; padding: 18px 20px; border-radius: 18px;
  background: var(--warn-bg); color: var(--warn-text);
  border: 1px solid var(--warn-border); font-weight: 700;
}

.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.price-item { background: #fff; border: 1px solid rgba(217,222,227,.9); border-radius: 18px; padding: 18px; }
.price-item strong { color: var(--navy); display: block; margin-bottom: 6px; }
.price-item span { color: var(--muted); font-size: 15px; }

/* ---------- Includes / excludes ---------- */
.ie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ie-card { background: #fff; border: 1px solid rgba(217,222,227,.9); border-radius: 24px; padding: 28px; }
.ie-card.include { border-color: rgba(49,196,141,.45); background: linear-gradient(180deg, #fff, #F6FBF8); }
.ie-card.exclude { border-color: rgba(217,222,227,.9); background: #FAFBFC; }
.ie-card h3 { font-size: 22px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.ie-card .pill { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--mint); color: var(--navy); font-weight: 950; font-size: 14px; }
.ie-card.exclude .pill { background: rgba(217,222,227,.7); }
.ie-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ie-card li { display: flex; align-items: flex-start; gap: 10px; font-weight: 650; color: var(--text); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
.step { background: var(--light); border-radius: var(--radius-md); padding: 22px; position: relative; border: 1px solid rgba(217,222,227,.8); }
.section-alt .step { background: #fff; }
.step:before {
  counter-increment: step; content: counter(step);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 900; margin-bottom: 14px;
}
.step strong { color: var(--navy); display: block; margin-bottom: 7px; font-family: Manrope, Arial, sans-serif; font-size: 16px; }
.step span { color: var(--muted); font-size: 15px; }

/* ---------- Dark feature block ---------- */
.feature-dark {
  background: var(--navy); color: #fff; border-radius: 28px; padding: 40px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px;
  align-items: center; position: relative; overflow: hidden;
}
.feature-dark:before {
  content: ""; position: absolute;
  width: 360px; height: 360px; right: -120px; top: -150px;
  border-radius: 50%; background: rgba(49,196,141,.22);
}
.feature-dark > * { position: relative; z-index: 1; }
.feature-dark h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); max-width: 540px; }
.feature-dark p { color: rgba(255,255,255,.82); max-width: 540px; margin: 14px 0 0; font-size: 17px; }
.feature-bullets { display: grid; gap: 10px; margin-top: 18px; }
.feature-bullets div { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.88); font-weight: 650; }
.feature-side { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 22px; }
.feature-side h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.feature-side p { margin: 0; color: rgba(255,255,255,.82); font-size: 15px; }

/* ---------- Trust ---------- */
.honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.honest { background: var(--aqua); border-radius: 24px; padding: 28px; border: 1px solid rgba(49,196,141,.22); }
.honest h3 { font-size: 26px; margin-bottom: 12px; }
.honest p { color: #3c5962; margin: 0; font-size: 16px; }
.trust-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid rgba(217,222,227,.9);
  border-radius: 18px; padding: 18px; font-weight: 800; color: var(--navy); font-size: 15px;
}

/* ---------- Objections ---------- */
.objections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.obj-card { background: #fff; border: 1px solid rgba(217,222,227,.9); border-radius: 22px; padding: 22px; }
.obj-card .q { font-weight: 850; color: var(--navy); font-family: Manrope, Arial, sans-serif; font-size: 18px; margin-bottom: 8px; }
.obj-card .a { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- FAQ ---------- */
details { border: 1px solid rgba(217,222,227,.95); border-radius: 16px; padding: 0; background: #fff; }
details + details { margin-top: 10px; }
summary {
  cursor: pointer; font-weight: 850; color: var(--navy);
  font-family: Manrope, Arial, sans-serif; font-size: 17px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px; min-height: 44px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; width: 28px; height: 28px; border-radius: 50%;
  background: var(--aqua); color: var(--navy);
  display: grid; place-items: center; font-weight: 900; flex: 0 0 auto;
}
details[open] summary::after { content: "−"; background: var(--mint); }
details p { color: var(--muted); margin: 0; padding: 0 20px 18px; font-size: 15px; }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid rgba(217,222,227,.9); border-radius: 24px; padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--navy); font-size: 15px; }
.field .hint { color: var(--muted); font-size: 13px; font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 14px; background: #fff; width: 100%;
  min-height: 46px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(49,196,141,.18);
}
.form-actions { display: grid; gap: 10px; margin-top: 18px; }
.form-actions .btn { width: 100%; }
.form-legal { color: var(--muted); font-size: 13px; margin: 14px 0 0; }
.form-legal a { color: var(--navy); font-weight: 700; text-decoration: underline; }

.contact-direct { display: grid; gap: 12px; }
.contact-line {
  display: flex; align-items: center; gap: 14px;
  background: var(--light); border-radius: 16px; padding: 16px;
}
.contact-line .label { font-size: 13px; color: var(--muted); font-weight: 700; display: block; }
.contact-line .value { font-family: Manrope, Arial, sans-serif; font-weight: 900; color: var(--navy); font-size: 20px; letter-spacing: -.02em; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy), #0C2233);
  color: #fff; border-radius: 34px; padding: 42px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; align-items: center;
}
.final-cta h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); }
.final-cta p { color: rgba(255,255,255,.78); font-size: 17px; margin: 14px 0 0; }
.cta-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; }
.cta-list div { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.88); font-weight: 650; }
.cta-actions { display: grid; gap: 12px; }
.cta-actions .btn { width: 100%; }
.cta-note { font-size: 13px; margin-top: 14px; color: rgba(255,255,255,.65); }

/* ---------- Footer ---------- */

/* ---------- Футър ---------- */
footer {
  background: var(--light);
  border-top: 1px solid var(--line);
  /* На десктоп няма лепкава лента отдолу, затова и не трябва отстъп за нея.
     110px там бяха чиста загуба на височина. */
  padding: 40px 0 32px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-logo { display: block; width: 132px; max-width: 50%; height: auto; margin-bottom: 12px; }

.footer-tag { margin: 0; font-size: 15px; line-height: 1.5; color: #405262; max-width: 340px; }

.footer-contact { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 14px 0 0; align-items: center; }
.footer-phone {
  font-family: Manrope, Arial, sans-serif;
  font-size: 20px; font-weight: 900; letter-spacing: -.02em;
  color: var(--navy);
}
.footer-viber {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 0 16px; border-radius: 999px;
  border: 1px solid rgba(18,48,71,.2); background: #fff;
  color: var(--navy); font-weight: 800; font-size: 15px;
}
.footer-viber:hover { border-color: var(--navy); }

.footer-area { margin: 12px 0 0; font-size: 13px; line-height: 1.5; color: var(--muted); max-width: 330px; }

.footer-head {
  margin: 0 0 8px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.footer-col a {
  display: inline-flex; align-items: center; min-height: 28px;
  color: #405262; font-weight: 650; font-size: 15px;
}
.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: center; justify-content: space-between;
  font-size: 14px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--navy); font-weight: 700; }
.footer-credit a { text-decoration: underline; text-underline-offset: 2px; }
.footer-legal { display: flex; gap: 10px; align-items: center; }

@media (max-width: 980px) {
  /* тук лепкавата лента се показва - трябва въздух отдолу */
  footer { padding: 36px 0 110px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col a { min-height: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 620px) {
  /* двете колони с връзки остават една до друга - иначе футърът става
     над 1100px висок само от списъци */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-logo { width: 132px; max-width: 46vw; }
  .footer-tag { font-size: 15px; }
  .footer-phone { font-size: 20px; }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30;
  gap: 10px; padding: 10px; border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 40px rgba(18,48,71,.22);
  border: 1px solid rgba(217,222,227,.85);
  backdrop-filter: blur(14px);
}
.mobile-cta .btn { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  nav, .header-actions .phone { display: none; }
  /* Бутонът в хедъра се крие на мобилен: долната лепкава лента вече дава
     "Позвъни" и "Пиши", а тук той смачкваше хамбургера до 32px. */
  .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .why, .feature-dark, .ie-grid, .honest-grid, .final-cta, .split { grid-template-columns: 1fr; }
  .who-grid, .services { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; }
  .steps, .steps.steps-4 { grid-template-columns: repeat(2, 1fr); }
  .objections, .trust-boxes, .pricing-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  section { padding: 64px 0; }
  .why, .feature-dark { padding: 28px; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  /* Топбарът е декоративен и яде 65px от екрана на телефон. */
  .topbar { display: none; }
  .hero { padding: 42px 0 46px; }
  section { padding: 54px 0; }
  .who-grid, .services, .trust-row, .steps, .steps.steps-4, .form-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .hero-actions .btn { width: 100%; }
  .final-cta, .form-card { padding: 26px; border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, header, .mobile-cta, .hero-card, .form-card { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; }
}

/* ---------- Тап-таргети ---------- */
.card p a { display: inline-flex; align-items: center; min-height: 44px; }


/* ---------- Директен отговор ---------- */
.answer-band { padding: 0; margin-top: -28px; }
.answer-card {
  background: var(--aqua);
  border: 1px solid rgba(49,196,141,.28);
  border-radius: 20px;
  padding: 22px 24px;
}
.answer-label {
  margin: 0 0 6px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: #3c7d68;
}
.answer-text { margin: 0; font-size: 17px; color: #26414c; line-height: 1.6; }

@media (max-width: 620px) {
  .answer-band { margin-top: -18px; }
  .answer-card { padding: 18px 18px; }
  .answer-text { font-size: 16px; }
}

/* ---------- Снимки и илюстрации ---------- */
/* Квадратните hero снимки правеха дясната колона 750px висока срещу 363px
   при илюстрациите. При centered подравняване това буташе заглавието надолу.
   Ограничението изравнява страниците. */
.hero-card .photo { max-height: 400px; object-fit: cover; object-position: center; }

.photo {
  display: block; width: 100%; height: auto;
  border-radius: 22px; border: 1px solid rgba(217,222,227,.9);
  background: var(--aqua);
}
.hero-card .photo { border-radius: 22px; border: none; }

.photo-band {
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(217,222,227,.9);
  max-height: 340px; display: grid; place-items: center;
}
.photo-band img { width: 100%; height: auto; display: block; }

.prose { max-width: 780px; }
.prose h2 { font-size: clamp(26px, 3.2vw, 36px); margin-top: 40px; }
.prose h3 { font-size: 22px; margin-top: 28px; }
.prose p { margin: 14px 0 0; font-size: 17px; }
.prose ul { margin: 14px 0 0; padding-left: 22px; }
.prose li { margin: 8px 0; font-size: 17px; }
.prose a { color: var(--navy); font-weight: 700; text-decoration: underline; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.price-table th, .price-table td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 16px; }
.price-table th { background: var(--navy); color: #fff; font-family: Manrope, Arial, sans-serif; font-weight: 800; }
.price-table td:nth-child(2) { font-family: Manrope, Arial, sans-serif; font-weight: 900; color: var(--navy); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
