/* ============================================================
   BlueBee Balance — Main Stylesheet
   Dark theme, Electric Blue + Amber/Gold bee brand palette
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --bg-primary:     #0B0E1A;
  --bg-secondary:   #0F1323;
  --bg-card:        #141827;
  --bg-card-hover:  #1A2035;
  --border:         #1E2740;
  --border-light:   #2A3554;

  --blue:           #3B82F6;
  --blue-light:     #60A5FA;
  --blue-dark:      #1D4ED8;
  --gold:           #F59E0B;
  --gold-light:     #FCD34D;
  --gold-dark:      #D97706;
  --gold-hover:     #B45309;

  --text-primary:   #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted:     #6B7280;

  --success:        #10B981;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold:    0 0 30px rgba(245,158,11,0.25);
  --shadow-blue:    0 0 30px rgba(59,130,246,0.25);

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:      'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ===================== 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);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ===================== TYPOGRAPHY ===================== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 50%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

.hide-mobile {
  display: block;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===================== NAVIGATION ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11,14,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-bee {
  font-size: 24px;
  animation: beeBob 3s ease-in-out infinite;
}

@keyframes beeBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--gold); }

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

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
  margin-left: auto;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO SECTION ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,130,246,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(245,158,11,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Honeycomb grid pattern overlay */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66z' fill='none' stroke='rgba(59,130,246,0.05)' stroke-width='1'/%3E%3Cpath d='M28 100L0 84V52L28 36l28 16v32L28 100z' fill='none' stroke='rgba(59,130,246,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BEE MASCOT */
.bee-mascot-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.bee-mascot {
  width: 180px;
  height: 180px;
  animation: beeFly 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 40px rgba(59,130,246,0.4)) drop-shadow(0 4px 20px rgba(245,158,11,0.3));
}

@keyframes beeFly {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  25% { transform: translateY(-12px) rotate(2deg); }
  75% { transform: translateY(-6px) rotate(-1deg); }
}

.bee-svg .wing-left {
  animation: wingFlap 0.15s ease-in-out infinite alternate;
  transform-origin: 90px 75px;
}

.bee-svg .wing-right {
  animation: wingFlap 0.15s ease-in-out infinite alternate-reverse;
  transform-origin: 110px 75px;
}

@keyframes wingFlap {
  0% { transform: scaleY(1) skewX(-5deg); opacity: 0.5; }
  100% { transform: scaleY(0.5) skewX(5deg); opacity: 0.9; }
}

.bee-svg .bee-halo {
  animation: haloPulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes haloPulse {
  0%, 100% { r: 68; opacity: 0.2; }
  50% { r: 75; opacity: 0.5; }
}

.bee-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
  letter-spacing: 0.5px;
}

/* HERO HEADLINE */
.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-subline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: rgba(59,130,246,0.08);
}

.btn-outline.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

/* STATS STRIP */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  width: 100%;
  max-width: 820px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 24px;
}

/* ===================== MARKET GAP SECTION ===================== */
.gap-section {
  background: var(--bg-secondary);
  text-align: center;
}

.gap-diagram {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}

.gap-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.gap-left, .gap-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  opacity: 0.75;
}

.gap-left h3, .gap-right h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gap-brand {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.gap-left ul li, .gap-right ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.gap-left ul li:last-child, .gap-right ul li:last-child {
  border-bottom: none;
}

.gap-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.gap-center {
  background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(245,158,11,0.12) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.gap-bee {
  font-size: 48px;
  margin-bottom: 12px;
  animation: beeBob 3s ease-in-out infinite;
}

.gap-you {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.gap-brand-main {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.gap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.tag {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.gap-promise {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================== WHY US SECTION ===================== */
.why-section {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(245,158,11,0.25);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
  background: var(--bg-secondary);
  text-align: center;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.service-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,158,11,0.05) 100%);
  box-shadow: 0 0 40px rgba(245,158,11,0.15);
  transform: scale(1.03);
}

.service-featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 60px rgba(245,158,11,0.25);
}

.service-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.service-tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.tier-essential {
  background: rgba(59,130,246,0.15);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.25);
}

.tier-growth {
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
}

.tier-premium {
  background: rgba(139,92,246,0.15);
  color: #A78BFA;
  border: 1px solid rgba(139,92,246,0.25);
}

.service-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.service-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-features li i {
  color: var(--success);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-service {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  transition: var(--transition);
}

.btn-service:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: rgba(59,130,246,0.08);
}

.btn-service-primary {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.btn-service-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg-primary);
}

/* ===================== ADD-ONS SECTION ===================== */
.addons-section {
  text-align: center;
}

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

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  text-align: left;
}

.addon-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.addon-icon {
  width: 44px;
  height: 44px;
  background: rgba(59,130,246,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 18px;
  flex-shrink: 0;
}

.addon-info {
  flex: 1;
}

.addon-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.addon-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.addon-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-price span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===================== PERSONAS SECTION ===================== */
.personas-section {
  background: var(--bg-secondary);
  text-align: center;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
}

.persona-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.persona-avatar {
  font-size: 42px;
  margin-bottom: 16px;
}

.persona-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.persona-income {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.persona-card > p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.persona-pains {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.persona-pains li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.persona-pains li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 10px;
}

/* ===================== HOW IT WORKS ===================== */
.how-section {
  text-align: center;
}

.steps-container {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 60px auto 0;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  width: 64px;
  flex-shrink: 0;
  gap: 4px;
}

.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  flex-shrink: 0;
}

.bee-travel {
  font-size: 18px;
  animation: beeTravelAnim 2s ease-in-out infinite;
}

@keyframes beeTravelAnim {
  0%, 100% { transform: translateX(-4px); opacity: 0.6; }
  50% { transform: translateX(4px); opacity: 1; }
}

/* ===================== PRICING SECTION ===================== */
.pricing-section {
  background: var(--bg-secondary);
  text-align: center;
}

.pricing-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 14px 32px;
  margin-bottom: 56px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(245,158,11,0.06) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.pricing-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 8px;
}

.p-amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
}

.p-period {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features li i {
  color: var(--success);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  transition: var(--transition);
  margin-bottom: 12px;
}

.btn-pricing:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,158,11,0.08);
}

.btn-pricing-primary {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.btn-pricing-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg-primary);
}

.pricing-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ===================== TRUST SECTION ===================== */
.trust-section {
  text-align: center;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  text-align: left;
  margin-top: 56px;
  align-items: start;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition);
}

.credential-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(245,158,11,0.1);
}

.cred-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.cred-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.cred-text p {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateX(4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================== CHANNELS STRIP ===================== */
.channels-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.channels-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.channels-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.channel-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.channel-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.channel-badge i {
  color: var(--blue-light);
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  background: var(--bg-secondary);
  text-align: center;
}

.faq-container {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: left;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--gold);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: var(--transition);
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '×';
}

.faq-item summary:hover {
  color: var(--gold);
  background: rgba(245,158,11,0.04);
}

.faq-answer {
  padding: 16px 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 0;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,158,11,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59,130,246,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-bee-small {
  font-size: 52px;
  margin-bottom: 24px;
  animation: beeBob 3s ease-in-out infinite;
  display: block;
}

.cta-headline {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

a.contact-item:hover {
  color: var(--gold);
}

.contact-item i {
  color: var(--gold);
  font-size: 14px;
}

.contact-divider {
  color: var(--border-light);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-links h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-compliance h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-compliance p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-reg {
  margin-top: 16px;
  color: var(--text-muted) !important;
  font-size: 12px !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* ===================== SCROLL REVEAL UTILITY ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE — TABLET ===================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gap-diagram {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 40px auto 0;
  }

  .gap-center {
    order: -1;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .service-featured,
  .pricing-featured {
    transform: none;
  }

  .service-featured:hover,
  .pricing-featured:hover {
    transform: translateY(-6px);
  }

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

  .steps-container {
    flex-direction: column;
    max-width: 400px;
  }

  .step-connector {
    flex-direction: row;
    width: 100%;
    padding: 8px 0;
    transform: rotate(90deg) scaleX(0.5);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
    margin: 0;
  }
}

/* ===================== RESPONSIVE — MOBILE ===================== */
@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 800;
    padding: 80px 40px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    font-size: 24px;
    font-weight: 700;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .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);
  }

  .hide-mobile {
    display: none;
  }

  .bee-mascot {
    width: 140px;
    height: 140px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .personas-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-trust-strip {
    flex-direction: column;
    gap: 10px;
    border-radius: var(--radius-lg);
    padding: 20px;
  }

  .contact-details {
    flex-direction: column;
    gap: 12px;
  }

  .contact-divider {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    margin: 0 auto 36px;
  }

  .btn-primary.btn-large, .btn-outline.btn-large {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    padding: 20px 16px;
  }

  .channels-content {
    flex-direction: column;
    gap: 16px;
  }
}
