/* ============================================================
   BOTLINE LANDING PAGE — style.css
   ============================================================ */

/* ---- 1. CSS Custom Properties ---- */
:root {
  --color-bg:            #F8F9FA;
  --color-surface:       #FFFFFF;
  --color-surface-muted: #F1F3F5;
  --color-border:        #E8EAED;
  --color-border-light:  #F0F2F5;
  --color-text-primary:  #0D1117;
  --color-text-secondary:#5C6370;
  --color-text-muted:    #9CA3AF;

  /* Brand teal — primary accent */
  --color-brand:        #7CC5D7;
  --color-brand-dark:   #5AAFC3;
  --color-brand-darker: #3D96AE;
  --color-brand-light:  #E8F6FA;
  --color-brand-mid:    #C4E5EE;
  --color-brand-glow:   rgba(124, 197, 215, 0.35);

  /* WhatsApp green — WA-specific UI only */
  --color-wa:           #25D366;
  --color-wa-dark:      #1DA851;
  --color-wa-light:     #DCFCE7;
  --color-wa-bubble:    #DCF8C6;

  /* Feature accent colors */
  --color-purple:       #7C3AED;
  --color-purple-light: #EDE9FE;
  --color-blue:         #2563EB;
  --color-blue-light:   #DBEAFE;
  --color-orange:       #F59E0B;
  --color-orange-light: #FEF3C7;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.12);
  --shadow-brand: 0 4px 20px var(--color-brand-glow);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;

  /* Font */
  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body:    'Quicksand', system-ui, sans-serif;
}

/* ---- 2. Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 700; background: var(--color-bg); color: var(--color-text-primary); line-height: 1.6; overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- 3. Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { line-height: 1.75; color: var(--color-text-secondary); }

/* ---- 4. Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
section { position: relative; }

/* ---- 5. Components: Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.btn-icon-left { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: #fff;
  box-shadow: var(--shadow-brand);
  border: 1.5px solid transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--color-brand-glow);
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand-darker));
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-surface-muted);
  border-color: var(--color-brand-mid);
  color: var(--color-brand-dark);
}

.btn-ghost-nav {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 0.875rem;
}
.btn-ghost-nav:hover {
  background: rgba(255,255,255,0.15);
}
.navbar--scrolled .btn-ghost-nav {
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}
.navbar--scrolled .btn-ghost-nav:hover {
  background: var(--color-surface-muted);
}

.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.0625rem; }

.btn-outline {
  background: var(--color-surface);
  color: var(--color-brand-dark);
  border: 1.5px solid var(--color-brand);
}
.btn-outline:hover {
  background: var(--color-brand-light);
  transform: translateY(-2px);
}

.btn-ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124,197,215,0.15);
  color: var(--color-brand);
  border: 1.5px solid rgba(124,197,215,0.4);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.btn-ai-cta:hover {
  background: rgba(124,197,215,0.25);
  transform: translateY(-2px);
}

/* Mobile-only button variants */
.btn-ghost-full {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  font-weight: 700;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.btn-primary-full {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: var(--shadow-brand);
  transition: all var(--transition);
}

/* ---- 6. Components: Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}
.badge-brand {
  background: var(--color-brand-light);
  color: var(--color-brand-darker);
  border: 1px solid rgba(124,197,215,0.3);
}
.badge-ai {
  background: rgba(124,197,215,0.12);
  color: var(--color-brand);
  border: 1px solid rgba(124,197,215,0.25);
}

/* ---- 7. Components: Section Header ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin: 0.75rem 0 1rem; }
.section-header p  { font-size: 1.0625rem; max-width: 520px; margin: 0 auto; }

/* ---- 8. Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), padding var(--transition-slow);
}
.navbar--scrolled {
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-border), 0 4px 20px rgba(0,0,0,0.04);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(1);
  transition: filter var(--transition-slow);
}
.navbar--scrolled .logo-img { filter: brightness(0); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar--scrolled .nav-link { color: var(--color-text-secondary); }
.navbar--scrolled .nav-link:hover { color: var(--color-brand-darker); background: var(--color-brand-light); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-left: auto;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar--scrolled .nav-hamburger { color: var(--color-text-primary); }
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.navbar--scrolled .nav-hamburger:hover { background: var(--color-surface-muted); }

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(15,25,35,0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.navbar--scrolled .mobile-menu {
  background: rgba(255,255,255,0.96);
  border-top-color: var(--color-border);
}
.mobile-menu-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar--scrolled .mobile-nav-link { color: var(--color-text-secondary); }
.mobile-nav-link:hover { color: var(--color-brand); background: rgba(124,197,215,0.08); }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.navbar--scrolled .mobile-menu-cta { border-top-color: var(--color-border); }

@media (min-width: 768px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---- 9. Hero ---- */
.hero {
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #EBF7FB 0%, #F8F9FA 35%, #F4FBFC 65%, #FAFAFA 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(20,55,75,0.18), transparent);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,197,215,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,197,215,0.10) 0%, transparent 70%);
  bottom: 0; left: -80px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { animation: heroFadeUp 0.9s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,211,102,0.1);
  color: var(--color-wa-dark);
  border: 1px solid rgba(37,211,102,0.25);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.badge-wa-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-wa);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}
.headline-highlight {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 700;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.trust-icon { width: 14px; height: 14px; color: var(--color-wa); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroSlideIn 1s ease 0.15s both;
}

/* ---- Hero Orb Visual ---- */
.hero-orb-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

/* Rings */
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring--1 {
  width: 240px; height: 240px;
  border: 1.5px solid rgba(37,211,102,0.18);
}
.hero-ring--2 {
  width: 340px; height: 340px;
  border: 1px dashed rgba(37,211,102,0.09);
}

/* Central orb */
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 55%, #128C3E 100%);
  box-shadow:
    0 0 0 14px rgba(37,211,102,0.1),
    0 0 0 28px rgba(37,211,102,0.05),
    0 0 60px rgba(37,211,102,0.3),
    0 0 110px rgba(37,211,102,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbPulse 4s ease-in-out infinite;
  cursor: default;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}
.hero-orb:hover {
  transform: translate(-50%, -50%) scale(1.13);
  box-shadow:
    0 0 0 18px rgba(37,211,102,0.14),
    0 0 0 36px rgba(37,211,102,0.07),
    0 0 80px rgba(37,211,102,0.45),
    0 0 140px rgba(37,211,102,0.18);
  animation-play-state: paused;
}

/* Floating pill wrappers — handle position + float animation */
.hp-wrap {
  position: absolute;
}
.hp-wrap--1 { top: 5%;    left: -5%;   animation: float 6s   ease-in-out infinite; }
.hp-wrap--2 { top: 8%;    right: -8%;  animation: float 7s   ease-in-out infinite 1.2s; }
.hp-wrap--3 { bottom: 18%; left: -8%;  animation: float 5.5s ease-in-out infinite 0.6s; }
.hp-wrap--4 { bottom: 8%;  right: -5%; animation: float 8s   ease-in-out infinite 1.8s; }

/* Pills — handle style + hover repel */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.95);
  border-radius: 50px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Directional repel + colored glow per pill */
.hero-pill--wa:hover {
  transform: translate(-10px, -10px) scale(1.07);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 16px 48px rgba(37,211,102,0.18), 0 4px 16px rgba(0,0,0,0.06);
}
.hero-pill--purple:hover {
  transform: translate(10px, -10px) scale(1.07);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 16px 48px rgba(124,58,237,0.18), 0 4px 16px rgba(0,0,0,0.06);
}
.hero-pill--rose:hover {
  transform: translate(-10px, 10px) scale(1.07);
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 16px 48px rgba(244,63,94,0.18), 0 4px 16px rgba(0,0,0,0.06);
}
.hero-pill--orange:hover {
  transform: translate(10px, 10px) scale(1.07);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 16px 48px rgba(245,158,11,0.18), 0 4px 16px rgba(0,0,0,0.06);
}

.hp-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hp-icon--wa     { background: linear-gradient(135deg, #25D366, #1DA851); }
.hp-icon--purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.hp-icon--rose   { background: linear-gradient(135deg, #F43F5E, #E11D48); }
.hp-icon--orange { background: linear-gradient(135deg, #F59E0B, #D97706); }

/* ---- 10. Stats Bar ---- */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item { text-align: center; padding: 0.5rem 2rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.stat-special { font-size: 1.75rem; }
.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  flex-shrink: 0;
  display: none;
}

/* ---- 11. Features ---- */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(140deg, #07101C 0%, #0D1B2E 45%, #0A1822 80%, #060E18 100%);
  position: relative;
  overflow: hidden;
}

/* Section header override for dark bg */
.section-header--light h2 { color: #fff; }
.section-header--light p  { color: rgba(255,255,255,0.6); }

/* Badge glass variant */
.badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1rem;
}

/* Background blobs */
.feat-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.feat-blob--green  { width: 420px; height: 420px; background: rgba(37,211,102,0.12); top: -80px;  left: -80px; }
.feat-blob--blue   { width: 380px; height: 380px; background: rgba(37,99,235,0.12);  top: 40%;    right: -60px; }
.feat-blob--purple { width: 320px; height: 320px; background: rgba(124,58,237,0.12); bottom: -60px; right: 20%; }
.feat-blob--rose   { width: 260px; height: 260px; background: rgba(244,63,94,0.10);  top: 35%;    left: 22%; }

/* Bento grid */
.features-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

/* Glass card */
.feat-glass {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.feat-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
/* Subtle inner top glow */
.feat-glass::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 20px 20px 0 0;
  opacity: 0.6;
  pointer-events: none;
}

/* Number watermark */
.feat-num {
  position: absolute;
  top: 0.75rem; right: 1.25rem;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* Glow icon */
.feat-glow-icon {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}
.feat-glow-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 19px;
  opacity: 0.35;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.3s ease;
}
.feat-glass:hover .feat-glow-icon::before { opacity: 0.55; }

/* Color variants */
.feat-glow--wa     { background: linear-gradient(135deg, #25D366, #1DA851); }
.feat-glow--wa::before     { background: #25D366; }
.feat-glass--wa::after     { background: linear-gradient(90deg, rgba(37,211,102,0.5), transparent); }

.feat-glow--rose   { background: linear-gradient(135deg, #F43F5E, #E11D48); }
.feat-glow--rose::before   { background: #F43F5E; }
.feat-glass--rose::after   { background: linear-gradient(90deg, rgba(244,63,94,0.5), transparent); }

.feat-glow--blue   { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.feat-glow--blue::before   { background: #2563EB; }
.feat-glass--blue::after   { background: linear-gradient(90deg, rgba(37,99,235,0.5), transparent); }

.feat-glow--orange { background: linear-gradient(135deg, #F59E0B, #D97706); }
.feat-glow--orange::before { background: #F59E0B; }
.feat-glass--orange::after { background: linear-gradient(90deg, rgba(245,158,11,0.5), transparent); }

.feat-glow--purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.feat-glow--purple::before { background: #7C3AED; }
.feat-glass--purple::after { background: linear-gradient(90deg, rgba(124,58,237,0.5), transparent); }

.feat-glass h3 {
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}
.feat-glass p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ---- 12. How It Works ---- */
.how-section {
  padding: 5rem 0;
  background: var(--color-surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.step-item {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-number-bg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(124,197,215,0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.step-icon-wrap {
  position: relative;
  width: 56px; height: 56px;
  background: var(--color-brand-light);
  border: 2px solid var(--color-brand-mid);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.25rem;
  color: var(--color-brand-darker);
  z-index: 1;
}
.step-item h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.step-item p  { font-size: 0.9rem; max-width: 280px; margin: 0 auto; }
.step-connector { display: none; }

/* ---- 13. AI Section ---- */
.ai-section {
  padding: 5rem 0;
  background: linear-gradient(140deg, #08101A 0%, #0F1B2E 40%, #0A1520 70%, #050D15 100%);
  overflow: hidden;
}
.ai-bg-decoration {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,197,215,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.ai-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* AI text content */
.ai-content .badge-ai { margin-bottom: 1rem; }
.ai-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.ai-subtext {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 460px;
}
.ai-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ai-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.bullet-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(124,197,215,0.15);
  border: 1px solid rgba(124,197,215,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-brand);
}

/* RAG pipeline diagram */
.rag-pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 380px;
  margin: 0 auto;
}
.rag-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s ease;
}
.rag-step:hover {
  background: rgba(124,197,215,0.08);
  border-color: rgba(124,197,215,0.25);
}
.rag-step-1 { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.rag-step-3 { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

.rag-step-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(124,197,215,0.12);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rag-step-content { flex: 1; min-width: 0; }
.rag-step-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.3; }
.rag-step-desc  { font-size: 0.775rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.rag-step-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.rag-step-badge--active {
  background: rgba(37,211,102,0.15);
  color: var(--color-wa);
  border: 1px solid rgba(37,211,102,0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.rag-step-badge--active::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-wa);
  animation: pulse 1.5s ease-in-out infinite;
}

.rag-arrow {
  display: flex;
  justify-content: center;
  color: rgba(124,197,215,0.4);
  padding: 0.25rem 0;
  animation: ragArrow 1.8s ease-in-out infinite;
}

/* ---- 14. Integration ---- */
.integration-section {
  padding: 5rem 0;
  background: var(--color-surface-muted);
}
.integration-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.integration-content .badge { margin-bottom: 1rem; }
.integration-content h2 { margin-bottom: 1rem; }
.integration-content p { max-width: 460px; margin-bottom: 1.5rem; font-size: 1rem; }
.integration-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-brand-darker);
  border-bottom: 1.5px solid var(--color-brand-mid);
  padding-bottom: 1px;
  transition: all var(--transition);
}
.integration-doc-link:hover { color: var(--color-brand-dark); border-bottom-color: var(--color-brand); }

.integration-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.int-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-surface-muted);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-primary);
  transition: all var(--transition);
  cursor: default;
}
.int-badge:hover { border-color: var(--color-brand-mid); background: var(--color-brand-light); }
.int-badge--wa { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.2); color: #16652E; }
.int-badge--custom { background: var(--color-brand-light); border-color: var(--color-brand-mid); color: var(--color-brand-darker); }
.int-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  flex-shrink: 0;
}
.int-dot--wa     { background: var(--color-wa); }
.int-dot--blue   { background: var(--color-blue); }
.int-dot--orange { background: var(--color-orange); }
.int-dot--purple { background: var(--color-purple); }
.int-dot--pink   { background: #EC4899; }
.int-dot--teal   { background: var(--color-brand-dark); }

/* ---- 15. Pricing Section ---- */
.pricing-section {
  padding: 5rem 0;
  background: var(--color-surface-muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  position: relative;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-slow);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-mid);
}
.pricing-card--featured {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 1px var(--color-brand), var(--shadow-lg);
  background: #fff;
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--color-brand), 0 20px 60px rgba(124,197,215,0.22);
}

.pricing-popular-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.pricing-header { margin-bottom: 1.5rem; }
.pricing-plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}
.pricing-price-row { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card--featured .pricing-price { color: var(--color-brand-darker); }
.pricing-period { font-size: 0.875rem; color: var(--color-text-muted); font-weight: 700; }
.pricing-tagline { font-size: 0.875rem; color: var(--color-text-secondary); line-height: 1.55; margin: 0; }

.pricing-btn { width: 100%; justify-content: center; margin-bottom: 1.75rem; }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.pricing-features li i { color: var(--color-brand-darker); flex-shrink: 0; margin-top: 1px; }
.pricing-feature--disabled { opacity: 0.45; }
.pricing-feature--disabled i { color: var(--color-text-muted) !important; }
.pricing-note {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-brand-light);
  color: var(--color-brand-darker);
  border-radius: var(--radius-sm);
  padding: 0.1rem 0.4rem;
  margin-left: 0.2rem;
}

/* ---- 16. Clients Showcase ---- */
.clients-section {
  padding: 5rem 0;
  background: var(--color-surface-muted);
}
.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.client-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-mid);
}

/* Logo wrapper */
.client-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  border-bottom: 1px solid var(--color-border-light);
  min-height: 170px;
  overflow: hidden;
}
/* Decorative blob inside logo area */
.client-logo-wrap::before,
.client-logo-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Labbaik — emerald green gradient */
.client-logo-wrap--labbaik {
  background: linear-gradient(140deg, #F0FDF4 0%, #DCFCE7 55%, #BBF7D0 100%);
  border-bottom-color: #D1FAE5;
}
.client-logo-wrap--labbaik::before {
  width: 180px; height: 180px;
  background: rgba(16, 185, 129, 0.12);
  bottom: -60px; right: -50px;
}
.client-logo-wrap--labbaik::after {
  width: 80px; height: 80px;
  background: rgba(16, 185, 129, 0.08);
  top: -20px; left: -20px;
}

/* Tanya Peraturan — royal blue gradient */
.client-logo-wrap--tp {
  background: linear-gradient(140deg, #EFF6FF 0%, #DBEAFE 55%, #BFDBFE 100%);
  border-bottom-color: #BFDBFE;
}
.client-logo-wrap--tp::before {
  width: 180px; height: 180px;
  background: rgba(37, 99, 235, 0.1);
  bottom: -60px; right: -50px;
}
.client-logo-wrap--tp::after {
  width: 80px; height: 80px;
  background: rgba(37, 99, 235, 0.07);
  top: -20px; left: -20px;
}

/* LAMP — dark navy */
.client-logo-wrap--dark {
  background: linear-gradient(135deg, #0B1A2B 0%, #0E2236 50%, #1A3040 100%);
  border-bottom-color: transparent;
}
.client-logo-wrap--dark::before {
  width: 200px; height: 200px;
  background: rgba(124, 197, 215, 0.06);
  bottom: -70px; right: -60px;
}

.client-logo {
  position: relative;
  z-index: 1;
  max-height: 72px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}
.client-logo--blend {
  mix-blend-mode: multiply;
  max-height: 140px;
  max-width: 320px;
  width: 100%;
}

/* Card body */
.client-body { padding: 1.5rem; }
.client-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.client-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.client-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.client-badge--ai  { background: var(--color-purple-light); color: var(--color-purple); }
.client-badge--gov { background: var(--color-brand-light);  color: var(--color-brand-darker); }

.client-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.client-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-brand-darker);
  transition: gap var(--transition), color var(--transition);
}
.client-link:hover { gap: 0.5rem; color: var(--color-brand-dark); }
.client-link--wa { color: var(--color-wa-dark); }
.client-link--wa:hover { color: var(--color-wa); }

/* ---- 17. CTA Section ---- */
.cta-section {
  padding: 6rem 0;
  background: var(--color-brand-light);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-blob-1 {
  width: 400px; height: 400px;
  background: rgba(124,197,215,0.2);
  top: -150px; right: -100px;
}
.cta-blob-2 {
  width: 350px; height: 350px;
  background: rgba(124,197,215,0.15);
  bottom: -100px; left: -80px;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner .badge { margin-bottom: 1rem; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p  { font-size: 1.0625rem; margin-bottom: 2rem; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-brand-darker);
}

/* ---- 16. Footer ---- */
.footer {
  background: #0B0F15;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand {}
.footer-logo { display: inline-flex; margin-bottom: 0.85rem; }
.footer-logo-img { height: 28px; width: auto; opacity: 0.85; }
.footer-tagline { font-size: 0.875rem; max-width: 260px; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.social-link:hover { background: rgba(124,197,215,0.12); color: var(--color-brand); border-color: rgba(124,197,215,0.25); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: inline-block;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-made { color: rgba(255,255,255,0.3); }

/* ---- 17. Broadcast Section ---- */
.broadcast-section {
  padding: 5rem 0;
  background: var(--color-surface);
}
.broadcast-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.broadcast-content .badge { margin-bottom: 1rem; }
.broadcast-content h2    { margin-bottom: 1rem; }
.broadcast-content > p   { font-size: 1.0625rem; max-width: 460px; margin-bottom: 2rem; }

.broadcast-use-cases { display: flex; flex-direction: column; gap: 1.25rem; }
.use-case-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.use-case-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-brand-light);
  color: var(--color-brand-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.use-case-icon--blue   { background: var(--color-blue-light);   color: var(--color-blue); }
.use-case-icon--purple { background: var(--color-purple-light); color: var(--color-purple); }
.use-case-title { font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem; color: var(--color-text-primary); margin-bottom: 0.2rem; }
.use-case-desc  { font-size: 0.875rem; color: var(--color-text-secondary); line-height: 1.55; }

/* Broadcast visual */
.broadcast-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

/* Broadcast metrics visualization */
.broadcast-metrics { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.bm-item {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.bm-item:hover { border-color: var(--color-brand-mid); box-shadow: var(--shadow-md); }
.bm-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.bm-icon {
  width: 30px; height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bm-icon--neutral { background: var(--color-surface-muted); color: var(--color-text-secondary); }
.bm-icon--brand   { background: var(--color-brand-light);   color: var(--color-brand-darker); }
.bm-icon--wa      { background: var(--color-wa-light);       color: var(--color-wa-dark); }
.bm-label  { font-size: 0.8rem; font-weight: 700; color: var(--color-text-secondary); }
.bm-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}
.bm-number--brand { color: var(--color-brand-darker); }
.bm-number--wa    { color: var(--color-wa-dark); }
.bm-bar-track { height: 5px; background: var(--color-border); border-radius: var(--radius-full); overflow: hidden; }
.bm-bar-fill  { height: 100%; border-radius: var(--radius-full); }
.bm-bar-fill--full  { background: linear-gradient(90deg, var(--color-text-secondary), var(--color-text-muted)); width: 100%; }
.bm-bar-fill--brand { background: linear-gradient(90deg, var(--color-brand), var(--color-brand-dark)); width: 89%; }
.bm-bar-fill--wa    { background: linear-gradient(90deg, var(--color-wa), var(--color-wa-dark)); width: 23%; }

/* ---- 18. Animations (@keyframes) ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.65); opacity: 0.4; }
  40%           { transform: scale(1);    opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.95); }
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(0.94); }
}
@keyframes ragArrow {
  0%   { transform: translateY(-3px); opacity: 0.4; }
  50%  { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(3px);  opacity: 0.4; }
}

/* ---- 18. Media Queries ---- */

/* Small tablets (640px+) */
@media (min-width: 640px) {
  .stat-divider { display: block; }
  .stats-inner  { flex-wrap: nowrap; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .hero { padding: 9rem 0 6rem; }
  .hero-inner {
    grid-template-columns: 55% 45%;
    gap: 2rem;
  }
  .hero-subheadline { max-width: 100%; }
  .hero-visual { display: flex; }

  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
  .step-item { padding: 1.5rem 1rem; }
  .step-connector {
    display: block;
    width: 48px;
    border-top: 2px dashed var(--color-border);
    margin-top: calc(2rem + 28px + 0.5rem);
    flex-shrink: 0;
    align-self: flex-start;
  }

  .features-bento      { grid-template-columns: repeat(3, 1fr); }
  .feat-glass--wide    { grid-column: span 2; }

  .broadcast-inner     { grid-template-columns: 50% 50%; gap: 3rem; }
  .broadcast-visual    { margin: 0; max-width: none; }
  .ai-inner            { grid-template-columns: 50% 50%; gap: 3rem; }
  .integration-inner   { grid-template-columns: 50% 50%; gap: 3rem; }

  .pricing-grid        { grid-template-columns: repeat(2, 1fr); }
  .clients-grid        { grid-template-columns: repeat(3, 1fr); }

  .footer-inner        { grid-template-columns: 2fr 1fr 1fr; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 58% 42%; }
  .features-bento { gap: 1.1rem; }
  .pricing-grid  { grid-template-columns: repeat(4, 1fr); }
  .pricing-card--featured { transform: translateY(-6px); }
  .pricing-card--featured:hover { transform: translateY(-9px); }
}

/* Wide (1200px+) */
@media (min-width: 1200px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}
