/* =========================================================
   FLOOW AGENTS — Custom Styles
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Root Variables --- */
:root {
  --navy:       #0A0F1C;
  --navy-light: #111827;
  --cyan:       #06B6D4;
  --lime:       #39FF14;
  --purple:     #6366F1;
  --violet:     #8B5CF6;
  --charcoal:   #1E293B;
  --light-text: #F1F5F9;
  --muted:      #94A3B8;
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--charcoal);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* =========================================================
   NAVBAR
   ========================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-link {
  position: relative;
  color: rgba(241, 245, 249, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.63rem 1.5rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(6,182,212,0.08);
  transform: translateY(-2px);
}

/* =========================================================
   HERO — VIDEO BANNER
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  /* push content below fixed navbar (≈72px) */
  padding-top: 72px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,28,0.55) 0%,
    rgba(10,15,28,0.30) 40%,
    rgba(10,15,28,0.80) 100%
  );
  z-index: 1;
}

/* Animated glow blobs behind text */
.hero-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.28) 0%, transparent 70%);
  top: -100px; left: -80px;
  z-index: 1;
  animation: floatBlob 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.22) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  z-index: 1;
  animation: floatBlob 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatBlob {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.35);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(241,245,249,0.78);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta-group .btn-primary {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

.hero-cta-group .btn-secondary {
  font-size: 1rem;
  padding: 0.83rem 2rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.8rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
}

/* =========================================================
   SECTIONS — SHARED
   ========================================================= */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 9999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
  max-width: 580px;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem-section {
  background: #F8FAFC;
  padding: 4.5rem 0;
}

.ltv-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ltv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.ltv-industry {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.ltv-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ltv-bar {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  margin-top: 10px;
}

.problem-highlight-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1040 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.problem-highlight-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 70%);
}

/* =========================================================
   SOLUTION / FEATURES SECTION
   ========================================================= */
.features-section {
  background: var(--navy);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(99,102,241,0.06));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(6,182,212,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
}

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

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.hiw-section {
  padding: 4.5rem 0;
  background: #fff;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0.25;
  margin: 0 0.5rem;
  margin-top: -28px;
}

.step-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(6,182,212,0.35);
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.87rem;
  color: #64748B;
  line-height: 1.6;
}

/* =========================================================
   PRICING SECTION
   ========================================================= */
.pricing-section {
  background: #F8FAFC;
  padding: 4.5rem 0;
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1.5px solid rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, #1a1040 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 0 0 2px var(--cyan), 0 20px 60px rgba(6,182,212,0.25);
}

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

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-tier,
.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured span {
  color: #fff;
}

.pricing-card.featured .pricing-tier {
  color: var(--cyan);
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
}

.pricing-card.featured .pricing-feature-list li {
  color: rgba(241,245,249,0.8);
}

.check-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(6,182,212,0.15);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 1px;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pricing-outline {
  border: 1.5px solid rgba(0,0,0,0.15);
  color: var(--charcoal);
}

.btn-pricing-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-pricing-primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.35);
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.5);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: var(--navy);
  padding: 4.5rem 0;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.stars {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(241,245,249,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.author-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0f0a2e 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(241,245,249,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #060A14;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(241,245,249,0.6);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--cyan);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 3rem 0 1.5rem;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* =========================================================
   HAMBURGER BUTTON
   ========================================================= */
.hamburger-btn {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hamburger-btn span:nth-child(1) { width: 24px; }
.hamburger-btn span:nth-child(2) { width: 18px; }
.hamburger-btn span:nth-child(3) { width: 22px; }

@media (max-width: 1023px) {
  .hamburger-btn { display: flex; }
}

/* =========================================================
   MOBILE MENU OVERLAY
   ========================================================= */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200; /* above launch bar (1100) so close button is always clickable */
  background: rgba(10,15,28,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

#mobile-menu.open {
  transform: translateX(0);
}

#mobile-menu .nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(241,245,249,0.85);
  letter-spacing: -0.01em;
}

/* =========================================================
   GLOBAL MOBILE HELPERS
   ========================================================= */

/* Prevent overflow on all screens */
html, body { max-width: 100%; overflow-x: hidden; }

/* Tighten container on small screens */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}

/* Inline-styled section headings — scale down on mobile */
@media (max-width: 767px) {
  /* Page hero headings on inner pages */
  .hero-title[style] { font-size: clamp(1.75rem, 8vw, 2.6rem) !important; }

  /* Inner page sections with inline padding */
  section[style*="padding:9rem"] { padding-top: 7rem !important; padding-bottom: 3rem !important; }
  section[style*="padding:6rem"] { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  section[style*="padding:5rem"] { padding-top: 3rem !important; padding-bottom: 3rem !important; }

  /* Solutions alternating grid: remove direction:rtl on mobile */
  div[style*="direction:rtl"] { direction: ltr !important; }

  /* How-it-works step row: stack on mobile */
  div[style*="display:flex;gap:2rem"] {
    flex-direction: column;
    gap: 1rem;
  }

  /* Stat numbers inside inline styled grids */
  div[style*="font-size:2rem;font-weight:900"] { font-size: 1.5rem !important; }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   LAUNCH ANNOUNCEMENT BAR
   ========================================================= */
:root {
  --bar-height: 48px;
}

#launch-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #0d4f1f 0%, #064e3b 50%, #0d4f1f 100%);
  border-bottom: 1px solid rgba(74,222,128,0.3);
  height: var(--bar-height);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

#launch-bar.hidden {
  transform: translateY(-100%);
}

.launch-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.launch-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.launch-bar-rocket {
  font-size: 1rem;
  flex-shrink: 0;
}

.launch-bar-text {
  font-size: 0.82rem;
  color: rgba(240,255,244,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.launch-bar-text strong {
  color: #4ADE80;
}

.launch-bar-sep {
  margin: 0 6px;
  color: rgba(255,255,255,0.35);
}

.launch-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bar-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bar-cd-unit {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.bar-cd-unit span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  min-width: 22px;
  text-align: center;
}

.bar-cd-unit em {
  font-style: normal;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

.bar-cd-sep {
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  padding: 0 1px;
}

.launch-bar-cta {
  display: inline-flex;
  align-items: center;
  background: #4ADE80;
  color: #052e16;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.launch-bar-cta:hover {
  background: #86efac;
  transform: translateY(-1px);
}

.launch-bar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 6px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.launch-bar-close:hover {
  color: #fff;
}

/* body shifts down when bar is visible */
body.has-launch-bar #navbar {
  top: var(--bar-height);
}

/* Hero must clear launch bar + navbar height when bar is visible.
   72px = desktop navbar. Mobile navbar is ~61px so this has an 11px buffer. */
body.has-launch-bar .hero-section {
  padding-top: calc(var(--bar-height) + 72px);
}

/* On mobile the navbar is shorter (~61px) but bar can wrap to 3 rows,
   so add extra clearance to guarantee no overlap at any font/zoom level */
@media (max-width: 767px) {
  body.has-launch-bar .hero-section {
    padding-top: calc(var(--bar-height) + 68px);
  }
}

/* Mobile/tablet: navbar always shows dark background so it never
   visually blends into the hero section behind it */
@media (max-width: 1023px) {
  #navbar {
    background: rgba(10, 15, 28, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }
}

/* Active nav state */
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  width: 100%;
}

/* Nav beta pill */
.nav-beta-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  animation: pilsPulse 3s ease-in-out infinite;
}

@keyframes pilsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50%       { box-shadow: 0 0 0 4px rgba(74,222,128,0.15); }
}

/* =========================================================
   HERO — PRE-LAUNCH BADGE & VALUE STRIP
   ========================================================= */
.hero-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(6,182,212,0.15));
  border: 1px solid rgba(74,222,128,0.4);
  color: #4ADE80;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  animation: pilsPulse 3s ease-in-out infinite;
}

.hero-value-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.hero-value-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(241,245,249,0.85);
  font-weight: 500;
}

/* =========================================================
   LAUNCH COUNTDOWN SECTION
   ========================================================= */
.launch-countdown-section {
  background: linear-gradient(135deg, #052e16 0%, #064e3b 50%, #0d4f1f 100%);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(74,222,128,0.2);
}

.launch-countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.launch-countdown-left {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
  min-width: 260px;
}

.launch-fire {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.launch-countdown-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #4ADE80;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.launch-countdown-sub {
  font-size: 0.88rem;
  color: rgba(240,255,244,0.7);
  line-height: 1.6;
}

.launch-countdown-sub strong {
  color: #fbbf24;
}

.launch-countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  min-width: 64px;
}

.cd-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.cd-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.cd-colon {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(74,222,128,0.5);
  line-height: 1;
  padding-bottom: 12px;
}

.launch-cd-cta {
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Spots progress bar */
.spots-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: 16px;
  padding: 1.25rem 2rem;
}

.spots-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.spots-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240,255,244,0.8);
}

.spots-count {
  font-size: 0.85rem;
  color: rgba(240,255,244,0.7);
}

.spots-count strong {
  color: #F87171;
}

.spots-track {
  height: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ADE80, #F87171);
  border-radius: 9999px;
  transition: width 1s ease;
}

.spots-warning {
  font-size: 0.82rem;
  color: #FBBF24;
  text-align: center;
}

.spots-warning strong {
  color: #F87171;
}

/* =========================================================
   PRICING — NEW ELEMENTS
   ========================================================= */
.pricing-fomo-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #292200 100%);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-fomo-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.pricing-fomo-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.pricing-fomo-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #FBBF24;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.pricing-fomo-sub {
  font-size: 0.87rem;
  color: rgba(255,237,213,0.7);
  line-height: 1.65;
}

.pricing-fomo-sub strong {
  color: #F87171;
}

.pricing-fomo-sub em {
  font-style: italic;
  color: #fbbf24;
}

.pricing-fomo-spots {
  flex-shrink: 0;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 14px;
  padding: 1rem 1.5rem;
}

/* Price block (regular + beta) */
.pricing-price-block {
  margin: 0.5rem 0 0.25rem;
}

.pricing-regular-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing-regular-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-regular-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #94A3B8;
  text-decoration: line-through;
  text-decoration-color: #F87171;
  text-decoration-thickness: 2px;
}

.pricing-card.featured .pricing-regular-price,
.pricing-card.featured .pricing-regular-label {
  color: rgba(241,245,249,0.45);
}

.pricing-regular-period {
  font-size: 0.8rem;
  color: #94A3B8;
  text-decoration: line-through;
  text-decoration-color: #F87171;
}

.pricing-card.featured .pricing-regular-period {
  color: rgba(241,245,249,0.35);
}

.pricing-beta-row {
  margin-bottom: 4px;
}

.pricing-beta-badge {
  display: inline-block;
  background: linear-gradient(90deg, #4ADE80, #06B6D4);
  color: #052e16;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
}

.pricing-savings {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4ADE80;
  margin-top: 4px;
}

.pricing-card.featured .pricing-savings {
  color: #86efac;
}

/* Pricing bold FOMO warning */
.pricing-bold-warning {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(239,68,68,0.08));
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}

.pricing-bold-warning p {
  font-size: 0.92rem;
  color: #92400e;
  line-height: 1.65;
}

.pricing-bold-warning p strong {
  color: #b45309;
  font-weight: 800;
}

/* =========================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .launch-countdown-inner { gap: 1.25rem; padding: 1.75rem; }
  .launch-bar-text { font-size: 0.79rem; }
}

/* =========================================================
   RESPONSIVE — TABLET / SMALL LAPTOP (768px – 1023px)
   ========================================================= */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Give container more breathing room */
  .container { padding: 0 2rem; }

  /* --- PRICING GRID: 3-col → single-col centered ---
     Targets homepage + /pricing.php grids (both use gap-8) */
  .md\:grid-cols-3.gap-8 {
    grid-template-columns: 1fr !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Remove featured card scale in stacked layout */
  .pricing-card.featured {
    transform: none !important;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px) !important;
  }

  /* --- TESTIMONIALS / VALUES: 3-col → 2-col --- */
  .md\:grid-cols-3.gap-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* --- ABOUT / SOLUTIONS 2-col grid: reduce gap-16 (4rem) to gap-8 (2rem) ---
     gap-16 wastes too much space at tablet widths */
  .md\:grid-cols-2.gap-16 {
    gap: 2rem !important;
  }

  /* --- SECTION PADDING: slightly reduced for mid-size screens --- */
  .problem-section,
  .features-section,
  .hiw-section,
  .pricing-section,
  .testimonials-section { padding: 4.5rem 0; }

  /* Inner page hero sections (inline-styled) */
  section[style*="padding:9rem"] {
    padding-top: 7.5rem !important;
    padding-bottom: 4rem !important;
  }
}

/* =========================================================
   RESPONSIVE — LAPTOP (1024px – 1279px)
   ========================================================= */
@media (min-width: 1024px) and (max-width: 1279px) {

  /* Container: extra side padding for comfortable margins */
  .container { padding: 0 2rem; }

  /* LTV 6-col → 3-col: cards are too narrow (~149px) at 1024px in 6 columns */
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* LTV cards: compact padding in 3-col range */
  .ltv-card { padding: 1.2rem; }
  .ltv-value { font-size: 1.3rem; }

  /* Featured pricing card: reduce scale to prevent edge clipping at ~1024px */
  .pricing-card.featured {
    transform: scale(1.02) !important;
  }
  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-6px) !important;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 767px)
   ========================================================= */
@media (max-width: 767px) {

  /* --- LAUNCH BAR — stacked two-row layout on mobile --- */
  :root { --bar-height: 80px; } /* JS will override with actual height */

  #launch-bar { height: auto; padding: 0; }

  .launch-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 7px 12px 8px;
    text-align: center;
  }

  .launch-bar-left {
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 4px;
  }

  .launch-bar-rocket { display: none; }

  .launch-bar-text {
    font-size: 0.71rem;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .launch-bar-right {
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .bar-countdown { gap: 2px; }
  .bar-cd-unit span { font-size: 0.78rem; min-width: 17px; }
  .bar-cd-unit em { display: none; }
  .bar-cd-sep { font-size: 0.75rem; }

  .launch-bar-cta {
    font-size: 0.68rem;
    padding: 0.25rem 0.7rem;
  }

  /* Close button: absolute top-right so it doesn't push layout */
  .launch-bar-close {
    position: absolute;
    top: 6px;
    right: 8px;
  }

  /* --- NAVBAR --- */
  #navbar { padding-top: 0.6rem; padding-bottom: 0.6rem; }

  /* --- HERO SECTION --- */
  .hero-section {
    /* Let content dictate height on mobile — avoids clipping title or buttons.
       min-height keeps the full-screen feel when content is short enough. */
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
    padding-bottom: 4rem; /* room for scroll indicator + breathing space */
  }

  .hero-content {
    padding: 1.5rem 1.25rem 2rem; /* top gap between navbar and first element */
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge,
  .hero-launch-badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-value-strip {
    gap: 0.45rem 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-value-strip span { font-size: 0.76rem; }

  .hero-cta-group { gap: 0.75rem; }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    font-size: 0.92rem;
    padding: 0.78rem 1.4rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta-group { flex-direction: column; align-items: stretch; }

  /* --- STATS BAR --- */
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 1.6rem; }

  /* --- SECTION SHARED --- */
  .problem-section  { padding: 3.5rem 0; }
  .features-section { padding: 3.5rem 0; }
  .hiw-section      { padding: 3.5rem 0; }
  .pricing-section  { padding: 3.5rem 0; }
  .testimonials-section { padding: 3.5rem 0; }
  .cta-section      { padding: 4rem 0; }

  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* --- LAUNCH COUNTDOWN SECTION --- */
  .launch-countdown-section { padding: 1.75rem 0; }

  .launch-countdown-inner {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 14px;
    margin-bottom: 1rem;
  }

  .launch-countdown-left { gap: 0.75rem; }
  .launch-fire { font-size: 1.75rem; }
  .launch-countdown-heading { font-size: 1rem; }
  .launch-countdown-sub { font-size: 0.82rem; }

  .launch-countdown-timer { justify-content: center; gap: 6px; }
  .cd-block { min-width: 52px; padding: 0.6rem 0.7rem; }
  .cd-num { font-size: 1.5rem; }
  .cd-colon { font-size: 1.4rem; padding-bottom: 10px; }

  .launch-cd-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.7rem 1rem;
  }

  /* Spots bar */
  .spots-bar { padding: 1rem 1.25rem; }
  .spots-warning { font-size: 0.78rem; }

  /* --- LTV GRID --- */
  .ltv-card { padding: 1rem; }
  .ltv-value { font-size: 1.15rem; }
  .ltv-industry { font-size: 0.82rem; }

  /* --- FEATURE CARDS --- */
  .feature-card { padding: 1.5rem; }

  /* --- STEP CARDS --- */
  .step-connector { display: none; }
  .step-card { padding: 1.5rem 1.25rem; }

  /* --- PRICING --- */
  .pricing-card { padding: 1.75rem 1.5rem; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .pricing-price { font-size: 2.4rem; }

  .pricing-fomo-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
  }
  .pricing-fomo-spots { align-self: flex-start; }
  .pricing-bold-warning { padding: 1.1rem 1.25rem; }
  .pricing-bold-warning p { font-size: 0.85rem; }

  /* --- TESTIMONIALS --- */
  .testimonial-card { padding: 1.5rem; }

  /* --- CTA --- */
  .cta-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .cta-sub { font-size: 0.95rem; }

  /* --- BUTTONS (CTA section) --- */
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.97rem !important;
    padding: 0.85rem 1.5rem !important;
  }

  /* --- FOOTER --- */
  .site-footer { padding: 3rem 0 1.5rem; }

  /* --- MOBILE MENU --- */
  #mobile-menu { gap: 1.5rem; }
  #mobile-menu .nav-link { font-size: 1.35rem; }
}


/* =========================================================
   ROI CALCULATOR SECTION
   ========================================================= */
.roi-calc-section {
  background: #F8FAFC;
  padding: 4.5rem 0;
}

/* --- Tab Buttons --- */
.roi-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.roi-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #CBD5E1;
  background: #fff;
  color: #64748B;
  transition: all 0.2s ease;
}

.roi-tab:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.roi-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* --- Outer Wrapper: 2 columns --- */
.roi-calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,15,28,0.12);
}

/* --- Left: Inputs --- */
.roi-inputs {
  background: #fff;
  padding: 2.5rem;
}

.roi-panel {
  display: none;
}
.roi-panel.active {
  display: block;
}

.roi-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.roi-field {
  margin-bottom: 1.5rem;
}

.roi-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.roi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.roi-field-header label {
  margin-bottom: 0;
}

.roi-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6,182,212,0.08);
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  min-width: 52px;
  text-align: center;
}

/* Custom Slider */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 9999px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--cyan);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.2);
}

.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--cyan);
  cursor: pointer;
}

.roi-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #94A3B8;
  margin-top: 4px;
}

/* Number input pair */
.roi-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.roi-number {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1E293B;
  background: #F8FAFC;
  outline: none;
  transition: border-color 0.2s ease;
}

.roi-number:focus {
  border-color: var(--cyan);
  background: #fff;
}

/* --- Right: Results Panel --- */
.roi-results {
  background: linear-gradient(160deg, #0A0F1C 0%, #111827 60%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

.roi-results::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.roi-results::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.roi-results-inner {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.roi-results-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  width: fit-content;
}

.roi-primary-stat {
  margin-bottom: 1.5rem;
}

.roi-primary-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(241,245,249,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.roi-primary-value {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.3s ease;
}

.roi-secondary-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.roi-secondary-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.roi-secondary-label {
  font-size: 0.75rem;
  color: rgba(241,245,249,0.45);
  margin-bottom: 0.25rem;
}

.roi-secondary-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.roi-disclaimer {
  font-size: 0.75rem;
  color: rgba(241,245,249,0.35);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.roi-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 1rem;
}

.roi-cta-btn:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
}

.roi-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(241,245,249,0.45);
  justify-content: center;
}

.roi-proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  display: inline-block;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* --- ROI Responsive --- */
@media (max-width: 1023px) {
  .roi-calculator-wrap {
    grid-template-columns: 1fr;
  }
  .roi-results {
    border-radius: 0 0 20px 20px;
  }
  .roi-inputs {
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 767px) {
  .roi-calc-section {
    padding: 4.5rem 0;
  }
  .roi-tabs {
    gap: 0.5rem;
  }
  .roi-tab {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .roi-inputs {
    padding: 1.75rem;
  }
  .roi-results-inner {
    padding: 1.75rem;
  }
  .roi-primary-value {
    font-size: 2.5rem;
  }
  .roi-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
