/* =====================================================================
   Prakash Machineries — Homepage styles
   PMPL design system: black/light-gray rhythm, warm Prakash amber accent.
   ===================================================================== */

:root {
  --prakash-amber: #E89A2B;
  --prakash-amber-bright: #F4A93C;
  --prakash-amber-deep: #C77E15;
  --prakash-cyan: #3CC8E8;
  --prakash-red: #E63946;
  --prakash-yellow: #FFC700;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--fg-1);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
}

/* density tweak target */
body[data-density="compact"] section { --section-y: 80px; }
body[data-density="spacious"] section { --section-y: 140px; }
body { --section-y: 110px; }

a { text-decoration: none; color: inherit; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; height: 56px;
  display: flex; align-items: center; padding: 0 22px;
  gap: 0; flex-wrap: nowrap;
}
.nav-brand {
  margin-right: 28px;
  display: inline-flex; align-items: center;
  color: #1d1d1f; text-decoration: none;
  height: 56px; flex-shrink: 0;
}
.nav-brand img {
  height: 30px; width: auto; display: block;
}
.nav-spacer { flex: 1 1 auto; min-width: 16px; }
.nav-link {
  color: rgba(29, 29, 31, 0.85);
  font-family: var(--font-text);
  font-size: 12px; font-weight: 400;
  letter-spacing: -0.08px;
  padding: 0 10px; height: 56px;
  white-space: nowrap; flex-shrink: 0;
  display: inline-flex; align-items: center;
  cursor: pointer; position: relative;
  transition: opacity .15s var(--ease-pmpl);
}
.nav-link:hover { color: #1d1d1f; opacity: 1; }
.nav-link[data-has-menu]::after {
  /* subtle dropdown affordance only on hover via parent */
}
.nav-cta {
  margin-left: 14px; flex-shrink: 0;
  padding: 6px 16px; border-radius: 980px;
  background: var(--brand-amber, #E89A2B);
  color: #1d1d1f; font-weight: 500;
  font-size: 12px; letter-spacing: -0.08px;
  transition: background .15s var(--ease-pmpl), transform .15s var(--ease-pmpl);
}
.nav-cta:hover { background: #f0a93f; transform: translateY(-1px); }

/* mega menu */
.mega-wrap {
  position: absolute; left: 0; right: 0; top: 56px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  padding: 36px 22px 40px;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s var(--ease-pmpl), transform .18s var(--ease-pmpl);
}
.nav-item:hover .mega-wrap,
.nav-item.is-open .mega-wrap {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.mega-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.mega-col h6 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin: 0 0 10px; }
.mega-col a {
  color: rgba(29, 29, 31, 0.92);
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  letter-spacing: -0.2px;
  transition: color .15s var(--ease-pmpl);
}
.mega-col a:hover { color: var(--prakash-amber-deep); }

/* ---------- SECTION SHELL ---------- */
section { width: 100%; }
.dark { background: #000; color: #fff; }
.light { background: #f5f5f7; color: #1d1d1f; }
.white { background: #fff; color: #1d1d1f; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

.section-head {
  text-align: center;
  padding: var(--section-y) 22px 36px;
  max-width: 880px; margin: 0 auto;
  position: relative;
}
.section-head .accent-rule {
  width: 56px; height: 3px;
  margin: 0 auto 20px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    var(--prakash-cyan) 0%, var(--prakash-cyan) 25%,
    var(--prakash-yellow) 25%, var(--prakash-yellow) 50%,
    var(--prakash-red) 50%, var(--prakash-red) 75%,
    var(--prakash-amber) 75%, var(--prakash-amber) 100%);
}
.kicker {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--prakash-amber-deep);
  margin-bottom: 14px;
}
.dark .kicker { color: var(--prakash-amber-bright); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 600; line-height: 1.07;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section-lede {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 400;
  line-height: 1.4; letter-spacing: -0.005em;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}
.dark .section-lede { color: rgba(255, 255, 255, 0.7); }

/* ---------- HERO V1 (light, breathing) ---------- */
.hero-v1 {
  position: relative; overflow: hidden;
  padding: 90px 22px 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  min-height: 720px;
  background: #fff;
  color: #1d1d1f;
}
.hero-v1::before {
  content: none;
}
.hero-v1::after {
  content: none;
}
.hero-v1 > * { position: relative; z-index: 1; }
.hero-v1 .hero-product { z-index: 1; }
.hero-v1 .hero-ticker { z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--prakash-amber-deep);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.2vw, 88px);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
  color: #1d1d1f;
  max-width: 980px;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, #E89A2B 0%, #B86F0F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 400;
  line-height: 1.42; letter-spacing: -0.005em;
  color: rgba(0, 0, 0, 0.62);
  max-width: 740px;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-bottom: 56px; }

.pill {
  display: inline-flex; align-items: center; gap: 4px;
  border-radius: 980px;
  padding: 10px 22px;
  font-family: var(--font-text);
  font-size: 15px; font-weight: 400;
  letter-spacing: -0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s var(--ease-pmpl), color .15s var(--ease-pmpl), border-color .15s var(--ease-pmpl);
}
.pill-filled { background: #1d1d1f; color: #fff; border-color: #1d1d1f; }
.pill-filled:hover { background: #000; }
.pill-amber { background: var(--prakash-amber); color: #fff; border-color: var(--prakash-amber); }
.pill-amber:hover { background: var(--prakash-amber-deep); }
.pill-outline-dark { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.pill-outline-dark:hover { background: rgba(255, 255, 255, 0.08); }
/* hero is now light — re-skin the outline pill against light ground */
.hero-v1 .pill-outline-dark {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.25);
  background: transparent;
}
.hero-v1 .pill-outline-dark:hover {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}
.pill-outline-light { color: #1d1d1f; border-color: rgba(0, 0, 0, 0.25); }
.pill-outline-light:hover { background: #1d1d1f; color: #fff; border-color: #1d1d1f; }

/* hero v1 ticker */
.hero-product {
  width: 100%; max-width: 1240px;
  margin: 0 auto;
  padding: 8px 0 36px;
}
.hero-product-card {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: transparent;
  border-radius: 0;
  border: none;
  position: relative;
  overflow: visible;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.hero-product-card::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.hero-product-card::after {
  /* removed dark floor reflection — stage is now light */
  content: none;
}
.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative; z-index: 1;
}
.hero-product-corner {
  position: absolute;
  top: 22px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.hero-ticker-slide {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1080px; margin: 0 auto;
  padding: 28px 22px 64px; gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.hero-ticker .t {
  padding: 26px 16px 0; text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.hero-ticker .t:first-child { border-left: none; }
.hero-ticker .n {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 600;
  letter-spacing: -0.02em; color: #1d1d1f;
  line-height: 1; margin-bottom: 8px;
}
.hero-ticker .n em {
  font-style: normal; color: var(--prakash-amber-deep);
}
.hero-ticker .l {
  font-size: 12px; color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.2px; text-transform: uppercase;
}

/* ---------- HERO V2 (split, light) ---------- */
.hero-v2 {
  background: #f5f5f7; color: #1d1d1f;
}
.hero-v2-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
  padding: 110px 22px 90px;
}
.hero-v2 .hero-eyebrow { color: var(--pmpl-blue-link); }
.hero-v2 .hero-title { color: #1d1d1f; max-width: 600px; text-align: left; }
.hero-v2 .hero-title em { color: var(--pmpl-blue-link); }
.hero-v2 .hero-sub {
  color: rgba(0, 0, 0, 0.7);
  text-align: left; margin-left: 0; max-width: 540px;
}
.hero-v2 .hero-ctas { justify-content: flex-start; margin-bottom: 36px; }
.hero-v2-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 600px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.hero-v2-meta .n {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--pmpl-blue-link);
  line-height: 1;
}
.hero-v2-meta .l {
  font-size: 11px; letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 6px;
}

.hero-v2-art {
  background: #000;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-v2-art::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 113, 227, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.04), transparent 50%);
}
.hero-v2-art-tag {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pmpl-blue-bright);
  padding: 6px 11px;
  border: 1px solid rgba(41, 151, 255, 0.4);
  border-radius: 980px;
}
.hero-v2-art-caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  font-family: var(--font-display);
  font-size: 14px; color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  display: flex; justify-content: space-between;
}
.hero-v2-machine {
  width: 80%; max-width: 420px;
  filter: drop-shadow(0 30px 50px rgba(0, 113, 227, 0.3));
  position: relative; z-index: 1;
}

/* ---------- VARIATION DIVIDER ---------- */
.variation-divider {
  background: #fff;
  text-align: center;
  padding: 64px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.variation-divider .label {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}
.variation-divider .title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}
.variation-divider .title em {
  font-style: normal;
  color: var(--pmpl-blue-link);
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 0 22px var(--section-y);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product-tile {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 560px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform .35s var(--ease-pmpl), box-shadow .35s var(--ease-pmpl);
}
.product-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.product-tile.tile-dark {
  background: #0a0a0c; color: #fff;
}
.product-tile-art {
  position: relative;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  min-height: 280px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
}
.product-tile.tile-dark .product-tile-art {
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.06) 0%, transparent 60%);
}
.product-tile-art svg {
  width: 100%; max-width: 380px; height: auto;
}
.product-tile-tag {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--prakash-amber-deep);
  z-index: 2;
}
.product-tile.tile-dark .product-tile-tag { color: var(--prakash-amber-bright); }
.product-tile-body {
  padding: 0 36px 36px;
}
.product-tile h3 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600;
  letter-spacing: -0.018em; line-height: 1.1;
  margin: 0 0 12px;
}
.product-tile p {
  font-family: var(--font-text);
  font-size: 15px; line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.product-tile.tile-dark p { color: rgba(255, 255, 255, 0.7); }
.product-tile-models {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product-tile.tile-dark .product-tile-models { color: rgba(255, 255, 255, 0.42); }
.product-tile-link {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--prakash-amber-deep);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s var(--ease-pmpl);
}
.product-tile.tile-dark .product-tile-link { color: var(--prakash-amber-bright); }
.product-tile-link:hover { gap: 8px; text-decoration: none; }

/* ---------- WHY PRAKASH ---------- */
.why-grid {
  max-width: 1080px; margin: 24px auto 0;
  padding: 0 22px var(--section-y);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 56px;
}
.why-item {
  padding: 36px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.why-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--prakash-amber-deep);
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600;
  line-height: 1.12; letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: #1d1d1f;
}
.why-item p {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400;
  line-height: 1.5; letter-spacing: -0.005em;
  color: rgba(0, 0, 0, 0.62);
  margin: 0;
}

/* ---------- FLAGSHIP SCROLLER ---------- */
.flagship {
  padding: 0 0 var(--section-y);
}
.flagship-rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 380px; gap: 14px;
  overflow-x: auto;
  padding: 24px max(22px, calc((100% - 1240px) / 2)) 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.flagship-rail::-webkit-scrollbar { height: 6px; }
.flagship-rail::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 4px; }
.flagship-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 460px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform .3s var(--ease-pmpl), box-shadow .3s var(--ease-pmpl);
}
.flagship-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.flagship-card-art {
  flex: 1;
  background: #f5f5f7;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  min-height: 220px;
  position: relative;
}
.flagship-card-art::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 154, 43, 0.12), transparent 70%);
}
.flagship-card-art svg {
  width: 100%; max-width: 280px; position: relative; z-index: 1;
}
.flagship-tag {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--prakash-amber-deep);
  text-transform: uppercase;
  padding: 18px 22px 10px;
}
.flagship-card-body {
  display: flex; flex-direction: column;
  flex: 0 0 auto;
  min-height: 220px;
  padding: 0;
}
.flagship-card h4 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  line-height: 1.22; letter-spacing: -0.012em;
  padding: 0 22px 8px;
  margin: 0; color: #1d1d1f;
}
.flagship-card h4 .desc {
  display: block;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 1.4;
  margin-top: 6px;
  letter-spacing: -0.005em;
}
.flagship-specs {
  padding: 0 22px 14px;
  font-family: var(--font-text);
  font-size: 13px; line-height: 1.45;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
  margin-top: auto;
}
.flagship-link {
  padding: 0 22px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--prakash-amber-deep);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s var(--ease-pmpl);
}
.flagship-link:hover { gap: 8px; }

/* ---------- BY THE NUMBERS ---------- */
.numbers {
  background: #f5f5f7; color: #1d1d1f;
  position: relative; overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 154, 43, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.numbers::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(60, 200, 232, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.numbers > * { position: relative; z-index: 1; }
.numbers-grid {
  max-width: 1080px; margin: 0 auto;
  padding: 24px 22px var(--section-y);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.num-block {
  padding: 40px 22px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.num-block:nth-child(4n) { border-right: none; }
.num-block:nth-last-child(-n+4) { border-bottom: none; }
.num-block .n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.025em;
  color: #1d1d1f; margin-bottom: 10px;
}
.num-block .n em {
  font-style: normal; color: var(--prakash-amber-deep);
}
.num-block .l {
  font-family: var(--font-text);
  font-size: 13px; line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: -0.005em;
}

/* ---------- SOLUTIONS RAIL ---------- */
.solutions { padding: 0 0 var(--section-y); }
.solutions-rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 320px; gap: 14px;
  overflow-x: auto;
  padding: 24px max(22px, calc((100% - 1240px) / 2)) 12px;
  scroll-snap-type: x mandatory;
}
.solutions-rail::-webkit-scrollbar { height: 6px; }
.solutions-rail::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 4px; }
.sol-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  min-height: 220px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.sol-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--prakash-amber-deep);
  margin-bottom: 28px;
}
.sol-card h4 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600;
  line-height: 1.16; letter-spacing: -0.012em;
  margin: 0 0 10px;
  color: #1d1d1f;
}
.sol-card p {
  font-family: var(--font-text);
  font-size: 14px; line-height: 1.5;
  color: rgba(0, 0, 0, 0.62);
  margin: 0 0 18px; flex: 1;
  letter-spacing: -0.005em;
}
.sol-link {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--prakash-amber-deep);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s var(--ease-pmpl);
}
.sol-link:hover { gap: 8px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-banner {
  max-width: 1080px;
  margin: 0 auto 28px;
  padding: 12px 22px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-text);
  font-size: 12px; letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.5);
}
.testimonials-banner .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}
.testimonials-grid {
  max-width: 1240px; margin: 0 auto;
  padding: 0 22px var(--section-y);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 12px; left: 22px;
  font-family: Georgia, serif;
  font-size: 64px; line-height: 1;
  color: var(--prakash-amber);
  opacity: 0.5;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 400;
  line-height: 1.5; letter-spacing: -0.005em;
  color: rgba(29, 29, 31, 0.92);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.testimonial-meta {
  font-family: var(--font-text);
  font-size: 13px; letter-spacing: -0.005em;
  color: rgba(0, 0, 0, 0.54);
}
.testimonial-meta strong {
  color: rgba(29, 29, 31, 0.92);
  font-weight: 500;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(180deg, #f5f5f7 0%, #ebebef 100%);
  text-align: center;
  padding: var(--section-y) 22px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background:
    radial-gradient(circle at center, rgba(232, 154, 43, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600; line-height: 1.07;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 0 0 18px;
  max-width: 800px; margin-inline: auto;
}
.cta-band p {
  font-family: var(--font-display);
  font-size: 21px; line-height: 1.4;
  letter-spacing: -0.005em;
  color: rgba(0, 0, 0, 0.65);
  margin: 0 auto 36px; max-width: 640px;
}
.cta-band-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.cta-band .pill-whatsapp {
  background: #fff;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-band .pill-whatsapp:hover {
  background: #ededf2;
}
.cta-band .pill-whatsapp svg {
  width: 16px; height: 16px;
  color: #25d366;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1d1d1f; color: rgba(255, 255, 255, 0.6);
  padding: 80px 22px 28px;
  font-family: var(--font-text);
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand-block {
  display: flex; flex-direction: column;
}
.footer-logo {
  display: flex; align-items: center;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
}
.footer-tag {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
}
.footer-desc {
  font-size: 13px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 26px;
  letter-spacing: -0.005em;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background .15s var(--ease-pmpl), color .15s var(--ease-pmpl);
}
.footer-social a:hover {
  background: var(--pmpl-blue); color: #fff;
}
.footer-social svg { width: 14px; height: 14px; }

.footer-col h6 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--font-text);
  font-size: 13px; letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-contact .addr {
  font-size: 13px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.footer-contact .phone, .footer-contact .email {
  display: block;
  font-family: var(--font-display);
  font-size: 14px; color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 28px 0 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.005em;
}
.footer-bottom .links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 22px;
  font-size: 12px;
}
.footer-bottom .links a:first-child { margin-left: 0; }

/* WhatsApp floating */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform .2s var(--ease-pmpl);
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-v2-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 22px; }
  .hero-v2 .hero-title, .hero-v2 .hero-sub { text-align: left; max-width: none; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-block:nth-child(4n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .num-block:nth-child(2n) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .hero-ticker { grid-template-columns: repeat(2, 1fr); }
  .hero-ticker .t:nth-child(3) { border-left: none; }
  .mega-inner { grid-template-columns: 1fr; gap: 24px; }
  /* Small screens: keep product links reachable (no hamburger yet).
     Suppress the mega dropdowns and let the nav scroll horizontally
     so no navigation is lost. */
  .nav-inner { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 16px; }
  .nav-inner::-webkit-scrollbar { display: none; }
  .nav-brand { margin-right: 14px; }
  .nav-link { padding: 0 9px; }
  .nav-link[data-has-menu] { display: inline-flex; }
  .nav-item:hover .mega-wrap,
  .nav-item.is-open .mega-wrap { opacity: 0; pointer-events: none; }
  .mega-wrap { display: none; }
}
