/* ========================================================================
   ZEPHYGUARD — Design System
   Premium, trustworthy, "command-center" aesthetic for security SaaS
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

:root {
  /* Brand palette */
  --ink: #0A1628;
  --ink-deep: #060D1A;
  --ink-soft: #1A2B45;
  --cyan: #00D4FF;
  --cyan-glow: #00E8FF;
  --gold: #FFB547;
  --gold-soft: #FFCB7A;
  --success: #2ECC71;
  --danger: #FF4757;
  --paper: #FAFBFD;
  --paper-warm: #F4F6FA;
  --line: #E4E9F2;
  --line-soft: #EEF1F7;
  --muted: #64748B;
  --text: #1E2A3E;

  /* Gradients */
  --grad-hero: radial-gradient(ellipse at top right, rgba(0,212,255,0.15), transparent 55%),
               radial-gradient(ellipse at bottom left, rgba(255,181,71,0.08), transparent 50%),
               linear-gradient(160deg, #0A1628 0%, #060D1A 60%, #050912 100%);
  --grad-cta: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  --grad-gold: linear-gradient(135deg, #FFB547 0%, #FF9A3C 100%);

  /* Typography */
  --font: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Quicksand', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 10px 40px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.12);
  --shadow-cyan: 0 10px 40px rgba(0, 212, 255, 0.25);
  --shadow-gold: 0 10px 40px rgba(255, 181, 71, 0.25);

  /* Rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.eyebrow-gold {
  background: rgba(255, 181, 71, 0.12);
  color: #B8750A;
  border-color: rgba(255, 181, 71, 0.3);
}
.eyebrow-dark {
  background: rgba(10, 22, 40, 0.06);
  color: var(--ink);
  border-color: rgba(10, 22, 40, 0.12);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
h4 { font-size: 18px; font-weight: 600; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 { margin: 18px 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s var(--ease);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-cta);
  color: white;
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(0, 212, 255, 0.4); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(255, 181, 71, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: white; }

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.35); }

.btn-lg { padding: 16px 34px; font-size: 16px; }

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------
   Top bar (trust strip)
   ------------------------------------------------------------------ */
.topbar {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a { color: var(--cyan); font-weight: 500; }
.topbar .badges { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .badges span { display: inline-flex; align-items: center; gap: 6px; }

/* ------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--grad-cta);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--shadow-cyan);
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--ink);
  border-radius: 8px;
  z-index: 0;
}
.logo-mark svg { position: relative; z-index: 1; color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  color: var(--ink);
}

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: white; padding: 24px; gap: 20px; border-top: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
}

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: white;
  padding: 90px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }

.hero h1 { color: white; margin: 20px 0 22px; }
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero .hinglish {
  display: block;
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
  margin-top: 12px;
  font-size: 17px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust .stat { }
.hero-trust .stat b {
  font-size: 28px;
  font-weight: 700;
  color: white;
  background: linear-gradient(120deg, var(--cyan) 0%, #a0e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}
.hero-trust .stat span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Hero visual — dashboard mockup */
.hero-visual {
  position: relative;
  perspective: 1200px;
}
.dashboard-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotateY(-6deg) rotateX(4deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-6deg) rotateX(4deg) translateY(-12px); } }

.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dash-title { font-size: 14px; font-weight: 600; color: white; }
.dash-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); display: inline-block; margin-right: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.dash-live { font-size: 11px; color: var(--success); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.dash-stat { background: rgba(0,0,0,0.25); padding: 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }
.dash-stat b { display: block; font-size: 22px; font-weight: 700; color: var(--cyan); }
.dash-stat span { font-size: 11px; color: rgba(255,255,255,0.55); }

.dash-guards { background: rgba(0,0,0,0.25); border-radius: 10px; padding: 8px 4px; border: 1px solid rgba(255,255,255,0.05); }
.dash-guard { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; padding: 8px 12px; border-radius: 8px; transition: background 0.2s; }
.dash-guard:hover { background: rgba(255,255,255,0.04); }
.dash-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--gold)); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--ink); }
.dash-guard-info { line-height: 1.3; }
.dash-guard-name { font-size: 13px; color: white; font-weight: 600; }
.dash-guard-site { font-size: 11px; color: rgba(255,255,255,0.5); }
.dash-status { font-size: 10px; padding: 3px 9px; border-radius: 999px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-status.active { background: rgba(46,204,113,0.15); color: var(--success); border: 1px solid rgba(46,204,113,0.3); }
.dash-status.alert { background: rgba(255,71,87,0.15); color: var(--danger); border: 1px solid rgba(255,71,87,0.3); }
.dash-status.break { background: rgba(255,181,71,0.15); color: var(--gold); border: 1px solid rgba(255,181,71,0.3); }

/* Floating badges */
.floating-badge {
  position: absolute;
  background: white;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: float-badge 4s ease-in-out infinite;
  z-index: 3;
}
.floating-badge .icon { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; color: white; }
.floating-badge.badge-1 { top: 10%; left: -8%; animation-delay: 0s; }
.floating-badge.badge-1 .icon { background: var(--success); }
.floating-badge.badge-2 { bottom: 12%; right: -6%; animation-delay: 2s; }
.floating-badge.badge-2 .icon { background: var(--grad-cta); }
@keyframes float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .floating-badge.badge-1 { left: 2%; }
  .floating-badge.badge-2 { right: 2%; }
}

/* ------------------------------------------------------------------
   Logo strip
   ------------------------------------------------------------------ */
.logo-strip { padding: 40px 0 30px; background: var(--paper-warm); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.logo-strip-title { text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.logo-strip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; align-items: center; opacity: 0.7; }
.logo-strip-grid .client {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: -0.5px;
}
.logo-strip-grid .client::before {
  content: '■';
  color: var(--cyan);
  margin-right: 8px;
  opacity: 0.6;
}

/* ------------------------------------------------------------------
   Pain points section
   ------------------------------------------------------------------ */
.pain { background: var(--paper); position: relative; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pain-card:hover::before { transform: scaleX(1); }

.pain-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--line); line-height: 1; margin-bottom: 12px; }
.pain-card h3 { margin-bottom: 10px; color: var(--ink); }
.pain-card p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.pain-solution {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02));
  border-radius: 10px;
  border-left: 3px solid var(--cyan);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.pain-solution b { color: var(--ink); display: block; margin-bottom: 3px; font-size: 13px; }

@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Feature showcase — split rows
   ------------------------------------------------------------------ */
.features { background: var(--paper-warm); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-copy h3 { font-size: 32px; margin: 18px 0 16px; }
.feature-copy p { color: var(--muted); margin-bottom: 20px; font-size: 16px; }
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
  font-weight: 500;
}
.feature-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid;
  place-items: center;
  color: white;
  margin-top: 1px;
}

.feature-visual {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .feature-row.reverse { direction: ltr; }
}

/* Mock map visual */
.mock-map {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #F0F4FA 0%, #E4EDF7 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.mock-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(10,22,40,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,22,40,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mock-pin {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
  border: 3px solid white;
}
.mock-pin::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.3;
  animation: ping 2s infinite;
  z-index: -1;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.5); opacity: 0; } }
.mock-pin.p1 { top: 30%; left: 22%; }
.mock-pin.p2 { top: 55%; left: 55%; background: var(--grad-gold); box-shadow: 0 4px 20px rgba(255,181,71,0.4); }
.mock-pin.p2::after { background: var(--gold); }
.mock-pin.p3 { top: 22%; left: 70%; }
.mock-pin.p4 { top: 70%; left: 28%; }

/* Mock report */
.mock-report { padding: 4px 0; }
.mock-report-item { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.mock-report-item:last-child { border-bottom: none; }
.mock-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: white; }
.mock-icon.blue { background: var(--grad-cta); }
.mock-icon.gold { background: var(--grad-gold); }
.mock-icon.green { background: linear-gradient(135deg, #2ECC71, #27AE60); }
.mock-icon.red { background: linear-gradient(135deg, #FF6B7A, #E74C3C); }
.mock-report-info b { font-size: 14px; color: var(--ink); display: block; }
.mock-report-info span { font-size: 12px; color: var(--muted); }
.mock-time { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ------------------------------------------------------------------
   Stats counter strip
   ------------------------------------------------------------------ */
.stats-strip {
  background: var(--ink);
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(0,212,255,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,181,71,0.08), transparent 50%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.stat-item { text-align: center; padding: 20px; }
.stat-item b {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-item span { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 10px; display: block; font-weight: 500; }

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------------
   Segments — who it's for
   ------------------------------------------------------------------ */
.segments { background: var(--paper); }
.segment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.segment-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.segment-card.featured {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: white;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.segment-card.featured h3 { color: white; }
.segment-card.featured .segment-price b { color: var(--cyan); }
.segment-card.featured .segment-price span { color: rgba(255,255,255,0.6); }
.segment-card.featured ul li { color: rgba(255,255,255,0.85); }
.segment-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px; right: -36px;
  background: var(--grad-gold);
  color: var(--ink);
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
}
.segment-card:hover:not(.featured) { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }

.segment-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,212,255,0.05));
  display: grid;
  place-items: center;
  color: var(--cyan);
  margin-bottom: 20px;
}
.segment-card.featured .segment-icon { background: rgba(255,255,255,0.1); color: var(--cyan); }

.segment-card h3 { margin-bottom: 6px; }
.segment-card p.segment-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.segment-card.featured p.segment-desc { color: rgba(255,255,255,0.65); }

.segment-price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed rgba(100,116,139,0.3); }
.segment-card.featured .segment-price { border-bottom-color: rgba(255,255,255,0.15); }
.segment-price b { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.segment-price .per { font-size: 14px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.segment-price .note { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }
.segment-card.featured .segment-price .note { color: rgba(255,255,255,0.55); }

.segment-card ul { list-style: none; margin-bottom: 28px; }
.segment-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
}
.segment-card ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--cyan); }

.segment-card .btn { width: 100%; justify-content: center; }

@media (max-width: 980px) {
  .segment-grid { grid-template-columns: 1fr; }
  .segment-card.featured { transform: none; }
}

/* ------------------------------------------------------------------
   How it works — timeline
   ------------------------------------------------------------------ */
.how { background: var(--paper-warm); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-num {
  width: 72px; height: 72px;
  background: white;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0,212,255,0.15);
  position: relative;
}
.how-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  animation: pulseRing 2.4s infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }

.how-step h4 { margin-bottom: 8px; font-size: 17px; }
.how-step p { color: var(--muted); font-size: 14px; line-height: 1.55; }

@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
}
@media (max-width: 540px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------ */
.testimonials { background: var(--paper); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.testi-quote { font-size: 42px; color: var(--cyan); font-family: var(--font-display); line-height: 1; margin-bottom: 10px; }
.testi-card p { color: var(--text); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testi-author b { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.testi-author span { font-size: 13px; color: var(--muted); }
.testi-stars { color: var(--gold); margin-bottom: 12px; font-size: 16px; letter-spacing: 2px; }

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

/* ------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------ */
.faq { background: var(--paper-warm); }
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,212,255,0.08);
  display: grid;
  place-items: center;
  color: var(--cyan);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--grad-cta); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 420px; padding: 0 26px 24px; }

/* ------------------------------------------------------------------
   CTA banner
   ------------------------------------------------------------------ */
.cta-banner {
  background: var(--grad-hero);
  color: white;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.cta-inner { text-align: center; position: relative; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; }
.cta-inner .hinglish { font-style: italic; color: var(--gold-soft); }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-mark::before { background: var(--ink-deep); }
.footer-brand p { color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--cyan); color: var(--ink); border-color: var(--cyan); transform: translateY(-2px); }

.footer-col h5 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cyan); }

.footer-contact p { margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 20px; }
.footer-bottom a:hover { color: var(--cyan); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Page hero (sub-pages)
   ------------------------------------------------------------------ */
.page-hero {
  background: var(--grad-hero);
  color: white;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.page-hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.page-hero h1 { color: white; margin: 20px 0 18px; }
.page-hero p { font-size: 19px; color: rgba(255,255,255,0.75); }

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb-sep { opacity: 0.4; }

/* ------------------------------------------------------------------
   Contact form
   ------------------------------------------------------------------ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 30px; }
.contact-channels { list-style: none; }
.contact-channels li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact-channels li:last-child { border: none; }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(0,212,255,0.04));
  display: grid;
  place-items: center;
  color: var(--cyan);
}
.channel-info b { display: block; color: var(--ink); font-size: 15px; font-weight: 600; }
.channel-info a, .channel-info span { color: var(--muted); font-size: 14px; }
.channel-info a:hover { color: var(--cyan); }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,212,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success, .form-error {
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  display: none;
}
.form-success { background: rgba(46,204,113,0.1); color: #27AE60; border: 1px solid rgba(46,204,113,0.3); }
.form-error { background: rgba(255,71,87,0.1); color: var(--danger); border: 1px solid rgba(255,71,87,0.3); }
.form-success.show, .form-error.show { display: block; }

.contact-form button { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

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

/* ------------------------------------------------------------------
   White-label page specific
   ------------------------------------------------------------------ */
.wl-hero-visual {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.wl-brand-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wl-brand-card {
  background: white;
  border-radius: 12px;
  padding: 18px;
  color: var(--ink);
}
.wl-brand-card.alt { background: linear-gradient(135deg, #1a365d, #2d5a8a); color: white; }
.wl-brand-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wl-brand-logo .dot { width: 24px; height: 24px; border-radius: 6px; background: var(--cyan); }
.wl-brand-card.alt .wl-brand-logo .dot { background: #FFB547; }
.wl-brand-mock-chart { height: 60px; background: linear-gradient(180deg, rgba(0,212,255,0.15), transparent); border-radius: 6px; margin-bottom: 8px; position: relative; }
.wl-brand-card.alt .wl-brand-mock-chart { background: linear-gradient(180deg, rgba(255,181,71,0.3), transparent); }
.wl-brand-mock-text { height: 8px; background: rgba(10,22,40,0.08); border-radius: 4px; margin-bottom: 4px; }
.wl-brand-mock-text.short { width: 60%; }
.wl-brand-card.alt .wl-brand-mock-text { background: rgba(255,255,255,0.15); }

/* Benefit rows */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  padding: 32px 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.benefit-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(0,212,255,0.03));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  margin-bottom: 18px;
}
.benefit-card h4 { margin-bottom: 8px; font-size: 18px; }
.benefit-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr; } }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  position: relative;
  overflow: hidden;
}
.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.3), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255,181,71,0.2), transparent 60%);
}
.blog-thumb svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: rgba(255,255,255,0.25); }
.blog-body { padding: 26px; }
.blog-tag { display: inline-block; padding: 4px 12px; background: rgba(0,212,255,0.1); color: var(--cyan); font-size: 12px; font-weight: 600; border-radius: 999px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body h3 { font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.blog-meta a { color: var(--cyan); font-weight: 600; }

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

/* Comparison table */
.compare-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.compare-table th {
  background: var(--paper-warm);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table .zephy-col { background: rgba(0,212,255,0.04); }
.compare-yes { color: var(--success); font-weight: 700; }
.compare-no { color: var(--danger); font-weight: 700; }
.compare-partial { color: var(--gold); font-weight: 700; }

@media (max-width: 760px) {
  .compare-table { overflow-x: auto; }
  .compare-table table { min-width: 640px; }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 98;
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulseRing 2s infinite;
}

/* Utility */
.text-center { text-align: center; }
.mb-md { margin-bottom: 24px; }
.mt-md { margin-top: 24px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   WHITE-LABEL PAGE EXTENSIONS
   ============================================ */
.hinglish-large { font-size: 1.15rem; color: var(--cyan); font-weight: 500; font-style: italic; margin: 20px 0 32px; letter-spacing: 0.3px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section-tight { padding: 60px 0; }
.section-dark { background: linear-gradient(135deg, #0A1628 0%, #142845 100%); color: #E8F1FF; padding: 90px 0; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%); pointer-events: none; }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: #B8CADF; }
.eyebrow-light { color: var(--cyan); background: rgba(0,212,255,0.12); }

/* White-label audience grid */
.wl-audience { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 50px; }
.wl-aud-card { background: #fff; border: 1.5px solid rgba(10,22,40,0.08); border-radius: 16px; padding: 32px 28px; transition: all 0.3s var(--ease); position: relative; }
.wl-aud-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,212,255,0.12); }
.wl-aud-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--cyan); opacity: 0.4; margin-bottom: 12px; line-height: 1; }
.wl-aud-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.wl-aud-card p { color: #546179; font-size: 0.95rem; line-height: 1.6; }

/* White-label features grid */
.wl-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 50px; position: relative; z-index: 1; }
.wl-feat { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,212,255,0.15); border-radius: 16px; padding: 28px; backdrop-filter: blur(10px); transition: all 0.3s var(--ease); }
.wl-feat:hover { border-color: var(--cyan); background: rgba(0,212,255,0.06); transform: translateY(-4px); }
.wl-feat-icon { font-size: 2rem; margin-bottom: 14px; }
.wl-feat h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.wl-feat ul { list-style: none; padding: 0; margin: 0; }
.wl-feat ul li { color: #B8CADF; font-size: 0.92rem; padding: 6px 0 6px 20px; position: relative; line-height: 1.5; }
.wl-feat ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

/* White-label timeline */
.wl-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 50px; position: relative; }
.wl-step { background: #fff; border-radius: 14px; padding: 28px 22px; border: 1.5px solid rgba(10,22,40,0.06); position: relative; transition: all 0.3s var(--ease); }
.wl-step:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(10,22,40,0.1); border-color: var(--cyan); }
.wl-step-day { display: inline-block; background: linear-gradient(135deg, var(--cyan), #0099cc); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 14px; }
.wl-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.wl-step p { color: #546179; font-size: 0.9rem; line-height: 1.6; }

/* White-label pricing */
.wl-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 50px; align-items: stretch; }

/* White-label why grid */
.wl-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 50px; }
.wl-why-card { background: linear-gradient(135deg, #fff, #F7FAFC); border-left: 4px solid var(--cyan); border-radius: 12px; padding: 28px; box-shadow: 0 4px 20px rgba(10,22,40,0.05); transition: all 0.3s var(--ease); }
.wl-why-card:hover { transform: translateX(4px); box-shadow: 0 8px 30px rgba(0,212,255,0.12); }
.wl-why-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.wl-why-card p { color: #546179; font-size: 0.95rem; line-height: 1.6; }

/* For Agencies segments */
.agency-segment { padding: 80px 0; border-bottom: 1px solid rgba(10,22,40,0.06); }
.agency-segment:nth-child(even) { background: #F7FAFC; }
.agency-seg-head { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; margin-bottom: 40px; max-width: 900px; }
.agency-seg-icon { width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(135deg, var(--cyan), #0099cc); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.agency-seg-head h2 { font-size: 2rem; margin-bottom: 10px; }
.agency-seg-head p { color: #546179; font-size: 1.05rem; line-height: 1.6; }
.agency-seg-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.agency-pain { background: #fff; border-radius: 16px; padding: 28px; border: 1.5px solid rgba(220,53,69,0.12); }
.agency-pain h4 { color: #DC3545; font-weight: 700; margin-bottom: 16px; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.agency-pain ul { list-style: none; padding: 0; }
.agency-pain ul li { padding: 8px 0 8px 24px; position: relative; color: #546179; font-size: 0.94rem; line-height: 1.5; }
.agency-pain ul li::before { content: '⚠'; position: absolute; left: 0; color: #DC3545; }
.agency-sol { background: linear-gradient(135deg, #E6F9FF, #fff); border-radius: 16px; padding: 28px; border: 1.5px solid rgba(0,212,255,0.25); }
.agency-sol h4 { color: var(--navy); font-weight: 700; margin-bottom: 16px; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.agency-sol ul { list-style: none; padding: 0; }
.agency-sol ul li { padding: 8px 0 8px 24px; position: relative; color: var(--navy); font-size: 0.94rem; line-height: 1.5; font-weight: 500; }
.agency-sol ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

@media (max-width: 768px) {
  .agency-seg-head { grid-template-columns: 1fr; }
  .agency-seg-body { grid-template-columns: 1fr; }
}

/* About page */
.about-story { max-width: 780px; margin: 0 auto; font-size: 1.08rem; line-height: 1.8; color: #3a4558; }
.about-story p { margin-bottom: 22px; }
.about-story p:first-of-type::first-letter { font-family: 'Playfair Display', serif; font-size: 3.5rem; float: left; line-height: 1; padding: 4px 12px 0 0; color: var(--cyan); font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 50px; }
.value-card { text-align: center; padding: 32px 24px; background: #fff; border-radius: 16px; border: 1.5px solid rgba(10,22,40,0.06); transition: all 0.3s var(--ease); }
.value-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(10,22,40,0.08); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { color: #546179; font-size: 0.95rem; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 50px; }
.team-card { text-align: center; }
.team-photo { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--cyan), #0099cc); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 3rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.team-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { color: var(--cyan); font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.team-card p { color: #546179; font-size: 0.88rem; line-height: 1.5; }

/* Contact page */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 40px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-info > p { color: #546179; margin-bottom: 30px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: #fff; border-radius: 12px; border: 1.5px solid rgba(10,22,40,0.06); transition: all 0.3s var(--ease); }
.contact-method:hover { border-color: var(--cyan); transform: translateX(4px); }
.contact-method-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--cyan), #0099cc); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-method h5 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-method a, .contact-method span { color: #546179; font-size: 0.95rem; text-decoration: none; }
.contact-method a:hover { color: var(--cyan); }
.contact-note { background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02)); border-radius: 12px; padding: 20px; border-left: 3px solid var(--cyan); }
.contact-note p { color: var(--navy); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Blog */
.blog-featured { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 50px rgba(10,22,40,0.08); margin-bottom: 60px; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured-img { background: linear-gradient(135deg, #0A1628, #1a365d); min-height: 320px; display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 5rem; position: relative; overflow: hidden; }
.blog-featured-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(0,212,255,0.2), transparent 60%); }
.blog-featured-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .blog-cat { color: var(--cyan); font-weight: 700; font-size: 0.78rem; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 12px; }
.blog-featured-body h2 { font-size: 1.8rem; line-height: 1.25; margin-bottom: 16px; }
.blog-featured-body p { color: #546179; font-size: 1rem; line-height: 1.65; margin-bottom: 24px; }
.blog-featured-body .blog-meta { display: flex; gap: 16px; color: #8a94a7; font-size: 0.85rem; margin-bottom: 20px; }

/* Legal pages */
.legal-content { max-width: 820px; margin: 0 auto; color: #3a4558; line-height: 1.75; font-size: 0.98rem; }
.legal-content h2 { font-size: 1.5rem; color: var(--navy); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(0,212,255,0.15); }
.legal-content h3 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 20px 24px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-updated { color: #8a94a7; font-size: 0.9rem; font-style: italic; margin-bottom: 30px; }

/* Blog article pages */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; gap: 16px; color: #8a94a7; font-size: 0.9rem; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(10,22,40,0.08); }
.article-body { color: #2d3748; line-height: 1.85; font-size: 1.05rem; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: 1.8rem; color: var(--navy); margin: 48px 0 18px; }
.article-body h3 { font-size: 1.3rem; color: var(--navy); margin: 36px 0 14px; }
.article-body ul, .article-body ol { margin: 0 0 24px 26px; }
.article-body li { margin-bottom: 10px; }
.article-body blockquote { border-left: 4px solid var(--cyan); padding: 16px 24px; margin: 24px 0; background: rgba(0,212,255,0.04); border-radius: 0 12px 12px 0; font-style: italic; color: #546179; }
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body a { color: var(--cyan); font-weight: 500; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(10,22,40,0.08); }
.article-tag { background: rgba(0,212,255,0.08); color: var(--cyan); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }

/* 404 */
.notfound { text-align: center; padding: 120px 20px; }
.notfound-code { font-family: 'Playfair Display', serif; font-size: 10rem; font-weight: 700; background: linear-gradient(135deg, var(--cyan), #0099cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 20px; }
.notfound h1 { font-size: 2rem; margin-bottom: 16px; }
.notfound p { color: #546179; max-width: 500px; margin: 0 auto 30px; }

/* Contact form field alias + btn-block */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--ink, #0A1628); letter-spacing: 0.3px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line, rgba(10,22,40,0.1)); border-radius: 10px; font-family: var(--font, 'Quicksand', sans-serif); font-size: 15px; color: var(--ink, #0A1628); background: #F7FAFC; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--cyan); background: white; box-shadow: 0 0 0 4px rgba(0,212,255,0.1); }
.form-field textarea { resize: vertical; min-height: 100px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Blog card aliases + responsive tweak */
.blog-card-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-body { padding: 26px; }
.blog-card-body h3 { font-size: 19px; line-height: 1.35; margin-bottom: 10px; color: var(--navy, #0A1628); }
.blog-card-body p { color: var(--muted, #546179); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.blog-card-body .blog-cat { display: inline-block; padding: 4px 12px; background: rgba(0,212,255,0.1); color: var(--cyan); font-size: 11px; font-weight: 700; border-radius: 999px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.6px; }
.blog-card-body .blog-meta { display: flex; gap: 8px; font-size: 13px; color: var(--muted, #8a94a7); }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 1100px) and (min-width: 769px) { .blog-grid { grid-template-columns: repeat(2, 1fr) !important; } }
