/* self-hosted fonts (variable, latin+cyrillic) — без render-blocking Google CSS */
@font-face { font-family: "Sofia Sans"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url(/assets/fonts/sofia-sans-cyrillic.woff2) format("woff2"); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: "Sofia Sans"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url(/assets/fonts/sofia-sans-latin.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Sofia Sans Condensed"; font-style: normal; font-weight: 700 800; font-display: swap;
  src: url(/assets/fonts/sofia-sans-cond-cyrillic.woff2) format("woff2"); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: "Sofia Sans Condensed"; font-style: normal; font-weight: 700 800; font-display: swap;
  src: url(/assets/fonts/sofia-sans-cond-latin.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* metric-matched fallbacks — режат CLS от font swap */
@font-face { font-family: "Sofia Sans Fallback"; src: local("Arial"); size-adjust: 96%; ascent-override: 93%; descent-override: 24%; line-gap-override: 0%; }
@font-face { font-family: "Sofia Sans Condensed Fallback"; src: local("Arial Narrow"), local("Arial"); size-adjust: 81%; ascent-override: 96%; descent-override: 24%; line-gap-override: 0%; }

/* PromoCenter.bg — design system v1 (17.07.2026)
   Жълто от promosite (#fbc530/#f0b416) + мастилено тъмно. Sofia Sans (BG шрифт). */
:root {
  --yellow: #fbc530;
  --yellow-deep: #f0b416;
  --amber-text: #b45309;
  --yellow-soft: #fef4d8;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #667085;
  --line: #e7eaf0;
  --bg: #ffffff;
  --bg-2: #f7f8fa;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.08);
  --shadow-md: 0 10px 28px rgba(16,24,40,.10);
  --container: 1140px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Sofia Sans", "Sofia Sans Fallback", system-ui, sans-serif;
  font-size: 17px; line-height: 1.65;
  color: var(--ink-2); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .disp {
  font-family: "Sofia Sans Condensed", "Sofia Sans Condensed Fallback", "Sofia Sans", sans-serif;
  color: var(--ink); line-height: 1.12; letter-spacing: .1px;
}
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
img, svg { vertical-align: middle; }
a { color: inherit; }

/* ── header ─────────────────────────────────────── */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.hdr-in { display: flex; align-items: center; gap: 34px; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-word { font-family: "Sofia Sans Condensed", "Sofia Sans Condensed Fallback", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: .2px; line-height: 1; }
.logo-word small { display: block; font-family: "Sofia Sans", sans-serif; font-weight: 600; font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav { display: flex; gap: 26px; margin-left: 8px; }
.nav a { text-decoration: none; font-weight: 600; font-size: .98rem; color: var(--ink-2); padding: 6px 2px; border-bottom: 2px solid transparent; transition: .15s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--yellow); }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.hdr-tel { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; color: var(--ink); font-size: 1rem; white-space: nowrap; }
.hdr-tel svg { color: var(--yellow-deep); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-weight: 700; font-size: 1rem; text-decoration: none; border: none; cursor: pointer; border-radius: 10px; padding: 12px 22px; transition: .18s; }
.btn-y { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-y:hover { background: var(--yellow-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1d2939; transform: translateY(-1px); }
.btn-line { border: 1.5px solid var(--line); background: #fff; color: var(--ink); }
.btn-line:hover { border-color: var(--yellow-deep); }
.btn-lg { padding: 15px 30px; font-size: 1.06rem; border-radius: 12px; }

/* ── hero ───────────────────────────────────────── */
.hero { padding: 72px 0 64px; background: linear-gradient(180deg, #fffdf6 0%, #fff 78%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); background: var(--yellow-soft); border: 1px solid #f3dfa2; border-radius: 999px; padding: 6px 14px; margin-bottom: 20px; }
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow-deep); }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.55rem); font-weight: 800; }
.hero h1 .mark { background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 94%, transparent 94%); }
.hero .lead { margin-top: 20px; font-size: 1.16rem; color: var(--muted); max-width: 33em; }
.hero-ctas { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .93rem; font-weight: 600; color: var(--ink-2); }
.hero-trust svg { color: var(--yellow-deep); flex: none; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); transition: .18s; }
.hcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #f0d9a0; }
.hcard .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--yellow-soft); color: var(--ink); display: grid; place-items: center; margin-bottom: 12px; }
.hcard b { display: block; color: var(--ink); font-size: 1.02rem; }
.hcard span { font-size: .87rem; color: var(--muted); }

/* ── generic sections ───────────────────────────── */
section { padding: 72px 0; }
.sec-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 640px; margin-bottom: 40px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.overline { font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--amber-text); margin-bottom: 10px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
.sec-head p { margin-top: 12px; color: var(--muted); font-size: 1.05rem; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; transition: .18s; text-decoration: none; display: block; }
.tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tile .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-2); color: var(--ink); display: grid; place-items: center; margin-bottom: 14px; border: 1px solid var(--line); }
.tile:hover .ic { background: var(--yellow-soft); border-color: #f0d9a0; }
.tile b { display: block; color: var(--ink); font-size: 1.04rem; margin-bottom: 3px; }
.tile span { font-size: .88rem; color: var(--muted); }

.steps { counter-reset: st; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 24px; }
.step::before { counter-increment: st; content: counter(st, decimal-leading-zero); font-family: "Sofia Sans Condensed", "Sofia Sans Condensed Fallback", sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--yellow); display: block; line-height: 1; margin-bottom: 12px; }
.step b { display: block; color: var(--ink); font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .95rem; color: var(--muted); }

/* ── form ───────────────────────────────────────── */
.form-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-md); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { margin-bottom: 14px; }
.f-field label { display: block; font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.f-field input, .f-field textarea, .f-field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; background: #fff; transition: .15s;
}
.f-field input:focus, .f-field textarea:focus, .f-field select:focus { outline: none; border-color: var(--yellow-deep); box-shadow: 0 0 0 3px rgba(251,197,48,.25); }
.f-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── contact blocks ─────────────────────────────── */
.c-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 8px; }
.c-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.c-card .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--yellow-soft); color: var(--ink); display: grid; place-items: center; }
.c-card b { display: block; color: var(--ink); }
.c-card a { font-weight: 700; color: var(--ink); text-decoration: none; font-size: 1.12rem; }
.c-card a:hover { color: var(--yellow-deep); }
.c-card small { display: block; color: var(--muted); margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────── */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-top: 12px; }
.faq summary { font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 22px; height: 22px; background: currentColor; -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round"><path d="M12 5v14M5 12h14"/></svg>') center/contain no-repeat; mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round"><path d="M12 5v14M5 12h14"/></svg>') center/contain no-repeat; color: var(--yellow-deep); transition: .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 10px; color: var(--muted); font-size: .97rem; }

/* ── promo band ─────────────────────────────────── */
.band { background: var(--ink); border-radius: 18px; padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.band h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; }
.band p { color: #98a2b3; margin-top: 6px; }

/* ── footer ─────────────────────────────────────── */
footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 52px 0 30px; margin-top: 40px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.ftr-grid p { font-size: .93rem; color: var(--muted); margin-top: 12px; max-width: 30em; }
.ftr-grid h4 { font-family: "Sofia Sans", sans-serif; font-size: .8rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.ftr-grid ul { list-style: none; }
.ftr-grid li { margin-bottom: 9px; }
.ftr-grid li a { text-decoration: none; font-size: .95rem; color: var(--ink-2); }
.ftr-grid li a:hover { color: var(--yellow-deep); }
.ftr-bottom { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding-top: 22px; font-size: .85rem; color: var(--muted); }

/* ── page hero (inner pages) ────────────────────── */
.page-hero { background: linear-gradient(180deg, #fffdf6 0%, #fff 90%); border-bottom: 1px solid var(--line); padding: 56px 0 44px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; }
.page-hero p { margin-top: 12px; color: var(--muted); font-size: 1.1rem; max-width: 40em; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--yellow-deep); }

/* thank you */
.ty { text-align: center; padding: 90px 0; }
.ty .ic { width: 74px; height: 74px; margin: 0 auto 24px; border-radius: 50%; background: var(--yellow-soft); color: var(--yellow-deep); display: grid; place-items: center; }

/* toast */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 10px; font-size: .95rem; opacity: 0; pointer-events: none; transition: .3s; z-index: 99; }
.toast.show { opacity: 1; transform: translateX(-50%); }

/* mobile */
.nav-toggle { display: none; }
@media (max-width: 920px) {
  .hdr-in { height: 64px; gap: 16px; }
  .nav { display: none; }
  .hdr-tel span { display: none; }
  .hero { padding: 44px 0 48px; }
  .hero-grid, .form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .c-cards { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; gap: 28px; }
  .band { padding: 30px 26px; }
  section { padding: 54px 0; }
}
