:root {
  --ink: #f0f6ff;
  --dark: #e6f0fb;
  --panel: #ddeaf8;
  --card: #ffffff;
  --border: rgba(30, 79, 194, 0.14);
  --gold: #f5a623;
  --gold2: #ffca55;
  --goldg: linear-gradient(135deg, #f5a623, #ffca55, #f5a623);
  --steel: #1e4fc2;
  --steelLight: #4a7aec;
  --text: #0d2340;
  --muted: #5b789a;
  --white: #0d2340;
  --cream: #1e4fc2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;

}

/* â”€â”€ CUSTOM CURSOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--steel);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(30, 79, 194, 0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s;
}

/* â”€â”€ NOISE OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.15;
}

/* â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 64px;
  border-bottom: 1px solid rgba(30, 79, 194, 0.15);
  background: rgba(240, 246, 255, 0.92);
  backdrop-filter: blur(20px);
}

.hd-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-psp {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-psp em {
  font-style: normal;
  background: var(--goldg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hd-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.logo-fm {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.8;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  color: #0d2340;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--gold);
}

.hd-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--steel);
  color: var(--steel);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s;
}

.hd-cta:hover {
  background: var(--steel);
  color: #fff;
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
}

/* ambient glow */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 79, 194, 0.06) 0%, transparent 65%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 65%);
  left: 200px;
  bottom: -100px;
  pointer-events: none;
}

/* horizontal rule lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 79, 194, 0.07), transparent);
}

.hero-lines span:nth-child(1) {
  top: 25%;
}

.hero-lines span:nth-child(2) {
  top: 50%;
}

.hero-lines span:nth-child(3) {
  top: 75%;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.kicker-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.kicker-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  color: #0d2340;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero-h1 .grad {
  background: var(--goldg);
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-h1 .outline {
  -webkit-text-stroke: 2px rgba(30, 79, 194, 0.3);
  color: transparent;
  display: block;
}

.tagline-hindi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 18px;
  letter-spacing: 1px;
  position: relative;
}

.tagline-hindi::before,
.tagline-hindi::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text);
  margin: 28px 0 44px;
  max-width: 420px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: none;

  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 79, 194, 0.3);
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--steel);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid rgba(30, 79, 194, 0.35);

  transition: all 0.35s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 166, 35, 0.05);
}

.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 400px;
}

.metric {
  flex: 1;
  padding: 20px 22px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
}

.metric:last-child {
  border-right: none;
}

.metric-n {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--steel);
  line-height: 1;
}

.metric-n sup {
  font-size: 16px;
  color: var(--gold);
}

.metric-l {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5b789a;
  margin-top: 6px;
}

/* Hero Right â€” pump visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.pump-canvas {
  width: 420px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* outer ring slow */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  width: 420px;
  height: 420px;
  border-color: rgba(30, 79, 194, 0.1);
  animation: rspin 40s linear infinite;
}

.ring-2 {
  width: 320px;
  height: 320px;
  border-color: rgba(30, 79, 194, 0.08);
  border-top-color: rgba(30, 79, 194, 0.4);
  animation: rspin 20s linear infinite reverse;
}

.ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(74, 127, 160, 0.15);
  border-right-color: rgba(74, 127, 160, 0.5);
  animation: rspin 12s linear infinite;
}

@keyframes rspin {
  to {
    transform: rotate(360deg);
  }
}

/* tick marks on ring-1 */
.ring-1::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--gold) 0deg, var(--gold) 1deg,
      transparent 1deg, transparent 30deg);
  opacity: 0.15;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), white calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), white calc(100% - 2px));
}

.pump-core {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e4fc2, #2d7be8);
  border: 1px solid rgba(30, 79, 194, 0.25);
  box-shadow: 0 0 60px rgba(30, 79, 194, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.pump-icon-svg {
  font-size: 48px;
  filter: drop-shadow(0 0 12px rgba(30, 79, 194, 0.4));
}

.pump-core-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 6px;
}

/* orbit dots */
.odot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.odot:nth-child(1) {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.odot:nth-child(2) {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.odot:nth-child(3) {
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.odot:nth-child(4) {
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* floating data chips */
.data-chip {
  position: absolute;
  background: rgba(13, 35, 64, 0.97);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.data-chip:nth-child(2) {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.data-chip:nth-child(3) {
  bottom: 50px;
  left: -30px;
  animation-delay: 1.5s;
}

.data-chip:nth-child(4) {
  bottom: 130px;
  right: -40px;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.chip-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: wheat;
}

.chip-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-top: 2px;
}

.chip-unit {
  font-size: 11px;
  color: var(--gold);
}

/* â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #1e4fc2;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* â”€â”€ SECTION WRAPPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec {
  padding: 110px 64px;
  max-width: 100%;
  overflow-x: hidden;
}

.sec-dark {
  background: #ddeaf8;
}

.sec-panel {
  background: var(--panel);
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  color: #0d2340;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.sec-h2 em {
  font-style: italic;
  background: var(--goldg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-desc {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 300;
  margin-top: 18px;
}

/* â”€â”€ PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.prod-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  position: sticky;
  top: 120px;
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
}

.prod-header .sec-desc {
  margin-top: 0;
}

.prod-cards-area {
  flex: 1;
  min-width: 0;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

/* 4th and 5th cards sit in a centered 2-col row */
.prod-card:nth-child(4),
.prod-card:nth-child(5) {
  grid-column: auto;
}

.prod-grid-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 20px 0 0;
}

.prod-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;

  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  box-shadow: 0 4px 20px rgba(15, 28, 63, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(15, 28, 63, 0.14);
  border-color: rgba(28, 63, 170, 0.25);
}

.prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--goldg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.prod-card:hover {
  background: #f8fbff;
}

.prod-card:hover::before {
  transform: scaleX(1);
}

.prod-series {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: #0d2340;
  line-height: 1.3;
  margin-bottom: 4px;
}

.prod-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.prod-spec-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.psr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30, 79, 194, 0.08);
}

.psr-k {
  font-size: 11px;
  color: #5b789a;
  letter-spacing: 1px;
}

.psr-v {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #0d2340;
  font-weight: 500;
}

.prod-cta {
  width: 100%;
  padding: 13px 0;
  background: #ffffff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;

  transition: all 0.3s;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(28, 63, 170, 0.15);
}

.prod-cta:hover {
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 63, 170, 0.4);
}

.card-img-pro {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  background: #f4f7ff;
}

.card-img-pro img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: contain;
}

.prod-num {
  position: absolute;
  right: 22px;
  bottom: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(30, 79, 194, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.prod-card:hover .prod-num {
  color: rgba(30, 79, 194, 0.08);
}

/* â”€â”€ FEATURES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(30, 79, 194, 0.12);
  border: 1px solid rgba(30, 79, 194, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.feat {
  background: #ffffff;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  transition: background 0.3s;
}

.feat:hover {
  background: #f5faff;
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: rgba(30, 79, 194, 0.07);
  border: 1px solid rgba(30, 79, 194, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.feat:hover .feat-icon {
  background: rgba(30, 79, 194, 0.15);
  border-color: rgba(30, 79, 194, 0.35);
}

.feat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #0d2340;
  margin-bottom: 8px;
}

.feat p {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
}

/* â”€â”€ WHY STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(30, 79, 194, 0.12);
  border: 1px solid rgba(30, 79, 194, 0.15);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 60px;
}

.why-item {
  padding: 40px 32px;
  background: #ffffff;
  text-align: center;
  transition: background 0.3s;
}

.why-item:hover {
  background: #f5faff;
}

.why-n {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  background: var(--goldg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.why-t {
  font-size: 13px;
  font-weight: 500;
  color: #0d2340;
  margin-bottom: 6px;
}

.why-d {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

/* â”€â”€ TESTIMONIAL / BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.banner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.banner::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 240px;
  font-weight: 900;
  color: rgba(30, 79, 194, 0.04);
  line-height: 1;
  pointer-events: none;
}

.banner-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #0d2340;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 24px;
}

.banner-quote em {
  font-style: italic;
  color: var(--gold);
}

.banner-attr {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.ci-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ci {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.ci-ic {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(30, 79, 194, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci strong {
  display: block;
  color: #0d2340;
  font-size: 14px;
  margin-bottom: 2px;
}

.ci span {
  font-size: 13px;
  font-weight: 300;
}

form.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(30, 79, 194, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #0d2340;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 8px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fg label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5b789a;
}

.fg input,
.fg select,
.fg textarea {
  background: #f4f8ff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  color: #000000;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  resize: none;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200, 168, 75, 0.03);
}

.fg select option {
  background: var(--card);
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.fg-row>* {
  min-width: 0;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 2px;
  border: none;

  transition: all 0.35s;
  font-weight: 500;
}

.form-submit:hover {
  background: var(--gold2);
  box-shadow: 0 10px 30px rgba(30, 79, 194, 0.25);
}

/* â”€â”€ MODAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 20, 50, 0.75);
  backdrop-filter: blur(20px);
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.overlay.open {
  display: flex;
}

.overlay.open ~ .wa {
  display: none;
}

.modal {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  overflow: visible;
  animation: mIn 0.4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 40px 100px rgba(15, 28, 63, 0.3), 0 8px 30px rgba(249, 115, 22, 0.15);
  margin: auto;
  position: relative;
}

@keyframes mIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-top {
  padding: 0;
  background: linear-gradient(135deg, #0F1C3F 0%, #1C3FAA 60%, #1a6bb5 100%);
  position: relative;
  overflow: hidden;
}

.modal-top::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.modal-top::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  bottom: -80px;
  left: -40px;
  pointer-events: none;
}

.modal-top-inner {
  padding: 44px 44px 36px;
  position: relative;
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.modal-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(90deg);
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.modal-kicker::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-name-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  text-transform: uppercase;
}

.modal-body {
  padding: 32px 44px 40px;
  background: #ffffff;
}

.modal-spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.mspec {
  padding: 16px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0f5ff, #e8f0fe);
  border: 1.5px solid rgba(28, 63, 170, 0.12);
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.mspec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 14px 14px 0 0;
}

.mspec:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(28, 63, 170, 0.15);
}

.mspec-k {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.mspec-v {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  margin-top: 6px;
  line-height: 1.1;
}

.modal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 24px;
}

.modal-desc {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 28px;
  background: linear-gradient(135deg, #fafbfe, #f0f5ff);
  border-left: 4px solid var(--orange);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
}

.modal-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}

.modal-acts {
  display: flex;
  gap: 12px;
}

.modal-acts .btn-gold {
  flex: 1.4;
  justify-content: center;
  font-size: 11px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.modal-acts .btn-ghost {
  flex: 1;
  justify-content: center;
  font-size: 11px;
  border-radius: 10px;
  padding: 14px;
}

.modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--light);
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
}

.modal-trust::before,
.modal-trust::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: #1e4fc2;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 60px 64px 32px;
}

.ft {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ft-brand .logo-psp {
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
}

.ft-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 240px;
}

.ft-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ft-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: #ffca55;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
}

/* â”€â”€ WHATSAPP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wa {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22a83a;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34, 168, 58, 0.4);
  transition: background 0.3s, box-shadow 0.3s;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.wa.dragging {
  cursor: grabbing;
  box-shadow: 0 8px 32px rgba(34, 168, 58, 0.5);
  transform: scale(1.1);
  transition: background 0.1s, box-shadow 0.1s, transform 0.1s;
}

.wa:hover {
  background: #25d366;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

/* ── DEALER CTA STRIP (Homepage) ─────────────── */
.dealer-cta-strip {
  padding: 0 64px;
  background: var(--panel);
}

.dealer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 28, 63, 0.06);
}

.dealer-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--goldg);
}

.dealer-cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #0d2340;
  line-height: 1.15;
  margin-bottom: 12px;
}

.dealer-cta-h2 em {
  font-style: italic;
  background: var(--goldg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dealer-cta-desc {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 16px;
}

.dealer-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dealer-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  background: rgba(30, 79, 194, 0.06);
  border: 1px solid rgba(30, 79, 194, 0.12);
  border-radius: 4px;
  padding: 6px 12px;
}

.dealer-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.dealer-cta-right .btn-gold,
.dealer-cta-right .btn-ghost {
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

@media(max-width:768px) {
  .dealer-cta-strip {
    padding: 0 16px;
  }

  .dealer-cta-inner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    gap: 24px;
  }

  .dealer-cta-tags {
    justify-content: center;
  }

  .dealer-cta-right {
    width: 100%;
  }

  .dealer-cta-right .btn-gold,
  .dealer-cta-right .btn-ghost {
    width: 100%;
  }
}

/* ── ANIMATIONS ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: navIn 0.3s ease;
}

.mobile-nav.open {
  display: flex;
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav .mn-cta {
  background: var(--orange);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 14px 36px;
  border-radius: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-nav .mn-cta:hover {
  color: #fff;
}

/* tablet */
/* â”€â”€ 1280px: large laptops â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:1280px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .prod-grid-row2 {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 67%;
  }
}

/* â”€â”€ 1100px: tablets landscape / small laptops â”€ */
@media(max-width:1100px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .prod-grid-row2 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 67%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 70px;
  }

  .hero-right {
    display: none;
  }

  .hero-metrics {
    max-width: 100%;
  }

  .why-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec {
    padding: 80px 40px;
  }
}

/* â”€â”€ 900px: tablets portrait â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:900px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .prod-grid-row2 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .why-strip {
    grid-template-columns: 1fr 1fr;
  }

  .sec {
    padding: 60px 28px;
  }

  .modal-spec-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* â”€â”€ 768px: mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
  }

  * {
    max-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  header {
    padding: 14px 18px;
  }

  nav {
    display: none;
  }

  .hd-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 18px 50px;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(28px, 8vw, 44px);
    word-break: break-word;
  }

  .tagline-hindi {
    font-size: 17px;
  }

  .hero-sub {
    font-size: 13px;
    margin: 14px 0 22px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-gold,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  .hero-metrics {
    margin-top: 28px;
    max-width: 100%;
    border-radius: 8px;
  }

  .metric {
    padding: 12px 8px;
  }

  .metric-n {
    font-size: 20px;
  }

  .metric-l {
    font-size: 9px;
  }

  .kicker-text {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  /* sections */
  .sec {
    padding: 44px 16px;
  }

  .sec-h2 {
    font-size: clamp(24px, 7vw, 38px);
  }

  .sec-desc {
    font-size: 13px;
  }

  /* products */
  .prod-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .prod-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prod-grid-row2 {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .prod-card {
    border-radius: 12px;
  }

  .card-img-pro {
    border-radius: 12px 12px 0 0;
  }

  .prod-name {
    font-size: 18px;
  }

  .prod-cta {
    font-size: 12px;
    padding: 12px 0;
  }

  /* marquee */
  .marquee-item {
    padding: 0 16px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  /* features */
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feat {
    padding: 20px 18px;
    gap: 12px;
    border-radius: 12px;
  }

  .feat-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .feat h3 {
    font-size: 16px;
  }

  /* why strip */
  .why-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .why-item {
    padding: 20px 12px;
    border-radius: 12px;
  }

  .why-n {
    font-size: 30px;
  }

  .why-t {
    font-size: 10px;
  }

  /* banner */
  .banner {
    padding: 32px 18px;
    border-radius: 12px;
  }

  .banner-quote {
    font-size: clamp(15px, 5vw, 22px);
  }

  .banner::before {
    font-size: 100px;
    top: -10px;
  }

  /* contact */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ci {
    padding: 12px 0;
  }

  .ci-ic {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  form.contact-form {
    padding: 16px 14px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }

  .fg input,
  .fg select,
  .fg textarea {
    padding: 12px 12px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .fg-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-wrap {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
  }

  .fg,
  .fg-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .fg input,
  .fg select,
  .fg textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-submit {
    width: 100%;
    box-sizing: border-box;
  }

  .form-title {
    font-size: 19px;
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

  /* modal */
  .overlay {
    padding: 8px;
    align-items: flex-start;
  }

  .modal {
    border-radius: 14px;
    margin: 8px auto;
    width: calc(100% - 0px);
  }

  .modal-top-inner {
    padding: 22px 18px 18px;
  }

  .modal-name {
    font-size: 30px;
  }

  .modal-name-sub {
    font-size: 10px;
  }

  .modal-body {
    padding: 18px 16px 24px;
  }

  .modal-spec-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mspec {
    padding: 12px 8px;
  }

  .mspec-v {
    font-size: 16px;
  }

  .mspec-k {
    font-size: 8px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }

  .modal-acts {
    flex-direction: column;
    gap: 10px;
  }

  .modal-acts .btn-gold,
  .modal-acts .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .modal-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  /* footer */
  footer {
    padding: 36px 16px 18px;
  }

  .ft {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .ft-col h4 {
    margin-bottom: 8px;
  }

  .ft-col a {
    margin-bottom: 7px;
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* whatsapp */
  .wa {
    width: 44px;
    height: 44px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

/* â”€â”€ 480px: small phones â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:480px) {
  .hero-h1 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-grid-row2 {
    grid-template-columns: 1fr;
  }

  .why-strip {
    grid-template-columns: 1fr 1fr;
  }

  .sec {
    padding: 36px 14px;
  }

  .modal-name {
    font-size: 26px;
  }

  .modal-spec-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .mspec-v {
    font-size: 14px;
  }

  .modal-top-inner {
    padding: 18px 14px 14px;
  }

  .modal-body {
    padding: 14px 14px 20px;
  }

  .overlay {
    padding: 6px;
  }

  .metric-n {
    font-size: 18px;
  }

  .prod-cta {
    font-size: 11px;
  }

  .feat h3 {
    font-size: 15px;
  }
}

/* â”€â”€ 380px: very small phones â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:380px) {
  .hero-h1 {
    font-size: 28px;
  }

  .why-strip {
    grid-template-columns: 1fr;
  }

  .modal-name {
    font-size: 24px;
  }

  .modal-spec-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .mspec-v {
    font-size: 13px;
  }

  .mspec-k {
    font-size: 7px;
  }

  .overlay {
    padding: 4px;
  }

  .metric-n {
    font-size: 16px;
  }

  .sec {
    padding: 30px 12px;
  }
}

/* â”€â”€ ADDED FIXES â”€â”€ */
.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* â”€â”€ INDIVIDUAL PRODUCT PAGE â”€â”€ */
.pd-hero {
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 0;
}

.pd-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  font-family: 'DM Mono', monospace;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.pd-back:hover {
  color: var(--gold);
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pd-image-col {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(15, 28, 63, 0.05);
}

.pd-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.pd-image-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(30, 79, 194, 0.3);
  animation: rspin 25s linear infinite;
  z-index: 1;
}

.pd-pump-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(15, 28, 63, 0.1));
  mix-blend-mode: multiply;
}

.pd-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 5;
  font-family: 'DM Mono', monospace;
}

.pd-info-col {
  display: flex;
  flex-direction: column;
}

.pd-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  color: #0d2340;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.pd-title span {
  font-style: italic;
  background: var(--goldg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pd-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.pd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pd-spec {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(15, 28, 63, 0.02);
}

.pd-spec-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.pd-spec-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.pd-spec-value {
  font-size: 16px;
  font-weight: 600;
  color: #0d2340;
  font-family: 'Playfair Display', serif;
}

.pd-desc {
  margin-bottom: 40px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.pd-desc h3 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0d2340;
  margin-bottom: 12px;
}

.pd-desc p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.pd-features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-feat-item {
  font-size: 14px;
  font-weight: 400;
  color: #0d2340;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid rgba(30, 79, 194, 0.08);
}

.pd-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pd-trust {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pd-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.pd-other-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s;
  display: block;
  position: relative;
  overflow: hidden;
}

.pd-other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 28, 63, 0.08);
  border-color: rgba(30, 79, 194, 0.3);
}

.pd-other-card img {
  height: 140px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}

.pd-other-name {
  font-weight: 600;
  color: #0d2340;
  margin-bottom: 4px;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
}

.pd-other-hp {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pd-hero {
    padding: 120px 30px 60px;
  }

  .pd-other-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-image-col {
    padding: 40px 30px;
  }

  .pd-image-wrap {
    max-width: 340px;
  }

  .pd-image-ring {
    inset: -6px;
  }
}

@media (max-width: 768px) {
  .pd-hero {
    padding: 100px 18px 50px;
  }

  .pd-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pd-image-col {
    padding: 30px 20px;
    border-radius: 12px;
    overflow: hidden;
  }

  .pd-image-wrap {
    max-width: 260px;
    aspect-ratio: 1 / 1;
  }

  .pd-image-ring {
    inset: -4px;
    border-width: 1px;
  }

  .pd-pump-img {
    max-width: 90%;
    max-height: 90%;
  }

  .pd-badge {
    top: 14px;
    left: 14px;
    font-size: 9px;
    padding: 5px 10px;
  }

  .pd-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .pd-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .pd-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .pd-spec {
    padding: 14px;
  }

  .pd-spec-icon {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .pd-spec-value {
    font-size: 14px;
  }

  .pd-desc {
    margin-bottom: 24px;
    padding-left: 14px;
  }

  .pd-desc p {
    font-size: 13px;
  }

  .pd-features {
    margin-bottom: 24px;
    gap: 8px;
  }

  .pd-feat-item {
    font-size: 13px;
    padding: 8px 12px;
  }

  .pd-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .pd-actions .btn-gold,
  .pd-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }

  .pd-trust {
    font-size: 11px;
    padding-top: 14px;
  }

  .pd-other-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pd-other-card {
    padding: 20px 14px;
  }

  .pd-other-card img {
    height: 100px;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .pd-specs-grid {
    grid-template-columns: 1fr;
  }

  .pd-other-grid {
    grid-template-columns: 1fr;
  }

  .pd-image-col {
    padding: 24px 16px;
  }

  .pd-image-wrap {
    max-width: 220px;
  }

  .pd-image-ring {
    inset: -3px;
  }
}

@media (max-width: 400px) {
  .pd-hero {
    padding: 90px 14px 40px;
  }

  .pd-image-col {
    padding: 20px 12px;
  }

  .pd-image-wrap {
    max-width: 180px;
  }

  .pd-image-ring {
    inset: -2px;
  }

  .pd-title {
    font-size: 28px;
  }

  .pd-specs-grid {
    gap: 8px;
  }

  .pd-spec {
    padding: 10px;
  }

  .pd-spec-value {
    font-size: 13px;
  }
}

/* â”€â”€ WATER ANIMATION â”€â”€ */
.water-stream {
  position: absolute;
  bottom: 55%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 180px;
  width: 40px;
}

.drop {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #619aef;
  border-radius: 50% 50% 50% 50%;
  filter: drop-shadow(0 0 10px rgba(74, 122, 236, 0.6));
  opacity: 0;
  animation: pumpWater 1.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.d1 {
  animation-delay: 0s;
}

.d2 {
  animation-delay: 0.5s;
  width: 10px;
  height: 10px;
  margin-left: -8px;
}

.d3 {
  animation-delay: 1.0s;
  width: 18px;
  height: 18px;
  margin-left: 6px;
}

@keyframes pumpWater {
  0% {
    transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0;
  }

  20% {
    opacity: 1;
    border-radius: 50% 50% 50% 10% / 50% 50% 0% 50%;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translateX(-50%) translateY(-140px) scale(1.2);
    opacity: 0;
  }
}

/* ── HORIZONTAL PUMP NORMALIZATION (V7 & V9) ── */
.pd-pump-img[src*="v7"], .pd-pump-img[src*="v9"] {
  max-height: 280px !important;
  width: 90% !important;
  margin: 0 auto;
  display: block;
}

.card-img-pro img[src*="v7"], .card-img-pro img[src*="v9"] {
  width: 75% !important;
  margin: 0 auto;
  object-position: center;
}

/* ── RESPONSIVE: PRODUCTS LAYOUT ── */
@media (max-width: 1024px) {
  .prod-layout {
    flex-direction: column;
    gap: 32px;
  }
  .prod-header {
    position: static;
    min-width: 100%;
    max-width: 100%;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-row2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .prod-grid-row2 {
    grid-template-columns: 1fr;
  }
}