/* ============================================================
   RunBy — Global Stylesheet (2026 Redesign)
   Modern, tech-forward design system
   ============================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #0a0a14;
  --dark-2: #0f0f1e;
  --dark-3: #141428;
  --accent: #FF3838;
  --accent-glow: rgba(255, 56, 56, 0.35);
  --accent-soft: rgba(255, 56, 56, 0.08);
  --blue: #4361ee;
  --blue-glow: rgba(67, 97, 238, 0.2);
  --white: #ffffff;
  --gray: #8b8b9e;
  --gray-light: #a5a5b8;
  --text: #c8c8d8;
  --green: #10b981;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== DOT GRID BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(10, 10, 20, 0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 20, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo img {
  display: block;
  width: auto;
  height: 34px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-highlight {
  color: #FF3838;
}

.nav-center {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem;
}

.nav-center a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-center a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Resources dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--white); }

.nav-mobile .nav-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 0.9rem;
  border-bottom: none;
}


/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -20%; left: -10%;
  width: 120%; height: 140%;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(67, 97, 238, 0.12), transparent),
    radial-gradient(ellipse 500px 500px at 70% 60%, rgba(233, 69, 96, 0.08), transparent);
  animation: bgDrift 20s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(233, 69, 96, 0.25);
  background: rgba(233, 69, 96, 0.06);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-badge .pulse-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.5;
  border-radius: 2px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

/* Hero SMS Demo Form */
.hero-demo-form {
  margin: 2rem auto;
  background: rgba(255,255,255,0.05);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 440px;
  text-align: center;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-demo-label {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.hero-demo-input {
  display: flex;
  gap: 0.5rem;
}

.hero-demo-input input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.hero-demo-input input:focus {
  border-color: var(--accent);
}

.hero-demo-input button {
  padding: 0.7rem 1.25rem;
  white-space: nowrap;
}

.hero-demo-status {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

.hero-demo-status.success {
  color: #4ade80;
}

.hero-demo-status.error {
  color: #ff6b6b;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 3rem auto 0;
  animation: fadeUp 1s ease-out 1s both;
}

/* Embedded animation iframes */
.hero-animation-iframe {
  width: 100%;
  border: none;
  display: block;
  background: transparent;
}
.phone-iframe {
  height: 700px;
  max-width: 420px;
  margin: 0 auto;
}
.followup-iframe {
  height: 680px;
  max-width: 600px;
  margin: 0 auto;
}

.animation-showcase {
  padding: 4rem 6%;
}
.animation-embed {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .phone-iframe { height: 620px; }
  .followup-iframe { height: 600px; max-width: 100%; }
}

.hero-phone-mockup {
  position: relative;
  width: 280px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid var(--border-hover);
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 60px rgba(233, 69, 96, 0.08);
}

.phone-screen {
  background: var(--dark-3);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  min-height: 320px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-avatar svg { width: 18px; height: 18px; color: white; }

.phone-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.phone-status {
  font-size: 0.7rem;
  color: var(--green);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.45;
  animation: chatAppear 0.5s ease-out both;
}

.chat-bubble.incoming {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
  background: linear-gradient(135deg, var(--accent), #c23152);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble:nth-child(1) { animation-delay: 1.2s; }
.chat-bubble:nth-child(2) { animation-delay: 2.0s; }
.chat-bubble:nth-child(3) { animation-delay: 3.0s; }
.chat-bubble:nth-child(4) { animation-delay: 3.8s; }
.chat-bubble:nth-child(5) { animation-delay: 4.6s; }

@keyframes chatAppear {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating integration badges */
.hero-float-badge {
  position: absolute;
  background: rgba(15, 15, 30, 0.9);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: floatBadge 3s ease-in-out infinite alternate;
}

.hero-float-badge svg { width: 16px; height: 16px; }

.hero-float-badge.left {
  top: 20%; left: -10%;
  animation-delay: 0s;
}

.hero-float-badge.right {
  bottom: 25%; right: -10%;
  animation-delay: 1.5s;
}

.hero-float-badge.top-right {
  top: 5%; right: 5%;
  animation-delay: 0.8s;
}

@keyframes floatBadge {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}


/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: var(--glass-hover);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-bar p {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(1);
}

.trust-logos svg {
  height: 28px;
  width: auto;
  color: var(--gray);
}

.trust-logos .trust-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3.5rem 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ===== DEMO BANNER ===== */
.demo-banner {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(90deg, rgba(233, 69, 96, 0.04), rgba(67, 97, 238, 0.04));
  border-top: 1px solid rgba(233, 69, 96, 0.08);
  border-bottom: 1px solid rgba(67, 97, 238, 0.08);
  position: relative;
  z-index: 1;
}

.demo-banner p { margin: 0; }

.demo-banner .demo-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.demo-banner .demo-phone {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.demo-banner .demo-sub {
  color: var(--gray);
  font-size: 0.82rem;
}


/* ===== SECTIONS ===== */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  max-width: 650px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3rem;
}


/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover {
  border-color: var(--border-hover);
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.glass-card:hover::before { opacity: 1; }


/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.problem-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.problem-card h3,
.feature-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 4px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(82%) saturate(3826%) hue-rotate(330deg) brightness(101%) contrast(87%);
}

.glass-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.problem-card p,
.glass-card > p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* ===== FEATURES ===== */
.features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(67, 97, 238, 0.02) 50%, transparent 100%);
  border-radius: var(--radius-xl);
  padding: 6rem 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: var(--accent-soft);
  color: var(--accent);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.feature-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding: 2rem;
  counter-increment: step-counter;
}

.step::before {
  content: counter(step-counter, decimal-leading-zero);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(233, 69, 96, 0.1);
  position: absolute;
  top: 0; left: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.step h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.price-card.featured {
  border-color: var(--accent);
  background: rgba(233, 69, 96, 0.03);
  box-shadow: 0 0 40px rgba(233, 69, 96, 0.08);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.price-tier {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: -0.04em;
}

.price-amount span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-soft);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e94560' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
}

.price-card.featured .price-btn {
  background: var(--accent);
  color: var(--white);
}

.price-card:not(.featured) .price-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hover);
}

.price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.15);
}


/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.35s;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-card .quote {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-role {
  color: var(--gray);
  font-size: 0.78rem;
}


/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.06), rgba(67, 97, 238, 0.06));
  border: 1px solid rgba(233, 69, 96, 0.12);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(233, 69, 96, 0.04), transparent 60%);
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.03em;
}

.cta p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta .btn-primary {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}


/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-section .footer-brand {
  margin-bottom: 0.8rem;
}

.footer-brand-section .footer-brand img {
  display: block;
  width: auto;
  height: 32px;
}

.footer-brand-section .footer-tagline {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--white); }

.footer-socials svg {
  width: 18px; height: 18px;
}


/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: -20%; left: -10%;
  width: 120%; height: 140%;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(67, 97, 238, 0.1), transparent),
    radial-gradient(ellipse 500px 500px at 70% 60%, rgba(233, 69, 96, 0.06), transparent);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.page-header .page-header-badge {
  animation: fadeUp 0.8s ease-out 0.1s both;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ===== LOADING SPINNER ===== */
.btn-loading .btn-text { display: none; }
.btn-loading .btn-spinner { display: inline-block; }
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}


/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-center { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 4rem 1.5rem; }

  .stats-bar { gap: 2rem; }

  .features-section { padding: 4rem 1.5rem; }

  .hero-float-badge { display: none; }

  .hero-phone-mockup { width: 240px; }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-phone-mockup { width: 220px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-bar { flex-direction: column; gap: 1.5rem; }
}


/* ============================================================
   DARK / LIGHT MODE THEME SYSTEM
   ============================================================ */

/* --- Nav right container (holds toggle + CTA + hamburger) --- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* --- Theme toggle button --- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  background: var(--glass);
  cursor: pointer;
  color: var(--gray);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.theme-toggle:hover {
  background: var(--glass-hover);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dark mode (default): show moon, hide sun */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* Light mode: show sun, hide moon */
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* --- Smooth transitions on theme change --- */
body,
nav,
.nav-mobile,
.nav-dropdown-menu,
.glass-card,
.price-card,
.step,
footer,
.footer-bottom {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* --- Light mode variable overrides --- */
[data-theme="light"] {
  --dark:         #f8f8fd;
  --dark-2:       #f1f1f8;
  --dark-3:       #e9e9f2;
  --text:         #44445a;
  --gray:         #6d6d86;
  --gray-light:   #8a8a9e;
  --border:       rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --glass:        rgba(0, 0, 0, 0.025);
  --glass-hover:  rgba(0, 0, 0, 0.05);
  --accent-soft:  rgba(255, 56, 56, 0.08);
}

[data-theme="light"] body {
  background: var(--dark);
  color: var(--text);
}

[data-theme="light"] body::before {
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] nav {
  background: rgba(248, 248, 253, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] nav.scrolled {
  background: rgba(248, 248, 253, 0.96);
}

[data-theme="light"] .nav-center {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .nav-center a { color: #55556e; }
[data-theme="light"] .nav-center a:hover {
  color: #0a0a14;
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-dropdown-menu {
  background: rgba(241, 241, 248, 0.97);
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .nav-dropdown-menu a { color: #55556e; }
[data-theme="light"] .nav-dropdown-menu a:hover {
  color: #0a0a14;
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-mobile {
  background: rgba(248, 248, 253, 0.98);
}
[data-theme="light"] .nav-mobile a {
  color: #55556e;
  border-bottom-color: rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .nav-mobile a:hover { color: #0a0a14; }

[data-theme="light"] .nav-hamburger span { background: #0a0a14; }

[data-theme="light"] .theme-toggle {
  color: #55556e;
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #0a0a14;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] .section-title,
[data-theme="light"] .logo-text,
[data-theme="light"] .stat-number,
[data-theme="light"] .price-amount,
[data-theme="light"] .problem-stat,
[data-theme="light"] .phone-name,
[data-theme="light"] .footer-col h4,
[data-theme="light"] .demo-banner .demo-title {
  color: #0a0a14;
}

/* Keep accent red on em/highlighted text */
[data-theme="light"] .hero h1 em,
[data-theme="light"] .logo-highlight { color: var(--accent); }

[data-theme="light"] .btn-secondary {
  color: #0a0a14;
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.03);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.28);
}

[data-theme="light"] .glass-card::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
}

[data-theme="light"] .chat-bubble.incoming {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

[data-theme="light"] .hero-float-badge {
  background: rgba(248, 248, 253, 0.92);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

[data-theme="light"] .price-card.featured {
  background: rgba(255, 56, 56, 0.03);
}

[data-theme="light"] .price-features li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

[data-theme="light"] .hero-badge {
  color: var(--accent);
  background: rgba(255, 56, 56, 0.05);
  border-color: rgba(255, 56, 56, 0.18);
}

[data-theme="light"] .trust-bar {
  border-color: rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .trust-logos {
  filter: grayscale(1) brightness(0.4);
  opacity: 0.55;
}

[data-theme="light"] .demo-banner {
  background: linear-gradient(90deg, rgba(233, 69, 96, 0.04), rgba(67, 97, 238, 0.04));
  border-color: rgba(233, 69, 96, 0.08);
}

[data-theme="light"] footer { border-top-color: rgba(0, 0, 0, 0.08); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0, 0, 0, 0.08); }
[data-theme="light"] .footer-col a { color: #6d6d86; }
[data-theme="light"] .footer-col a:hover { color: #0a0a14; }
[data-theme="light"] .footer-socials a { color: #6d6d86; }
[data-theme="light"] .footer-socials a:hover { color: #0a0a14; }
[data-theme="light"] .footer-copy { color: #6d6d86; }

[data-theme="light"] .cta-inner {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(67, 97, 238, 0.05));
  border-color: rgba(233, 69, 96, 0.1);
}

[data-theme="light"] .section-label { color: var(--accent); }

[data-theme="light"] .cursor-glow {
  background: radial-gradient(circle, rgba(233, 69, 96, 0.07), transparent 70%);
}

[data-theme="light"] .step::before { color: rgba(233, 69, 96, 0.12); }

[data-theme="light"] .hero-demo-input input {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
  color: #0a0a14;
}
[data-theme="light"] .hero-demo-input input:focus {
  border-color: var(--accent);
}
[data-theme="light"] .hero-demo-input input::placeholder { color: #8a8a9e; }


/* ============================================================
   MOBILE RESPONSIVE — ADDITIONAL FIXES
   ============================================================ */

@media (max-width: 768px) {
  .cta-inner { padding: 2.5rem 1.5rem; }
  .animation-showcase { padding: 3rem 1.5rem; }
  .hero-demo-form { padding: 1.25rem 1.25rem; }
  .nav-right { gap: 0.5rem; }
  .trust-logos { gap: 1.5rem; }
  .stats-bar { gap: 2rem; padding: 2.5rem 1.5rem; }
  .pricing-grid { max-width: 100%; }
  section { padding: 3.5rem 1.25rem; }
  .features-section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-demo-form { max-width: 100%; }
  .hero-demo-input { flex-direction: column; }
  .hero-demo-input button { width: 100%; justify-content: center; }
  .section-title { font-size: 1.75rem; }
  .cta-inner { padding: 2rem 1.25rem; }
  nav { padding: 0 1rem; }
  .step::before { font-size: 2.5rem; }
  .phone-iframe { height: 520px; }
  .followup-iframe { height: 500px; max-width: 100%; }
}

@media (max-width: 400px) {
  nav { padding: 0 0.875rem; }
  .hero { padding: 7rem 1rem 3rem; }
  .section-title { font-size: 1.6rem; }
  .hero p { font-size: 1rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .price-amount { font-size: 2.5rem; }
  .stat-number { font-size: 2rem; }
}

/* --- Logo swap for dark/light mode (works in nav, footer, and anywhere) --- */
img.logo-light.logo-light { display: none; }
img.logo-dark.logo-dark   { display: block; }
[data-theme="light"] img.logo-dark.logo-dark   { display: none; }
[data-theme="light"] img.logo-light.logo-light { display: block; }

/* Hero phone-number line — readable in both themes */
.hero-phone-line {
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 1rem;
  opacity: 0.7;
  animation: fadeUp 0.8s ease-out 1s both;
}
.hero-phone-line strong { color: var(--white); }
[data-theme="light"] .hero-phone-line strong { color: #0a0a14; }


/* ============================================================
   BENTO FEATURES GRID
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 56, 56, 0.06), rgba(67, 97, 238, 0.04));
  border-color: rgba(255, 56, 56, 0.14);
}

.feature-card--hero .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.feature-card--hero h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.feature-card--hero p {
  font-size: 1rem;
  line-height: 1.7;
}

.feature-hero-stat {
  margin-top: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.feature-hero-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-hero-label {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}

.feature-card--wide {
  grid-column: span 2;
}

[data-theme="light"] .feature-card--hero {
  background: linear-gradient(135deg, rgba(255, 56, 56, 0.05), rgba(67, 97, 238, 0.03));
  border-color: rgba(255, 56, 56, 0.12);
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card--hero { grid-column: span 2; grid-row: span 1; }
  .feature-card--wide { grid-column: span 2; }
  .feature-card--hero p { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--hero { grid-column: span 2; }
  .feature-card--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--hero { grid-column: span 1; grid-row: span 1; }
  .feature-card--wide { grid-column: span 1; }
  .feature-hero-number { font-size: 2rem; }
}


/* ============================================================
   SOCIAL PROOF RATING HEADER
   ============================================================ */

.social-proof-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.social-proof-stars {
  display: flex;
  gap: 2px;
}

.social-proof-stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
  stroke: none;
}

.social-proof-score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.social-proof-count {
  font-size: 0.82rem;
  color: var(--gray);
}

[data-theme="light"] .social-proof-rating {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .social-proof-score { color: #0a0a14; }


/* ============================================================
   BILLING TOGGLE (shared — used on index & pricing pages)
   ============================================================ */

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.billing-toggle label {
  font-size: 0.9rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}

.billing-toggle label.active { color: var(--white); font-weight: 600; }

[data-theme="light"] .billing-toggle label.active { color: #0a0a14; }

.save-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  transition: background 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
  border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.price-original {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: line-through;
  min-height: 1.2rem;
  margin-bottom: 0.25rem;
}


/* ============================================================
   FLOATING SCROLL CTA
   ============================================================ */

.scroll-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 10, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-hover);
  padding: 0.9rem 4rem 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-cta.visible { transform: translateY(0); }

.scroll-cta-text {
  color: var(--gray);
  font-size: 0.88rem;
}

.scroll-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.scroll-cta-phone svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.scroll-cta-phone:hover { color: var(--accent); }

.scroll-cta .btn-primary {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.scroll-cta-close {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3rem;
  transition: color 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-cta-close:hover { color: var(--white); }

[data-theme="light"] .scroll-cta {
  background: rgba(248, 248, 253, 0.97);
  border-top-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .scroll-cta-text { color: #6d6d86; }
[data-theme="light"] .scroll-cta-phone { color: #0a0a14; }
[data-theme="light"] .scroll-cta-close { color: #6d6d86; }
[data-theme="light"] .scroll-cta-close:hover { color: #0a0a14; }

@media (max-width: 600px) {
  .scroll-cta { gap: 0.6rem; padding: 0.75rem 3.5rem 0.75rem 1rem; }
  .scroll-cta-text { display: none; }
  .scroll-cta-phone { font-size: 0.88rem; }
  .scroll-cta .btn-primary { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
}


/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.05ms !important;
    scroll-behavior: auto !important;
  }

  /* Reveal elements appear immediately */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Kill ambient animations */
  .cursor-glow { display: none; }
  .hero-bg { animation: none !important; }
  .pulse-dot { animation: none !important; }
  .hero-float-badge { animation: none !important; }
}


/* ============================================================
   SCROLL PROGRESS INDICATOR
   ============================================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  z-index: 1001;
  transition: width 0.1s ease-out;
  pointer-events: none;
}


/* ============================================================
   INTEGRATIONS / TRUST BADGES SECTION
   ============================================================ */

.integrations-section {
  padding: 4rem 2rem;
  background: transparent;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.integrations-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 2rem;
}

.integrations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0.65;
}

.integrations-logos .integration-item {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.integrations-logos .integration-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

[data-theme="light"] .integrations-logos .integration-item { color: #0a0a14; }

@media (max-width: 768px) {
  .integrations-section { padding: 3rem 1rem; }
  .integrations-logos { gap: 2rem; }
  .integrations-logos .integration-item { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .integrations-logos { gap: 1.5rem; }
  .integrations-logos .integration-item { font-size: 0.95rem; }
}


/* ============================================================
   EXIT-INTENT MODAL
   ============================================================ */

.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.exit-modal-overlay.visible { display: flex; opacity: 1; }

.exit-modal {
  background: var(--bg);
  border: 1px solid var(--border-hover);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-modal-overlay.visible .exit-modal {
  transform: translateY(0) scale(1);
}

.exit-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.exit-modal-close:hover { color: var(--white); }

.exit-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 56, 56, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.exit-modal h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.exit-modal p {
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.exit-modal-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.exit-modal-phone:hover { color: var(--accent); }

.exit-modal-phone svg { width: 20px; height: 20px; color: var(--accent); }

.exit-modal-sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.exit-modal .btn-primary {
  width: 100%;
  margin-bottom: 0.75rem;
  justify-content: center;
}

[data-theme="light"] .exit-modal { background: #ffffff; border-color: rgba(0, 0, 0, 0.12); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2); }
[data-theme="light"] .exit-modal h3 { color: #0a0a14; }
[data-theme="light"] .exit-modal p { color: #6d6d86; }
[data-theme="light"] .exit-modal-phone { color: #0a0a14; }
[data-theme="light"] .exit-modal-close { color: #6d6d86; }
[data-theme="light"] .exit-modal-close:hover { color: #0a0a14; }
[data-theme="light"] .exit-modal-sub { color: #6d6d86; }


/* ============================================================
   VIDEO EXPLAINER SECTION
   ============================================================ */

.video-section {
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.video-section .section-label { margin-bottom: 1rem; }

.video-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.video-section > p {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(255, 56, 56, 0.08), rgba(67, 97, 238, 0.06));
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.video-wrapper:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(255, 56, 56, 0.4);
  transition: transform 0.2s;
}

.video-wrapper:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.08); }

.video-play-btn svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }

.video-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .video-section h2 { color: #0a0a14; }
[data-theme="light"] .video-wrapper { background: linear-gradient(135deg, rgba(255, 56, 56, 0.06), rgba(67, 97, 238, 0.04)); }

@media (max-width: 768px) {
  .video-section { padding: 3.5rem 1rem 3rem; }
  .video-play-btn { width: 64px; height: 64px; }
  .video-play-btn svg { width: 22px; height: 22px; }
}


/* ============================================================
   MOBILE NAV — ADD PROMINENT CTA INSIDE DRAWER
   ============================================================ */

/* Hidden at all breakpoints — desktop uses .nav-cta.desktop instead */
.nav-mobile-cta-top {
  display: none;
}


/* ============================================================
   MODERNIZATION LAYER (2026-Q2)
   ============================================================ */

/* === 1. ACCENT GRADIENT SYSTEM === */
:root {
  --accent-2: #FF6B6B;
  --accent-3: #ff9d5c;
  --accent-gradient: linear-gradient(135deg, #FF3838 0%, #FF6B6B 50%, #ff9d5c 100%);
  --accent-gradient-soft: linear-gradient(135deg, rgba(255,56,56,0.15) 0%, rgba(255,107,107,0.1) 50%, rgba(255,157,92,0.08) 100%);
}


/* === 2. GRADIENT MESH HERO BG (replaces flat hero-bg) === */
.hero-bg {
  position: absolute;
  top: -20%; left: -10%;
  width: 120%; height: 140%;
  overflow: hidden;
  background: transparent;
  animation: none;
}
.hero-bg::before,
.hero-bg::after,
.hero-bg .mesh-blob {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.hero-bg::before {
  width: 520px; height: 520px;
  top: -5%; left: 8%;
  background: radial-gradient(circle, rgba(255,56,56,0.55), transparent 60%);
  animation: meshDrift1 22s ease-in-out infinite alternate;
}
.hero-bg::after {
  width: 480px; height: 480px;
  top: 25%; right: 5%;
  background: radial-gradient(circle, rgba(67,97,238,0.45), transparent 60%);
  animation: meshDrift2 28s ease-in-out infinite alternate;
}
.hero-bg .mesh-blob {
  width: 420px; height: 420px;
  bottom: 10%; left: 40%;
  background: radial-gradient(circle, rgba(168,85,247,0.3), transparent 60%);
  animation: meshDrift3 24s ease-in-out infinite alternate;
}
@keyframes meshDrift1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px,40px) scale(1.15); }
}
@keyframes meshDrift2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-80px,30px) scale(1.1); }
}
@keyframes meshDrift3 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-50px) scale(1.2); }
}
[data-theme="light"] .hero-bg::before { opacity: 0.35; }
[data-theme="light"] .hero-bg::after { opacity: 0.25; }
[data-theme="light"] .hero-bg .mesh-blob { opacity: 0.18; }


/* === 3. HERO HEADLINE: GRADIENT TEXT + WORD ROTATOR === */
.hero h1 em {
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero h1 em::after { display: none; }

.hero-rotator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
  min-height: 36px;
  animation: fadeUp 0.8s ease-out 0.1s both;
}
.hero-rotator-icon {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-rotator-word {
  display: inline-block;
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  min-width: 130px;
  transition: opacity 0.3s, transform 0.3s;
}
.hero-rotator-word.flip-out { opacity: 0; transform: translateY(-8px); }
.hero-rotator-word.flip-in { opacity: 0; transform: translateY(8px); animation: rotatorIn 0.35s ease-out forwards; }
@keyframes rotatorIn { to { opacity: 1; transform: translateY(0); } }
[data-theme="light"] .hero-rotator { background: rgba(0,0,0,0.03); }


/* === 4. TRUST BAR: SVG LOGOS + MARQUEE === */
.trust-bar-modern {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  overflow: hidden;
  position: relative;
}
.trust-bar-modern p {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.75rem;
}
.trust-marquee {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  align-items: center;
}
.trust-marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trust-marquee .trust-logo-svg {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gray-light);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s;
  opacity: 0.8;
}
.trust-marquee .trust-logo-svg:hover { color: var(--white); opacity: 1; }
.trust-marquee .trust-logo-svg svg { width: 22px; height: 22px; flex-shrink: 0; }
[data-theme="light"] .trust-marquee .trust-logo-svg:hover { color: #0a0a14; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar-modern:hover .trust-marquee { animation-play-state: paused; }


/* === 5. DEMO BANNER: PULSING PHONE CARD === */
.demo-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,56,56,0.08), rgba(67,97,238,0.04));
  border: 1px solid rgba(255,56,56,0.15);
}
.demo-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 8%;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  animation: phoneRipple 2.5s ease-out infinite;
  pointer-events: none;
}
.demo-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 8%;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  animation: phoneRipple 2.5s ease-out 1.25s infinite;
  pointer-events: none;
}
@keyframes phoneRipple {
  0% { transform: translateY(-50%) scale(0.5); opacity: 0.8; }
  100% { transform: translateY(-50%) scale(1.6); opacity: 0; }
}
.demo-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.demo-live-badge .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}


/* === 6. STATS: SPARK BARS === */
.stat { position: relative; }
.stat-sparkbars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-top: 0.65rem;
  justify-content: center;
}
.stat-sparkbars span {
  width: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}
.stat.in-view .stat-sparkbars span { transform: scaleY(1); }
.stat.in-view .stat-sparkbars span:nth-child(1) { transition-delay: 0.05s; }
.stat.in-view .stat-sparkbars span:nth-child(2) { transition-delay: 0.1s; }
.stat.in-view .stat-sparkbars span:nth-child(3) { transition-delay: 0.15s; }
.stat.in-view .stat-sparkbars span:nth-child(4) { transition-delay: 0.2s; }
.stat.in-view .stat-sparkbars span:nth-child(5) { transition-delay: 0.25s; }
.stat.in-view .stat-sparkbars span:nth-child(6) { transition-delay: 0.3s; }
.stat.in-view .stat-sparkbars span:nth-child(7) { transition-delay: 0.35s; }
.stat.in-view .stat-sparkbars span:nth-child(8) { transition-delay: 0.4s; }


/* === 7. SECTION LABEL UPGRADE (pill with gradient border) === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(255,56,56,0.06);
  border: 1px solid rgba(255,56,56,0.2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  position: relative;
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  margin: 0;
  border: none;
  position: static;
  flex-shrink: 0;
  animation: labelDot 2.5s ease-in-out infinite;
}
@keyframes labelDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}


/* === 8. FAQ CHEVRON + SPRING === */
.faq-question {
  position: relative;
  padding-right: 3rem;
}
.faq-chevron {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 22px; height: 22px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--gray);
  pointer-events: none;
}
.faq-item.open .faq-chevron {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent);
}


/* === 9. TESTIMONIAL GRADIENT INITIALS === */
.testimonial-avatar {
  background: var(--accent-gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255,56,56,0.25);
}
.testimonial-card:nth-child(2n) .testimonial-avatar { background: linear-gradient(135deg, #4361ee 0%, #a855f7 100%); box-shadow: 0 4px 14px rgba(67,97,238,0.3); }
.testimonial-card:nth-child(3n) .testimonial-avatar { background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%); box-shadow: 0 4px 14px rgba(16,185,129,0.3); }
.testimonial-card:nth-child(4n) .testimonial-avatar { background: linear-gradient(135deg, #f59e0b 0%, #FF3838 100%); box-shadow: 0 4px 14px rgba(245,158,11,0.3); }


/* === 10. CURSOR GLOW: ACCENT-AWARE === */
.cursor-glow {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,56,56,0.08), transparent 70%);
  mix-blend-mode: screen;
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-glow.hover-interactive {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,56,56,0.16), transparent 65%);
}
[data-theme="light"] .cursor-glow { mix-blend-mode: multiply; }


/* === 11. SCROLL LETTER-REVEAL FOR H2s === */
.letter-reveal { display: inline-block; }
.letter-reveal .word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 0.05em; }
.letter-reveal .word-wrap span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s;
}
.letter-reveal.revealed .word-wrap span { transform: translateY(0); opacity: 1; }


/* === 12. NOISE/GRAIN TEXTURE === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
}
[data-theme="light"] body::after { opacity: 0.025; mix-blend-mode: multiply; }


/* === 13. BENTO GRID VARIETY (feature cards) === */
.feature-card--hero {
  background: linear-gradient(135deg, rgba(255,56,56,0.09), rgba(67,97,238,0.05) 50%, rgba(168,85,247,0.04));
}
.feature-card--hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,56,56,0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.feature-card { position: relative; overflow: hidden; }


/* === 14. TESTIMONIAL CARD — SUBTLE TILT RHYTHM === */
.testimonial-grid .testimonial-card { transition: transform 0.3s ease-out, border-color 0.3s; }
.testimonial-grid .testimonial-card:nth-child(2n) { transform: rotate(-0.4deg); }
.testimonial-grid .testimonial-card:nth-child(3n) { transform: rotate(0.5deg); }
.testimonial-grid .testimonial-card:hover { transform: rotate(0deg) translateY(-4px); }

[data-theme="light"] .testimonial-name { color: #0a0a14; }


/* === 15. INDUSTRIES GRID HOVER TINT === */
.industries-grid a {
  position: relative;
  transition: transform 0.2s, color 0.2s, background 0.3s, border-color 0.3s;
  overflow: hidden;
}
.industries-grid a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient-soft);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.industries-grid a:hover::before { opacity: 1; }
.industries-grid a:hover { border-color: rgba(255,56,56,0.3); transform: translateY(-2px); }
.industries-grid a > * { position: relative; z-index: 1; }
