/* =====================================================
   SnT Group — Landing Page Styles
   ===================================================== */

:root {
  --red: #d4163c;
  --red-dark: #b8002f;
  --purple: #6d2bbf;
  --blue: #1a52d6;
  --blue-dark: #0e3ab0;
  --lg-red: #a50034;
  --voltas-blue: #1547c7;
  --ink: #0f1424;
  --ink-2: #2a3040;
  --muted: #5f6675;
  --line: #e7e9ef;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --wa: #25d366;

  --grad-primary: linear-gradient(95deg, #d4163c 0%, #b31b6b 55%, #7a2cc4 100%);
  --grad-btn: linear-gradient(95deg, #d4163c 0%, #c8104a 100%);
  --grad-blue: linear-gradient(95deg, #1a52d6 0%, #0e3ab0 100%);

  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(15, 20, 36, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 20, 36, 0.14);
  --container: 1240px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.15; }
p { margin: 0; }
address { font-style: normal; }

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

/* ---------- Utilities ---------- */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-blue { color: var(--blue); }

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section__title {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section__lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin-top: 16px;
}
.section__head { margin-bottom: 48px; }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-inline: auto; }
.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.stores .section__title { white-space: nowrap; font-size: clamp(28px, 2.75vw, 36px); }
.section__aside {
  max-width: 520px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14.5px;
  padding-bottom: 6px;
}
.section__aside p { max-width: 300px; font-size: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px 30px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn__arrow { font-size: 18px; line-height: 1; transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 10px 24px rgba(212, 22, 60, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 22, 60, 0.36); }
.btn--blue {
  color: #fff;
  background: var(--grad-blue);
  box-shadow: 0 10px 24px rgba(26, 82, 214, 0.28);
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26, 82, 214, 0.36); }
.btn--outline {
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 18px rgba(15, 20, 36, 0.06);
}
.btn--outline:hover { border-color: #cfd3dd; transform: translateY(-2px); }
.btn--light {
  color: var(--ink);
  background: #fff;
}
.btn--light:hover { transform: translateY(-2px); }
.btn--pill {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}
.btn--pill:hover { border-color: var(--ink); }
.btn--sm { padding: 13px 24px; font-size: 14.5px; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(15, 20, 36, 0.07); }
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; }
.logo__img { height: 56px; width: auto; display: block; }
.logo--footer {
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
}
.logo--footer .logo__img { height: 60px; }

.nav { display: flex; gap: 34px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
}
.location-pill svg:first-child { color: var(--blue); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(255, 214, 224, 0.55), transparent 60%),
    radial-gradient(700px 500px at 5% 90%, rgba(214, 230, 255, 0.6), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  padding: 36px 0 104px;
  min-height: 0;
  display: flex;
  align-items: center;
}
.hero__leaf {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50% 0 50% 0;
  background: radial-gradient(circle at 30% 30%, rgba(56, 142, 60, 0.28), rgba(56, 142, 60, 0) 70%);
  filter: blur(22px);
  pointer-events: none;
}
.hero__leaf--tl { top: -120px; left: -140px; }
.hero__leaf--bl { bottom: -140px; left: -110px; transform: rotate(90deg); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 600px);
  width: min(100% - 48px, var(--container));
}
.hero__content { position: relative; z-index: 1; }
.hero__title {
  font-size: clamp(44px, 5.4vw, 70px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero__lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 480px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.wa-icon { flex-shrink: 0; }

.stats {
  display: flex;
  margin-top: 40px;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
  border-left: 1.5px solid var(--line);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1.1;
}
.stat__num--text { font-size: 25px; padding-top: 4px; }
.stat__label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.3;
  white-space: nowrap;
}
.stat__label small { font-size: 13px; color: var(--muted); font-weight: 500; }

.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
}
.hero__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(140deg, #f3e7d3, #dfe7f5);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 30%);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%; }
.hero__image.is-missing img { display: none; }
.hero__image.is-missing::before {
  content: 'Add assets/hero-appliances.jpg';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font: 600 14px var(--font-head);
  color: var(--muted);
}
.hero__script {
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  transform: rotate(-8deg);
  text-align: left;
}
.hero__script-underline {
  display: block;
  width: 70px; height: 4px;
  margin-top: 6px;
  border-radius: 4px;
  background: var(--red);
  transform: rotate(-6deg);
}
.float-card {
  position: absolute;
  right: 40px;
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 26px 12px 14px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.float-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-card__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Trust strip ---------- */
.trust { margin-top: -64px; position: relative; z-index: 2; }
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231, 233, 239, 0.7);
}
.trust__item { display: flex; align-items: center; gap: 14px; }
.trust__item h3 { font-size: 15px; font-weight: 700; white-space: nowrap; }
.trust__item p { font-size: 13px; color: var(--muted); margin-top: 3px; white-space: nowrap; }
.trust__icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}
.trust__icon--blue { background: linear-gradient(140deg, #2f6df6, #1a52d6); }
.trust__icon--pink { background: linear-gradient(140deg, #ff3d81, #e0176a); }
.trust__icon--green { background: linear-gradient(140deg, #2ec27e, #1aa666); }
.trust__icon--orange { background: linear-gradient(140deg, #ffa726, #f57c00); }

/* ---------- Stores ---------- */
.stores { padding-top: 110px; }
.stores__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.store-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.store-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.store-card--lg { background: linear-gradient(135deg, #fff6f9 0%, #fdeaf1 100%); }
.store-card--voltas { background: linear-gradient(135deg, #f3f6ff 0%, #e6edff 100%); }
.store-card__body {
  padding: 34px 28px 34px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.brand-logo__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.voltas-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--voltas-blue);
  transform: skewX(-6deg);
  display: inline-block;
}
.store-card__name {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.store-card__tag { color: var(--ink-2); font-size: 15px; margin-top: 4px; }
.store-card__features {
  display: flex;
  gap: 22px;
  margin: 28px 0 26px;
}
.store-card__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-2);
  text-align: center;
}
.store-card--lg .store-card__features svg { color: var(--lg-red); }
.store-card--voltas .store-card__features svg { color: var(--voltas-blue); }
.store-card__media {
  position: relative;
  clip-path: ellipse(100% 82% at 100% 50%);
  background: linear-gradient(140deg, #e9edf5, #d9dfeb);
}
.store-card__media img { width: 100%; height: 100%; object-fit: cover; }
.store-card__media.is-missing img { display: none; }
.store-card__media.is-missing::before {
  content: 'Add store image';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font: 600 13px var(--font-head);
  color: var(--muted);
}

.divider-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.divider-note::before, .divider-note::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.divider-note::before { max-width: 120px; margin-left: auto; }
.divider-note::after { max-width: 120px; margin-right: auto; }

/* ---------- Products ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff1f4, #f2e9ff);
  color: var(--red);
  margin-bottom: 22px;
}
.product-card__icon svg { width: 36px; height: 36px; }
.product-card:nth-child(even) .product-card__icon { background: linear-gradient(135deg, #eef3ff, #e6f7ff); color: var(--blue); }
.product-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.product-card p { color: var(--muted); font-size: 15px; flex: 1; }
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.product-card:hover .product-card__link .btn__arrow { transform: translateX(4px); }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-list { margin-top: 36px; display: grid; gap: 18px; }
.service-item {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}
.service-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.service-item__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
  padding-top: 2px;
}
.service-item h3 { font-size: 17px; font-weight: 700; }
.service-item p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

.services__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.services__card {
  border-radius: var(--radius);
  padding: 32px;
}
.services__card--main {
  grid-column: 1 / -1;
  background: var(--grad-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services__card--main::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  right: -80px; top: -80px;
}
.services__card--main h3 { font-size: 28px; font-weight: 800; margin: 14px 0 12px; position: relative; }
.services__card--main p { opacity: .9; font-size: 15px; margin-bottom: 26px; position: relative; max-width: 380px; }
.services__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  position: relative;
}
.services__card--stat {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}
.services__card--stat2 { background: #eef3ff; border-color: transparent; }
.services__stat {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.services__stat small { font-size: 18px; color: var(--muted); font-weight: 600; }
.services__card--stat2 .services__stat { color: var(--blue); }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__visual { position: relative; padding-bottom: 60px; padding-right: 60px; }
.about__frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #e9edf5, #d9dfeb);
  position: relative;
}
.about__frame img { width: 100%; height: 100%; object-fit: cover; }
.about__frame.is-missing img { display: none; }
.about__frame--small {
  position: absolute;
  width: 46%;
  right: 0; bottom: 0;
  border: 6px solid var(--bg-soft);
}
.about__years {
  position: absolute;
  left: -16px; bottom: 90px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--ink-2);
}
.about__years-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about__years-num sup { font-size: 20px; }
.about__content p { color: var(--muted); font-size: 16px; margin-top: 18px; }
.about__points { margin: 28px 0 34px; display: grid; gap: 12px; }
.about__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-blue);
  flex-shrink: 0;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  left: 7px; top: 4px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.2px 2.2px 0;
  transform: rotate(45deg);
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial__stars { color: #ffb400; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial blockquote {
  margin: 0;
  color: var(--ink-2);
  font-size: 15.5px;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial figcaption div { display: flex; flex-direction: column; }
.testimonial figcaption strong { font-family: var(--font-head); font-size: 15px; }
.testimonial figcaption span:not(.testimonial__avatar) { font-size: 13px; color: var(--muted); }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-btn);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial__avatar--blue { background: var(--grad-blue); }
.testimonial__avatar--green { background: linear-gradient(140deg, #2ec27e, #1aa666); }

/* ---------- Locations ---------- */
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
}
.location-card--lg::before { background: var(--lg-red); }
.location-card--voltas::before { background: var(--voltas-blue); }
.location-card__brand {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.location-card--lg .location-card__brand { background: #fdeaf1; color: var(--lg-red); }
.location-card--voltas .location-card__brand { background: #e6edff; color: var(--voltas-blue); }
.location-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.location-card address { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.location-card__meta { margin: 18px 0 26px; display: grid; gap: 6px; font-size: 14.5px; color: var(--ink-2); }
.location-card__meta a { color: var(--blue); font-weight: 600; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.contact__channels { margin-top: 36px; display: grid; gap: 20px; }
.contact__channels li { display: flex; align-items: center; gap: 16px; }
.contact__channels div { display: flex; flex-direction: column; }
.contact__channels strong { font-family: var(--font-head); font-size: 15px; }
.contact__channels a { color: var(--muted); font-size: 15px; line-height: 1.5; }
.contact__channels a:hover { color: var(--ink); }
.contact__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: #fdeaf1;
  color: var(--red);
  flex-shrink: 0;
}
.contact__icon--green { background: #e6f9ee; color: #1aa666; }
.contact__icon--blue { background: #e6edff; color: var(--blue); }

.contact__form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fafbfd;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 82, 214, 0.12);
}
.field.is-invalid input, .field.is-invalid select { border-color: var(--red); }
.form__note { font-size: 13px; color: var(--muted); text-align: center; }
.form__note.is-success { color: #1aa666; font-weight: 600; }
.form__note.is-error { color: var(--red); font-weight: 600; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__wa { display: block; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #1aa666; }
.form__wa[hidden] { display: none; }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* ---------- Footer ---------- */
.footer {
  background: #0f1424;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 1.7fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand p { margin-top: 22px; font-size: 14.5px; max-width: 360px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .2s;
}
.footer__social a:hover { background: var(--red); }
.footer__col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer__col ul { display: grid; gap: 12px; font-size: 14.5px; }
.footer__contact li { line-height: 1.6; word-break: break-word; }
.footer__contact strong { color: #fff; font-family: var(--font-head); font-weight: 700; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--delay { transition-delay: .15s; }
.reveal--delay2 { transition-delay: .3s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .nav { gap: 24px; }
  .stores .section__title { white-space: normal; }
  .hero__grid { gap: 32px; }
  .stat { padding: 0 18px; }
  .stat__num { font-size: 30px; }
  .stat__num--text { font-size: 24px; }
  .store-card { grid-template-columns: 1.1fr 0.9fr; }
  .store-card__features { gap: 14px; }
  .brand-logo__text, .voltas-wordmark { font-size: 32px; }
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(15,20,36,0.1);
    padding: 12px 24px 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav-toggle { display: flex; }
  .location-pill { display: none; }

  .hero { padding: 40px 0 110px; min-height: 0; display: block; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__lead { max-width: none; }
  .hero__visual { position: relative; inset: auto; width: auto; }
  .hero__image { position: relative; inset: auto; aspect-ratio: 4 / 3; border-radius: 28px; -webkit-mask-image: none; mask-image: none; box-shadow: var(--shadow-lg); }
  .float-card { right: 12px; bottom: 20px; }
  .stores .section__title { white-space: normal; }

  .trust__list { grid-template-columns: 1fr 1fr; padding: 28px; }
  .trust__item h3, .trust__item p { white-space: normal; }
  .stat__label { white-space: normal; }
  .section { padding: 72px 0; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .section__aside { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stores__grid,
  .products__grid,
  .testimonials__grid,
  .locations__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .services__grid,
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .logo__img { height: 44px; }
  .header__actions .btn { display: none; }
  .hero__title { font-size: clamp(40px, 12vw, 56px); }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .stats { flex-wrap: wrap; gap: 20px 0; }
  .stat { width: 50%; padding: 0 14px; }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero__script { font-size: 22px; top: 14px; right: 16px; }
  .float-card { padding: 10px 18px 10px 10px; }
  .float-card__text { font-size: 12.5px; }

  .trust { margin-top: -50px; }
  .trust__list { grid-template-columns: 1fr; gap: 20px; padding: 24px; }

  .store-card { grid-template-columns: 1fr; }
  .store-card__media { clip-path: none; min-height: 220px; order: -1; }
  .store-card__body { padding: 28px 24px; }
  .store-card__features { flex-wrap: wrap; }
  .products__grid { grid-template-columns: 1fr; }
  .services__visual { grid-template-columns: 1fr; }
  .about__visual { padding-right: 30px; padding-bottom: 50px; }
  .about__years { left: 0; bottom: 20px; padding: 14px 16px; }
  .about__years-num { font-size: 32px; }
  .contact__form { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
