/*
  Proste Servis — style.css
  Clean · Professional · Mobile-first
  System fonts · Restrained palette · No JavaScript
*/



/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Colours — light mode default */
  --bg:           #ffffff;
  --bg-subtle:    #f8f8f7;
  --bg-muted:     #f1f0ee;
  --surface:      #ffffff;
  --border:       #e4e2de;
  --border-strong:#c8c5bf;

  --text:         #1a1917;
  --text-2:       #57534e;
  --text-3:       #a8a29e;

  --red:          #b91c1c;
  --red-subtle:   #fef2f2;
  --red-border:   #fecaca;

  --black:        #0a0908;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:         'SF Mono', 'Fira Mono', 'Consolas', monospace;

  --nav-h:        60px;
  --max:          1080px;
  --r:            4px;
  --r-lg:         8px;
}

/* ── DARK MODE (system preference) ── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:           #111110;
    --bg-subtle:    #1a1917;
    --bg-muted:     #222120;
    --surface:      #1c1b19;
    --border:       #2e2c29;
    --border-strong:#403e3a;
    --text:         #e7e5e0;
    --text-2:       #a8a29e;
    --text-3:       #57534e;
    --red-subtle:   #1f0808;
    --red-border:   #7f1d1d;
  }
}

/* ── DARK MODE (manual toggle) ── */
#theme-toggle { display: none; }
#theme-toggle:checked ~ .page {
  --bg:           #111110;
  --bg-subtle:    #1a1917;
  --bg-muted:     #222120;
  --surface:      #1c1b19;
  --border:       #2e2c29;
  --border-strong:#403e3a;
  --text:         #e7e5e0;
  --text-2:       #a8a29e;
  --text-3:       #57534e;
  --red-subtle:   #1f0808;
  --red-border:   #7f1d1d;
}
@media (prefers-color-scheme: dark) {
  #theme-toggle:checked ~ .page {
    --bg:           #ffffff;
    --bg-subtle:    #f8f8f7;
    --bg-muted:     #f1f0ee;
    --surface:      #ffffff;
    --border:       #e4e2de;
    --border-strong:#c8c5bf;
    --text:         #1a1917;
    --text-2:       #57534e;
    --text-3:       #a8a29e;
    --red-subtle:   #fef2f2;
    --red-border:   #fecaca;
  }
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, html {
    background-color: var(--bg);
}

.page {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background .25s, color .25s;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 72px 20px; }
.section-sm { padding: 48px 20px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: #9ca3af;
  font-size: 12px;
  padding: 0 20px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar a { color: #d1d5db; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 14px; }

/* theme toggle */
.theme-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #6b7280;
  font-size: 12px;
  user-select: none;
  padding: 2px 0;
}
.theme-label:hover { color: #d1d5db; }
.theme-sun, .theme-moon { font-size: 12px; line-height: 1; font-style: normal; }
/* show correct icon */
#theme-toggle:not(:checked) ~ .page .theme-sun  { display: none; }
#theme-toggle:not(:checked) ~ .page .theme-moon { display: inline; }
#theme-toggle:checked       ~ .page .theme-sun  { display: inline; }
#theme-toggle:checked       ~ .page .theme-moon { display: none; }
@media (prefers-color-scheme: dark) {
  #theme-toggle:not(:checked) ~ .page .theme-sun  { display: inline; }
  #theme-toggle:not(:checked) ~ .page .theme-moon { display: none; }
  #theme-toggle:checked       ~ .page .theme-sun  { display: none; }
  #theme-toggle:checked       ~ .page .theme-moon { display: inline; }
}

/* lang */
.lang { display: flex; align-items: center; gap: 1px; }
.lang a, .lang span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 2px 6px;
  border-radius: 2px;
  color: #6b7280;
}
.lang .lang-active { color: #fff; background: rgba(255,255,255,.1); }
.lang a:hover { color: #d1d5db; }
.lang-sep { color: #374151; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
  border-radius: 3px;
}
.nav-logo-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1;
}
.nav-logo-name span { color: var(--red); }

/* desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--bg-subtle); }
.nav-links a.nav-active { color: var(--text); }
.nav-cta {
  margin-left: 8px;
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: .9; }

/* hamburger toggle */
.nav-toggle { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: .2s;
}
.nav-toggle:checked ~ .nav-inner .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle:checked ~ .nav-inner .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-inner .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 96px; /* topbar + nav */
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  overflow-y: auto;
}
.nav-toggle:checked ~ .mobile-nav { display: flex; }
.mobile-nav ul { padding: 8px 0; flex: 1; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .15s, padding-left .15s;
}
.mobile-nav a:hover { color: var(--text); padding-left: 30px; }
.mobile-nav-cta {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav-cta a {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--r);
}

/* ── HERO ── */
.hero {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  padding: 64px 20px 72px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-logo {
  display: flex;
  justify-content: center;
}
.hero-logo img {
  width: min(220px, 55vw);
  height: auto;
  border-radius: var(--r);
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(32px, 7vw, 58px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
}
.hero-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 11px 22px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-subtle); border-color: var(--text-3); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-subtle); color: var(--text); }
.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; }
.btn-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.btn-lg { font-size: 16px; padding: 13px 28px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-block { display: block; width: 100%; }

/* ── BRAND TICKER ── */
.ticker {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: color .2s;
}
.ticker-item:hover { color: var(--text-2); }

/* ── SECTION HEADER ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
}
.section-header { margin-bottom: 40px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.divider-red { height: 2px; background: var(--red); border: none; margin: 0; }

/* ── SERVICE GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-item {
  background: var(--surface);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .15s;
}
.service-item:hover { background: var(--bg-subtle); }
.service-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
}
.service-item-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.service-item-price {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .01em;
}

/* ── FACTS / STATS ── */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.fact {
  background: var(--surface);
  padding: 28px 24px;
}
.fact-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.fact-num span { color: var(--red); }
.fact-label {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── WHY US — list style ── */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  transition: background .15s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: var(--bg-subtle); }
.why-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .06em;
  min-width: 28px;
  padding-top: 2px;
  font-family: var(--mono);
}
.why-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.why-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── PRICE TABLE ── */
.price-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.price-table-head {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-2);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}
.price-table th {
  padding: 11px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.price-table th:not(:first-child) { text-align: right; }
.price-table td {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:not(:first-child) {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.price-table tr:hover td { background: var(--bg-subtle); }
.price-note {
  padding: 10px 20px;
  font-size: 12px;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
  font-family: var(--mono);
  line-height: 1.5;
}

/* ── CONTACT BLOCK ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.contact-card-head {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-2);
}
.contact-row {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: baseline;
}
.contact-row:last-child { border-bottom: none; }
.contact-key {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
}
.contact-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.contact-val a { color: var(--red); }
.contact-val a:hover { text-decoration: underline; }
.contact-val small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  margin-top: 2px;
}

/* ── MAP ── */
.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-muted);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}
.map-placeholder {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.map-placeholder-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.map-placeholder code {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 6px;
  color: var(--red);
}
.map-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── EMERGENCY / CTA BAND ── */
.band {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px;
}
.band-red {
  background: var(--red);
  border-color: var(--red);
}
.band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.band-text { }
.band-title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.band-red .band-title { color: #fff; }
.band-sub { font-size: 15px; color: var(--text-2); }
.band-red .band-sub { color: rgba(255,255,255,.75); }
.band-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.review-stars {
  font-size: 13px;
  color: #d97706;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}
.review-ph {
  background: var(--bg-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}
.review-ph a { color: var(--red); font-weight: 600; }

/* ── INSTAGRAM GRID ── */
.ig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color .15s;
}
.ig-handle:hover { color: var(--text); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ig-cell {
  aspect-ratio: 1;
  background: var(--bg-muted);
  position: relative;
  overflow: hidden;
}
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.ig-cell:hover img { transform: scale(1.04); }
.ig-cell-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-3);
  text-align: center;
  padding: 8px;
}
.ig-cell-ph code {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-3);
  word-break: break-all;
}

/* ── FORM ── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
.form-header {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.form-header-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 2px;
}
.form-header-sub { font-size: 13px; color: var(--text-2); }
.form-body { padding: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-2);
}
.form-label .req { color: var(--red); margin-left: 2px; }
.form-control {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus { border-color: var(--red); }
.form-control[type="date"]::-webkit-calendar-picker-indicator { opacity: .5; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a8a29e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select.form-control option { background: var(--bg); color: var(--text); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 12px; line-height: 1.6; text-align: center; }
.form-hint a { color: var(--red); font-weight: 500; }

/* form divider */
.form-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-or::before, .form-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 72px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-float::before {
  content: 'WhatsApp';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}
.wa-float:hover::before { opacity: 1; }

/* ── STICKY CALL — mobile only ── */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  z-index: 80;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 -1px 0 rgba(0,0,0,.1);
}
.sticky-call a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0));
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  border-radius: 3px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--text-2); }

/* ── PLACEHOLDER CALLOUT ── */
.ph {
  background: var(--bg-muted);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  margin-top: 8px;
}
.ph strong { color: var(--red); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* 520px+ */
@media (min-width: 520px) {
  .facts-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 720px+ */
@media (min-width: 720px) {
  .hero-inner { grid-template-columns: 1.2fr 1fr; }
  .hero-logo { justify-content: flex-end; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 900px+ */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .sticky-call { display: none; }
  .wa-float { bottom: 24px; }
}

/* Safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-call { padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
}
