/* ═══════════════════════════════════════════════════════
   VOLTIX ENERGY USA — Main Stylesheet
   style.css
════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS (imported in HTML head) ───────────── */
/* Fraunces (headings) + Plus Jakarta Sans (body)         */

/* ─── CSS TOKENS ─────────────────────────────────────── */
:root {
  /* Green palette */
  --g50:  #f0fdf4;
  --g100: #dcfce7;
  --g200: #bbf7d0;
  --g300: #86efac;
  --g500: #22c55e;
  --g600: #16a34a;
  --g700: #15803d;
  --g800: #166534;
  --g900: #14532d;

  /* Text */
  --ink:   #0d1f14;
  --muted: #3a5e4e;
  --sub:   #6b8f7a;

  /* Borders */
  --bd:  #c9e8d5;
  --bd2: #e4f5eb;

  /* Accent */
  --red: #e11d48;

  /* Shadows */
  --sh1: 0 1px 4px rgba(0,0,0,.06);
  --sh2: 0 4px 18px rgba(0,0,0,.09);
  --sh3: 0 10px 40px rgba(22,163,74,.14);
}

/* ─── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: var(--g800);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--g200);
}
.tb-sep  { width: 1px; height: 14px; background: rgba(255,255,255,.22); flex-shrink: 0; }
.tb-item { display: flex; align-items: center; gap: 6px; }
.tb-phone a { color: #fff; font-weight: 700; letter-spacing: .4px; transition: opacity .2s; }
.tb-phone a:hover { opacity: .78; }
.tb-hours strong { color: #fff; }
.tb-closed { color: #fca5a5; font-weight: 600; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd2);
  box-shadow: var(--sh1);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
  letter-spacing: .1px;
}
.nav-links a:hover { color: var(--g600); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; color: var(--muted);
  transition: color .2s;
}
.nav-tel:hover { color: var(--g600); }
.nav-cta {
  background: linear-gradient(135deg, var(--g600), var(--g700));
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  transition: all .25s;
  box-shadow: 0 2px 10px rgba(22,163,74,.25);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(22,163,74,.4); }

/* hamburger */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  border: none; background: none;
  cursor: pointer; padding: 4px;
}
.hbg span {
  display: block; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: #fff;
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  border-top: 1px solid var(--bd);
}
.drawer.open { transform: translateX(0); }
.drawer a {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.drawer a:hover  { background: var(--g50); color: var(--g600); }
.drawer .d-num   { background: var(--g50); border: 1px solid var(--bd); border-radius: 10px; text-align: center; font-weight: 700; color: var(--g700); font-size: .9rem; }
.drawer .d-cta   { background: linear-gradient(135deg, var(--g600), var(--g700)); color: #fff; text-align: center; border-radius: 10px; font-size: 1rem; font-weight: 700; box-shadow: 0 3px 14px rgba(22,163,74,.3); margin-top: 12px; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  padding: 64px 40px 56px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at -5% 50%, rgba(22,163,74,.06), transparent),
    radial-gradient(ellipse 50% 40% at 105% 20%, rgba(5,150,105,.05), transparent);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22,163,74,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--g100); border: 1px solid var(--g200);
  padding: 5px 13px; border-radius: 40px;
  font-size: .7rem; font-weight: 700; color: var(--g700);
  margin-bottom: 22px; letter-spacing: .9px; text-transform: uppercase;
}
.bdot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--g600); box-shadow: 0 0 6px rgba(22,163,74,.6);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:.2 } }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero h1 em     { font-style: italic; color: var(--g600); }
.hero h1 strong { font-style: normal; color: var(--g700); }

.hero-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.75;
  max-width: 420px; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Buttons */
.btn-prim {
  background: linear-gradient(135deg, var(--g600), var(--g700));
  color: #fff; padding: 14px 28px; border-radius: 10px;
  font-weight: 800; font-size: .93rem;
  transition: all .3s; box-shadow: 0 4px 18px rgba(22,163,74,.28);
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-prim:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,.4); }

.btn-sec {
  background: #fff; color: var(--ink); padding: 14px 28px;
  border-radius: 10px; font-weight: 700; font-size: .93rem;
  border: 1.5px solid var(--bd); transition: all .3s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--sh1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-sec:hover { border-color: var(--g600); color: var(--g600); background: var(--g50); }

/* hero mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 205px 205px;
  gap: 12px;
  position: relative;
}
.hi { border-radius: 14px; overflow: hidden; border: 1.5px solid var(--bd); box-shadow: var(--sh2); position: relative; }
.hi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hi:hover img { transform: scale(1.05); }
.hi.tall { grid-row: span 2; border-radius: 18px; }
.hi-lbl {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border: 1px solid var(--bd); padding: 4px 10px; border-radius: 16px;
  font-size: .68rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 5px;
}
.dot { width: 5px; height: 5px; border-radius: 50%; }
.dot.g { background: var(--g600); }
.dot.t { background: #059669; }

/* float cards */
.flt {
  position: absolute; background: #fff;
  border: 1.5px solid var(--bd); border-radius: 12px;
  padding: 10px 14px; z-index: 5; box-shadow: var(--sh2);
}
.flt.f1 { top: -16px; left: 44px; animation: fc 4s ease-in-out infinite; }
.flt.f2 { bottom: -6px; right: 4px; animation: fc 4s ease-in-out infinite; animation-delay: -2s; }
@keyframes fc { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
.flt-num { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 900; }
.flt-lbl { font-size: .67rem; color: var(--sub); font-weight: 500; margin-top: 1px; }

/* ─── STATS ───────────────────────────────────────────── */
.stats { background: var(--g800); }
.stats-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat { text-align: center; padding: 26px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; line-height: 1; color: #fff; }
.stat-num .hi { color: var(--g300); }
.stat-lbl { font-size: .7rem; color: var(--g200); margin-top: 5px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600; }

/* ─── CALL SECTION ────────────────────────────────────── */
.call-section {
  background: var(--g50);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.call-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 70% at 8% 50%, rgba(22,163,74,.05), transparent),
    radial-gradient(ellipse 40% 55% at 92% 40%, rgba(5,150,105,.04), transparent);
}
.call-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
  align-items: center; position: relative; z-index: 2;
}
.call-eyebrow { font-size: .68rem; text-transform: uppercase; letter-spacing: 3px; color: var(--g600); font-weight: 800; margin-bottom: 12px; }
.call-left h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900; letter-spacing: -1.2px; line-height: 1.12;
  margin-bottom: 14px; color: var(--ink);
}
.call-left h2 span { color: var(--g600); }
.call-left p { color: var(--muted); line-height: 1.75; font-size: .95rem; margin-bottom: 28px; }
.call-feats { display: flex; flex-direction: column; gap: 12px; }
.cfeat { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); font-weight: 500; }
.cf-ico { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.cf-ico.g { background: var(--g100); border: 1px solid var(--g200); }
.cf-ico.t { background: #d1fae5; border: 1px solid #a7f3d0; }
.cf-ico.r { background: #fee2e2; border: 1px solid #fecaca; }

/* call card */
.call-card {
  background: #fff; border: 1.5px solid var(--bd);
  border-radius: 20px; padding: 40px 36px; text-align: center;
  box-shadow: var(--sh3); position: relative; overflow: hidden;
}
.call-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(22,163,74,.04), transparent 60%);
}
.rings { width: 88px; height: 88px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; position: relative; }
.ring { position: absolute; border-radius: 50%; border: 2px solid rgba(22,163,74,.16); animation: rpl 2.8s ease-out infinite; }
.rg1 { width: 88px; height: 88px; animation-delay: 0s; }
.rg2 { width: 88px; height: 88px; animation-delay: .85s; }
.rg3 { width: 88px; height: 88px; animation-delay: 1.7s; }
@keyframes rpl { 0% { transform: scale(.6); opacity: .8 } 100% { transform: scale(2.2); opacity: 0 } }
.pcirc {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g100), var(--g200));
  border: 2px solid var(--g300);
  display: flex; align-items: center; justify-content: center;
  color: var(--g700); position: relative; z-index: 2;
  box-shadow: 0 0 24px rgba(22,163,74,.2);
  animation: swng 2.4s ease-in-out infinite;
}
@keyframes swng { 0%,100% { transform: rotate(-11deg) } 50% { transform: rotate(11deg) } }
.call-num {
  font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900;
  letter-spacing: -.8px; color: var(--ink); margin-bottom: 6px;
  position: relative; z-index: 1;
}
.call-sub { color: var(--sub); font-size: .85rem; margin-bottom: 24px; position: relative; z-index: 1; font-weight: 500; }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--g600), var(--g700));
  color: #fff; padding: 15px 38px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; transition: all .3s;
  box-shadow: 0 4px 24px rgba(22,163,74,.3);
  position: relative; z-index: 1; margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-call:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 36px rgba(22,163,74,.42); }
.hours-box { background: var(--g50); border: 1px solid var(--bd); border-radius: 12px; padding: 14px 20px; position: relative; z-index: 1; }
.hb-row { display: flex; align-items: center; gap: 11px; text-align: left; }
.hb-ico { font-size: 1.3rem; }
.hb-lbl { font-size: .64rem; text-transform: uppercase; letter-spacing: 2px; color: var(--sub); font-weight: 700; margin-bottom: 3px; }
.hb-time { font-size: .9rem; color: var(--ink); font-weight: 500; }
.hb-time strong { color: var(--g600); font-weight: 800; }
.hb-closed { font-size: .75rem; color: var(--red); font-weight: 600; margin-top: 2px; }

/* ─── SHARED SECTION LABELS ───────────────────────────── */
.sec-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: 3px; color: var(--g600); font-weight: 800; margin-bottom: 10px; }
.sec-ttl {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 900; letter-spacing: -1.2px;
  margin-bottom: 10px; line-height: 1.1; color: var(--ink);
}
.sec-desc { color: var(--muted); font-size: .94rem; max-width: 460px; line-height: 1.72; margin-bottom: 48px; }

/* ─── SERVICES ────────────────────────────────────────── */
.services { padding: 80px 40px; background: #fff; }
.sec-inner { max-width: 1140px; margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.svc-card {
  background: #fff; border: 1.5px solid var(--bd2); border-radius: 16px; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s; box-shadow: var(--sh1);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh3); border-color: var(--g300); }
.svc-img-wrap { position: relative; overflow: hidden; }
.svc-img { width: 100%; height: 185px; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img { transform: scale(1.05); }
.svc-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, #fff 100%); }
.svc-body { padding: 22px 24px 26px; }
.svc-ico-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.svc-ico { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.svc-ico.a { background: var(--g100); border: 1px solid var(--g200); }
.svc-ico.t { background: #d1fae5; border: 1px solid #a7f3d0; }
.svc-ico.r { background: #fee2e2; border: 1px solid #fecaca; }
.svc-ico.s { background: #fef9c3; border: 1px solid #fde68a; }
.svc-body h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); letter-spacing: -.4px; }
.svc-body p { color: var(--muted); font-size: .87rem; line-height: 1.65; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stag { padding: 4px 10px; border-radius: 20px; font-size: .7rem; font-weight: 600; background: var(--g50); border: 1px solid var(--bd); color: var(--g700); }

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how { padding: 80px 40px; background: var(--g50); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; align-items: center; }
.how-img { border-radius: 18px; overflow: hidden; height: 440px; border: 1.5px solid var(--bd); box-shadow: var(--sh2); position: relative; }
.how-img img { width: 100%; height: 100%; object-fit: cover; }
.how-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(22,163,74,.05), transparent 60%); pointer-events: none; }
.how-steps { display: flex; flex-direction: column; gap: 14px; }
.how-step {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: #fff; border: 1.5px solid var(--bd2); border-radius: 14px;
  transition: border-color .3s, transform .3s, box-shadow .3s; box-shadow: var(--sh1);
}
.how-step:hover { border-color: var(--g300); transform: translateX(4px); box-shadow: var(--sh3); }
.step-n {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g100), var(--g200));
  border: 1.5px solid var(--g300);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 900; color: var(--g700);
}
.how-step h4 { font-size: .94rem; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.how-step p { font-size: .83rem; color: var(--muted); line-height: 1.58; }

/* ─── REVIEWS ─────────────────────────────────────────── */
.reviews { padding: 80px 40px; background: #fff; border-top: 1px solid var(--bd); }
.rev-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.rev-score { background: var(--g50); border: 1.5px solid var(--bd); border-radius: 14px; padding: 20px 28px; text-align: center; flex-shrink: 0; }
.rs-num { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 900; color: var(--g600); line-height: 1; }
.rs-stars { color: var(--g600); font-size: 1rem; letter-spacing: 3px; margin: 4px 0; }
.rs-lbl { font-size: .72rem; color: var(--sub); font-weight: 600; }
.rev-meta h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 800; color: var(--ink); letter-spacing: -.5px; margin-bottom: 6px; }
.rev-meta p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.rev-card {
  background: #fff; border: 1.5px solid var(--bd2); border-radius: 14px; padding: 22px;
  transition: transform .3s, box-shadow .3s, border-color .3s; box-shadow: var(--sh1);
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--sh3); border-color: var(--g300); }
.rev-top { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; }
.rev-av { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid var(--bd); flex-shrink: 0; }
.rev-av img { width: 100%; height: 100%; object-fit: cover; }
.rev-name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.rev-loc  { font-size: .72rem; color: var(--sub); margin-top: 1px; font-weight: 500; }
.stars    { color: var(--g600); font-size: .77rem; letter-spacing: 2px; margin-top: 3px; }
.rev-txt  { color: var(--muted); font-size: .85rem; line-height: 1.65; font-style: italic; position: relative; padding-left: 13px; }
.rev-txt::before { content: '"'; position: absolute; left: 0; top: -3px; font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--g300); line-height: 1; }
.rev-tag  { display: inline-block; margin-top: 12px; padding: 3px 9px; background: var(--g50); border: 1px solid var(--bd); border-radius: 20px; font-size: .67rem; font-weight: 700; color: var(--g700); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--g900); color: var(--g200); padding: 52px 40px 32px; }
.ft-inner { max-width: 1140px; margin: 0 auto; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.ft-brand p { color: var(--g200); font-size: .85rem; line-height: 1.7; margin-top: 12px; max-width: 240px; }
.ft-logo img { height: 42px; width: auto; }
.ft-col h5 { font-size: .67rem; text-transform: uppercase; letter-spacing: 2px; color: var(--g300); font-weight: 700; margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a { color: var(--g200); font-size: .85rem; font-weight: 500; transition: color .2s; }
.ft-col ul li a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bottom p { font-size: .76rem; color: var(--g300); }
.ft-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.fbadge { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 4px 11px; border-radius: 6px; font-size: .7rem; color: var(--g200); display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-tel { display: none; }
  .hbg { display: flex; }

  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-mosaic { display: none; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .call-section { padding: 64px 24px; }
  .call-inner { grid-template-columns: 1fr; gap: 36px; }
  .call-card { max-width: 480px; margin: 0 auto; width: 100%; }

  .services { padding: 64px 24px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }

  .how { padding: 64px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .how-img { height: 280px; }

  .reviews { padding: 64px 24px; }
  .rev-grid { grid-template-columns: 1fr 1fr; }

  footer { padding: 48px 24px 28px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600px)
════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .topbar { padding: 7px 16px; gap: 8px; font-size: .72rem; }
  .tb-sep { display: none; }

  nav { padding: 0 16px; height: 56px; }
  .logo img { height: 36px; }
  .drawer { top: 56px; }
  .nav-cta { padding: 8px 13px; font-size: .78rem; }

  .hero { padding: 44px 16px 36px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1.5px; }
  .hero-desc { font-size: .92rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-prim, .btn-sec { width: 100%; justify-content: center; padding: 13px 20px; font-size: .9rem; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 10px; }
  .stat-num { font-size: 1.9rem; }
  .stat-lbl { font-size: .62rem; letter-spacing: 1px; }

  .call-section { padding: 52px 16px; }
  .call-left h2 { font-size: 1.75rem; }
  .call-card { padding: 30px 20px; }
  .call-num { font-size: 1.8rem; }
  .btn-call { width: 100%; justify-content: center; padding: 14px 28px; font-size: .95rem; }
  .rings, .rg1, .rg2, .rg3 { width: 76px; height: 76px; }
  .pcirc { width: 54px; height: 54px; }

  .services { padding: 52px 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-img { height: 165px; }

  .how { padding: 52px 16px; }
  .how-img { height: 210px; }
  .how-step { padding: 14px 16px; }
  .step-n { width: 36px; height: 36px; font-size: 1rem; }

  .reviews { padding: 52px 16px; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-summary { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .rev-score { padding: 16px 22px; }
  .rs-num { font-size: 2.4rem; }
  .rev-meta h3 { font-size: 1.3rem; }

  footer { padding: 40px 16px 24px; }
  .ft-top { grid-template-columns: 1fr; gap: 24px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ft-badges { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TINY  (≤ 380px)
════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1  { font-size: 1.9rem; }
  .call-num { font-size: 1.55rem; }
  .stat-num { font-size: 1.65rem; }
  .btn-call { font-size: .88rem; }
}
