/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-primary: #E53935;
  --green-light: #FF5252;
  --green-dark: #B71C1C;
  --green-glow: rgba(229, 57, 53, 0.35);
  --green-glass: rgba(229, 57, 53, 0.08);
  --bg-dark: #0d0606;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-green: rgba(229, 57, 53, 0.25);
  --text-primary: #faf5f5;
  --text-secondary: rgba(250, 245, 245, 0.65);
  --text-muted: rgba(250, 245, 245, 0.4);
  --wa-green: #E53935;
  --wa-dark: #B71C1C;
  --accent-orange: #FF6B35;
  --accent-gold: #F7931E;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-green: 0 0 40px rgba(229, 57, 53, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== CANVAS BG ===== */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #E53935, #B71C1C);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(229, 57, 53, 0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(229, 57, 53, 0.6);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.45);
  }

  50% {
    box-shadow: 0 8px 50px rgba(229, 57, 53, 0.7), 0 0 0 8px rgba(229, 57, 53, 0.1);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 24px;
  background: rgba(13, 6, 6, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 6, 6, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--green-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-cta {
  flex-shrink: 0;
}

.btn-nav {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 850;
  background: rgba(13, 6, 6, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.mobile-cta {
  text-align: center;
  margin-top: 8px;
}

/* ===== SECTION BASE ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--green-glass);
  border: 1px solid var(--border-green);
  color: var(--green-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light), #ff8a80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--green-primary);
  top: -100px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #FF5252;
  bottom: 0;
  left: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: var(--accent-orange);
  top: 40%;
  left: 30%;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-glass);
  border: 1px solid var(--border-green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-microcopy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(229, 57, 53, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-green);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

/* Hero Visual */
.hero-visual {
  flex: 0 0 auto;
  width: 420px;
  position: relative;
  z-index: 1;
}

.phone-scene {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 90px 80px 90px;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 400px;
  border-radius: 40px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.3), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

.phone-3d {
  width: 260px;
  background: #1f0d0d;
  border-radius: 36px;
  border: 1px solid rgba(229, 57, 53, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
}

.phone-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
  padding: 16px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #8B1A1A;
  border-radius: 12px;
  margin-bottom: 12px;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.phone-avatar svg {
  width: 18px;
  height: 18px;
}

.phone-contact {
  flex: 1;
}

.phone-contact strong {
  display: block;
  font-size: 0.8rem;
  color: white;
  font-weight: 700;
}

.online-dot {
  font-size: 0.65rem;
  color: #ff8a80;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0;
  animation: msgAppear 0.4s ease forwards;
}

@keyframes msgAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.msg-in {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-out {
  background: #7B1A1A;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.relay-msg {
  background: linear-gradient(135deg, #7B1A1A, #9C2626);
}

.relay-tag {
  display: block;
  font-size: 0.6rem;
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 3px;
}

.chat-qualified {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.15), rgba(255, 82, 82, 0.08));
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.65rem;
  color: var(--green-light);
  text-align: center;
  font-weight: 600;
}

/* Float badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 6, 6, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
  font-size: 0.78rem;
  z-index: 2;
}

.float-badge span:first-child {
  font-size: 1.2rem;
}

.float-badge div {
  display: flex;
  flex-direction: column;
}

.float-badge strong {
  color: var(--text-primary);
  font-size: 0.78rem;
}

.float-badge small {
  color: var(--text-muted);
  font-size: 0.65rem;
}

.fb-1 {
  top: 20px;
  left: 0;
  animation: floatY 3s ease-in-out infinite;
}

.fb-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: floatY 3.5s ease-in-out infinite reverse;
}

.fb-3 {
  bottom: 80px;
  left: 0;
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fb-2 {
  animation: floatY2 3.5s ease-in-out infinite reverse;
}

@keyframes floatY2 {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

/* Funnel */
.funnel-3d {
  position: absolute;
  bottom: -10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.funnel-step {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid var(--border-green);
  backdrop-filter: blur(10px);
}

.fs-1 {
  background: rgba(229, 57, 53, 0.15);
  color: var(--green-light);
  width: 110px;
  text-align: center;
}

.fs-2 {
  background: rgba(229, 57, 53, 0.25);
  color: var(--green-primary);
  width: 90px;
  text-align: center;
}

.fs-3 {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #ffffff;
  width: 70px;
  text-align: center;
}

.funnel-arrow {
  color: var(--green-primary);
  font-size: 0.8rem;
}

/* ===== LOGOS SECTION ===== */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.logos-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.logos-track {
  overflow: hidden;
}

.logos-slide {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: logoScroll 25s linear infinite;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-company {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.logo-company:hover {
  color: var(--green-primary);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 100, 50, 0.6), transparent);
}

.pain-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 100, 50, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pain-stat {
  background: rgba(255, 100, 50, 0.1);
  border: 1px solid rgba(255, 100, 50, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FF6B35;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.solution-layout {
  display: flex;
  gap: 80px;
  align-items: center;
}

.solution-text {
  flex: 1;
}

.solution-text .section-tag {
  margin-bottom: 16px;
}

.solution-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.solution-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--green-glass);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.pillar div {
  display: flex;
  flex-direction: column;
}

.pillar strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.pillar span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 2px;
}

.micro-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Solution Card */
.solution-visual {
  flex: 0 0 420px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sc-dot.green {
  background: #00C853;
}

.sc-dot.yellow {
  background: #F7931E;
}

.sc-dot.red {
  background: #ef4444;
}

.sc-stats-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-glass);
}

.sc-stat {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--border-glass);
}

.sc-stat:last-child {
  border-right: none;
}

.sc-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-primary);
}

.sc-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sc-bar-chart {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-row span:first-child {
  width: 28px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.bar {
  height: 8px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  border-radius: 4px;
  flex: 1;
  transition: width 1s ease;
}

.bar-row span:last-child {
  width: 28px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}

.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sc-live {
  color: var(--green-primary);
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 16px;
}

.step-card {
  flex: 1;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #060d0a;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.step-icon {
  font-size: 2.2rem;
  margin: 16px 0 12px;
  display: block;
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.step-tag {
  display: inline-block;
  background: var(--green-glass);
  border: 1px solid var(--border-green);
  color: var(--green-primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.step-connector {
  color: var(--green-primary);
  font-size: 1.5rem;
  padding: 0 8px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.feature-card:hover::after {
  opacity: 1;
}

.feat-large {
  grid-column: span 1;
}

.feat-icon-3d {
  width: 56px;
  height: 56px;
  font-size: 1.8rem;
  background: var(--green-glass);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.15);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feat-highlight {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--green-glass);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.feat-highlight strong {
  color: var(--green-primary);
}

/* ===== COMPARISON ===== */
.comparison-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem;
}

.comparison-table th {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.col-relay {
  color: var(--green-primary);
  background: rgba(0, 200, 83, 0.04);
}

.col-relay th {
  background: rgba(0, 200, 83, 0.08);
}

.col-bot {
  color: var(--text-muted);
}

.col-bot th {
  background: rgba(255, 255, 255, 0.02);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.testi-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.testi-stat {
  text-align: center;
}

.ts-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-primary);
}

.ts-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.testi-featured {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(0, 230, 118, 0.04));
  border-color: var(--border-green);
}

.testi-quote {
  font-size: 4rem;
  color: var(--green-primary);
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.testi-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-stars {
  font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--green-primary);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--green-light);
  bottom: -100px;
  right: 10%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--accent-orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #060d0a;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 8px 40px rgba(0, 200, 83, 0.5);
  transition: var(--transition);
}

.btn-cta-main:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 60px rgba(0, 200, 83, 0.65);
}

.btn-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-wa-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(37, 211, 102, 0.5);
}

.cta-microcopy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-brand {
  flex: 1;
  min-width: 240px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--green-primary);
  border-color: var(--border-green);
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--green-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 360px;
  }

  .fb-1,
  .fb-2,
  .fb-3 {
    display: none;
  }

  .funnel-3d {
    position: static;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: nowrap;
  }

  .funnel-arrow {
    transform: rotate(-90deg);
  }

  .solution-layout {
    flex-direction: column;
    gap: 48px;
  }

  .solution-text .section-title {
    text-align: center;
  }

  .solution-text {
    text-align: center;
  }

  .solution-pillars {
    align-items: center;
  }

  .solution-visual {
    width: 100%;
    max-width: 500px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .testi-stats {
    gap: 24px;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 14px;
  }

  .footer-container {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 24px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .btn-cta-main {
    padding: 16px 24px;
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .funnel-3d { display: none; }
}


