:root {
  --bg: #080b12;
  --bg-2: #0c111c;
  --surface: rgba(255,255,255,.062);
  --surface-2: rgba(255,255,255,.092);
  --text: #f8fafc;
  --muted: #a9b3c7;
  --muted-2: #7d879b;
  --primary: #20e070;
  --primary-2: #b7ff60;
  --warning: #ffbb04;
  --border: rgba(255,255,255,.12);
  --border-2: rgba(32,224,112,.26);
  --shadow: 0 18px 54px rgba(0,0,0,.32);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
  --font: "Noto Sans Georgian", "BPG Arial", "DejaVu Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Noto Serif Georgian", "Noto Sans Georgian", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  min-height: 100vh;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.68;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(32,224,112,.18), transparent 28%),
    radial-gradient(circle at 88% 2%, rgba(255,187,4,.12), transparent 28%),
    linear-gradient(180deg, #070a10 0%, #0b0f18 45%, #070a10 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: var(--font); font-size: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #061009;
  font-weight: 800;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,11,18,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.045em;
}

.brand-mark,
.footer-logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #051009;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 30px rgba(32,224,112,.22);
}

.brand small,
.footer-logo small { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: -.024em;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 10px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: -.026em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #051009;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 32px rgba(32,224,112,.2);
}

.btn-ghost {
  color: #edf3ff;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
	    font-size: 15px;
    letter-spacing: 0;
}

.btn-soft {
  color: #ffe7a3;
  background: rgba(255,187,4,.12);
  border: 1px solid rgba(255,187,4,.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--text);
}

/* Hero */
.hero { padding: 62px 0 34px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 42px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(32,224,112,.22);
  border-radius: 999px;
  color: #ddffe9;
  background: rgba(32,224,112,.09);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: -.012em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(32,224,112,.12);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.05vw, 4.08rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1 span { color: var(--primary); }

.hero-text {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(.9rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: -.006em;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions { margin-bottom: 20px; }

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.052);
  color: #cfd7e7;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -.01em;
}

.hero-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.052));
  box-shadow: var(--shadow);
}

.pro-dashboard {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #0c111c;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.26); }

.dash-label {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,187,4,.12);
  color: #ffe7a3;
  font-size: .68rem;
  font-weight: 900;
}

.dash-body { display: grid; gap: 12px; padding: 14px; }

.dash-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.052);
}

.dash-search span {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
}

.dash-search b {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(32,224,112,.14);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 900;
}

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.dash-metric {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.dash-metric strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.dash-metric span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
}

.dash-list { display: grid; gap: 9px; }

.dash-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.058);
}

.dash-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(32,224,112,.13);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 900;
}

.dash-item h3 {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.034em;
}

.dash-item p {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 500;
  line-height: 1.46;
}

.dash-status {
  padding: 5px 8px;
  border-radius: 999px;
  color: #dfffe9;
  background: rgba(32,224,112,.12);
  border: 1px solid rgba(32,224,112,.2);
  font-size: .66rem;
  font-weight: 900;
}

.ai-ready {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--border-2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32,224,112,.13), rgba(255,187,4,.07));
}

.ai-ready strong {
  min-width: 54px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(32,224,112,.14);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 900;
}

.ai-ready span {
  color: #dce5f5;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.46;
}

/* Shared sections */
.seo-strip { padding: 16px 0 0; }
.seo-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }

.mini-stat,
.service-card,
.compare-card,
.panel,
.step,
.quote,
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
}

.mini-stat {
  padding: 16px;
  border-radius: 18px;
}

.mini-stat strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.1;
}

.mini-stat span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.5;
}

.section { padding: 68px 0; }
.section.alt { background: rgba(255,255,255,.024); border-block: 1px solid rgba(255,255,255,.055); }

.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-kicker {
  margin-bottom: 7px;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 11px;
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 2.58vw, 2.62rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.section-head p,
.panel p {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.82;
}

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.service-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32,224,112,.34);
  background: var(--surface-2);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 15px;
  color: var(--primary);
  background: rgba(32,224,112,.12);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .75rem;
}

.service-card h3,
.compare-card h3,
.step h3,
.panel h2,
.panel h3,
.lead-form h2,
.cta-box h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.04em;
}

.service-card h3 { margin-bottom: 8px; font-size: 1.04rem; line-height: 1.3; }
.service-card p { margin-bottom: 13px; color: var(--muted); font-size: .82rem; line-height: 1.74; }
.service-card ul { display: grid; gap: 6px; margin-bottom: 14px; list-style: none; color: #cbd5e1; font-size: .78rem; font-weight: 600; }
.service-card li::before { content: "✓ "; color: var(--primary); font-weight: 900; }
.service-card a { color: var(--primary); font-family: var(--font-display); font-size: .84rem; font-weight: 900; }

.comparison,
.ai-block,
.features-wrap,
.faq-layout {
  display: grid;
  gap: 22px;
}

.comparison { grid-template-columns: 1fr 1fr; }
.ai-block { grid-template-columns: .92fr 1.08fr; }
.features-wrap { grid-template-columns: .9fr 1.1fr; }
.faq-layout { grid-template-columns: .8fr 1.2fr; align-items: start; }

.compare-card,
.panel,
.step,
.quote {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.compare-card.good {
  border-color: rgba(32,224,112,.24);
  background: linear-gradient(180deg, rgba(32,224,112,.09), rgba(255,255,255,.052));
}

.compare-card h3 { margin-bottom: 12px; font-size: 1.08rem; }
.compare-card ul { display: grid; gap: 10px; list-style: none; color: var(--muted); font-size: .84rem; line-height: 1.65; }
.compare-card li { display: flex; gap: 8px; }
.bad-mark { color: #ff7589; font-weight: 900; }
.good-mark { color: var(--primary); font-weight: 900; }

.panel { border-radius: var(--radius-xl); }
.answer-card h3 { margin-bottom: 16px; }
.answer-grid { display: grid; gap: 12px; }
.answer-item { padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.052); }
.answer-item b { display: block; margin-bottom: 5px; font-family: var(--font-display); font-size: .96rem; font-weight: 900; }

.city-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.city {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.052);
  color: #dce5f5;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: step; }
.step { counter-increment: step; }
.step::before {
  content: "0" counter(step);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 13px;
  background: var(--primary);
  color: #061009;
  font-weight: 950;
}
.step h3 { margin-bottom: 7px; font-size: 1rem; }
.step p { color: var(--muted); font-size: .82rem; line-height: 1.72; }

.feature-list { display: grid; gap: 12px; list-style: none; }
.feature-list li { display: flex; gap: 10px; color: var(--muted); font-size: .84rem; line-height: 1.72; }
.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--primary);
  color: #061009;
  font-weight: 950;
  font-size: .75rem;
}

/* Form */
.lead-form h2 { margin-bottom: 9px; font-size: clamp(1.48rem, 2.2vw, 2.08rem); line-height: 1.2; }
.lead-form p { margin-bottom: 18px; color: var(--muted); font-size: .86rem; line-height: 1.76; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { color: #dce5f5; font-family: var(--font-display); font-size: .82rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255,255,255,.065);
  color: var(--text);
  outline: none;
  font-size: .84rem;
  font-weight: 500;
}
select option { color: #101827; }
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(32,224,112,.58);
  box-shadow: 0 0 0 3px rgba(32,224,112,.1);
}
.form-note { margin-top: 12px; color: var(--muted-2); font-size: .76rem; }

/* Reviews + FAQ */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.quote p { margin-bottom: 16px; color: #d8e0ef; font-size: .84rem; line-height: 1.75; }
.person { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .8rem; font-weight: 600; }
.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(32,224,112,.14);
  color: var(--primary);
  font-weight: 950;
}

.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border-radius: var(--radius-md); }
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 900;
}
.faq-button span:last-child { color: var(--primary); font-size: 1.1rem; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .2s ease; }
.faq-content p { padding: 0 16px 15px; color: var(--muted); font-size: .82rem; line-height: 1.74; }

/* CTA + Footer */
.cta { padding: 48px 0 84px; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(32,224,112,.14), rgba(255,187,4,.08)), rgba(255,255,255,.052);
  box-shadow: var(--shadow);
}
.cta-box h2 { margin-bottom: 8px; font-size: clamp(1.62rem, 2.58vw, 2.58rem); line-height: 1.16; }
.cta-box p { color: var(--muted); font-size: .86rem; line-height: 1.76; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(8,11,18,.94);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}
.mobile-cta .btn { width: 100%; min-height: 42px; font-size: .74rem; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 92px;
  border-top: 1px solid rgba(32,224,112,.16);
  color: var(--muted);
  background: radial-gradient(circle at 12% 0%, rgba(32,224,112,.13), transparent 34%), linear-gradient(180deg, rgba(8,11,18,.94), rgba(3,5,9,.98));
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(32,224,112,.08), transparent);
  height: 1px;
}
.footer-premium {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr .9fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.footer-brand { display: grid; gap: 14px; align-content: start; }
.footer-description { max-width: 360px; color: var(--muted); font-size: .84rem; line-height: 1.75; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid rgba(32,224,112,.18);
  border-radius: 999px;
  color: #dfffe9;
  background: rgba(32,224,112,.075);
  font-size: .68rem;
  font-weight: 800;
}
.footer-col h3 { margin-bottom: 12px; color: var(--text); font-family: var(--font-display); font-size: .98rem; font-weight: 900; }
.footer-links { display: grid; gap: 9px; list-style: none; }
.footer-links a { display: inline-flex; width: fit-content; color: var(--muted); font-size: .8rem; font-weight: 600; transition: color .18s ease, transform .18s ease; }
.footer-links a:hover { color: var(--primary); transform: translateX(3px); }
.footer-contact-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(32,224,112,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32,224,112,.09), rgba(255,187,4,.045));
}
.footer-contact-card strong { color: var(--text); font-family: var(--font-display); font-size: 1rem; font-weight: 900; }
.footer-contact-card p { color: var(--muted); font-size: .78rem; line-height: 1.65; }
.footer-contact-card .btn { width: 100%; min-height: 40px; font-size: .76rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 15px 4px 0;
  color: var(--muted-2);
  font-size: .76rem;
  font-weight: 600;
}
.footer-bottom-links { display: flex; gap: 14px; list-style: none; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--muted-2); }
.footer-bottom-links a:hover { color: var(--primary); }

/* Animation */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity .38s ease, transform .38s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1040px) {
  .nav-menu, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .nav-menu {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #0a0f19;
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav-menu a {
    display: flex;
    padding: 10px 8px;
    border-radius: 12px;
    color: #eaf0fb;
    font-size: .84rem;
  }
  .site-header.menu-open .nav-menu a::after { display: none; }
  .site-header.menu-open .nav-menu a:hover { background: rgba(255,255,255,.06); color: var(--primary); }

  .hero-grid,
  .ai-block,
  .features-wrap,
  .faq-layout,
  .cta-box,
  .comparison { grid-template-columns: 1fr; }

  .services-grid,
  .testimonials { grid-template-columns: repeat(2,1fr); }

  .steps,
  .seo-strip-inner { grid-template-columns: repeat(2,1fr); }

  .city-grid { grid-template-columns: repeat(3,1fr); }

  .footer-premium { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 68px; }
  body { font-size: 13.4px; line-height: 1.62; }
  .container { width: min(100% - 22px, var(--container)); }
  .nav { min-height: 64px; }
  .brand { font-size: 1.04rem; }
  .brand-mark { width: 34px; height: 34px; border-radius: 12px; }
  .menu-toggle { width: 40px; height: 40px; }
  .site-header.menu-open .nav-menu { top: 64px; left: 11px; right: 11px; }

  .hero { padding: 24px 0 22px; }
  .hero-grid { gap: 18px; }
  .eyebrow { width: 100%; justify-content: center; text-align: center; padding: 7px 9px; border-radius: 14px; font-size: .7rem; }
  .pulse { width: 7px; height: 7px; box-shadow: 0 0 0 5px rgba(32,224,112,.11); }
  .hero h1 { text-align: center; font-size: clamp(1.5rem, 7.45vw, 2.18rem); line-height: 1.22; letter-spacing: -.042em; }
  .hero-text { text-align: center; font-size: .78rem; line-height: 1.72; }
  .hero-actions { display: grid; gap: 8px; margin-bottom: 14px; }
  .hero-actions .btn-soft { display: none; }
  .btn { width: 100%; min-height: 41px; padding: 9px 12px; font-size: .76rem; }
  .trust-row { display: grid; gap: 8px; }
  .trust-pill { justify-content: center; width: 100%; border-radius: 13px; font-size: .73rem; }

  .hero-card { padding: 10px; border-radius: 20px; }
  .pro-dashboard { border-radius: 17px; }
  .dash-top { padding: 11px; }
  .dash-body { padding: 10px; gap: 9px; }
  .dash-search { grid-template-columns: 1fr; }
  .dash-search span, .dash-search b { justify-content: center; font-size: .74rem; }
  .dash-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .dash-metric { padding: 10px; border-radius: 14px; }
  .dash-metric strong { font-size: 1.08rem; }
  .dash-metric span { font-size: .68rem; }
  .dash-item { grid-template-columns: 36px 1fr; padding: 9px; gap: 8px; border-radius: 14px; }
  .dash-icon { width: 36px; height: 36px; border-radius: 12px; font-size: .72rem; }
  .dash-item h3 { font-size: .82rem; }
  .dash-item p { font-size: .7rem; }
  .dash-status { display: none; }
  .ai-ready { padding: 10px; border-radius: 16px; }
  .ai-ready strong { min-width: 48px; height: 36px; font-size: .92rem; }
  .ai-ready span { font-size: .72rem; }

  .seo-strip { padding-top: 8px; }
  .seo-strip-inner,
  .services-grid,
  .steps,
  .testimonials,
  .form-grid,
  .city-grid { grid-template-columns: 1fr; }

  .mini-stat { padding: 13px; border-radius: 16px; }
  .mini-stat strong { font-size: 1.08rem; }
  .mini-stat span { font-size: .74rem; }

  .section { padding: 42px 0; }
  .section-head { margin-bottom: 22px; }
  .section h2 { font-size: clamp(1.24rem, 5.55vw, 1.76rem); line-height: 1.26; letter-spacing: -.042em; }
  .section-head p,
  .panel p,
  .lead-form p,
  .cta-box p { font-size: .76rem; line-height: 1.74; }

  .service-card,
  .panel,
  .compare-card,
  .step,
  .quote { padding: 17px; border-radius: 18px; }

  .service-card h3,
  .compare-card h3,
  .step h3 { font-size: .92rem; }

  .service-card p,
  .step p,
  .quote p,
  .faq-content p,
  .feature-list li,
  .compare-card ul { font-size: .74rem; }

  .service-card ul { font-size: .75rem; }
  .answer-card h3 { margin-bottom: 14px; font-size: 1.08rem; }
  .answer-grid { gap: 10px; }
  .answer-item { padding: 13px; border-radius: 15px; }
  .answer-item b { font-size: .86rem; }
  .lead-form h2 { font-size: 1.22rem; }
  label { font-size: .78rem; }
  input, select, textarea { font-size: .82rem; border-radius: 12px; }
  .faq-button { padding: 13px 14px; font-size: .84rem; }

  .cta { padding: 32px 0 78px; }
  .cta-box { padding: 20px; border-radius: 20px; }
  .cta-box h2 { font-size: 1.32rem; line-height: 1.24; }

  .mobile-cta { display: grid; }

  .site-footer { padding: 42px 0 88px; }
  .footer-premium { grid-template-columns: 1fr; gap: 18px; padding: 18px; border-radius: 20px; }
  .footer-logo { font-size: 1.08rem; }
  .footer-logo-mark { width: 36px; height: 36px; border-radius: 12px; }
  .footer-description { font-size: .76rem; }
  .footer-col h3 { font-size: .92rem; margin-bottom: 9px; }
  .footer-links a { font-size: .76rem; }
  .footer-contact-card { padding: 14px; border-radius: 16px; }
  .footer-bottom { display: grid; gap: 10px; font-size: .72rem; padding-top: 14px; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 18px, var(--container)); }
  .hero h1 { font-size: 1.42rem; }
  .hero-text { font-size: .74rem; }
  .brand { font-size: .98rem; }
}

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

/* Final Profix polish: exact visual base, cleaner typography and responsive balance */
body{font-family:'Noto Sans Georgian',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;line-height:1.65} 
.hero h1{font-size:clamp(2.15rem,5vw,3.35rem);line-height:1.08;letter-spacing:-.055em}.section-head h1,.section-head h2{font-size:clamp(1.65rem,3vw,2.7rem);line-height:1.18}.service-card h3,.panel h2,.quote h3{font-size:clamp(1.08rem,1.8vw,1.35rem)}.hero-text,.section-head p,.service-card p,.panel p,.footer-description{font-size:clamp(.94rem,1.3vw,1.06rem)}
.compact-order{max-width:560px}.compact-order h2{font-size:1.35rem}.compact-order p{font-size:.95rem}.compact-order input,.compact-order select,.compact-order textarea{min-height:46px}.compact-order textarea{min-height:100px}.form-grid{gap:14px}
.pro-dashboard .dash-search{display:flex;align-items:center;justify-content:space-between;gap:12px}.dash-search span{font-size:.95rem}.dash-search b{white-space:nowrap}.dash-item h3{font-size:1rem}.dash-item p{font-size:.86rem}.ai-ready{font-size:.95rem}.ai-ready strong{font-size:1.55rem}
.blog-post h1{font-size:clamp(1.7rem,3.2vw,3rem)}.narrow{max-width:920px}.features-wrap{align-items:start}.site-footer{margin-top:0}.footer-premium{align-items:start}
@media (max-width: 920px){.hero-grid,.features-wrap,.faq-layout{grid-template-columns:1fr}.hero-card{order:2}.lead-form{max-width:100%}.nav-menu{max-height:70vh;overflow:auto}.dash-grid{grid-template-columns:1fr 1fr}.footer-premium{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}}
@media (max-width: 620px){.container{width:min(100% - 28px,var(--container))}.hero{padding-top:5px}.hero h1{font-size:2.05rem}.hero-actions{gap:10px}.hero-actions .btn{width:100%;justify-content:center}.form-grid{grid-template-columns:1fr}.footer-premium{grid-template-columns:1fr}.footer-bottom{flex-direction:column;gap:12px;align-items:flex-start}.dash-item{grid-template-columns:44px 1fr;gap:10px}.dash-status{grid-column:2}.mobile-cta{display:flex}.lead-form{padding:18px}.section{padding:54px 0}.section-head{margin-bottom:24px}}

.simple-request-card .dash-search{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:13px 14px;border-radius:18px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);margin-bottom:10px}
.simple-request-card .dash-search b{white-space:nowrap;font-size:.82rem}
.simple-request-card .dash-list{margin-top:12px}
.simple-request-card .dash-item h3{font-size:.95rem}
.simple-request-card .dash-item p{font-size:.8rem;line-height:1.55}
.compact-order .form-grid{grid-template-columns:1fr 1fr}
.compact-order .field.full{grid-column:1/-1}
@media(max-width:620px){.compact-order .form-grid{grid-template-columns:1fr}.nav-actions .btn-ghost{font-size:.9rem;padding-inline:12px}}
