/* ================================================
   SerbiaOffice.Rs — Design System v5
   Source: Claude Design handoff (2026-04-29)
   Palette: warm paper + Belgrade red-orange accent
   ================================================ */

:root {
  --ink:         #0E1A2B;
  --ink-2:       #1B2A41;
  --paper:       #F6F2EA;
  --paper-2:     #EFE8DA;
  --line:        #1f2c40;
  --line-soft:   #d9d1bf;
  --muted:       #5A6577;
  --accent:      #C8462C;
  --accent-ink:  #A2371F;
  --accent-soft: #F4D8CE;
  --gold:        #B8924A;
  --ok:          #2E7D5B;
  --serif:  "Source Serif 4", Georgia, serif;
  --sans:   "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --mono:   "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box }
html { overflow-x: hidden }
html, body { margin: 0; padding: 0 }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  padding-top: 0 !important; /* sticky nav — no offset needed */
  max-width: 100%;
}
a   { color: inherit; text-decoration: none }
img { display: block; max-width: 100% }
button { font-family: inherit; cursor: pointer; border: none; background: none }
svg { display: block }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px }
@media (max-width: 720px) { .wrap { padding: 0 20px } }

/* ---- Announcement bar ---- */
.annc {
  background: var(--ink); color: #EBE3D2;
  font-size: 13px; text-align: center; padding: 10px 16px;
  letter-spacing: .01em;
}
.annc b { color: #fff }
.annc .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #5DBE8A; margin: 0 10px 2px; vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(93,190,138,.18);
}

/* ---- Nav ---- */
nav.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,234,.96);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-row {
  display: flex; align-items: center;
  height: 64px; gap: 16px;
  padding: 0 20px;
}
@media (min-width: 769px) { .nav-row { padding: 0 } }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.01em; flex-shrink: 0 }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 19px;
  box-shadow: inset 0 0 0 1px #2c3a52, 0 1px 0 rgba(0,0,0,.04);
  flex-shrink: 0;
}
.brand-name { font-size: 16px; color: var(--ink) }
.brand-name .tld { color: var(--accent); font-weight: 800 }
.nav-links { display: flex; gap: 24px; font-size: 14px; color: #3b465a; font-weight: 500; flex-shrink: 0 }
.nav-links a:hover { color: var(--accent) }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0 }

/* Mobile hamburger */
.so-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--surface, #f0ece4); border: 1px solid var(--line-soft);
  cursor: pointer; padding: 0; flex-shrink: 0;
  align-items: center;
  transition: background .2s;
}
.so-burger:hover { background: var(--line-soft) }
.so-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.so-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.so-burger.open span:nth-child(2) { opacity: 0 }
.so-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Mobile menu */
.so-mobile-menu {
  display: none; flex-direction: column;
  background: var(--paper); border-top: 1px solid var(--line-soft);
  padding: 8px 20px 24px;
  box-shadow: 0 8px 24px rgba(15,26,43,.08);
}
.so-mobile-menu.open { display: flex }
.so-mobile-menu a {
  padding: 14px 0; font-size: 16px; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.so-mobile-menu a:last-of-type { border-bottom: none }
/* CTA inside mobile menu */
.so-mobile-menu .mob-cta-row {
  padding-top: 18px;
}
.so-mobile-menu .mob-cta-row .btn {
  width: 100%; justify-content: center;
}

/* Breakpoints */
/* Nav links hide at 1040px — burger must appear at the SAME point */
@media (max-width: 1040px) {
  .nav-links { display: none }
  .so-burger { display: flex }
}
/* Hide nav CTA button only on narrow phones — sticky bar covers it there */
@media (max-width: 640px) {
  .nav-cta .btn { display: none }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: .005em;
  padding: 14px 22px; border-radius: 10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap; border: none; cursor: pointer; font-family: var(--sans);
}
.btn .arr { display: inline-block; transition: transform .2s ease }
.btn:hover .arr { transform: translateX(3px) }
.btn-primary {
  background: var(--accent); color: #fff !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 24px -10px rgba(200,70,44,.55), 0 2px 4px rgba(15,26,43,.08);
}
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-1px) }
.btn-ghost {
  color: var(--ink) !important; border: 1px solid var(--line-soft); background: #fff;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper) }
.btn-lg { padding: 18px 28px; font-size: 16px; border-radius: 12px }
.btn-dark { background: var(--ink); color: #fff !important }
.btn-dark:hover { background: #000 }

/* ---- Hero ---- */
section.hero {
  position: relative; overflow: hidden;
  padding: 64px 0 80px;
  background: var(--paper);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 64px; align-items: center;
}
/* Stack hero at 1100px — covers iPad Pro (1024), Surface Pro (912), all tablets */
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; gap: 40px } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft);
  padding: 7px 12px; border-radius: 999px; border: 1px solid #e9c3b6;
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,70,44,.18);
}
h1.hero-h {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02; letter-spacing: -.02em;
  margin: 22px 0 22px; text-wrap: balance;
}
h1.hero-h em { font-style: italic; color: var(--accent); font-weight: 500 }
.hero-sub {
  font-size: 18px; color: #3b465a; max-width: 520px; margin: 0 0 32px;
  text-wrap: pretty; line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center }
.hero-cta .price-tag {
  font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.hero-cta .price-tag b { color: var(--ink); font-size: 16px }
.trust-row {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 640px;
}
@media (max-width: 640px) { .trust-row { grid-template-columns: repeat(2,1fr) } }
.trust {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 14px; border-left: 2px solid var(--accent);
  font-size: 13.5px; color: #3b465a; font-weight: 500;
}
.trust b { color: var(--ink); font-size: 14px; font-weight: 700 }

/* Hero address card */
.biz-card {
  position: relative; background: #fff; border-radius: 16px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 60px -30px rgba(15,26,43,.18), 0 8px 20px -12px rgba(15,26,43,.10);
  padding: 32px; transform: rotate(.6deg);
}
.biz-card::before {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 62%; height: 78%; background: var(--ink); border-radius: 16px; z-index: -1;
  transform: rotate(-1.2deg); box-shadow: 0 20px 40px -20px rgba(15,26,43,.4);
}
/* Remove decoration on tablet/mobile — it bleeds outside viewport */
@media (max-width: 1100px) {
  .biz-card { transform: none; max-width: 560px; margin: 0 auto }
  .biz-card::before { display: none }
}
.biz-card .head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px dashed var(--line-soft); margin-bottom: 22px;
}
.stamp {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); border: 1.5px solid var(--accent);
  padding: 6px 10px; border-radius: 6px; transform: rotate(-3deg); font-weight: 500;
}
.biz-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 10px;
}
.biz-card .addr {
  font-family: var(--mono); font-size: 17px; line-height: 1.45; color: var(--ink);
  background: var(--paper); padding: 18px; border-radius: 10px;
  border: 1px dashed var(--line-soft); white-space: pre-line;
}
.biz-card .addr b { color: var(--accent-ink) }
.biz-card .meta {
  margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 24px; font-size: 13px;
}
.biz-card .meta .k {
  color: var(--muted); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; font-size: 11px; margin-bottom: 3px;
}
.biz-card .meta .v { font-weight: 600; color: var(--ink) }
.biz-card .meta .v.ok::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--ok); margin-right: 8px; vertical-align: middle;
}
/* APR-ready checklist block (hero biz-card bottom) */
.apr-ready {
  margin-top: 20px;
  background: var(--surface, #f5f3ef);
  border: 1px solid var(--line-soft, #e2ddd6);
  border-radius: 12px;
  padding: 18px 20px 16px;
}
.apr-ready-title {
  font-family: var(--mono, monospace);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted, #888);
  margin-bottom: 14px;
}
.apr-ready-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.apr-ready-list li {
  display: flex; align-items: flex-start; gap: 12px;
}
.apr-check {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ok, #2E7D32);
  display: flex; align-items: center; justify-content: center;
}
.apr-check::after {
  content: "";
  display: block;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.apr-ready-list li b {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  line-height: 1.3;
}
.apr-ready-list li span {
  display: block;
  font-size: 12px;
  color: var(--muted, #888);
  line-height: 1.4;
  margin-top: 1px;
}
.hero-deco {
  position: absolute; right: -120px; top: -120px; width: 540px; height: 540px;
  background: radial-gradient(closest-side, rgba(200,70,44,.10), transparent 70%);
  pointer-events: none;
}

/* ---- Stats ---- */
section.stats {
  background: var(--ink); color: #EBE3D2; padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2,1fr) } }
.stat {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid #2a3a55; padding-left: 20px;
}
.stat:first-child { border-left: none; padding-left: 0 }
.stat .num {
  font-family: var(--serif); font-size: 44px; font-weight: 500; color: #fff;
  letter-spacing: -.02em; line-height: 1;
}
.stat .num em { font-style: normal; color: var(--accent) }
.stat .lbl { font-size: 13.5px; color: #A8B2C2; margin-top: 8px; font-weight: 500 }

/* ---- Section heading ---- */
.section { padding: 110px 0 }
@media (max-width: 720px) { .section { padding: 72px 0 } }
.section-head { max-width: 760px; margin: 0 0 56px }
.section-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; display: inline-flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ""; width: 24px; height: 1px; background: var(--accent) }
.section-h {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px); line-height: 1.05; letter-spacing: -.02em;
  margin: 14px 0 16px; text-wrap: balance; color: var(--ink);
}
.section-h em { color: var(--accent); font-style: italic; font-weight: 500 }
.section-sub { font-size: 17px; color: #3b465a; max-width: 600px; text-wrap: pretty; line-height: 1.6 }

/* ---- Features ---- */
.features {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2,1fr) } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr } }
.feat {
  background: #fff; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease;
}
.feat:hover { background: var(--paper) }
.feat .ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--paper-2); color: var(--ink);
  display: grid; place-items: center; border: 1px solid var(--line-soft); margin-bottom: 10px;
}
.feat h4 { font-family: var(--sans); font-weight: 700; font-size: 18px; letter-spacing: -.005em; margin: 0 }
.feat p   { font-size: 14.5px; color: #4a5567; margin: 0; line-height: 1.55 }
.feat .tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-top: 4px;
}

/* ---- How it works ---- */
.how-bg { background: var(--paper-2) }
.steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr } }
.step {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 36px 32px; position: relative; display: flex; flex-direction: column; gap: 14px;
}
.step .n {
  font-family: var(--serif); font-weight: 500;
  font-size: 64px; line-height: .9; color: var(--accent); letter-spacing: -.04em;
}
.step h4 { font-family: var(--sans); font-weight: 700; font-size: 20px; margin: 0 }
.step p   { font-size: 15px; color: #4a5567; margin: 0; line-height: 1.55 }
.step .meta {
  margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line-soft);
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .06em;
}
.step.connector::after {
  content: "→"; position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  color: var(--line-soft); font-size: 24px; font-weight: 700; z-index: 2;
}
@media (max-width: 860px) {
  .step.connector::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -22px; transform: translateX(-50%) }
}

/* ---- APR instruction ---- */
.apr-bg { background: linear-gradient(180deg, var(--paper) 0%, #EFE8DA 100%) }
.apr-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center }
@media (max-width: 980px) { .apr-grid { grid-template-columns: 1fr; gap: 40px } }
.apr-tips { list-style: none; padding: 0; margin: 32px 0; display: flex; flex-direction: column; gap: 14px }
.apr-tips li {
  font-size: 15px; color: #3b465a; line-height: 1.5;
  padding-left: 28px; position: relative;
}
.apr-tips li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ok); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.apr-tips b    { color: var(--ink) }
.apr-tips code {
  font-family: var(--mono); font-size: 13px;
  background: #fff; border: 1px solid var(--line-soft);
  padding: 1px 7px; border-radius: 5px; color: var(--accent-ink);
}
.apr-cta { display: flex; gap: 12px; flex-wrap: wrap }
.apr-form {
  position: relative; background: #fff; border: 1px solid #C8D6E5; border-radius: 14px;
  padding: 32px 32px 36px;
  box-shadow: 0 30px 60px -30px rgba(15,26,43,.22), 0 8px 20px -12px rgba(15,26,43,.12);
}
.apr-form::before {
  content: ""; position: absolute; inset: 6px; border-radius: 10px;
  border: 1px solid #6E89C2; pointer-events: none;
}
.apr-form-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px }
.apr-form-title { font-weight: 800; font-size: 18px; letter-spacing: .02em; color: #1B2A41 }
.apr-stamp {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); border: 1.5px solid var(--accent);
  padding: 5px 9px; border-radius: 5px; transform: rotate(-2deg); font-weight: 500; flex: 0 0 auto;
}
.apr-form-note {
  font-style: italic; font-size: 12.5px; color: #3b465a; line-height: 1.45;
  background: #E9E6F4; padding: 10px 12px; border-radius: 6px; margin-bottom: 20px;
}
.apr-row { display: grid; grid-template-columns: 140px 1fr; gap: 10px; align-items: center; margin-bottom: 10px }
.apr-row label { font-size: 13px; font-weight: 700; color: #1B2A41; line-height: 1.25 }
.apr-row label small { display: block; font-weight: 400; font-size: 10.5px; color: #6E89C2; margin-top: 2px }
.apr-input {
  height: 34px; border: 1.5px solid #2E7D5B; border-radius: 5px;
  background: #fff; padding: 0 12px;
  display: flex; align-items: center;
  font-size: 14px; color: #1B2A41; font-weight: 500;
}
.apr-input.filled { background: #fff; box-shadow: inset 0 0 0 1px #2E7D5B }
.apr-row-split    { grid-template-columns: 140px 110px auto 90px }
.apr-num          { width: 110px; justify-content: flex-start }
.apr-mid-label    { font-size: 13px; color: #1B2A41; font-weight: 600 }
.apr-letter, .apr-floor { height: 34px; border: 1.5px solid #2E7D5B; border-radius: 5px; background: #fff }
.apr-zip {
  display: flex; gap: 0; border: 1.5px solid #2E7D5B; border-radius: 5px;
  overflow: hidden; background: #fff;
}
.apr-zip span {
  width: 34px; height: 34px; display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px; font-weight: 600; color: #1B2A41;
  border-right: 1px solid #2E7D5B;
}
.apr-zip span:last-child { border-right: none }
.apr-zip-name { flex: 1; margin-left: 10px; min-width: 0 }
.apr-row-split:has(.apr-zip) { grid-template-columns: 140px auto 1fr }
.apr-callout {
  position: absolute; right: -20px; bottom: -26px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 14px 18px; border-radius: 10px; max-width: 240px; line-height: 1.4;
  box-shadow: 0 12px 28px -8px rgba(15,26,43,.4); transform: rotate(1deg);
}
.apr-callout-arr { display: inline-block; color: var(--accent); font-size: 18px; font-weight: 700; margin-right: 6px; transform: translateY(1px) }
@media (max-width: 560px) {
  .apr-form { padding: 24px 18px }
  .apr-row, .apr-row-split { grid-template-columns: 1fr; gap: 6px }
  .apr-callout { position: static; margin-top: 20px; transform: none; max-width: 100% }
  /* ZIP row: label full-width, then zip + city-name side by side */
  .apr-row-split:has(.apr-zip) {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
  }
  .apr-row-split:has(.apr-zip) > label {
    grid-column: 1 / -1;
  }
  .apr-zip-name { margin-left: 0 }
}

/* ---- Pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px }
@media (max-width: 1000px) { .pricing { grid-template-columns: repeat(2,1fr) } }
@media (max-width: 520px)  { .pricing { grid-template-columns: 1fr } }
.price {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
  position: relative; transition: transform .2s ease, border-color .2s ease;
}
.price:hover { transform: translateY(-3px); border-color: var(--ink) }
.price h5 { font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 }
.price .term { font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -.02em; margin: 0 }
.price .amt  { display: flex; align-items: baseline; gap: 6px }
.price .amt .big { font-family: var(--serif); font-size: 54px; font-weight: 500; letter-spacing: -.03em; line-height: 1 }
.price .amt .cur { font-size: 20px; font-weight: 600; color: var(--muted) }
.price .per   { font-size: 13px; color: var(--muted); margin-top: -6px }
.price .total { font-size: 13px; color: #3b465a; font-weight: 600 }
.price .total s { color: var(--muted); font-weight: 400; margin-right: 6px }
.price ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #3b465a }
.price ul li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.4 }
.price ul li::before {
  content: ""; flex: 0 0 16px; height: 16px;
  background: var(--paper-2); border-radius: 50%; margin-top: 2px;
  background-image: radial-gradient(circle, var(--ok) 35%, transparent 38%);
}
.price .btn { justify-content: center; width: 100%; margin-top: auto }
.price.best {
  background: var(--ink); color: #EBE3D2; border-color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(15,26,43,.4);
}
.price.best h5 { color: var(--accent) }
.price.best .term, .price.best .amt .big { color: #fff }
.price.best .amt .cur { color: #A8B2C2 }
.price.best .per, .price.best .total { color: #A8B2C2 }
.price.best .total s { color: #6e7a90 }
.price.best ul { color: #D7DBE3 }
.price.best ul li::before { background: #1f2c40; background-image: radial-gradient(circle, var(--accent) 38%, transparent 40%) }
.price.best .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(200,70,44,.4);
}
.price-foot { margin-top: 24px; font-size: 13.5px; color: var(--muted); text-align: center }
.price-foot b { color: var(--ink) }

/* ---- Testimonials ---- */
.test-bg { background: var(--paper-2) }
.tests { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
@media (max-width: 900px) { .tests { grid-template-columns: 1fr } }
.test {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px }
.test q {
  font-family: var(--serif); font-weight: 400; font-size: 18px; line-height: 1.45;
  color: var(--ink); quotes: "«" "»"; display: block;
}
.test q::before { content: open-quote }
.test q::after  { content: close-quote }
.test .who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft) }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper-2); color: var(--ink);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  border: 1px solid var(--line-soft);
}
.who .nm   { font-weight: 700; font-size: 14.5px }
.who .ro   { font-size: 13px; color: var(--muted) }
.who .flag { margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); background: var(--paper); padding: 4px 8px; border-radius: 6px }

/* ---- FAQ ---- */
.faq-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; gap: 32px } }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-soft) }
details.q { border-bottom: 1px solid var(--line-soft); padding: 22px 0; cursor: pointer }
details.q summary {
  list-style: none; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.4;
}
details.q summary::-webkit-details-marker { display: none }
details.q summary::after { content: "+"; font-size: 24px; color: var(--muted); font-weight: 300; line-height: 1; transition: transform .2s ease; flex: 0 0 auto }
details.q[open] summary::after { content: "–"; color: var(--accent) }
details.q .a { font-size: 15.5px; color: #3b465a; line-height: 1.6; margin-top: 12px; max-width: 60ch }
.faq-side .help { background: var(--ink); color: #EBE3D2; border-radius: 16px; padding: 32px }
.faq-side h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: #fff; margin: 0 0 8px; letter-spacing: -.01em }
.faq-side p  { font-size: 14.5px; color: #A8B2C2; margin: 0 0 20px; line-height: 1.55 }
.faq-side .channels { display: flex; flex-direction: column; gap: 10px }
.faq-side .ch {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: #1B2A41; border-radius: 10px; font-size: 14px; font-weight: 500;
  color: #fff; border: 1px solid #2a3a55; transition: background .15s;
}
.faq-side .ch:hover { background: #22324c }
.faq-side .ch .ico { width: 28px; height: 28px; border-radius: 7px; background: var(--accent); display: grid; place-items: center; flex: 0 0 auto }
.faq-side .ch .sm  { font-size: 12px; color: #A8B2C2; font-weight: 400; display: block; margin-top: 1px }

/* ---- Contact ---- */
.contact-bg {
  background: var(--ink); color: #EBE3D2;
  background-image:
    radial-gradient(60% 40% at 100% 0%, rgba(200,70,44,.16), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(184,146,74,.12), transparent 70%);
}
.contact-bg .section-tag { color: var(--accent) }
.contact-bg .section-h   { color: #fff }
.contact-bg .section-h em { color: var(--accent) }
.contact-bg .section-sub { color: #A8B2C2 }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px } }
.contact-info ul { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 20px }
.contact-info li { display: flex; gap: 14px; align-items: flex-start }
.contact-info li .ico {
  width: 36px; height: 36px; border-radius: 9px; background: #1B2A41; border: 1px solid #2a3a55;
  display: grid; place-items: center; flex: 0 0 auto; color: var(--accent);
}
.contact-info li .lbl { font-size: 11.5px; color: #A8B2C2; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 2px }
.contact-info li .val { font-size: 15.5px; font-weight: 600; color: #fff; font-family: var(--mono) }
.contact-info li a.val:hover { color: var(--accent) }

/* Contact form */
form.contact {
  background: #fff; color: var(--ink); border-radius: 18px; padding: 36px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
form.contact h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: -.01em; margin: 0 0 6px }
form.contact .sm { color: var(--muted); font-size: 14px; margin: 0 0 24px; display: block }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted) }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  border: 1px solid var(--line-soft); background: var(--paper);
  border-radius: 10px; padding: 14px 16px; outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink); background: #fff;
}
.field textarea { min-height: 90px; resize: vertical }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr } }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; flex-wrap: wrap }
.form-foot .sm { margin: 0; font-size: 12.5px; max-width: 46% }
.form-err { color: #dc2626; font-size: 13px; padding: 10px 14px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; margin-bottom: 16px }
.form-success { color: var(--ok); font-size: 15px; padding: 14px 18px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; margin-bottom: 16px; font-weight: 600 }

/* ---- Footer ---- */
footer, #evy-footer {
  background: #0A1422; color: #A8B2C2; padding: 56px 0 40px; font-size: 14px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr } }
footer h6 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 16px }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px }
footer a:hover { color: #fff }
footer .desc { color: #7e8aa0; line-height: 1.55; margin-top: 14px; max-width: 30ch }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #1f2c40; padding-top: 24px; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: #7e8aa0;
}
hr { border-color: #1f2c40; margin: 0 }

/* ---- Sticky mobile CTA ---- */
.sticky-cta {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 60; display: none;
  background: var(--ink); color: #fff;
  padding: 10px 10px 10px 18px; border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(15,26,43,.5);
  align-items: center; gap: 14px; font-size: 14px; font-weight: 600;
}
.sticky-cta .pr { color: var(--accent); font-weight: 700 }
.sticky-cta .btn { padding: 10px 16px; font-size: 13.5px; border-radius: 999px }
@media (max-width: 720px) { .sticky-cta { display: flex } }

/* ---- Floating contact buttons ---- */
.so-float {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 9999; display: flex; flex-direction: column; gap: 10px;
}
/* Narrow phones: sticky CTA bar already covers it — hide floaters */
@media (max-width: 640px) { .so-float { display: none } }
/* Phones with sticky bar (641-720px): raise above it */
@media (min-width: 641px) and (max-width: 720px) { .so-float { bottom: 84px } }
/* Make buttons a touch smaller on tablet to reduce overlap with content */
@media (min-width: 641px) and (max-width: 1100px) {
  .so-float__btn { width: 44px; height: 44px }
  .so-float__btn svg { width: 18px; height: 18px }
}
.so-float__btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(15,26,43,.25);
  transition: transform .2s ease, box-shadow .2s;
}
.so-float__btn:hover { transform: scale(1.1); box-shadow: 0 12px 28px rgba(15,26,43,.35) }
.so-float__btn--tg { background: #2AABEE }
.so-float__btn--wa { background: #25D366 }
.so-float__btn--ph { background: var(--accent) }
