/* =============================
   ROOT & DESIGN TOKENS — Digitechzo Theme
   ============================= */
:root {
  /* Digitechzo Official Colors */
  --green-primary: #4EB028;
  --green-bright: #62C436;
  --green-dark: #3B891F;
  --green-darker: #296414;
  --green-glow: rgba(78, 176, 40, 0.25);
  --green-gradient: linear-gradient(135deg, #4EB028 0%, #3B891F 100%);
  --green-gradient-hover: linear-gradient(135deg, #62C436 0%, #4EB028 100%);
  --green-gradient-wide: linear-gradient(135deg, #62C436 0%, #4EB028 50%, #3B891F 100%);

  /* Backgrounds */
  --bg-main: #FFFFFF;
  --bg-light: #F5FAF2;
  --bg-lighter: #F0F7EC;
  --bg-dark: #1F4513;
  --bg-dark2: #162F0D;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F5FAF2;
  --bg-glass: rgba(78, 176, 40, 0.05);

  /* Text */
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;

  /* Borders */
  --border-subtle: #E5E7EB;
  --border-green: rgba(78, 176, 40, 0.3);
  --border-green-strong: rgba(78, 176, 40, 0.5);

  /* Fonts */
  --font-heading: 'Manrope', sans-serif;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-green: 0 8px 32px rgba(78, 176, 40, 0.25);
  --shadow-green-lg: 0 16px 48px rgba(78, 176, 40, 0.3);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================
   UTILITY CLASSES
   ============================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 176, 40, 0.1);
  border: 1px solid var(--border-green);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gradient-text {
  background: var(--green-gradient-wide);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================
   BUTTONS
   ============================= */
:not(.navbar-custom) .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

:not(.navbar-custom) .btn-primary {
  background: var(--green-gradient);
  color: white;
  box-shadow: var(--shadow-green);
}

:not(.navbar-custom) .btn-primary:hover {
  background: var(--green-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}

:not(.navbar-custom) .btn-ghost {
  background: rgba(78, 176, 40, 0.08);
  color: var(--green-dark);
  border: 2px solid var(--border-green);
}

:not(.navbar-custom) .btn-ghost:hover {
  background: rgba(78, 176, 40, 0.15);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

/* Hero Book Consultation Button Custom Style */
#hero-book-btn {
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
  border: 2px solid var(--green-primary) !important;
  box-shadow: var(--shadow-sm);
}

#hero-book-btn:hover {
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
  border-color: var(--green-bright) !important;
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}


:not(.navbar-custom) .btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--border-green-strong);
}

:not(.navbar-custom) .btn-outline:hover {
  background: rgba(78, 176, 40, 0.1);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

:not(.navbar-custom) .btn-dark {
  background: var(--bg-dark);
  color: white;
  border: 2px solid var(--green-primary);
}

:not(.navbar-custom) .btn-dark:hover {
  background: var(--green-gradient);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

:not(.navbar-custom) .btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

:not(.navbar-custom) .btn-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow-green); }
  50% { box-shadow: 0 8px 48px rgba(78, 176, 40, 0.5), 0 0 60px rgba(78, 176, 40, 0.2); }
}

/* =============================
   ANIMATIONS
   ============================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.fade-in-right { animation: fadeInRight 0.9s ease forwards; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }

/* =============================
   TOP ANNOUNCEMENT BAR
   ============================= */
.top-bar {
  background: var(--green-gradient);
  color: white;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Custom Navbar styles removed to prevent conflicts with global navbar */

/* =============================
   HERO SECTION
   ============================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #FFFFFF 0%, #F5FAF2 50%, #EBF6E4 100%);
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78,176,40,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62,196,54,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatReverse 8s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(78,176,40,0.08) 0%, transparent 70%);
  top: 50%;
  left: 35%;
  animation: float 12s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78,176,40,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,176,40,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  max-width: 960px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 176, 40, 0.1);
  border: 1px solid var(--border-green);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  max-width: 840px;
}

.animated-bot-emoji {
  display: inline-block;
  animation: botBounce 2.6s ease-in-out infinite;
  transform-origin: center bottom;
  margin: 0 4px;
}

@keyframes botBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-9px) rotate(-8deg) scale(1.12);
  }
  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(-6px) rotate(8deg) scale(1.08);
  }
}

.gradient-text-shine {
  background: linear-gradient(135deg, #4EB028 0%, #62C436 45%, #3B891F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-hook-chips {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(78, 176, 40, 0.08);
  border: 1px solid var(--border-green);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(78, 176, 40, 0.08);
}

.hook-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-dark);
}

.hook-chip-dot {
  color: var(--green-primary);
  opacity: 0.5;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0 auto 36px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

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

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 600;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-green);
  box-shadow: var(--shadow-green-lg);
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.card-stats {
  bottom: -20px;
  left: -24px;
  animation: float 6s ease-in-out infinite;
}

.card-ai {
  top: 24px;
  right: -24px;
  animation: floatReverse 7s ease-in-out infinite;
}

.card-roi {
  bottom: 60px;
  right: -18px;
  animation: float 5s ease-in-out infinite;
  animation-delay: -2s;
}

.fc-icon { font-size: 1.4rem; line-height: 1; }

.fc-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fc-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(78,176,40,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.scroll-dot {
  width: 5px;
  height: 18px;
  background: var(--green-gradient);
  border-radius: 3px;
  animation: float 2s ease-in-out infinite;
}

/* =============================
   LOGOS BAR
   ============================= */
.logos-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-light);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 20px;
}

.logos-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logos-inner {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.logo-item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.logo-item:hover { color: var(--green-dark); }

.logo-item-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.logo-item-brand strong {
  color: var(--green-dark);
  font-weight: 800;
}

.logo-item-brand:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* =============================
   INTRO SECTION
   ============================= */
.intro-section { background: var(--bg-main); }

.intro-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

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

.intro-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 600;
}

.intro-feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(78, 176, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}

.stats-card {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green-lg);
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-gradient);
}

.stats-card::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(78,176,40,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-item {
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--green-gradient-wide);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
}

.stat-plus, .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-bright);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 6px;
}

.stat-divider {
  grid-column: span 2;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* =============================
   SERVICES SECTION
   ============================= */
.services-section {
  background: var(--bg-light);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-card-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(78,176,40,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-card-glow { opacity: 1; }

.service-card:hover {
  border-color: var(--border-green-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
  background: var(--bg-card-hover);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(78, 176, 40, 0.1);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(78, 176, 40, 0.18);
  border-color: var(--green-primary);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 700;
  padding: 7px 12px;
  background: rgba(78, 176, 40, 0.08);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.benefit-dot {
  width: 6px; height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--green-primary); gap: 8px; }

/* =============================
   WHY US SECTION
   ============================= */
.why-section { background: var(--bg-main); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-card:hover::before { transform: scaleX(1); }

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

.why-icon {
  width: 48px; height: 48px;
  background: rgba(78, 176, 40, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(78, 176, 40, 0.2);
  color: var(--green-primary);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-green);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green-gradient);
}

.stats-bar-item {
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-bar-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.stats-bar-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--green-gradient-wide);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stats-bar-suffix {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
}

.stats-bar-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 3px;
  white-space: nowrap;
}
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 8px;
}

.stats-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
}

/* =============================
   PROCESS SECTION
   ============================= */
.process-section { background: var(--bg-light); }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 10px 0;
}

.process-line { display: none; }

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 56px;
  padding-top: 4px;
}

.step-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.step-content:hover {
  border-color: var(--border-green-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.step-icon {
  width: 40px; height: 40px;
  background: rgba(78, 176, 40, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-content p {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.step-duration {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(78, 176, 40, 0.1);
  border: 1px solid var(--border-green);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* =============================
   BENEFITS SECTION
   ============================= */
.benefits-section { background: var(--bg-main); }

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

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,176,40,0.04) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

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

.benefit-card:hover {
  border-color: var(--border-green-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}

.benefit-icon-wrap {
  width: 68px; height: 68px;
  background: rgba(78, 176, 40, 0.08);
  border: 1px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.benefit-card:hover .benefit-icon-wrap {
  background: rgba(78, 176, 40, 0.18);
  border-color: var(--green-primary);
  transform: scale(1.07);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =============================
   CASE STUDIES
   ============================= */
.cases-section { background: var(--bg-light); }

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

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green-strong);
  box-shadow: var(--shadow-green);
}

.case-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.case-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img { transform: scale(1.05); }

.case-tag-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.case-body { padding: 24px; }

.case-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.case-detail {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-detail-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 3px;
}

.case-detail p {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.65;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.case-result-item {
  background: rgba(78, 176, 40, 0.05);
  padding: 14px 8px;
  text-align: center;
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.result-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 4px;
}

/* =============================
   FAQ SECTION
   ============================= */
.faq-section { background: var(--bg-main); }

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-green-strong);
  box-shadow: 0 4px 16px rgba(78,176,40,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  transition: var(--transition);
}

/* .faq-question:hover removed as per request */

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* =============================
   CTA SECTION
   ============================= */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
  background: var(--bg-dark);
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 500px; height: 500px;
  background: rgba(78, 176, 40, 0.15);
  top: -100px; right: -100px;
}

.cta-orb-2 {
  width: 400px; height: 400px;
  background: rgba(62, 196, 54, 0.1);
  bottom: -100px; left: -100px;
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 18px 0 22px;
  color: white;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-section .section-tag {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* CTA Button overrides for dark bg */
.cta-section :not(.navbar-custom) .btn-outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}

.cta-section :not(.navbar-custom) .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cta-section :not(.navbar-custom) .btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

.cta-section :not(.navbar-custom) .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

/* =============================
   FOOTER
   ============================= */
.footer {
  background: var(--bg-dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 36px;
}

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

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 14px 0 22px;
  max-width: 260px;
}

.footer-socials { display: flex; gap: 10px; }

.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(78, 176, 40, 0.2);
  border-color: var(--green-primary);
  color: var(--green-bright);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green-bright); }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--green-bright);
  font-weight: 700;
  background: rgba(78, 176, 40, 0.1);
  border: 1px solid rgba(78, 176, 40, 0.25);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-top: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* Logo icon color overrides for footer */
.footer .logo-text { color: white; }

/* =============================
   BACK TO TOP
   ============================= */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-gradient);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-green);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green-lg);
}

/* =============================
   SCROLL PROGRESS BAR
   ============================= */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--green-gradient);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.2rem); }
  .desktop-only-br { display: none !important; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-bar-divider { display: none; }
  .cases-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Convert single hook-chips pill to individual tags on mobile to prevent tall line-wrapping */
  .hero-hook-chips {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hook-chip {
    background: rgba(78, 176, 40, 0.08);
    border: 1px solid var(--border-green);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
  }
  .hook-chip-dot {
    display: none;
  }

  .section { padding: 68px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-bar-divider { display: none; }
  .intro-features { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 36px;
    padding: 0 16px;
  }
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
  }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .card-stats { bottom: -10px; left: -10px; }
  .card-ai { top: 10px; right: -10px; }
  .card-roi { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem !important; line-height: 1.3 !important; }
  .section-title { font-size: 1.75rem; }
  .cta-title { font-size: 2rem; }
  .stats-bar { display: grid; grid-template-columns: 1fr; }
  .stats-bar-divider { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-trust {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 0 auto !important;
  }
  .footer-links { flex-direction: column; gap: 8px; }
}


/* Navbar Overrides to match main website layout width */
header .container, footer .container {
  max-width: 1320px !important;
}

/* Sticky Bottom Floating Bar Styles */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--green-primary);
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  text-align: left;
}

.sticky-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.sticky-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

@media (max-width: 600px) {
  .sticky-text { display: none; }
  .sticky-container { justify-content: center; }
}