/* ============================================================
   BUZOPS V2 — MAIN CSS
   Color system from Figma design spec
   ============================================================ */

:root {
  --teal:          #008db9;
  --teal-bright:   #06b6d4;
  --teal-dark:     #044d80;
  --orange:        #ff7603;
  --orange-light:  #ff7a0e;
  --dark-bg:       #0a0a0a;
  --dark-section:  #1b1b1b;
  --dark-mid:      #2c2c2c;
  --purple-glow:   #8243ea;
  --white:         #ffffff;
  --off-white:     #f7fcff;
  --light-bg:      #f3f4f6;
  --text-dark:     #0a0a0a;
  --text-secondary:#6b7280;
  --success:       #00911f;
  --font-main:     'Poppins', sans-serif;
  --font-accent:   'Lexend', sans-serif;
  --max-w:         1200px;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

.text-center  { text-align: center; }
.text-teal    { color: var(--teal); }
.text-orange  { color: var(--orange); }
.text-white   { color: var(--white); }
.text-muted   { color: rgba(255,255,255,0.65); }

.section-light { background: var(--off-white); }
.section-dark  { background: var(--dark-bg); color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,118,3,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark-bg); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

.btn-lg  { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-xl  { padding: 20px 48px; font-size: 1.1rem; border-radius: 12px; }
.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn-link { color: var(--teal); font-weight: 600; font-size: 0.95rem; }
.btn-link:hover { text-decoration: underline; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
}
.top-bar-sep { margin: 0 12px; opacity: 0.5; }
.top-bar-link { color: var(--white); font-weight: 700; text-decoration: underline; }
.top-bar-link:hover { opacity: 0.85; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fbfbfb;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links > li > a,
.nav-btn {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover,
.nav-btn:hover {
  background: rgba(0,141,185,0.08);
  color: var(--teal);
}

.chevron { font-size: 0.7rem; transition: transform var(--transition); }
.has-mega.active .chevron { transform: rotate(180deg); }

.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-actions .btn-ghost { color: var(--text-dark); border-color: rgba(0,0,0,0.25); }
.nav-actions .btn-ghost:hover { color: var(--teal); border-color: var(--teal); background: rgba(0,141,185,0.06); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* MEGA MENU */
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: none;
  gap: 0;
  min-width: 640px;
  padding: 28px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.has-mega.active .mega-menu { display: grid; }

.mega-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a {
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: color var(--transition);
}
.mega-col ul li a:hover { color: var(--teal); }

.mega-cta-col { display: flex; align-items: flex-end; }
.mega-cta-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
}
.mega-cta-card p { font-size: 0.9rem; margin-bottom: 12px; font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,141,185,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,141,185,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: var(--purple-glow);
  opacity: 0.22;
  top: -250px; right: -80px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: var(--teal);
  opacity: 0.18;
  bottom: -150px; left: -60px;
}

/* Two-column layout */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* ── LEFT COLUMN ────────────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-bright);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
  animation: pulsering-sm 2s ease-out infinite;
}
@keyframes pulsering-sm {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Headline */
.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Problem lines */
.hero-problem {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 8px;
  font-weight: 400;
}

/* Solution line */
.hero-solution {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}

/* CTA block */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: fit-content;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 32px rgba(255,118,3,0.3);
}
.btn-hero-cta:hover {
  background: #e56800;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,118,3,0.45);
}
.btn-hero-cta svg { flex-shrink: 0; transition: transform 0.2s; }
.btn-hero-cta:hover svg { transform: translateX(4px); }

.hero-cta-micro {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  padding-left: 4px;
  letter-spacing: 0.01em;
}

/* Proof strips */
.hero-proof-strips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.proof-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.proof-icon-red    { background: rgba(239,68,68,0.15);  color: #f87171; }
.proof-icon-orange { background: rgba(255,118,3,0.15);  color: var(--orange); }
.proof-icon-green  { background: rgba(34,197,94,0.15);  color: #4ade80; }

/* ── RIGHT COLUMN — Visual Stack ────────────────── */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: var(--purple-glow);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.hv-panel {
  position: absolute;
  width: 72%;
  top: 0; left: 0;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  opacity: 0;
  animation: floatIn 0.8s ease 0.3s forwards;
}
.hv-agent {
  position: absolute;
  width: 38%;
  bottom: 40px; right: 0;
  border-radius: 50%;
  box-shadow: 0 16px 48px rgba(130,67,234,0.4);
  opacity: 0;
  animation: floatIn 0.8s ease 0.5s forwards;
}
.hv-payments {
  position: absolute;
  width: 44%;
  bottom: 0; left: 10%;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  animation: floatIn 0.8s ease 0.7s forwards;
}

/* Floating status cards */
.hv-card {
  position: absolute;
  background: rgba(15,20,30,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  animation: floatIn 0.8s ease forwards;
}
.hv-card-booked  { top: 38%; right: -10px; animation-delay: 0.9s; }
.hv-card-revenue { top: 20%; right: 8%;    animation-delay: 1.1s; }

.hv-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-dot-green  { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.hv-dot-orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logos-track-wrapper {
  overflow: hidden;
  position: relative;
}
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollLogos 20s linear infinite;
  width: max-content;
}
.logos-track img {
  height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--transition);
}
.logos-track img:hover { filter: grayscale(0%); opacity: 1; }

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { padding: 100px 0; }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.problem-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.problem-list { display: flex; flex-direction: column; gap: 16px; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.problem-icon {
  width: 24px;
  height: 24px;
  background: rgba(229,71,71,0.12);
  color: #e54747;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.problem-right { display: flex; flex-direction: column; gap: 20px; }
.problem-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.problem-card-2 { border-left: 3px solid var(--orange); }

/* ============================================================
   GROWTH LEVERS
   ============================================================ */
.growth-levers { padding: 100px 0; }
.growth-levers-header { text-align: center; margin-bottom: 60px; }
.growth-levers-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.levers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lever-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
  cursor: default;
}
.lever-card:hover {
  background: rgba(0,141,185,0.12);
  border-color: var(--teal);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,141,185,0.2);
}

.lever-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  min-width: 56px;
}
.lever-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.lever-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 100px 0; }
.how-it-works h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hiw-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,141,185,0.12);
  border-color: var(--teal);
}
.hiw-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hiw-icon-1 { background: rgba(0,141,185,0.12); }
.hiw-icon-2 { background: rgba(255,118,3,0.12); }
.hiw-icon-3 { background: rgba(0,145,31,0.12); }
.hiw-icon img { width: 40px; height: 40px; object-fit: contain; }
.hiw-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.hiw-card p  { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   CREDIBILITY
   ============================================================ */
.credibility { padding: 100px 0; }
.credibility-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.credibility-text .section-label { color: var(--teal-bright); }
.credibility-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.credibility-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.credibility-text .btn-outline-white { margin-top: 12px; }

.credibility-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 480px;
  margin-bottom: 20px;
}
.credibility-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.credibility-logos-grid img {
  width: 100%;
  border-radius: 8px;
  filter: brightness(0.8);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; }
.testimonials h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,141,185,0.12);
  border-color: var(--teal);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span   { font-size: 0.85rem; color: var(--text-secondary); }

.review-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.review-score { font-size: 0.95rem; }
.review-note  { width: 100%; text-align: center; font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }

/* ============================================================
   WHO IT'S BUILT FOR
   ============================================================ */
.built-for { padding: 100px 0; background: var(--white); }
.built-for-inner { max-width: 680px; }
.built-for-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.built-for-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.built-for-cta-q { font-weight: 600; color: var(--text-dark); margin-bottom: 8px !important; }

/* ============================================================
   THREE WAYS TO GROW
   ============================================================ */
.three-ways { padding: 100px 0; }
.three-ways h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(0,141,185,0.2);
}
.plan-card-featured {
  border-color: var(--orange);
  background: rgba(255,118,3,0.08);
}
.plan-card-featured:hover { border-color: var(--orange); box-shadow: 0 20px 50px rgba(255,118,3,0.25); }

.plan-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.plan-badge-best { background: var(--orange); color: var(--white); }

.plan-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.plan-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ============================================================
   SECURITY SECTION
   ============================================================ */
.security-section { padding: 100px 0; }
.security-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.security-section .text-muted { margin-bottom: 56px; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.security-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.security-icon { font-size: 2rem; margin-bottom: 14px; }
.security-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.security-item p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resources-section { padding: 100px 0; background: var(--light-bg); }
.resources-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 48px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,141,185,0.1);
  border-color: var(--teal);
}
.resource-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.resource-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }

/* ============================================================
   PODCAST
   ============================================================ */
.podcast-section { padding: 100px 0; background: var(--dark-section); }
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.podcast-role { font-size: 0.85rem; color: var(--teal-bright); margin-bottom: 20px; font-weight: 500; }
.podcast-text > p:not(.podcast-role) { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.podcast-apps { display: flex; gap: 16px; align-items: center; }
.podcast-apps img { height: 28px; width: auto; filter: brightness(0.8); transition: filter var(--transition); }
.podcast-apps img:hover { filter: brightness(1); }
.podcast-image img { border-radius: var(--radius-lg); width: 100%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-heading {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 60px;
  color: var(--text-dark);
}
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--teal); transition: transform var(--transition); }
.faq-item[open] summary { background: rgba(0,141,185,0.05); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   DEMO CTA
   ============================================================ */
.demo-cta { padding: 100px 0; }
.demo-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.demo-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark-bg); color: var(--white); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--teal); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .levers-grid        { grid-template-columns: repeat(2, 1fr); }
  .plan-cards         { grid-template-columns: repeat(2, 1fr); }
  .security-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .credibility-inner  { grid-template-columns: 1fr; }
  .problem-inner      { grid-template-columns: 1fr; gap: 40px; }
  .podcast-inner      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .hero-content { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; gap: 40px; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 2.6rem; }
  .btn-hero-cta { width: 100%; justify-content: center; }

  .hiw-grid           { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .resources-grid     { grid-template-columns: 1fr; }
  .levers-grid        { grid-template-columns: 1fr; }
  .plan-cards         { grid-template-columns: 1fr; }
  .security-grid      { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; }
  .credibility-logos-grid { grid-template-columns: repeat(4, 1fr); }

  .mega-menu { display: none !important; }
}

/* ============================================================
   AI AGENT BUTTON + MODAL
   ============================================================ */

/* Teal pulsing AI button */
.btn-ai-agent {
  background: transparent;
  color: var(--teal-bright);
  border: 1.5px solid var(--teal-bright);
  position: relative;
  overflow: visible;
  gap: 10px;
}
.btn-ai-agent:hover {
  background: rgba(6,182,212,0.12);
  box-shadow: 0 0 24px rgba(6,182,212,0.35);
  transform: translateY(-2px);
}
.ai-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
  position: relative;
}
.ai-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal-bright);
  opacity: 0.6;
  animation: pulsering 1.8s ease-out infinite;
}
@keyframes pulsering {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Modal overlay */
.agent-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.agent-modal-overlay.open {
  display: flex;
}

/* Modal card */
.agent-modal {
  background: #111827;
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(6,182,212,0.15), 0 40px 100px rgba(0,0,0,0.5);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.agent-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  transition: color 0.2s;
}
.agent-modal-close:hover { color: var(--white); }

.agent-modal-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.agent-modal-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(6,182,212,0.4);
}
.agent-live-dot {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #111827;
}
.agent-live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulsering 1.8s ease-out infinite;
  opacity: 0.5;
}

.agent-modal h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.agent-modal > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Form */
.agent-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agent-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.agent-input-wrap:focus-within {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.agent-flag {
  padding: 0 14px;
  font-size: 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.agent-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 18px;
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-main);
}
.agent-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }

.agent-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.agent-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px !important;
}

/* Success state */
.agent-modal.success .agent-form { display: none; }
.agent-success-msg {
  display: none;
  padding: 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  color: #86efac;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 8px;
}
.agent-modal.success .agent-success-msg { display: block; }
