

:root {
  
  --brand-yellow: #FFCC2E;
  --brand-yellow-deep: #E8B400;
  --brand-red: #E11D2A;
  --brand-red-deep: #B5121E;

  
  --ink:        #13161E;
  --ink-2:      #1E222C;
  --ink-3:      #2C313D;
  --dark-bg:    #0F1B2D;
  --muted:      #6B6B73;
  --muted-2:    #9A9AA3;
  --line:       #E6E4DC;
  --line-2:     #EFEDE5;
  --cream:      #F7F6F2;
  --cream-2:    #FBFAF6;
  --white:      #FFFFFF;

  
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  
  --shadow-1: 0 1px 2px rgba(19,22,30,.04), 0 1px 3px rgba(19,22,30,.06);
  --shadow-2: 0 6px 16px rgba(19,22,30,.07), 0 2px 4px rgba(19,22,30,.04);
  --shadow-3: 0 24px 48px -16px rgba(19,22,30,.20), 0 8px 16px -8px rgba(19,22,30,.08);

  
  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', system-ui, sans-serif;

  
  --container: 1200px;
  --nav-h: 76px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

img { max-width: 100%; display: block; }

a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  display: inline-block;
}

.topbar {
  background: var(--ink);
  color: #DCDBD3;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar .left,
.topbar .right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar a { color: #DCDBD3; }
.topbar a:hover { color: var(--brand-yellow); }
.topbar .badge {
  background: var(--brand-yellow);
  color: var(--ink);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  letter-spacing: .04em;
}
.topbar svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-yellow);
  border-bottom: 1px solid var(--brand-yellow-deep);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 17px;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.nav-links a:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--ink);
}
.nav-links a.active {
  background: var(--ink);
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.nav-cta:hover { background: var(--ink-3); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .label-long { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--font-sans);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink-3); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-yellow { background: var(--brand-yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--brand-yellow-deep); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream-2); border-color: var(--ink-2); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

.hero {
  position: relative;
  height: auto;
  min-height: clamp(580px, 82vh, 860px);
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}
.hero .slides {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease, transform 7s ease;
  transform: scale(1.08);
  will-change: opacity, transform;
}
.hero .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero .slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,14,16,.78) 0%, rgba(14,14,16,.55) 35%, rgba(14,14,16,.2) 70%, rgba(14,14,16,.45) 100%),
    linear-gradient(180deg, rgba(14,14,16,.35) 0%, transparent 30%, transparent 55%, rgba(14,14,16,.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 24px;
}
.hero-content .container { width: 100%; margin-left: 0; padding-left: clamp(24px, 6.5vw, 100px); padding-right: clamp(24px, 4vw, 100px); }
.hero-content .inner { max-width: 760px; }
.hero .eyebrow { color: rgba(255,255,255,.85); }
.hero .eyebrow::before { background: var(--brand-yellow); }
.hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--white);
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: -0.05em; right: -0.05em;
  bottom: 0.06em;
  height: 0.14em;
  background: var(--brand-yellow);
  border-radius: 4px;
  z-index: -1;
}
.hero .lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.9);
  max-width: 58ch;
  margin: 0 0 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-actions .btn-yellow { box-shadow: 0 8px 24px rgba(255, 204, 46, 0.35); }
.hero-actions .btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.16);
  border-color: var(--white);
  color: var(--white);
}

.hero-trust {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust .stat .n {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-trust .stat .l {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-top: 2px;
}

.hero-phone {
  position: absolute;
  top: 32px;
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-3);
  color: var(--ink);
}
.hero-phone .label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-phone .phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2px;
}
.hero-phone .open {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--muted);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.hero-phone .open::before {
  content: '';
  width: 8px; height: 8px;
  background: #2BB673;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43,182,115,.18);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-yellow);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 12.5px;
  box-shadow: var(--shadow-2);
  margin-bottom: 14px;
}
.hero-pill svg { width: 13px; height: 13px; }

.hero-dots {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-counter {
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-right: 10px;
}
.hero-counter b { color: var(--white); font-weight: 600; }
.hero-dot {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.28);
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background .2s ease;
}
.hero-dot:hover { background: rgba(255,255,255,.55); }
.hero-dot .fill {
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: left center;
  transform: scaleX(0);
}
.hero-dot.active .fill {
  animation: dotFill 5s linear forwards;
}
@keyframes dotFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, transform .2s ease, color .2s ease;
  color: var(--white);
}
.hero-arrow:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-50%) scale(1.05);
}
.hero-arrow.prev { left: clamp(16px, 2.5vw, 36px); }
.hero-arrow.next { right: clamp(16px, 2.5vw, 36px); }
.hero-arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }

@media (max-width: 980px) {
  .hero { height: auto; min-height: min(90vh, 780px); }
  .hero-phone { display: none; }
  .hero-content { padding-bottom: 100px; padding-top: 32px; }
  .hero-arrow { width: 44px; height: 44px; }
  .hero-trust { gap: 20px; padding-top: 22px; }
}
.why-buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) {
  .why-buy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 20px; left: 16px; right: auto; }
  .hero-content { padding-bottom: 80px; padding-top: 24px; align-items: flex-start; }
  .hero h1 { font-size: clamp(1.4rem, 6.5vw, 2rem); margin: 10px 0 12px; }
  .hero .lead { font-size: 14.5px; max-width: 100%; margin: 0 0 20px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; padding-top: 18px; flex-wrap: wrap; }
  .hero-trust .stat .n { font-size: 20px; }
  .hero-pill { font-size: 11.5px; padding: 6px 12px; }
}

.sch-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 16px;
  margin: 10px 0 6px;
}
.sch-day {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.sch-time {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.sch-time.closed {
  color: var(--muted-2);
  font-weight: 500;
}

.video-single {
  max-width: 860px;
  margin: 0 auto;
}
.video-single .video-card {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  aspect-ratio: 16 / 9;
}

@media (max-width: 480px) {
  .topbar { display: none; }
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  .section-head { gap: 16px; margin-bottom: 28px; }
  .cta-dark { padding: 28px 20px; border-radius: var(--r-lg); }
  .tile { padding: 24px 20px; border-radius: var(--r-lg); }
  .step { padding: 24px 20px; border-radius: var(--r-lg); }
  .faq-item summary { font-size: 15px; padding: 16px 18px; }
  .faq-item .ans { padding: 0 18px 18px; font-size: 14.5px; }
  .quick-estimate { padding: 20px 16px; margin-top: -32px; border-radius: var(--r-lg); }
  .quick-estimate .qe-head h3 { font-size: 18px; }
  .quote { padding: 20px; gap: 8px; }
  .quote blockquote { font-size: 17px; }
  .footer { padding: 40px 0 20px; }
  .footer .copy { flex-direction: column; gap: 8px; }
  .map { height: 320px; }
  .contact-card { padding: 20px; }
  .strip-track { font-size: 17px; }
  .nav-inner { gap: 10px; }
  .nav-cta { padding: 9px 14px; font-size: 13.5px; }
  .brand img { width: 36px; height: 36px; }
  .brand { font-size: 15px; }
  .brand small { display: none; }
  .cookie { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: flex-start; }
}

section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 { margin: 8px 0 0; max-width: 18ch; }
.section-head p  { color: var(--muted); max-width: 48ch; margin: 0; }

.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-ink   { background: var(--ink); color: #DCDBD3; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: transparent; }
.tile .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}
.tile h3 {
  font-size: 1.45rem;
  margin: 0;
}
.tile p { color: var(--muted); margin: 0; }
.tile .link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.tile .link svg { width: 14px; height: 14px; transition: transform .15s ease; }
.tile:hover .link svg { transform: translateX(3px); }
.tile .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.tile .icon svg { width: 26px; height: 26px; stroke: var(--ink); fill: none; stroke-width: 1.8; }
.tile.featured {
  background: var(--ink);
  color: #DCDBD3;
  border-color: var(--ink);
}
.tile.featured h3, .tile.featured .link { color: var(--white); }
.tile.featured p { color: #A8A8AE; }
.tile.featured .icon { background: rgba(255, 204, 46, 0.16); }
.tile.featured .icon svg { stroke: var(--brand-yellow); }
.tile.featured .num { color: var(--brand-yellow); }
.tile.featured:hover { box-shadow: var(--shadow-3); }
@media (max-width: 900px) { .tiles { grid-template-columns: 1fr; } }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--brand-yellow);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p  { color: var(--muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.strip {
  background: var(--brand-yellow);
  padding: 18px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.strip-track span { display: inline-flex; align-items: center; gap: 40px; }
.strip-track .dot {
  width: 8px; height: 8px; background: var(--ink); border-radius: 50%; display: inline-block;
}

.cta-dark {
  background: var(--ink);
  color: #DCDBD3;
  border-radius: var(--r-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-dark h2 { color: var(--white); margin: 0 0 12px; }
.cta-dark p { color: #A8A8AE; margin: 0; max-width: 50ch; }
.cta-dark .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) {
  .cta-dark { grid-template-columns: 1fr; padding: 36px 28px; }
  .cta-dark .actions { justify-content: flex-start; }
}

.footer {
  background: var(--ink);
  color: #B4B4BB;
  padding: 64px 0 24px;
  margin-top: auto;
}
.footer a { color: #DCDBD3; }
.footer a:hover { color: var(--brand-yellow); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A2A30;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.footer .brand-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .brand-mark img { width: 44px; height: 44px; object-fit: contain; }
.footer .brand-mark span { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 17px; }
.footer .lead { color: #A8A8AE; max-width: 36ch; font-size: 14.5px; margin: 0 0 16px; }
.footer .copy {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6B6B73;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.page-head {
  padding: 64px 0 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.crumbs {
  font-size: 13px;
  color: var(--muted);
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  margin-bottom: 16px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--muted-2); }
.page-head h1 { margin: 0 0 12px; }
.page-head .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 64ch;
  margin: 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}

.cond-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .cond-grid { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
}
.checklist .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.checklist.ok  .icon { background: #DCF1E5; color: #14794A; }
.checklist.no  .icon { background: #FBE2E4; color: #B5121E; }
.checklist .icon svg { width: 12px; height: 12px; stroke-width: 3; fill: none; stroke: currentColor; }

.callout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: #DCDBD3;
  padding: 24px 28px;
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.callout .ico {
  width: 52px; height: 52px;
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.callout .ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.callout .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: #A8A8AE; font-weight: 600; }
.callout .val { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); }
.callout .val a { color: var(--white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .01em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14,14,16,.08);
}
.field .hint { font-size: 12.5px; color: var(--muted); }
.form-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin: 12px 0 0;
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.form-actions .legal {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 60ch;
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-item .ico {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .ico svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 2; }
.contact-item .ico.viber { background: #7360F2; }
.contact-item .ico.viber svg { width: 24px; height: 24px; }
.contact-item .ico.viber-img { background: transparent; border: none; box-shadow: none; }
.contact-item .ico.viber-img img { width: 44px; height: 44px; object-fit: contain; }
.contact-item .k {
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.contact-item .v {
  font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--ink);
}
.contact-item .v a { color: var(--ink); }
.contact-item .meta { font-size: 13px; color: var(--muted); margin-top: 4px; }

.map {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 580px;
  border: none;
  box-shadow: var(--shadow-3);
}
.map iframe,
.map #mapFrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.inv-back-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .28s ease, margin .35s ease;
  margin: 0;
  text-align: left;
}
.inv-back-wrap.visible {
  max-height: 80px;
  opacity: 1;
}
#invBackTop.visible { margin-bottom: 16px; }
#invBackBot.visible { margin-top: 20px; }
.inv-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-yellow);
  color: var(--ink);
  border: none;
  border-radius: var(--r-full);
  padding: 14px 26px 14px 18px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 20px rgba(255,204,46,.45), 0 2px 6px rgba(14,14,16,.1);
  letter-spacing: -0.01em;
}
.inv-back-btn:hover {
  background: var(--brand-yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,204,46,.55), 0 3px 8px rgba(14,14,16,.12);
}
.inv-back-btn:active {
  transform: translateY(0);
}
.inv-back-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.inventory-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.inventory-frame iframe {
  width: 100%;
  height: calc(100vh - 160px);
  min-height: 600px;
  border: 0;
  display: block;
  background: var(--white);
}

.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.video-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-2);
}
.video-card iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .videos { grid-template-columns: 1fr; } }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.value .n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.value .l { font-size: 14px; color: var(--muted); }
@media (max-width: 720px) { .values { grid-template-columns: 1fr 1fr; } }

.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 520px;
  background: var(--ink);
  color: #DCDBD3;
  padding: 18px 20px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 16px;
  z-index: 100;
  box-shadow: var(--shadow-3);
  font-size: 13.5px;
  line-height: 1.5;
}
.cookie a { color: var(--brand-yellow); text-decoration: underline; }
.cookie button {
  background: var(--brand-yellow);
  color: var(--ink);
  border: 0;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-full);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  font-size: 13.5px;
}
.cookie.hidden { display: none; }

.mm-backdrop { display: none; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.32s;
  overflow: hidden;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mm-head .mm-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mm-head .mm-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.mm-close {
  width: 42px; height: 42px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.mm-close:hover { background: var(--line-2); border-color: var(--ink); transform: rotate(90deg); }
.mm-close svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 2; }

.mm-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}
.mm-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-2);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: background .18s ease, color .18s ease, padding-left .22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.mm-nav a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--brand-yellow);
  border-radius: 0 2px 2px 0;
  transition: height .22s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-nav a:hover::before { height: 60%; }
.mm-nav a:hover { background: var(--cream); color: var(--ink); padding-left: 30px; }
.mm-nav a.active {
  background: #FFFBEE;
  color: var(--ink);
  font-weight: 700;
  padding-left: 30px;
  pointer-events: none;
}
.mm-nav a.active::before { height: 60%; background: var(--brand-yellow); }
.mm-nav a.active .arr { color: var(--brand-yellow); }
.mm-nav a .arr {
  font-size: 20px;
  color: var(--line);
  font-weight: 400;
  transition: transform .2s ease, color .18s ease;
}
.mm-nav a:hover .arr { transform: translateX(4px); color: var(--muted); }

.mm-foot {
  padding: 20px 24px 40px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--cream);
}
.mm-foot .mm-cta {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 16px 24px;
  border-radius: var(--r-full);
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255, 204, 46, 0.4);
}

.quick-estimate {
  position: relative;
  z-index: 5;
  margin: -64px auto 0;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 64px -24px rgba(14,14,16,.24), 0 12px 24px -12px rgba(14,14,16,.12);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
}
.quick-estimate .qe-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.quick-estimate .qe-head .eyebrow { color: var(--brand-yellow-deep); }
.quick-estimate .qe-head .eyebrow::before { background: var(--brand-yellow); }
.quick-estimate .qe-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.quick-estimate .qe-head p { color: var(--muted); font-size: 13.5px; margin: 4px 0 0; }
.quick-estimate .qe-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.quick-estimate .qe-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quick-estimate .qe-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.quick-estimate .qe-field input {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  border-radius: 0;
  outline: none;
  transition: border-color .15s ease;
}
.quick-estimate .qe-field input:focus { border-color: var(--ink); }
.quick-estimate .qe-field input::placeholder { color: var(--muted-2); font-weight: 400; }
@media (max-width: 980px) {
  .quick-estimate {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    margin-top: -48px;
  }
  .quick-estimate .qe-head { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .quick-estimate .qe-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .quick-estimate .qe-fields { grid-template-columns: 1fr; }
}

.whyus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}
.whyus .feat {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s ease;
}
.whyus .feat:hover { background: var(--cream-2); }
.whyus .feat:nth-child(3n) { border-right: 0; }
.whyus .feat:nth-last-child(-n+3) { border-bottom: 0; }
.whyus .feat .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.whyus .feat .icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.8; }
.whyus .feat h3 { font-size: 17px; margin: 0; font-family: var(--font-display); letter-spacing: -0.01em; }
.whyus .feat p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }
@media (max-width: 900px) {
  .whyus { grid-template-columns: 1fr 1fr; }
  .whyus .feat { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .whyus .feat:nth-child(2n) { border-right: 0 !important; }
  .whyus .feat:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
@media (max-width: 560px) {
  .whyus { grid-template-columns: 1fr; }
  .whyus .feat { border-right: 0 !important; }
}

.tiles { gap: 24px; }
.tile {
  padding: 36px 32px;
  border-radius: var(--r-xl);
}
.tile .icon {
  width: 64px; height: 64px;
  border-radius: 18px;
}
.tile .icon svg { width: 28px; height: 28px; }
.tile h3 { font-size: 1.55rem; letter-spacing: -0.02em; }
.tile.featured { position: relative; overflow: hidden; }
.tile.featured::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  right: -80px; bottom: -80px;
  background: radial-gradient(circle, rgba(255, 204, 46, 0.22), transparent 70%);
  pointer-events: none;
}
.tile .meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tile.featured .meta { color: var(--brand-yellow); }

.steps-wrap { position: relative; }
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 88px;
  left: 16%;
  right: 16%;
  height: 2px;
  border-top: 2px dashed var(--line);
  z-index: 0;
}
.steps { position: relative; z-index: 1; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.step .step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  width: max-content;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.step .step-pill .n {
  width: 22px; height: 22px;
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-left: -4px;
}
.step .step-num { display: none; }
.step h3 { margin: 0; font-size: 1.35rem; }
@media (max-width: 900px) {
  .steps-wrap::before { display: none; }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] { border-color: var(--ink); box-shadow: var(--shadow-1); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
}
.faq-item .chev svg { width: 14px; height: 14px; stroke: var(--ink); fill: none; stroke-width: 2.2; }
.faq-item[open] .chev { background: var(--brand-yellow); transform: rotate(180deg); }
.faq-item .ans-wrap {
  overflow: hidden;
}
.faq-item .ans {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

.quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  align-items: center;
}
.quote .mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.8;
  color: var(--brand-yellow);
  font-weight: 700;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}
.quote .cite {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
}
.quote .stars { color: var(--brand-yellow-deep); letter-spacing: 2px; }
@media (max-width: 720px) {
  .quote { grid-template-columns: 1fr; padding: 28px; gap: 4px; }
  .quote .mark { font-size: 64px; }
}

.section-head h2 { max-width: 22ch; }
.section-head p { font-size: 16px; line-height: 1.55; }

.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 18px;
}
.fcard-head {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.fcard-head .head-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--brand-yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fcard-head .head-ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.fcard-head h4 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.fcard-head small { color: var(--muted); font-size: 13.5px; display: block; }
.fcard-head small a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.fcard-body { padding: 28px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.frow.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.frow.cols-7-5 { grid-template-columns: 1.4fr 1fr; }
.frow:last-child { margin-bottom: 0; }
.frow > .full { grid-column: 1 / -1; }
@media (max-width: 720px) {
  .frow, .frow.cols-3, .frow.cols-7-5 { grid-template-columns: 1fr; }
}

.fgrp { display: flex; flex-direction: column; gap: 6px; }
.fgrp label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fgrp .ig {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.fgrp .ig:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14,14,16,.08);
}
.fgrp .ig.is-invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220,38,38,.1);
}
.fgrp .ig.is-valid {
  border-color: #14794A;
  box-shadow: 0 0 0 4px rgba(20,121,74,.08);
}
.fgrp .ig .addon {
  display: flex; align-items: center; justify-content: center;
  width: 44px;
  background: var(--cream);
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 14px;
}
.fgrp .ig .addon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.fgrp input:not([type="radio"]):not([type="file"]),
.fgrp textarea,
.fgrp select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.fgrp .input-solo {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  padding: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fgrp .input-solo:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14,14,16,.08);
}
.fgrp textarea { min-height: 96px; resize: vertical; padding: 12px 14px; }

.fhint {
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 14px;
}
.fhint.valid { color: #14794A; }
.fhint.invalid { color: #DC2626; }
.fhint svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; }

.pill-choice {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill-choice label {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 12px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--muted);
  background: var(--white);
  text-align: center;
  transition: all .15s ease;
  user-select: none;
  position: relative;
  white-space: nowrap;
}
.pill-choice label:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}
.pill-choice label.selected {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow-deep);
  color: var(--ink);
}
.pill-choice input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  max-width: 560px;
}
.choice-row label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  transition: all .15s ease;
  position: relative;
  user-select: none;
}
.choice-row label svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.choice-row label:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}
.choice-row label.selected {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow-deep);
  color: var(--ink);
}
.choice-row input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.radio-cards label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--white);
  transition: all .2s ease;
  user-select: none;
  position: relative;
}
.radio-cards label .rc-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s ease;
}
.radio-cards label .rc-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.radio-cards label .rc-text { display: flex; flex-direction: column; gap: 2px; }
.radio-cards label .rc-title { font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; }
.radio-cards label .rc-sub { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.radio-cards label .rc-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand-yellow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: all .2s ease;
}
.radio-cards label .rc-check svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 3; }
.radio-cards label:hover {
  border-color: var(--ink-3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.radio-cards label.selected {
  border-color: var(--brand-yellow-deep);
  background: #fffbea;
  box-shadow: 0 0 0 3px rgba(255,204,46,.18);
}
.radio-cards label.selected .rc-ico {
  background: var(--brand-yellow);
  color: var(--ink);
}
.radio-cards label.selected .rc-check { opacity: 1; transform: scale(1); }
.radio-cards input[type=radio] {
  position: absolute; opacity: 0; pointer-events: none;
}

.upload-zone {
  position: relative;
  border: 2px dashed var(--line);
  border-radius: var(--r-md);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  background: var(--cream-2);
  transition: all .2s ease;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--ink);
  background: var(--cream);
}
.upload-zone input[type=file] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.upload-zone .up-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.upload-zone .up-ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.upload-zone .up-text { font-weight: 600; color: var(--ink); margin: 0; font-size: 14.5px; }
.upload-zone .up-text strong { color: var(--ink); border-bottom: 2px solid var(--brand-yellow); }
.upload-zone .up-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.foto-upload-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 16px;
  background: #FFFBEA;
  border: 1.5px solid #FFCC2E;
  border-radius: 10px;
  line-height: 1.5;
}
.foto-upload-info__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #FFCC2E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foto-upload-info__icon svg {
  width: 18px;
  height: 18px;
  stroke: #13161E;
  fill: none;
  stroke-width: 2.2;
}
.foto-upload-info__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.foto-upload-info__body strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.foto-upload-info__body span {
  font-size: 12px;
  color: var(--muted);
}

.foto-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  background: var(--brand-yellow);
  padding: 7px 14px;
  border-radius: var(--r-full);
  margin: 14px 0 12px;
}
.foto-counter svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.thumb-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid var(--line);
  aspect-ratio: 4/3;
  transition: all .15s ease;
}
.thumb-wrapper:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.thumb-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-remove {
  position: absolute;
  top: 6px; right: 6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(14,14,16,.85);
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all .15s ease;
  z-index: 2;
  padding: 0;
}
.thumb-remove:hover { background: #DC2626; transform: scale(1.08); }
.thumb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 8px 6px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #fff;
}
.thumb-name {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thumb-size { font-size: 10px; opacity: .85; margin-top: 1px; }

.conditional-row {
  overflow: hidden;
  transition: max-height .3s ease, opacity .25s ease, margin .3s ease;
  max-height: 600px;
}
.conditional-row.hidden { max-height: 0 !important; opacity: 0; margin: 0 !important; }

.form-alert {
  display: none;
  background: #FEF2F3;
  border: 1px solid #FBC4C7;
  color: #B5121E;
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 18px;
  position: relative;
}
.form-alert.show { display: block; }
.form-alert .title-row {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 4px;
}
.form-alert .title-row svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.form-alert ul { margin: 4px 0 0 28px; padding: 0; font-size: 14px; line-height: 1.55; }
.form-alert .close {
  position: absolute;
  top: 14px; right: 16px;
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: currentColor;
  cursor: pointer;
  opacity: .5;
}
.form-alert .close:hover { opacity: 1; }

.btn-submit { position: relative; }
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .btn-icon { display: none; }
.btn-submit .spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.form-foot .legal { font-size: 12.5px; color: var(--muted); max-width: 60ch; flex: 1 1 360px; }
.form-foot .actions { display: flex; gap: 12px; flex-wrap: wrap; }

.tiles {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.tiles .col-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
  text-decoration: none;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: transparent;
}
.tile .big-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--line-2);
  z-index: -1;
  user-select: none;
}
.tile .meta {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tile h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 14ch;
}
.tile p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.55; }
.tile .icon-line {
  width: 48px;
  height: 1.5px;
  background: var(--ink);
  margin-bottom: 4px;
}
.tile .link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: .01em;
}
.tile .link .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.tile .link .arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.tile:hover .link .arrow { background: var(--ink); color: var(--white); transform: rotate(-45deg); }

.tile.featured {
  padding: 0;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  min-height: 460px;
}
.tile.featured .featured-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: .55;
  filter: grayscale(20%);
  transition: opacity .4s ease, transform .8s ease;
}
.tile.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(14,14,16,.97) 0%, rgba(14,14,16,.88) 22%, rgba(14,14,16,.65) 42%, rgba(14,14,16,.28) 62%, rgba(14,14,16,.06) 80%, transparent 100%),
    linear-gradient(to top,  rgba(14,14,16,.55) 0%, rgba(14,14,16,.15) 22%, transparent 40%);
}
.tile.featured:hover .featured-img { opacity: .7; transform: scale(1.04); }
.tile.featured .featured-inner {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.tile.featured h3 { color: var(--white); font-size: 2.2rem; max-width: 14ch; }
.tile.featured p { color: rgba(255,255,255,.78); max-width: 38ch; }
.tile.featured .meta { color: var(--brand-yellow); }
.tile.featured .icon-line { background: var(--brand-yellow); }
.tile.featured .link { color: var(--white); }
.tile.featured .link .arrow { border-color: rgba(255,255,255,.6); color: var(--white); }
.tile.featured:hover .link .arrow { background: var(--brand-yellow); color: var(--ink); border-color: var(--brand-yellow); }
.tile.featured .big-num { color: rgba(255,255,255,.05); top: 24px; right: 28px; bottom: auto; font-size: 150px; line-height: 1; }

.tile.compact { min-height: 220px; padding: 28px 30px; }
.tile.compact h3 { font-size: 1.35rem; }

@media (max-width: 980px) {
  .tiles { grid-template-columns: 1fr; }
  .tile.featured { min-height: 380px; }
  .tile.featured h3 { font-size: 1.8rem; }
  .tile .big-num { font-size: 96px; }
  .tile.featured .big-num { font-size: 120px; }
}

.stats-band {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.stats-band .lead {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  max-width: 18ch;
  line-height: 1.3;
}
.stats-band .lead span { color: var(--brand-yellow); }
.stats-band .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.stats-band .stat .n {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.stats-band .stat .l {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
@media (max-width: 980px) {
  .stats-band .container { grid-template-columns: 1fr 1fr; }
  .stats-band .lead { grid-column: 1 / -1; max-width: none; padding-bottom: 8px; }
  .stats-band .stat:nth-child(2) { padding-left: 0; border-left: 0; }
  .stats-band .stat:nth-child(4) { padding-left: 0; border-left: 0; }
}
@media (max-width: 560px) {
  .stats-band .container { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.reviews-section {
  background: var(--white);
  padding: 80px 0 88px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 0 24px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.reviews-head .left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.reviews-head h2 { margin: 0; max-width: 22ch; }
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  background: var(--cream);
  border-radius: var(--r-full);
  border: 1px solid var(--line);
}
.reviews-summary .google-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
}
.reviews-summary .google-badge svg { width: 16px; height: 16px; }
.reviews-summary .rating {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.reviews-summary .stars {
  color: #F5B400;
  letter-spacing: 1px;
  font-size: 14px;
}
.reviews-summary .half-star {
  background: linear-gradient(90deg, #F5B400 50%, #D4D4D4 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-summary .count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.marquee {
  position: relative;
  overflow: hidden;
  --gap: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

.review-card {
  flex: 0 0 380px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.review-card:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.review-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card .author .name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.review-card .author .sub { font-size: 12.5px; color: var(--muted); }
.review-card .google-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-card .google-mark svg { width: 15px; height: 15px; }
.review-card .stars {
  color: #F5B400;
  letter-spacing: 2px;
  font-size: 14px;
}
.review-card .body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  font-family: var(--font-sans);
}
.review-card .date {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
}

.cta-dark,
.stats-band,
.tile.featured,
.footer {
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,204,46,.04), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(115,96,242,.05), transparent 50%);
}

.whyus .feat .icon svg { stroke-width: 1.6; }
.tile .icon svg { stroke-width: 1.6; }

.map { position: relative; }
.map-tabs {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 4px;
  box-shadow: var(--shadow-2);
}
.map-tab {
  background: transparent;
  border: 0;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
}
.map-tab:hover { color: var(--ink); }
.map-tab.active {
  background: var(--ink);
  color: var(--white);
}
.map-open {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-yellow);
  border: none;
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(255,204,46,.45);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.map-open:hover {
  background: var(--brand-yellow-deep);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,204,46,.55);
}
.map-open svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; }
@media (max-width: 560px) {
  .map-open {
    top: auto;
    bottom: 14px;
    left: 14px;
    font-size: 12.5px;
    padding: 9px 14px;
  }
  .map-tabs {
    right: 14px;
  }
}

.nav-toggle {
  border-color: rgba(0,0,0,.2);
}
.nav-toggle:hover {
  background: rgba(0,0,0,.07);
}

@media (max-width: 768px) {
  .page-head { padding: 40px 0 28px; }
  .page-head .lead { font-size: 16px; }
  .crumbs { margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .page-head { padding: 28px 0 22px; }
  .page-head h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

@media (max-width: 560px) {
  .why-buy-grid > div { padding: 20px !important; gap: 14px !important; }
  .why-buy-grid > div > div:first-child {
    width: 42px !important; height: 42px !important;
  }
}

@media (max-width: 680px) {
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .reviews-head .left { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .reviews-section { padding: 56px 0 64px; }
  .review-card { flex: 0 0 300px; padding: 20px 22px; }
}

@media (max-width: 400px) {
  .values { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value { padding: 18px; }
  .value .n { font-size: 28px; }
}

@media (max-width: 640px) {
  .fcard-body { padding: 20px 16px; }
  .fcard-head { padding: 16px 18px; gap: 12px; }
  .fcard-head .head-ico { width: 38px; height: 38px; border-radius: 10px; }
  .choice-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100% !important;
  }
  .choice-row label {
    min-width: 0;
    padding: 12px 10px;
    gap: 6px;
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
  }
  .choice-row label svg {
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 480px) {
  .fcard-body { padding: 16px; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .actions { justify-content: stretch; }
  .form-foot .actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 360px) {
  .choice-row { gap: 8px; }
  .choice-row label {
    padding: 11px 8px;
    font-size: 12.5px;
  }
}

@media (max-width: 640px) {
  .map { height: 340px; }
}
@media (max-width: 480px) {
  .map { height: 280px; }
}

@media (max-width: 480px) {
  .contact-card { padding: 18px; gap: 14px; }
  .contact-item { gap: 12px; padding-bottom: 14px; }
}

@media (max-width: 460px) {
  .whyus { grid-template-columns: 1fr; }
  .whyus .feat { border-right: 0 !important; padding: 24px 20px; }
}

@media (max-width: 400px) {
  .stats-band { padding: 32px 0; }
  .stats-band .stat .n { font-size: 24px; }
  .stats-band .container { gap: 14px; }
}

@media (max-width: 600px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
  .section-head p { max-width: 100%; }
}

@media (max-width: 400px) {
  .cta-dark { padding: 24px 20px; border-radius: var(--r-lg); }
  .cta-dark h2 { font-size: 1.5rem; }
}

@media (max-width: 400px) {
  .quick-estimate { padding: 20px 16px; }
  .quick-estimate .qe-fields { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .tiles { gap: 14px; }
  .tile { padding: 28px 22px; border-radius: var(--r-lg); }
  .tile.featured .featured-inner { padding: 28px 22px; }
  .tile.featured { min-height: 300px; }
  .tile.featured h3 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .video-single .video-card { border-radius: var(--r-lg); }
}

@media (max-width: 480px) {
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 22px; }
  .footer .brand-mark { margin-bottom: 10px; }
  .footer .copy { font-size: 12px; }
}

@media (max-width: 360px) {
  .brand div { font-size: 13px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 12px; gap: 0; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mm-foot {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

.mm-nav a:active { background: var(--cream); }

@media (max-width: 480px) {
  .card { padding: 22px 18px; }
  .callout { padding: 18px 20px; gap: 14px; }
}

@media (max-width: 480px) {
  .checklist li { font-size: 14.5px; gap: 10px; }
}

@media (max-width: 768px) {
  .inventory-frame iframe { height: calc(100vh - 120px); min-height: 500px; }
}
@media (max-width: 480px) {
  .inventory-frame { border-radius: var(--r-md); }
  .inventory-frame iframe { height: calc(100svh - 100px); min-height: 480px; }
}

@media (max-width: 380px) {
  .mm-nav a { font-size: 18px; padding: 17px 20px; }
  .mm-nav a .arr { font-size: 18px; }
  .mm-head { padding: 16px 20px; }
  .mm-foot { padding: 16px 20px 32px; }
  .mm-foot .mm-cta { font-size: 15px; padding: 14px 20px; }
}

.zaloga-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.zaloga-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .zaloga-head { flex-direction: column; align-items: flex-start; }
  .zaloga-actions { width: 100%; }
  .zaloga-actions .btn { flex: 1; justify-content: center; }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 350px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(255,204,46,.55), 0 2px 8px rgba(14,14,16,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.88);
  transition:
    opacity    0.32s cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.32s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s   linear 0.32s,
    box-shadow 0.2s ease;
}
.scroll-top::before {
  content: 'Nazaj na vrh';
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: var(--r-full);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 2px 8px rgba(14,14,16,.15);
}
.scroll-top:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity    0.32s cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.32s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s   linear 0s,
    box-shadow 0.2s ease;
}
.scroll-top:hover {
  background: var(--brand-yellow-deep);
  box-shadow: 0 8px 28px rgba(255,204,46,.7), 0 3px 10px rgba(14,14,16,.14);
  transform: translateY(-3px) scale(1.07);
}
.scroll-top:active {
  transform: translateY(0) scale(0.96);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}
@media (max-width: 560px) {
  .scroll-top { width: 46px; height: 46px; bottom: 18px; right: 14px; }
  .scroll-top svg { width: 20px; height: 20px; }
}

