/* ==========================================================
   LAXAMI PAPER PRODUCTION - PREMIUM LANDING PAGE (WHITE THEME)
   ========================================================== */

:root {
  /* Brand */
  --dark-blue: #0b2a5b;
  --deep-blue: #102d63;
  --primary: #14387f;
  --sky: #38bdf8;
  --sky-light: #7dd3fc;
  --white: #ffffff;

  /* Backgrounds (white-first) */
  --bg: #ffffff;
  --bg-2: #fafbfc;
  --bg-3: #f5f7fa;
  --text: #1a1f36;
  --muted: #6b7280;
  --border: rgba(15, 23, 42, 0.08);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.9);

  /* Shadows */
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-med: 0 18px 45px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 25px 70px rgba(15, 23, 42, 0.15);

  /* Gradients (subtle, accents only) */
  --grad-primary: linear-gradient(135deg, #0b2a5b 0%, #14387f 50%, #1e40af 100%);
  --grad-sky: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  --grad-text: linear-gradient(135deg, #0b2a5b 0%, #14387f 100%);
  --grad-text-2: linear-gradient(135deg, #14387f 0%, #38bdf8 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);

  --radius: 18px;
  --radius-lg: 28px;
  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================
   RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }

::selection { background: var(--dark-blue); color: var(--white); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--grad-primary); border-radius: 10px; }

/* ==========================================================
   UTILITIES
   ========================================================== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-2 {
  background: var(--grad-text-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glass {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(20, 56, 127, 0.06);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(20, 56, 127, 0.12);
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

/* ==========================================================
   CURSOR GLOW
   ========================================================== */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(20, 56, 127, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 1024px) { .cursor-glow { display: block; } }

/* ==========================================================
   LOADER
   ========================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner {
  position: relative;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
}
.loader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(20, 56, 127, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 20px;
  animation: pulseFade 2s ease-in-out infinite;
}
@keyframes pulseFade {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.95); opacity: 0.85; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================
   SCROLL PROGRESS
   ========================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--primary));
  z-index: 1000;
}

/* ==========================================================
   BACKGROUND SHAPES (very subtle)
   ========================================================== */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: floatShape 22s ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; background: var(--sky); top: -10%; left: -10%; }
.shape-2 { width: 400px; height: 400px; background: var(--primary); bottom: -10%; right: -5%; animation-delay: -5s; }
.shape-3 { width: 350px; height: 350px; background: var(--sky-light); top: 40%; right: 10%; animation-delay: -10s; }
.shape-4 { width: 300px; height: 300px; background: var(--primary); bottom: 30%; left: 5%; animation-delay: -7s; }
@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}

/* ==========================================================
   NAVBAR (transparent)
   ========================================================== */
.navbar {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1280px;
  z-index: 100;
  padding: 14px 26px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  top: 12px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
}
.logo-icon {
  width: 84px; height: 84px;
  border-radius: 18px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
  padding: 4px;
  transition: transform var(--transition);
  border: 1px solid var(--border);
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}
.logo:hover .logo-icon { transform: rotate(-6deg) scale(1.05); }
.footer-logo .logo-icon { background: var(--white); border: none; width: 76px; height: 76px; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { color: var(--dark-blue); font-weight: 800; font-size: 20px; letter-spacing: -0.3px; }
.logo-text span { color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; font-weight: 600; }

.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 100px;
  position: relative;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--primary); background: rgba(20, 56, 127, 0.07); }
.nav-link.active { color: var(--primary); background: rgba(20, 56, 127, 0.1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--grad-primary);
  color: var(--white) !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(20, 56, 127, 0.25);
  transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(20, 56, 127, 0.4); }
.nav-cta i { font-size: 12px; transition: transform var(--transition); }
.nav-cta:hover i { transform: translateX(4px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-med);
    border: 1px solid var(--border);
  }
  .nav-cta { display: none; }
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn.big { padding: 18px 38px; font-size: 16px; }
.btn.full { width: 100%; justify-content: center; }
.btn i { font-size: 13px; transition: transform var(--transition); }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(20, 56, 127, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(20, 56, 127, 0.45); }

.btn-ghost {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ==========================================================
   HERO (white/cream theme)
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px circle at 80% 20%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(600px circle at 10% 80%, rgba(20, 56, 127, 0.08), transparent 50%);
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-waves svg { width: 100%; height: 200px; display: block; }
.hero-waves svg:last-child { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-waves svg path { fill: rgba(20, 56, 127, 0.04) !important; }
.hero-waves svg:last-child path { fill: rgba(56, 189, 248, 0.06) !important; }

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid rgba(var(--cup-color-rgb), 0.2);
  border-radius: 100px;
  color: var(--cup-color);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 26px;
  box-shadow: var(--shadow-soft);
  transition: color 1s ease, border-color 1s ease;
}
.hero-badge .ping {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--cup-color-2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(var(--cup-color-2-rgb), 0.7);
  animation: ping 1.5s infinite;
  transition: background 1s ease;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(var(--cup-color-2-rgb, 56, 189, 248), 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(var(--cup-color-2-rgb, 56, 189, 248), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--cup-color-2-rgb, 56, 189, 248), 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-title .gradient-text,
.hero-title .gradient-text-2 {
  background: linear-gradient(135deg, var(--cup-color) 0%, var(--cup-color-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 1s ease;
}

/* Dynamic CTA + stats in hero */
.hero .btn-primary {
  background: linear-gradient(135deg, var(--cup-color) 0%, var(--cup-color-2) 100%);
  box-shadow: 0 15px 35px rgba(var(--cup-color-rgb), 0.35);
  transition: background 1s ease, box-shadow 1s ease, transform var(--transition);
}
.hero .btn-ghost {
  color: var(--cup-color);
  transition: color 1s ease, border-color var(--transition), background var(--transition);
}
.hero-stat strong {
  background: linear-gradient(135deg, var(--cup-color) 0%, var(--cup-color-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 1s ease;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-blue);
}
.hero-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* Dynamic cup theming variables — JS updates these per cup */
.hero {
  --cup-color: #14387f;
  --cup-color-2: #38bdf8;
  --cup-color-rgb: 20, 56, 127;
  --cup-color-2-rgb: 56, 189, 248;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Multi-layer dynamic glow behind main cup */
.hero-glow {
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(var(--cup-color-2-rgb), 0.55) 0%,
      rgba(var(--cup-color-rgb), 0.28) 25%,
      transparent 60%);
  filter: blur(50px);
  animation: heroGlowPulse 4s ease-in-out infinite;
  z-index: 1;
  transition: background 1s ease;
}
.hero-glow::before,
.hero-glow::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cup-color-2-rgb), 0.6) 0%, transparent 60%);
  filter: blur(40px);
  animation: heroGlowPulse 3s ease-in-out infinite reverse;
  transition: background 1s ease;
}
.hero-glow::after {
  inset: 25%;
  background: radial-gradient(circle, rgba(var(--cup-color-rgb), 0.4) 0%, transparent 60%);
  animation-duration: 5s;
}
@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.float-cup {
  position: absolute;
  animation: float 5s ease-in-out infinite;
}
/* Even bigger main cup — wrapper stays static, image animates in/out */
.float-cup.main-cup {
  width: 640px; height: 720px;
  z-index: 3;
  animation: mainCupFloat 6s ease-in-out infinite;
}
@keyframes mainCupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
.float-cup.float-1 { top: 5%; left: 0%; animation-delay: -1s; z-index: 2; width: 140px; height: 140px; }
.float-cup.float-2 { bottom: 12%; left: -3%; animation-delay: -2s; z-index: 2; width: 140px; height: 140px; }
.float-cup.float-3 { top: 8%; right: -3%; animation-delay: -3s; z-index: 2; width: 140px; height: 140px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* SWIPE IN: from right with zoom + blur clearing */
@keyframes cupSwipeIn {
  0% {
    transform: translateX(140%) scale(1.6) rotate(18deg);
    opacity: 0;
    filter: blur(20px);
  }
  60% {
    transform: translateX(-20px) scale(0.96) rotate(-3deg);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateX(0) scale(1) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* SWIPE OUT: to left with zoom-out + blur */
@keyframes cupSwipeOut {
  0% {
    transform: translateX(0) scale(1) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
  40% {
    transform: translateX(20px) scale(1.05) rotate(3deg);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateX(-140%) scale(0.5) rotate(-20deg);
    opacity: 0;
    filter: blur(20px);
  }
}

/* Apply animations via state classes (controlled by JS) */
#heroMainCup {
  animation: cupSwipeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity, filter;
}
#heroMainCup.swipe-out {
  animation: cupSwipeOut 0.9s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
#heroMainCup.swipe-in {
  animation: cupSwipeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cup-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 40px 60px rgba(var(--cup-color-rgb, 20, 56, 127), 0.4))
          drop-shadow(0 0 50px rgba(var(--cup-color-2-rgb, 56, 189, 248), 0.5));
  position: relative;
  transition: filter 1s ease;
}
.cup-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Dynamic glow ring around main cup */
.float-cup.main-cup::before {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cup-color-2-rgb, 56, 189, 248), 0.35) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: heroGlowPulse 3.5s ease-in-out infinite;
  transition: background 1s ease;
}

.orbit-ring {
  position: absolute;
  border: 1.5px dashed rgba(20, 56, 127, 0.15);
  border-radius: 50%;
  animation: orbitSpin 30s linear infinite;
}
.ring-1 {
  width: 720px; height: 720px;
  border-color: rgba(var(--cup-color-rgb, 20, 56, 127), 0.18);
  transition: border-color 1s ease;
}
.ring-2 {
  width: 860px; height: 860px;
  animation-duration: 50s; animation-direction: reverse;
  border-style: dotted;
  border-color: rgba(var(--cup-color-2-rgb, 56, 189, 248), 0.28);
  transition: border-color 1s ease;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 48px;
  border: 2px solid rgba(20, 56, 127, 0.3);
  border-radius: 100px;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-down span {
  display: block;
  width: 4px; height: 8px;
  background: var(--primary);
  border-radius: 4px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@media (max-width: 1100px) {
  .float-cup.main-cup { width: 520px; height: 600px; }
  .hero-visual { height: 640px; }
  .hero-glow { width: 540px; height: 540px; }
  .ring-1 { width: 580px; height: 580px; }
  .ring-2 { width: 700px; height: 700px; }
}
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { height: 540px; margin-top: 20px; }
  .float-cup.main-cup { width: 420px; height: 480px; }
  .hero-glow { width: 440px; height: 440px; }
  .ring-1 { width: 480px; height: 480px; }
  .ring-2 { width: 580px; height: 580px; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
}
@media (max-width: 500px) {
  .hero-visual { height: 420px; }
  .float-cup.main-cup { width: 320px; height: 360px; }
  .hero-glow { width: 340px; height: 340px; }
  .ring-1 { width: 360px; height: 360px; }
  .ring-2 { width: 440px; height: 440px; }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.about-card {
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); }
.about-card.highlight-card {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary));
  color: var(--white);
}
.about-card.highlight-card h3, .about-card.highlight-card p { color: var(--white); }
.about-card.highlight-card p { color: rgba(255,255,255,0.85); }

.about-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(20, 56, 127, 0.2);
}
.about-card.highlight-card .about-icon {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.about-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.about-card p { color: var(--muted); }

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.counter {
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.counter:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
.counter .count {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-blue);
  display: inline-block;
}
.counter .count.text { font-size: 2rem; }
.counter .plus {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky);
}
.counter p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==========================================================
   PRODUCTS
   ========================================================== */
.products { background: var(--bg-2); position: relative; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  cursor: pointer;
  /* Fallback values used if a card doesn't set its own theme */
  --card-color: #14387f;
  --card-color-2: #38bdf8;
  --card-rgb: 20, 56, 127;
  --card-rgb-2: 56, 189, 248;
}
.product-card:hover {
  box-shadow: 0 30px 70px rgba(var(--card-rgb), 0.2);
  transform: translateY(-10px);
  border-color: rgba(var(--card-rgb), 0.25);
}

.shine {
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.7) 50%, transparent 70%);
  transform: rotate(20deg);
  pointer-events: none;
  z-index: 2;
  transition: left 0.8s;
}
.product-card:hover .shine { left: 125%; }

.product-image {
  position: relative;
  height: 360px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at center, rgba(var(--card-rgb-2), 0.08) 0%, transparent 70%),
    linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  overflow: hidden;
  transition: background 0.5s ease;
}
.product-card:hover .product-image {
  background:
    radial-gradient(circle at center, rgba(var(--card-rgb-2), 0.18) 0%, transparent 70%),
    linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}
.product-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle,
    rgba(var(--card-rgb-2), 0.45) 0%,
    rgba(var(--card-rgb), 0.2) 30%,
    transparent 65%);
  filter: blur(35px);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
  transition: background 0.5s ease;
}

.png-placeholder {
  position: relative;
  width: 280px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cupFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 35px rgba(var(--card-rgb), 0.25))
          drop-shadow(0 0 30px rgba(var(--card-rgb-2), 0.3));
  transition: filter 0.5s ease, transform 0.5s ease;
}
.product-card:hover .png-placeholder {
  transform: scale(1.06);
  filter: drop-shadow(0 30px 45px rgba(var(--card-rgb), 0.35))
          drop-shadow(0 0 40px rgba(var(--card-rgb-2), 0.5));
}
.png-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Compact variant for taller/narrower cup images so they match others */
.png-placeholder.compact {
  width: 220px;
  height: 250px;
}
.png-placeholder i {
  font-size: 5rem;
  color: var(--card-color);
  opacity: 0.8;
}
.png-placeholder span { display: none; }

@keyframes cupFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.product-body {
  padding: 26px 26px 30px;
  position: relative;
  z-index: 1;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(var(--card-rgb), 0.08);
  color: var(--card-color);
  border: 1px solid rgba(var(--card-rgb), 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  min-height: 48px;
}
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--card-color) 0%, var(--card-color-2) 100%);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 10px 22px rgba(var(--card-rgb), 0.3);
}
.product-btn i { font-size: 11px; transition: transform var(--transition); }
.product-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(var(--card-rgb), 0.45); }
.product-btn:hover i { transform: translateX(4px); }

/* ==========================================================
   AVAILABLE RANGE / SIZES SECTION
   ========================================================== */
.range {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.range-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 15% 30%, rgba(20, 56, 127, 0.05), transparent 60%),
    radial-gradient(500px circle at 85% 70%, rgba(56, 189, 248, 0.06), transparent 60%);
  pointer-events: none;
}

.range-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.range-card {
  flex: 1 1 250px;
  max-width: 290px;
  --r-color: #14387f;
  --r-color-2: #38bdf8;
  --r-rgb: 20, 56, 127;
  --r-rgb-2: 56, 189, 248;
  position: relative;
  background: var(--white);
  border-radius: 28px;
  padding: 24px 24px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  overflow: hidden;
  perspective: 1200px;
}
.range-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--r-rgb-2), 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.range-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(var(--r-rgb), 0.22);
  border-color: rgba(var(--r-rgb), 0.2);
}
.range-card:hover::before { opacity: 1; }

/* ML badge */
.range-badge {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r-color) 0%, var(--r-color-2) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(var(--r-rgb), 0.4);
  animation: badgeBob 3s ease-in-out infinite;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.range-badge::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(var(--r-rgb-2), 0.4);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}
.range-badge .r-num { font-size: 18px; font-weight: 900; }
.range-badge .r-unit { font-size: 9px; letter-spacing: 1.5px; margin-top: 2px; opacity: 0.9; }

@keyframes badgeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Stage where cup sits */
.range-stage {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 16px;
  transform-style: preserve-3d;
}

/* Orbit rings, orbit dot, glow halo — hidden as requested */
.r-orbit, .r-dot, .r-glow { display: none; }

/* The cup itself — bigger, with gentle motion only (no glow) */
.r-cup {
  position: relative;
  width: 340px; height: 380px;
  z-index: 3;
  animation: cupTurntable 6s ease-in-out infinite,
             cupBob 4s ease-in-out infinite;
  transform-origin: center bottom;
}
.r-cup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes cupTurntable {
  0%, 100% { transform: rotateY(-12deg) rotateZ(-1deg); }
  50%      { transform: rotateY(12deg)  rotateZ(1deg); }
}
@keyframes cupBob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}

.range-card:hover .r-cup {
  animation-duration: 2.5s, 2s;
}

/* Subtle shadow platform below cup */
.r-platform {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.18) 0%, transparent 70%);
  filter: blur(8px);
  animation: shadowPulse 4s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.65; }
  50%      { transform: translateX(-50%) scale(0.92); opacity: 0.45; }
}

/* Info area */
.range-info {
  text-align: center;
  position: relative;
  z-index: 2;
}
.range-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--dark-blue);
}
.range-info p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
  min-height: 40px;
}
.r-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(var(--r-rgb), 0.08);
  color: var(--r-color);
  border: 1px solid rgba(var(--r-rgb), 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.r-tag i { font-size: 11px; }

/* CTA below range grid */
.range-cta {
  margin-top: 50px;
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, rgba(20, 56, 127, 0.04) 0%, rgba(56, 189, 248, 0.05) 100%);
  border: 1px dashed rgba(20, 56, 127, 0.15);
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
.range-cta p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.range-cta strong { color: var(--dark-blue); }

@media (max-width: 900px) {
  .range-stage { height: 360px; }
  .r-cup { width: 280px; height: 320px; }
}
@media (max-width: 600px) {
  .range-stage { height: 320px; }
  .r-cup { width: 240px; height: 280px; }
}

/* ==========================================================
   WHY US
   ========================================================== */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 40px 32px;
  text-align: left;
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }

.why-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: var(--grad-sky);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.22);
  position: relative;
  transition: transform var(--transition);
}
.why-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed rgba(56, 189, 248, 0.35);
  border-radius: 24px;
  animation: orbitSpin 20s linear infinite;
}
.why-card:hover .why-icon { transform: rotate(10deg) scale(1.1); }
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-card p { color: var(--muted); }

/* ==========================================================
   INDUSTRIES
   ========================================================== */
.industries { background: var(--bg-2); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.industry-card {
  padding: 40px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.industry-card:hover {
  transform: translateY(-10px);
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.industry-card:hover h3 { color: var(--white); }
.industry-card:hover i { color: var(--white); -webkit-text-fill-color: var(--white); transform: scale(1.2) rotate(-10deg); }
.industry-card i {
  font-size: 2.8rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  transition: all var(--transition);
  display: inline-block;
}
.industry-card h3 {
  font-size: 1.1rem;
  transition: color var(--transition);
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process { background: var(--white); position: relative; }
.timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding: 30px 0;
}
.timeline-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--sky), var(--primary), transparent);
  border-radius: 100px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-step .step-card { grid-column: 1; margin-right: 60px; text-align: right; }
.timeline-step .step-circle { grid-column: 2; }
.timeline-step.alt .step-card { grid-column: 3; grid-row: 1; margin-right: 0; margin-left: 60px; text-align: left; }

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(20, 56, 127, 0.3);
  position: relative;
  z-index: 2;
}
.step-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(56, 189, 248, 0.35);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.3; }
}

.step-card {
  padding: 28px 30px;
  transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.step-icon {
  font-size: 1.6rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 768px) {
  .timeline-line { left: 30px; }
  .timeline-step,
  .timeline-step.alt { grid-template-columns: auto 1fr; gap: 20px; }
  .timeline-step .step-card,
  .timeline-step.alt .step-card {
    grid-column: 2; grid-row: 1;
    margin: 0;
    text-align: left;
  }
  .step-circle { width: 50px; height: 50px; font-size: 14px; grid-column: 1; }
}

/* ==========================================================
   GALLERY (with bigger cups + spinning animation)
   ========================================================== */
.gallery { background: var(--bg-2); position: relative; overflow: hidden; }
.gallery::before {
  content: '';
  position: absolute;
  top: 20%; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.gallery::after {
  content: '';
  position: absolute;
  bottom: 10%; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20, 56, 127, 0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* ----- Premium Auto Slideshow (full-width, no card) ----- */
.gallery-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 0 0;
  box-shadow: none;
  overflow: visible;
}

/* Soft glow that follows the active design across the whole section */
.gallery-slider::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(var(--g-active-rgb-2, 56,189,248), 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.8s ease;
}

/* Stage */
.g-stage {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.g-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85) translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}
.g-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
}
/* exiting slide slides left */
.g-slide.is-exit {
  opacity: 0;
  visibility: visible;
  transform: scale(0.85) translateX(-60px);
}

.g-slide img {
  max-width: 420px;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 40px 55px rgba(var(--g-rgb), 0.35))
          drop-shadow(0 0 60px rgba(var(--g-rgb-2), 0.4));
  animation: gSlideFloat 5s ease-in-out infinite;
}
@keyframes gSlideFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}

/* Glow halo behind the active cup */
.g-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(var(--g-rgb-2), 0.4) 0%,
    rgba(var(--g-rgb), 0.16) 35%,
    transparent 68%);
  filter: blur(55px);
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}
/* Spinning ring */
.g-ring {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1.5px dashed rgba(var(--g-rgb), 0.25);
  z-index: 2;
  animation: orbitSpin 20s linear infinite;
}
.g-ring::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dotted rgba(var(--g-rgb-2), 0.35);
}

/* Arrows - placed near page edges */
.g-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: var(--shadow-med);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.g-arrow:hover {
  background: var(--grad-primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(20, 56, 127, 0.35);
}
.g-prev { left: 0; }
.g-next { right: 0; }

/* Meta info */
.g-meta {
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 4;
}
.g-counter {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.g-counter #gCurrent { color: var(--dark-blue); font-size: 18px; }
.g-counter .g-sep { margin: 0 6px; opacity: 0.5; }
.g-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
  transition: opacity 0.4s ease;
}
.g-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(20, 56, 127, 0.07);
  color: var(--primary);
  border: 1px solid rgba(20, 56, 127, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Progress bar (5s auto) */
.g-progress {
  margin: 22px auto 18px;
  width: 200px;
  height: 4px;
  background: rgba(20, 56, 127, 0.1);
  border-radius: 100px;
  overflow: hidden;
}
.g-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-primary);
  border-radius: 100px;
}
.g-progress-bar.run {
  animation: gProgress 5s linear forwards;
}
@keyframes gProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* Dots */
.g-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.g-dot {
  width: 10px; height: 10px;
  border-radius: 100px;
  background: rgba(20, 56, 127, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.g-dot:hover { background: rgba(20, 56, 127, 0.45); }
.g-dot.is-active {
  width: 28px;
  background: var(--grad-primary);
}

@media (max-width: 900px) {
  .g-stage { height: 460px; }
  .g-slide img { max-width: 340px; }
  .g-glow { width: 380px; height: 380px; }
  .g-ring { width: 360px; height: 360px; }
  .g-ring::after { width: 410px; height: 410px; }
}
@media (max-width: 600px) {
  .g-stage { height: 340px; }
  .g-slide img { max-width: 230px; }
  .g-glow { width: 270px; height: 270px; }
  .g-ring { width: 250px; height: 250px; }
  .g-ring::after { width: 285px; height: 285px; }
  .g-arrow { width: 44px; height: 44px; font-size: 14px; }
  .g-title { font-size: 1.3rem; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  width: 80vw;
  max-width: 700px;
  height: 70vh;
  max-height: 600px;
  background: var(--white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transform: scale(0.8);
  transition: transform var(--transition);
  padding: 40px;
}
.lightbox.open .lightbox-content { transform: scale(1); }
.lightbox-content img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(20, 56, 127, 0.2)); }
.lightbox-content i { font-size: 5rem; opacity: 0.5; }
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.lightbox-close:hover { transform: rotate(90deg) scale(1.1); }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testi-card {
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -20px; right: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 8rem;
  color: var(--sky);
  opacity: 0.15;
  line-height: 1;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); }
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #fbbf24;
  font-size: 16px;
}
.testi-card p {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.testi-author strong {
  display: block;
  color: var(--dark-blue);
  font-weight: 600;
}
.testi-author span { color: var(--muted); font-size: 13px; }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band { padding: 100px 0; background: var(--bg-2); }
.cta-inner {
  position: relative;
  padding: 70px 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 60%, #1e40af 100%);
  color: var(--white);
  overflow: hidden;
  border: none;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.4), transparent 70%);
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-inner h2 .gradient-text {
  background: linear-gradient(135deg, #ffffff, #bae6fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-inner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-inner .btn {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.cta-inner .btn:hover { background: var(--bg-2); transform: translateY(-3px); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.contact-info,
.contact-form {
  padding: 44px 38px;
}
.contact-info h3,
.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.info-sub {
  color: var(--muted);
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition);
}
.info-row:hover { transform: translateX(6px); }
.info-row.static { cursor: default; }
.info-row.static:hover { transform: none; }
.info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--grad-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(20, 56, 127, 0.2);
}
.info-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.info-row strong { display: block; color: var(--dark-blue); font-weight: 600; }
.info-row span { color: var(--muted); font-size: 14px; }

/* Multi-line address */
.address-row { align-items: flex-start; }
.full-address {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
}

/* GSTIN row */
.gstin-row .info-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.gstin-value {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark-blue);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px dashed rgba(245, 158, 11, 0.4);
  letter-spacing: 1px;
  margin-top: 4px;
  font-size: 14px;
}

/* Footer address */
.footer-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-address i { margin-top: 4px; flex-shrink: 0; }
.footer-address span { font-size: 13px; }

/* Multiple email addresses stacked */
.info-emails { align-items: flex-start; }
.info-emails > div { display: flex; flex-direction: column; }
.info-emails strong { margin-bottom: 4px; }
.info-emails a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 2px 0;
  transition: color var(--transition), transform var(--transition);
  word-break: break-all;
}
.info-emails a:hover { color: var(--primary); transform: translateX(4px); }

/* Footer email links */
.contact-list a { transition: color var(--transition); word-break: break-all; }
.contact-list a:hover { color: var(--sky-light); }

.map-placeholder {
  margin-top: 24px;
  height: 180px;
  background: linear-gradient(135deg, #f1f5fb 0%, #eaf2fb 100%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(20, 56, 127, 0.05) 20px, rgba(20, 56, 127, 0.05) 21px);
}
.map-placeholder i { font-size: 2.5rem; margin-bottom: 8px; position: relative; }
.map-placeholder span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.7; position: relative; }

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  position: relative;
  margin-bottom: 16px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 18px 16px 14px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 56, 127, 0.08);
}
.form-field label {
  position: absolute;
  top: 17px;
  left: 16px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: all var(--transition);
  background: transparent;
  padding: 0 4px;
}
.form-field input:focus + label,
.form-field input:valid + label,
.form-field textarea:focus + label,
.form-field textarea:valid + label,
.form-field select:focus + label,
.form-field select:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--primary);
  background: var(--white);
  font-weight: 600;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  margin-top: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  border-radius: 14px;
  font-weight: 500;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--dark-blue);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
  filter: blur(60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a:hover { color: var(--sky-light); }

.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text span { color: rgba(255,255,255,0.6); }
.footer-col p { margin: 18px 0 22px; line-height: 1.7; font-size: 14px; }

.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.socials a:hover {
  background: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}

.contact-list i {
  width: 18px;
  margin-right: 10px;
  color: var(--sky-light);
}

/* ==========================================================
   PAYMENTS BAR
   ========================================================== */
.payments {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.payments-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.payments-label i {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.35);
}
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pay-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 92px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: default;
}
.pay-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}

/* Razorpay - white bg, blue text */
.pay-card.razorpay {
  background: var(--white);
  border-color: transparent;
}
.pay-card.razorpay .pay-arrow {
  color: #3395ff;
  font-size: 16px;
  transform: translateY(-1px);
}
.pay-card.razorpay .pay-brand {
  color: #072654;
  font-weight: 800;
  font-size: 14px;
}

/* UPI */
.pay-card.upi {
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.pay-card.upi .pay-upi-mark { font-size: 15px; font-weight: 900; letter-spacing: 0.5px; }
.pay-card.upi .pay-upi-mark .g { color: #098041; }
.pay-card.upi .pay-upi-mark .o { color: #e87722; }
.pay-card.upi .pay-sub {
  font-size: 7px;
  color: var(--white);
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Mastercard */
.pay-card.master {
  position: relative;
  padding-left: 38px;
}
.pay-card.master .m-circle {
  width: 16px; height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  opacity: 0.95;
}
.pay-card.master .m-circle.red { left: 14px; background: #eb001b; }
.pay-card.master .m-circle.yellow { left: 22px; background: #f79e1b; mix-blend-mode: multiply; }
.pay-card.master .pay-brand-2 { color: var(--white); font-size: 13px; font-weight: 700; }

/* VISA */
.pay-card.visa {
  background: var(--white);
  border-color: transparent;
}
.pay-card.visa .visa-text {
  color: #1a1f71;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 17px;
  font-style: italic;
  letter-spacing: 1px;
}

/* Google Pay */
.pay-card.gpay { gap: 6px; }
.pay-card.gpay .gpay-g { display: inline-flex; align-items: center; gap: 2px; font-weight: 900; font-size: 16px; }
.pay-card.gpay .gpay-tag {
  font-size: 7px;
  color: var(--white);
  letter-spacing: 1px;
  margin-left: 1px;
  font-weight: 700;
}
.pay-card.gpay .gpay-pay { color: var(--white); font-weight: 700; font-size: 13px; }

/* Paytm */
.pay-card.paytm .paytm-pay { color: #00baf2; font-weight: 800; font-size: 15px; }
.pay-card.paytm .paytm-tm { color: #002970; font-weight: 800; font-size: 15px; background: var(--white); padding: 0 2px; border-radius: 2px; }

/* RuPay */
.pay-card.rupay .rupay-ru { color: #097969; font-weight: 900; font-size: 15px; }
.pay-card.rupay .rupay-pay { color: #ed1c24; font-weight: 900; font-size: 15px; }

@media (max-width: 700px) {
  .payments { justify-content: center; text-align: center; }
  .payments-list { justify-content: center; }
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.footer-bottom i { color: #ef4444; }
.dev-credit a {
  color: var(--sky-light);
  font-weight: 600;
  position: relative;
  transition: color var(--transition);
}
.dev-credit a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--sky);
  transition: width var(--transition);
}
.dev-credit a:hover { color: var(--white); }
.dev-credit a:hover::after { width: 100%; }

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  z-index: 90;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1) rotate(10deg); }
.float-whatsapp .ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: rippleOut 2s ease-out infinite;
}
@keyframes rippleOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 50px; }
  .hero { padding: 130px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stat strong { font-size: 1.4rem; }
  .counter .count { font-size: 2.2rem; }
  .cta-inner { padding: 50px 30px; }
  .contact-info, .contact-form { padding: 32px 24px; }
  .logo-icon { width: 64px; height: 64px; }
  .logo-text strong { font-size: 17px; }
}

@media (max-width: 500px) {
  .navbar { width: calc(100% - 16px); padding: 10px 16px; top: 10px; }
  .logo-icon { width: 56px; height: 56px; }
  .logo-text strong { font-size: 15px; }
  .logo-text span { font-size: 10px; }
  .hero-stats { gap: 20px; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
