/* ==========================================================
   Vishal Pure — Brand Stylesheet
   Palette: Deep Navy #0F2A4A / #12305a, Ice Blue #4A9FD8,
            Light BG #EAF4FB, Gold #E7B85C, Leaf Green #3FA96A
   ========================================================== */

:root {
  --navy: #0F2A4A;
  --navy-2: #12305a;
  --navy-3: #1a3d70;
  --ice: #4A9FD8;
  --ice-light: #7EC0E7;
  --bg: #ffffff;
  --bg-soft: #EAF4FB;
  --bg-alt: #F5FAFD;
  --text: #0F2A4A;
  --muted: #4a5a72;
  --border: #d9e6f2;
  --gold: #E7B85C;
  --green: #3FA96A;
  --gradient-navy: linear-gradient(135deg, #0F2A4A 0%, #1a3d70 60%, #2a5aa0 100%);
  --gradient-ice: linear-gradient(135deg, #4A9FD8 0%, #7EC0E7 100%);
  --shadow-sm: 0 2px 8px rgba(15,42,74,.06);
  --shadow-md: 0 10px 30px rgba(15,42,74,.10);
  --shadow-lg: 0 20px 50px rgba(15,42,74,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ice); }
:focus-visible { outline: 3px solid var(--ice); outline-offset: 2px; border-radius: 6px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-align: center; white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-primary { background: var(--gradient-navy); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-accent { background: var(--gold); color: var(--navy); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(15,42,74,.08);
  background: rgba(255,255,255,.96);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--navy); }
.brand sup { color: var(--ice); font-size: .55em; }
.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(15,42,74,.12);
  transition: transform .3s var(--ease-out-back);
}
.brand:hover .brand-logo { transform: scale(1.08) rotate(-2deg); }
.footer-logo {
  height: 46px;
  background: #ffffff;
  padding: 4px;
  border-radius: 8px;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.main-nav a { color: var(--navy); font-weight: 600; font-size: .93rem; }
.main-nav a:hover { color: var(--ice); }
.nav-cta {
  margin-left: 10px;
  background: linear-gradient(135deg, #4A9FD8 0%, #2076B9 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: .88rem !important;
  letter-spacing: 0.04em;
  padding: 10px 24px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 16px rgba(74,159,216,.4) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  transition: all .25s var(--ease-smooth) !important;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #2076B9 0%, #0F2A4A 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(32,118,185,.55) !important;
}

.hamburger {
  display: none; background: none; border: none; padding: 8px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; padding: 80px 0 100px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--gradient-navy);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(74,159,216,.35), transparent 60%),
    radial-gradient(500px 400px at 15% 90%, rgba(126,192,231,.20), transparent 60%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.04) 0 2px, transparent 2px 40px);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
}
.hero-copy h1 { color: #fff; }
.hero-copy .accent { color: var(--ice-light); }
.hero-copy .lead { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 560px; }
.hero-copy .lead em { color: var(--gold); font-style: italic; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 20px; }
.hero-trust { list-style: none; padding: 0; margin: 24px 0 0; display: flex; gap: 22px; flex-wrap: wrap; color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual img {
  max-height: 520px; width: auto; max-width: 100%; height: auto;
  object-fit: contain; margin-left: auto; margin-right: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  border-radius: 18px;
}

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .78rem; font-weight: 700; color: var(--ice);
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: 999px; background: var(--bg-soft); margin-bottom: 18px;
}
.eyebrow-light {
  color: #fff; border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px);
}

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Why: features & pillars ---------- */
.why-intro { max-width: 900px; margin: 0 auto 50px; color: var(--muted); text-align: center; }
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 60px;
}
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ice); }
.feat-icon { font-size: 2.2rem; margin-bottom: 10px; }
.feature-card h3 { font-size: 1.1rem; }
.feature-card p { color: var(--muted); font-size: .93rem; margin: 0; }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.pillar {
  background: linear-gradient(180deg, #fff, var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px;
}
.pillar-icon { font-size: 2.4rem; margin-bottom: 12px; }
.pillar p { color: var(--muted); margin: 0; }

.pull-quote {
  background: var(--gradient-navy); color: #fff;
  border-radius: var(--radius-lg); padding: 44px; text-align: center;
  border-left: 6px solid var(--gold); margin: 0;
}
.pull-quote .quote-hindi { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--gold); display: block; }
.pull-quote cite { display: block; font-style: normal; color: rgba(255,255,255,.9); max-width: 700px; margin: 14px auto 0; }

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 40px; }
.product-card {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  height: 260px; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at center, rgba(234, 244, 251, 0.95) 0%, rgba(255, 255, 255, 0.98) 75%);
  border-radius: var(--radius); margin-bottom: 18px; padding: 16px;
  border: 1px solid rgba(217, 230, 242, 0.6);
  box-shadow: inset 0 2px 8px rgba(15,42,74,.03);
}
.product-img img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain; /* Absolutely no cropping */
  filter: drop-shadow(0 12px 22px rgba(15,42,74,.14));
}
.product-card h3 { display: flex; flex-direction: column; gap: 4px; }
.product-card h3 small { font-size: .78rem; color: var(--ice); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.product-card p { color: var(--muted); font-size: .92rem; margin: 0; }
.badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: .7rem;
  padding: 6px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em;
}
.center-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Process ---------- */
.process-strip {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 12px; list-style: none; padding: 0; margin: 0 0 50px;
  counter-reset: step;
}
.process-strip li {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 14px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.process-strip li::after {
  content: "→"; position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%); color: var(--ice); font-weight: 800; font-size: 1.2rem;
}
.process-strip li:last-child::after { display: none; }
.step-num {
  display: inline-block; font-family: var(--font-head); font-weight: 800;
  color: var(--ice); font-size: .8rem; letter-spacing: .1em;
}
.step-icon { font-size: 1.8rem; margin: 6px 0; }
.process-strip h4 { font-size: .95rem; margin: 4px 0; color: var(--navy); }
.process-strip p { font-size: .78rem; color: var(--muted); margin: 0; }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.quality-card { border-radius: var(--radius-lg); padding: 34px; }
.quality-card.dark { background: var(--gradient-navy); color: #fff; }
.quality-card.dark h3 { color: #fff; }
.quality-card.dark p { color: rgba(255,255,255,.85); }
.quality-card.dark ul { padding: 0; list-style: none; }
.quality-card.dark ul li { padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.15); }
.quality-card.dark ul li:last-child { border: none; }
.quality-card.light { background: #fff; border: 1px solid var(--border); }
.quality-card.light ul { padding-left: 20px; color: var(--muted); }
.quality-card.light ul li { padding: 4px 0; }

.info-banner {
  background: var(--gradient-ice); color: #fff; padding: 20px 26px;
  border-radius: var(--radius); font-weight: 600; text-align: center;
  box-shadow: var(--shadow-md);
}

/* ---------- Journey / Timeline ---------- */
.timeline {
  list-style: none; padding: 0; margin: 0 0 50px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 22px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--navy)); z-index: 0;
}
.timeline li {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 60px 20px 22px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.tl-marker {
  position: absolute; top: -2px; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow-md); z-index: 2;
}
.timeline h4 { font-size: 1.05rem; }
.timeline h4 span { display: block; font-size: .78rem; color: var(--ice); font-weight: 600; margin-top: 4px; }
.timeline p { color: var(--muted); font-size: .9rem; margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: var(--gradient-navy); color: #fff;
  border-radius: var(--radius-lg); padding: 30px 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-num {
  display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--gold); line-height: 1;
}
.stat p { color: rgba(255,255,255,.85); margin: 8px 0 0; font-size: .9rem; }

/* ---------- About & Founder Showcase ---------- */
.founder-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 45px;
}

.founder-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(74, 159, 216, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 15px 35px rgba(15, 42, 74, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
  height: fit-content;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15, 42, 74, 0.12);
}

.founder-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(10, 25, 45, 0.15);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.founder-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover .founder-img {
  transform: scale(1.03);
}

.founder-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(15, 42, 74, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.badge-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.badge-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.88);
}

.founder-caption {
  text-align: center;
  margin-top: 4px;
}

.founder-caption h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 4px;
  font-weight: 800;
}

.founder-role {
  color: var(--ice);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 14px;
}

.founder-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.founder-tags .tag {
  background: rgba(74, 159, 216, 0.12);
  color: var(--navy);
  border: 1px solid rgba(74, 159, 216, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Founder Message Box */
.founder-message-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 15px 35px rgba(15, 42, 74, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow-sm {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.founder-header h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
  font-weight: 800;
}

.founder-letter p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.founder-letter p strong {
  color: var(--navy);
}

.founder-quote-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 42, 74, 0.04) 0%, rgba(74, 159, 216, 0.08) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px 18px 46px;
  margin: 20px 0;
}

.founder-quote-banner .quote-mark {
  position: absolute;
  left: 14px;
  top: 6px;
  font-family: Georgia, serif;
  font-size: 3.2rem;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
}

.founder-quote-banner p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.founder-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.pillar-mini {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pm-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar-mini h4 {
  font-size: 0.84rem;
  margin: 0 0 2px;
  color: var(--navy);
  font-weight: 700;
}

.pillar-mini p {
  font-size: 0.75rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.3;
}

.founder-signoff {
  border-top: 1px dashed var(--border);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signoff-salutation {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2px;
}

.signoff-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
}

.signoff-org {
  display: block;
  font-size: 0.82rem;
  color: var(--ice);
  font-weight: 600;
}

/* About Overview Cards */
.about-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.overview-card.dark {
  background: var(--gradient-navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card.dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.oc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.overview-card.dark h4 {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.overview-card.dark p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.values-list li:last-child {
  border-bottom: none;
}

/* ---------- Testimonials ---------- */
.testimonial-carousel { position: relative; margin-bottom: 60px; }
.tc-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: -10px; left: 20px;
  font-family: Georgia, serif; font-size: 4rem; color: var(--ice); line-height: 1;
}
.testimonial p { color: var(--text); font-style: italic; margin: 10px 0 18px; }
.testimonial footer { border-top: 1px solid var(--border); padding-top: 12px; }
.testimonial footer strong { display: block; color: var(--navy); }
.testimonial footer span { color: var(--muted); font-size: .85rem; }
.tc-arrow {
  display: none; position: absolute; top: 50%; transform: translateY(-50%);
  background: #fff; border: 1px solid var(--border); width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.6rem; color: var(--navy); cursor: pointer;
  box-shadow: var(--shadow-sm); z-index: 3;
}
.tc-prev { left: -8px; } .tc-next { right: -8px; }

.ring-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ring { text-align: center; }
.ring-inner {
  width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(var(--ice) 0deg, var(--bg-soft) 0deg);
  transition: background 1.5s ease;
  position: relative;
}
.ring-inner::before {
  content: ""; position: absolute; inset: 14px; background: #fff; border-radius: 50%;
  box-shadow: inset 0 2px 6px rgba(15,42,74,.08);
}
.ring-inner span {
  position: relative; z-index: 1; font-family: var(--font-head); font-weight: 800;
  font-size: 1.8rem; color: var(--navy);
}
.ring p { font-weight: 600; color: var(--muted); margin: 0; }

/* ---------- Partnerships ---------- */
.partner-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; margin-bottom: 20px; }
.partner-why { background: var(--gradient-navy); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.partner-why h3 { color: #fff; }
.partner-why ul { list-style: none; padding: 0; margin: 20px 0 0; }
.partner-why ul li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.partner-why ul li:last-child { border: none; }
.partner-why strong { color: var(--gold); }
.partner-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.opt {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: transform .3s, box-shadow .3s;
}
.opt:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.opt-icon { font-size: 2rem; margin-bottom: 8px; }
.opt h4 { margin: 4px 0 6px; font-size: 1.05rem; }
.opt p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ---------- Distributor requirements ---------- */
.req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.req {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.req h4 { margin: 8px 0; }
.req p { color: var(--muted); margin: 0; font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; margin-bottom: 40px; }
.contact-card { border-radius: var(--radius-lg); padding: 36px; }
.contact-card.dark { background: var(--gradient-navy); color: #fff; }
.contact-card.dark h3 { color: #fff; }
.contact-card.dark h4 { color: var(--gold); margin-top: 22px; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.contact-card.dark a { color: var(--ice-light); }
.contact-card.dark a:hover { color: #fff; }
.contact-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quick { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.quick h4 { margin: 6px 0; }
.quick p { color: var(--muted); font-size: .9rem; margin: 0; }

.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm); margin-bottom: 30px;
}
.contact-form h3 { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: block; font-weight: 600; color: var(--navy);
  font-size: .9rem; margin-bottom: 14px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: .95rem;
  margin-top: 6px; background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--ice); box-shadow: 0 0 0 3px rgba(74,159,216,.2);
}
.form-status { margin: 12px 0 0; font-weight: 600; }
.form-status.success { color: var(--green); }
.form-status.error { color: #c0392b; }

.success-bar {
  background: linear-gradient(90deg, #E6F7EE, #D4F0DE);
  border-left: 6px solid var(--green);
  padding: 20px 26px; border-radius: var(--radius);
  color: var(--navy); font-weight: 500;
}
.success-bar a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.brand-footer { color: #fff; }
.brand-footer .brand-word { color: #fff; }
.footer-tag { color: var(--gold); font-style: italic; margin: 10px 0 6px; }
.footer-blurb { font-size: .9rem; }
.site-footer h5 { color: #fff; font-family: var(--font-head); margin: 0 0 14px; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 5px 0; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--ice-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 50%; font-size: 1.1rem;
}
.socials a:hover { background: var(--ice); color: #fff; }
.footer-bottom p { margin: 0; font-size: .85rem; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,42,74,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn .25s ease;
}
.modal[hidden] { display: none; }
.modal-inner {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  max-width: 520px; width: 100%; box-shadow: var(--shadow-lg); position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; border: none; background: var(--bg-soft); color: var(--navy);
  font-size: 1.4rem; cursor: pointer;
}
.locator-form { display: flex; gap: 10px; margin: 16px 0; }
.locator-form input {
  flex: 1; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
}
.locator-results h4 { margin: 16px 0 8px; }
.locator-results ul { padding-left: 20px; color: var(--muted); }
.locator-results li { padding: 3px 0; }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .3s;
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-visual img { max-height: 380px; }
  .hero-trust { justify-content: center; }
  .cta-row { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: repeat(4, 1fr); }
  .process-strip li::after { display: none; }
  .quality-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-showcase { grid-template-columns: 1fr; gap: 30px; }
  .founder-pillars-grid { grid-template-columns: 1fr; }
  .about-overview-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-opts { grid-template-columns: 1fr 1fr; }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-quick { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .tc-track { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile Navigation Overlay ---------- */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10, 25, 45, 0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 105; opacity: 0; transition: opacity .35s ease;
}
.nav-overlay.open { display: block; opacity: 1; }

.mobile-nav-header { display: none; }
.mobile-nav-actions { display: none; }

@media (max-width: 768px) {
  .mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding-bottom: 18px; margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-nav-header .brand-word { color: #ffffff; font-size: 1.15rem; }
  .mobile-nav-close {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff; width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s ease;
  }
  .mobile-nav-close:hover { background: var(--ice); color: #ffffff; transform: rotate(90deg); }

  .main-nav {
    position: fixed; top: 0; right: -100%; width: 88%; max-width: 360px;
    height: 100vh; height: 100dvh;
    background: linear-gradient(165deg, #0F2A4A 0%, #12305a 45%, #1a3d70 100%);
    color: #ffffff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 24px 26px 36px; gap: 0;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.4);
    transition: right .4s cubic-bezier(.16,1,.3,1);
    z-index: 110; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 8px; width: 100%; margin-bottom: 24px; }
  .main-nav ul li {
    width: 100%; opacity: 0; transform: translateX(30px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .main-nav.open ul li { opacity: 1; transform: translateX(0); }
  .main-nav.open ul li:nth-child(1) { transition-delay: .08s; }
  .main-nav.open ul li:nth-child(2) { transition-delay: .12s; }
  .main-nav.open ul li:nth-child(3) { transition-delay: .16s; }
  .main-nav.open ul li:nth-child(4) { transition-delay: .20s; }
  .main-nav.open ul li:nth-child(5) { transition-delay: .24s; }
  .main-nav.open ul li:nth-child(6) { transition-delay: .28s; }
  .main-nav.open ul li:nth-child(7) { transition-delay: .32s; }
  .main-nav.open ul li:nth-child(8) { transition-delay: .36s; }

  .main-nav ul a {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 12px 16px; border-radius: 12px;
    color: rgba(255, 255, 255, 0.92); font-size: 1.05rem; font-weight: 600;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .25s ease;
  }
  .main-nav ul a::after {
    content: "→"; font-size: 1rem; color: var(--ice); opacity: .7;
    transform: translateX(-4px); transition: all .25s ease;
  }
  .main-nav ul a:hover, .main-nav ul a:focus {
    background: rgba(74, 159, 216, 0.25); border-color: rgba(74, 159, 216, 0.5);
    color: #ffffff; transform: translateX(4px);
  }
  .main-nav ul a:hover::after { opacity: 1; transform: translateX(0); color: var(--gold); }

  .mobile-nav-actions {
    display: flex; flex-direction: column; gap: 12px; width: 100%;
    margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-nav-actions .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: .95rem; }
  .mobile-nav-actions .nav-cta { margin-left: 0 !important; }
  .mobile-nav-actions .nav-wa { border-color: rgba(37, 211, 102, 0.6); color: #25D366; background: rgba(37, 211, 102, 0.12); }
  .mobile-nav-actions .nav-wa:hover { background: #25D366; color: #ffffff; }

  .hamburger {
    display: inline-flex; z-index: 112; position: relative;
    background: rgba(15, 42, 74, 0.05); border: 1px solid var(--border);
    border-radius: 10px; padding: 10px; transition: background .2s ease;
  }
  .hamburger:hover { background: var(--bg-soft); }
  .hamburger.open {
    position: fixed; top: 16px; right: 22px;
    background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3);
  }
  .hamburger.open span { background: #ffffff; }

  .section { padding: 70px 0; }
  .hero { padding: 60px 0 70px; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: repeat(2, 1fr); }
  .timeline, .stats-grid { grid-template-columns: 1fr; }
  .partner-opts { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .contact-quick { grid-template-columns: 1fr; }
  .ring-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* Testimonial carousel on mobile */
  .tc-track {
    grid-template-columns: 100%;
    grid-auto-flow: column; grid-auto-columns: 100%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .tc-track::-webkit-scrollbar { display: none; }
  .tc-track > * { scroll-snap-align: start; }
  .tc-arrow { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 20px; font-size: .88rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .quality-card, .contact-card, .partner-why, .about-panel, .pull-quote { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab-whatsapp { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }
}

/* ==========================================================
   ✨ ENHANCEMENTS v2 — richer animations, effects & polish
   ========================================================== */

/* --- Global smooth-motion tokens --- */
:root {
  --ease-out-back: cubic-bezier(.34,1.56,.64,1);
  --ease-smooth: cubic-bezier(.22,.61,.36,1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Animated water gradient background on hero --- */
@keyframes heroShift {
  0%,100% { background-position: 0% 50%, 100% 50%, 50% 50%; }
  50%     { background-position: 100% 50%, 0% 50%, 60% 40%; }
}
.hero-bg {
  background:
    radial-gradient(700px 500px at 20% 30%, rgba(74,159,216,.55), transparent 60%),
    radial-gradient(600px 500px at 85% 70%, rgba(126,192,231,.35), transparent 60%),
    linear-gradient(135deg, #0F2A4A 0%, #1a3d70 55%, #2a5aa0 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  animation: heroShift 18s var(--ease-smooth) infinite;
}

/* Floating bubbles inside hero */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%);
  pointer-events: none; z-index: 0;
  animation: bubbleFloat 12s ease-in-out infinite;
}
.hero::before { width: 220px; height: 220px; left: 6%; bottom: 8%; }
.hero::after  { width: 140px; height: 140px; right: 8%; top: 12%; animation-delay: -4s; animation-duration: 15s; }
@keyframes bubbleFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: .55; }
  50%     { transform: translateY(-30px) scale(1.08); opacity: .85; }
}

/* Hero image gentle float */
.hero-visual img { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* Hero copy staggered entrance */
.hero-copy > * { opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease-smooth) forwards; }
.hero-copy .eyebrow  { animation-delay: .05s; }
.hero-copy h1        { animation-delay: .18s; }
.hero-copy .lead     { animation-delay: .32s; }
.hero-copy .cta-row  { animation-delay: .46s; }
.hero-copy .hero-trust { animation-delay: .6s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Gradient shimmer accent word */
.hero-copy .accent {
  background: linear-gradient(90deg, #7EC0E7, #E7B85C, #7EC0E7);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText { to { background-position: 200% center; } }

/* --- Buttons: shine sweep & lift --- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease-smooth);
  z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); }

/* Nav underline animation */
.main-nav ul a { position: relative; }
.main-nav ul a::after {
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:100%;
  background: linear-gradient(90deg, var(--ice), var(--gold));
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-smooth);
}
.main-nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Brand mark pulse */
.brand-mark { display: inline-flex; transition: transform .4s var(--ease-out-back); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }

/* --- Section headings gradient underline --- */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content:""; display:block; width: 68px; height: 4px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--ice), var(--gold));
  border-radius: 4px;
  animation: widen 1.2s var(--ease-smooth) both;
}
@keyframes widen { from { width: 0; opacity: 0; } to { width: 68px; opacity: 1; } }

/* --- Feature / pillar / product / opt / req / quick cards: tilt + glow --- */
.feature-card, .pillar, .product-card, .opt, .req, .quick, .testimonial, .contact-form {
  position: relative; overflow: hidden;
}
.feature-card::after, .pillar::after, .product-card::after,
.opt::after, .req::after, .quick::after {
  content:""; position:absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--ice) 55%, var(--gold) 75%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.feature-card:hover::after, .pillar:hover::after, .product-card:hover::after,
.opt:hover::after, .req:hover::after, .quick:hover::after { opacity: 1; }

.feat-icon, .pillar-icon, .opt-icon, .step-icon {
  display: inline-block;
  transition: transform .5s var(--ease-out-back);
}
.feature-card:hover .feat-icon,
.pillar:hover .pillar-icon,
.opt:hover .opt-icon,
.req:hover .opt-icon,
.quick:hover .opt-icon { transform: scale(1.25) rotate(-8deg); }

/* Product card image zoom */
.product-card .product-img { overflow: hidden; }
.product-card .product-img img { transition: transform .6s var(--ease-smooth); }
.product-card:hover .product-img img { transform: scale(1.08) rotate(-2deg); }
.product-card:hover { transform: translateY(-8px); }

/* Badge pulse */
.badge {
  animation: badgePulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(231,184,92,.55);
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(231,184,92,.55); }
  70%     { box-shadow: 0 0 0 12px rgba(231,184,92,0); }
}

/* Process step number + connector animation */
.process-strip li { transition: transform .35s var(--ease-smooth), box-shadow .35s; }
.process-strip li:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ice); }
.process-strip li::after { animation: arrowSlide 1.6s ease-in-out infinite; }
@keyframes arrowSlide {
  0%,100% { transform: translate(0,-50%); opacity: .6; }
  50%     { transform: translate(6px,-50%); opacity: 1; }
}

/* Timeline marker pop on hover */
.timeline li { transition: transform .35s var(--ease-smooth), box-shadow .35s; }
.timeline li:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.timeline li:hover .tl-marker { transform: translate(-50%,-50%) scale(1.15) rotate(-6deg); }
.tl-marker { transition: transform .4s var(--ease-out-back); }

/* Stats card shimmer */
.stat { position: relative; overflow: hidden; }
.stat::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 40%, rgba(231,184,92,.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s var(--ease-smooth);
}
.stat:hover::before { transform: translateX(100%); }
.stat:hover { transform: translateY(-4px); }
.stat { transition: transform .3s ease; }
.stat-num {
  background: linear-gradient(180deg, var(--gold), #ffd98a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 2px 20px rgba(231,184,92,.25);
}

/* Ring: subtle spin idle */
.ring-inner { transition: transform .5s var(--ease-smooth); }
.ring:hover .ring-inner { transform: scale(1.06); }

/* Pull-quote & dark cards: soft gold aura */
.pull-quote, .quality-card.dark, .about-panel, .partner-why, .contact-card.dark {
  position: relative; overflow: hidden;
}
.pull-quote::before, .quality-card.dark::before, .about-panel::before,
.partner-why::before, .contact-card.dark::before {
  content:""; position:absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,184,92,.28), transparent 65%);
  top: -120px; right: -120px; filter: blur(10px);
  animation: driftAura 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes driftAura {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-30px,20px) scale(1.15); }
}
.pull-quote .quote-hindi { animation: shimmerText 6s linear infinite; background: linear-gradient(90deg, #E7B85C, #ffd98a, #E7B85C); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Info banner shimmer */
.info-banner { position: relative; overflow: hidden; }
.info-banner::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: bannerSweep 3.5s ease-in-out infinite;
}
@keyframes bannerSweep {
  0% { transform: translateX(-100%); }
  60%,100% { transform: translateX(120%); }
}

/* Form inputs: floating glow */
.contact-form input, .contact-form select, .contact-form textarea {
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.contact-form input:hover, .contact-form select:hover, .contact-form textarea:hover { border-color: var(--ice-light); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(74,159,216,.18), 0 8px 24px rgba(15,42,74,.08);
}

/* Floating WhatsApp: attention ring + wobble */
.fab-whatsapp {
  animation: fabPulse 2.4s ease-in-out infinite;
}
.fab-whatsapp::before {
  content:""; position:absolute; inset:-6px; border-radius:50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: fabRing 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}
@keyframes fabRing {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fab-whatsapp:hover { transform: scale(1.12) rotate(-6deg); }

/* Socials hover lift */
.socials a { transition: transform .3s var(--ease-out-back), background .3s; }
.socials a:hover { transform: translateY(-4px) scale(1.1); }

/* Footer link slide */
.site-footer ul li a { position: relative; padding-left: 0; transition: padding-left .3s ease, color .3s; }
.site-footer ul li a::before {
  content:"→"; position:absolute; left:-14px; opacity:0; transition: opacity .3s, left .3s; color: var(--ice-light);
}
.site-footer ul li a:hover { padding-left: 14px; }
.site-footer ul li a:hover::before { opacity: 1; left: 0; }

/* Modal entrance */
.modal-inner { animation: modalIn .35s var(--ease-out-back); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* Success bar celebratory shimmer */
.success-bar { position: relative; overflow: hidden; }
.success-bar::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 40%, rgba(63,169,106,.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: bannerSweep 4.5s ease-in-out infinite 1s;
}

/* Reveal variants staggered by nth-child inside grids */
.feature-grid .reveal:nth-child(1) { transition-delay: .05s; }
.feature-grid .reveal:nth-child(2) { transition-delay: .15s; }
.feature-grid .reveal:nth-child(3) { transition-delay: .25s; }
.feature-grid .reveal:nth-child(4) { transition-delay: .35s; }
.product-grid .reveal:nth-child(1) { transition-delay: .05s; }
.product-grid .reveal:nth-child(2) { transition-delay: .12s; }
.product-grid .reveal:nth-child(3) { transition-delay: .19s; }
.product-grid .reveal:nth-child(4) { transition-delay: .26s; }
.product-grid .reveal:nth-child(5) { transition-delay: .33s; }
.product-grid .reveal:nth-child(6) { transition-delay: .40s; }
.process-strip .reveal:nth-child(n) { transition-delay: calc(.05s * var(--i, 0)); }
.process-strip li:nth-child(1){--i:1;} .process-strip li:nth-child(2){--i:2;}
.process-strip li:nth-child(3){--i:3;} .process-strip li:nth-child(4){--i:4;}
.process-strip li:nth-child(5){--i:5;} .process-strip li:nth-child(6){--i:6;}
.process-strip li:nth-child(7){--i:7;}
.timeline li:nth-child(1){--i:1;} .timeline li:nth-child(2){--i:2;}
.timeline li:nth-child(3){--i:3;} .timeline li:nth-child(4){--i:4;}
.timeline .reveal { transition-delay: calc(.08s * var(--i, 0)); }
.stats-grid .stat:nth-child(1){--i:1;} .stats-grid .stat:nth-child(2){--i:2;}
.stats-grid .stat:nth-child(3){--i:3;} .stats-grid .stat:nth-child(4){--i:4;}
.stats-grid .reveal { transition-delay: calc(.08s * var(--i, 0)); }

/* Text selection */
::selection { background: var(--gold); color: var(--navy); }

/* Custom scrollbar (desktop) */
@media (min-width: 769px) {
  html { scrollbar-width: thin; scrollbar-color: var(--ice) var(--bg-soft); }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--bg-soft); }
  ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--ice), var(--navy-2)); border-radius: 10px; }
}

/* ==========================================================
   📱 MOBILE RESPONSIVE — 100% pass
   ========================================================== */
@media (max-width: 1024px) {
  .hero { padding: 70px 0 80px; }
  .hero-copy .lead { max-width: 100%; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 18px; }
  .header-inner { padding: 12px 18px; }
  .brand-word { font-size: 1.05rem; }
  .nav-cta { display: none; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 34px; }
  .hero { padding: 50px 0 60px; }
  .hero-inner { gap: 30px; }
  .hero-visual img { max-height: 420px; width: auto; max-width: 100%; object-fit: contain; }
  .product-img { height: 340px; padding: 18px; }
  .product-img img { max-height: 300px; width: auto; height: auto; object-fit: contain; }
  .hero-trust { justify-content: center; gap: 14px; font-size: .82rem; }
  .cta-row { gap: 10px; }
  .cta-row .btn { flex: 1 1 auto; min-width: 44%; }
  .pull-quote { padding: 30px 22px; }
  .quality-card, .about-panel, .partner-why, .contact-card { padding: 26px 22px; }
  .contact-form { padding: 24px 20px; }
  .process-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-bottom { flex-direction: column; }
  .fab-whatsapp { bottom: 16px; right: 16px; }
}

@media (max-width: 560px) {
  h1 { font-size: 1.9rem; line-height: 1.2; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  .hero-copy .lead { font-size: 1rem; }
  .hero-visual img { max-height: 380px; width: auto; max-width: 100%; object-fit: contain; }
  .eyebrow { font-size: .7rem; padding: 5px 12px; }
  .btn { padding: 12px 20px; font-size: .88rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .feature-card, .pillar, .product-card, .opt, .req, .quick { padding: 24px 20px; }
  .product-img { height: 320px; padding: 16px; }
  .product-img img { max-height: 280px; width: auto; height: auto; object-fit: contain; }
  .stat { padding: 24px 16px; }
  .stat-num { font-size: 2rem; }
  .ring-inner { width: 130px; height: 130px; }
  .ring-inner span { font-size: 1.5rem; }
  .timeline li { padding: 50px 16px 18px; }
  .process-strip { grid-template-columns: 1fr; }
  .process-strip li::after { display: none; }
  .info-banner { padding: 16px 18px; font-size: .95rem; }
  .success-bar { padding: 16px 18px; font-size: .92rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid > div { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
  .footer-grid > div:first-child { border: none; padding-top: 0; }
  .brand-footer { justify-content: center; }
  .socials { justify-content: center; }
  .modal-inner { padding: 28px 22px; }
  .fab-whatsapp { width: 52px; height: 52px; font-size: 1.35rem; }
  .quality-card, .about-panel, .partner-why, .contact-card { padding: 24px 18px; }
  .pull-quote { padding: 26px 18px; border-left-width: 4px; }
  .locator-form { flex-direction: column; }
  .locator-form .btn { width: 100%; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.7rem; }
  .brand-word { font-size: .95rem; }
  .hero-trust li { font-size: .78rem; }
}

/* Prevent horizontal scroll on any device */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }
