/* ========================================
   GrowEdgeX Landing Page - Design System
   Brand Colors:
   Primary Edge Navy: #0B1E3F
   Neutral Slate: #475569
   Ink / Black: #0A0F1C
   Surface Mist: #F8FAFC
   Accent Teal (from logo): #3CBBB1
   Brand Tone: Formal, Professional, B2B
   ======================================== */

/* --- Google Fonts --- */
@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');

/* --- CSS Custom Properties --- */
:root {
  /* Primary - Edge Navy #0B1E3F */
  --navy-900: #0A0F1C;
  --navy-800: #091729;
  --navy-700: #0B1E3F;
  --navy-600: #102B56;
  --navy-500: #17396E;
  --navy-400: #1F4A8A;
  --navy-300: #3D6BB0;
  --navy-200: #7096CC;
  --navy-100: #B3C7E3;
  --navy-50: #E1EAF4;

  /* Accent Teal (from logo) */
  --teal-900: #1A6B64;
  --teal-800: #24897F;
  --teal-700: #2EA69B;
  --teal-600: #35B5A9;
  --teal-500: #3CBBB1;
  --teal-400: #5EC4BB;
  --teal-300: #80D0C8;
  --teal-200: #A8DED8;
  --teal-100: #D0EDE9;
  --teal-50: #ECF8F6;

  /* Neutrals - Slate #475569 / Ink #0A0F1C / Mist #F8FAFC */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Semantic */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 40px;
  --container-max: 1240px;
  --container-px: 24px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28, 43, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(28, 43, 74, 0.08);
  --shadow-lg: 0 8px 32px rgba(28, 43, 74, 0.1);
  --shadow-xl: 0 16px 48px rgba(28, 43, 74, 0.12);
  --shadow-teal: 0 8px 32px rgba(60, 187, 177, 0.25);
  --shadow-navy: 0 8px 32px rgba(28, 43, 74, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-out);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  box-sizing: border-box;
}

/* --- Typography --- */
.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title--lg {
  font-size: clamp(32px, 5vw, 48px);
}

.section-title--xl {
  font-size: clamp(36px, 6vw, 56px);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary::before {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(60, 187, 177, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
  background: var(--teal-50);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-700);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes count-up {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
  will-change: transform, opacity;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
  will-change: transform, opacity;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
  will-change: transform, opacity;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
  will-change: transform, opacity;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-700);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--teal-500);
}

/* Tubelight Navbar Wrapper */
.tubelight-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tubelight-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(11, 30, 63, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 30, 63, 0.08);
  padding: 6px 8px;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.tubelight-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 9999px;
  position: relative;
  transition: color 0.3s ease;
  z-index: 2;
  text-decoration: none;
}

.tubelight-nav-item svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.tubelight-nav-item:hover {
  color: var(--navy-900);
}

.tubelight-nav-item:hover svg {
  opacity: 0.9;
}

.tubelight-nav-item.active {
  color: var(--teal-700);
}

.tubelight-nav-item.active svg {
  opacity: 1;
  color: var(--teal-600);
}

/* Sliding active background indicator */
.tubelight-nav-indicator {
  position: absolute;
  height: calc(100% - 12px);
  background: rgba(60, 187, 177, 0.08);
  border-radius: 9999px;
  z-index: 1;
  pointer-events: none;
  /* Width and left position will be controlled by JS for smooth sliding */
  transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1), width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* The tubelight glow line at the bottom */
.tubelight-nav-indicator::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  background: var(--teal-500);
  border-radius: 9999px;
  box-shadow: 0 0 8px var(--teal-400), 0 0 16px var(--teal-300);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 13px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #FFFFFF 0%, var(--gray-50) 100%);
  overflow: hidden;
  padding: 85px 0 24px;
  border-bottom: 1px solid var(--gray-200);
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(60, 187, 177, 0.12);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(60, 187, 177, 0.08);
  bottom: -50px;
  left: -100px;
  animation-delay: 3s;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(60, 187, 177, 0.06);
  top: 50%;
  left: 50%;
  animation-delay: 5s;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 187, 177, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 187, 177, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 48px;
  min-height: calc(80vh - 140px);
}

.hero-content {
  animation: scaleIn 1s var(--ease-out);
  max-width: 820px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  position: relative;
}

.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal-500);
  animation: pulse-ring 2s ease-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.2vw, 58px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-cta-group .btn {
  border-radius: 8px !important;
  padding: 14px 28px;
  font-size: 15px;
}

.hero-image-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .hero .container {
    align-items: flex-start;
    text-align: left;
    min-height: auto;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    text-align: left;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }
  
  .hero-title {
    text-align: left;
  }
  
  .hero-description {
    margin-left: 0;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: flex-start;
  }
  
  .hero-image-wrapper {
    display: block;
    position: relative;
    z-index: 3;
    animation: scaleIn 1s var(--ease-out);
  }
  
  .hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    border: 1px solid var(--gray-200);
  }
}

.trust-banner-section {
  padding: 16px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-700);
  box-shadow: 0 2px 8px rgba(11, 30, 63, 0.03);
  transition: all 0.3s var(--ease-out);
}

.trust-point:hover {
  background: var(--gray-50);
  border-color: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(60, 187, 177, 0.12);
}

.trust-point svg {
  width: 16px;
  height: 16px;
  color: var(--teal-400);
  flex-shrink: 0;
}

/* Hero Form */
.hero-form-wrapper {
  animation: fadeInRight 1s var(--ease-out) 0.3s both;
}

.contact-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper {
  animation: scaleIn 0.8s var(--ease-out);
}

.hero-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300), var(--teal-500));
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(60, 187, 177, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: var(--navy-900);
}

.form-group select option {
  background: var(--white);
  color: var(--navy-900);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--navy-300);
  margin-top: 14px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  display: inline;
  vertical-align: -2px;
  margin-right: 4px;
}

/* ========================================
   DASHBOARD PREVIEW SECTION
   ======================================== */
.dashboard-preview-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .dashboard-preview-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.dashboard-preview-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-preview-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}

.dashboard-preview-image-wrapper:hover {
  transform: translateY(-4px);
}

.dashboard-preview-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ========================================
   WHY GROWEDGEX SECTION
   ======================================== */
.why-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  position: relative;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(60, 187, 177, 0.1), 0 1px 3px rgba(60, 187, 177, 0.05);
  border-color: var(--teal-300);
}

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

.why-card-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s var(--ease-out);
}

.why-card:hover .why-card-number {
  color: var(--teal-200);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-600);
  transition: all 0.3s var(--ease-out);
}

.why-card:hover .why-card-icon {
  background: var(--teal-500);
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.services-header .section-subtitle {
  margin: 16px auto 0;
}

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

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--navy-500));
  transition: width 0.4s var(--ease-out);
  border-radius: 2px 2px 0 0;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--teal-200);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(60, 187, 177, 0.08);
}

.service-card:hover::after {
  width: 60%;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   WHO WE HELP SECTION
   ======================================== */
.who-section {
  padding: var(--section-py) 0;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.who-section .hero-grid-pattern {
  opacity: 0.5;
}

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

.who-section .section-title {
  color: var(--white);
}

.who-section .section-subtitle {
  color: var(--navy-200);
}

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

.who-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(8px);
}

.who-card:hover {
  background: rgba(60, 187, 177, 0.08);
  border-color: rgba(60, 187, 177, 0.2);
  transform: translateY(-4px);
}

.who-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(60, 187, 177, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.who-card:hover .who-card-icon {
  background: var(--teal-500);
  color: var(--white);
}

.who-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.pain-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 30px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.pain-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.pain-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEE2E2, #FECACA);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-icon svg {
  width: 14px;
  height: 14px;
  color: var(--error);
}

.pain-item p {
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}

.pain-solution {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pain-solution::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(60, 187, 177, 0.08);
  filter: blur(60px);
}

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

.pain-solution h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pain-solution p {
  font-size: 16px;
  color: var(--navy-200);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pain-solution .btn {
  display: inline-flex;
}

.solution-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-features svg {
  width: 18px;
  height: 18px;
  color: var(--teal-400);
  flex-shrink: 0;
}

.solution-features span {
  font-size: 15px;
  color: var(--navy-100);
  font-weight: 500;
}

/* ========================================
   PROCESS / HOW WE SUPPORT SECTION
   ======================================== */
.process-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  position: relative;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--navy-300), var(--teal-500));
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal-500);
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
}

.process-step:hover .process-step-number {
  background: var(--teal-500);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: var(--shadow-teal);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   TOOLS SECTION
   ======================================== */
.tools-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.tools-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.tools-text .section-subtitle {
  margin-top: 16px;
}

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

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.tool-item:hover {
  background: var(--white);
  border-color: var(--teal-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tool-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.tool-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-700);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.comparison-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
}

.comparison-card--va {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.comparison-card--gex {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(60, 187, 177, 0.2);
  box-shadow: var(--shadow-navy);
}

.comparison-card--gex .comparison-badge {
  background: rgba(60, 187, 177, 0.15);
  color: var(--teal-400);
  border: 1px solid rgba(60, 187, 177, 0.2);
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: var(--gray-100);
  color: var(--gray-500);
}

.comparison-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.comparison-card--va h3 {
  color: var(--gray-600);
}

.comparison-card--gex h3 {
  color: var(--white);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comparison-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-card--va .comparison-item svg {
  color: var(--gray-400);
}

.comparison-card--gex .comparison-item svg {
  color: var(--teal-400);
}

.comparison-card--va .comparison-item span {
  font-size: 15px;
  color: var(--gray-500);
}

.comparison-card--gex .comparison-item span {
  font-size: 15px;
  color: var(--navy-100);
}

/* ========================================
   IMPACT SECTION
   ======================================== */
.impact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.impact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

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

.impact-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}

.impact-card:hover {
  background: var(--white);
  border-color: var(--teal-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.impact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
}

.impact-card:hover .impact-card-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-teal);
}

.impact-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   PROOF/CASE STUDIES SECTION
   ======================================== */
.proof-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.proof-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.proof-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}

.proof-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.proof-card-type {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.proof-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.proof-card-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 18px;
  margin-bottom: 6px;
}

.proof-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.proof-card .result-placeholder {
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px dashed var(--gray-300);
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 8px;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
  padding: 40px 0;
  background: linear-gradient(165deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section .hero-orb--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
}

.final-cta-section .hero-orb--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -50px;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-content .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta-description {
  font-size: 17px;
  color: var(--gray-200); /* Highly readable off-white/light gray on dark blue */
  line-height: 1.8;
  margin-bottom: 12px;
}

.final-cta-highlight {
  font-size: 16px;
  color: var(--teal-200); /* High contrast light teal on dark blue */
  font-weight: 600;
  margin-bottom: 40px;
}

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

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--gray-200) !important;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200) !important;
}

.faq-item:hover {
  border-color: var(--gray-300) !important;
}

.faq-item.active {
  background: transparent !important;
  border-color: var(--teal-500) !important;
  box-shadow: none !important;
}

.faq-question {
  width: 100%;
  padding: 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-700);
  transition: all 0.3s var(--ease-out);
}

.faq-question:hover {
  color: var(--teal-600);
  padding-left: 12px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.faq-item.active .faq-icon svg {
  color: var(--teal-500) !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 8px 24px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
/* ========================================
   MODERN ANIMATED FOOTER
   ======================================== */
.footer {
  background: #060b13; /* Even darker premium black/navy */
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
  position: relative;
  z-index: 2;
}

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

.footer-brand .nav-logo {
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-out);
}

.footer-brand .nav-logo:hover {
  transform: scale(1.02);
}

.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  transition: color 0.3s var(--ease-out);
}

.footer-brand p {
  color: #e2e8f0 !important;
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

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

.footer-col h4 {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col a {
  color: #94a3b8 !important;
  font-size: 14px;
  display: inline-block;
  transition: color 0.3s var(--ease-out);
}

.footer-col a:hover {
  color: var(--teal-400) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500) !important;
  font-size: 13px;
}

/* ====== SUCCESS MODAL ====== */
.form-success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 30, 63, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-success-overlay.show {
  display: flex;
}

.form-success-modal {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.5s var(--ease-spring);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-50);
  color: var(--teal-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success-modal h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.form-success-modal p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 28px;
}



/* ========================================
   BORDER BEAM ANIMATED EFFECT REMOVED
   ======================================== */
.why-card, .service-card, .who-card, .comparison-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ========================================
   GLOWING EFFECT (MOUSE PROXIMITY)
   ======================================== */
.why-card, .service-card, .who-card, .comparison-card, .pain-solution, .tool-item, .hero-form, .faq-item {
  background-repeat: no-repeat;
  background-attachment: local;
}

.why-card {
  background-image: radial-gradient(
    300px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.08),
    transparent 100%
  ) !important;
  background-color: var(--white) !important;
}

.service-card {
  background-image: radial-gradient(
    300px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.08),
    transparent 100%
  ) !important;
  background-color: var(--gray-50) !important;
}

.service-card:hover {
  background-color: var(--white) !important;
}

.who-card {
  background-image: radial-gradient(
    300px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.16),
    transparent 100%
  ) !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
}

.who-card:hover {
  background-color: rgba(60, 187, 177, 0.08) !important;
}

.comparison-card--va {
  background-image: radial-gradient(
    300px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.08),
    transparent 100%
  ) !important;
  background-color: var(--white) !important;
}

.comparison-card--gex {
  background-image: 
    radial-gradient(
      350px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
      rgba(60, 187, 177, 0.22),
      transparent 100%
    ),
    linear-gradient(165deg, var(--navy-800), var(--navy-700)) !important;
}

.pain-solution {
  background-image: 
    radial-gradient(
      450px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
      rgba(60, 187, 177, 0.22),
      transparent 100%
    ),
    linear-gradient(165deg, var(--navy-800), var(--navy-700)) !important;
}

.tool-item {
  background-image: radial-gradient(
    180px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.12),
    transparent 100%
  ) !important;
  background-color: var(--gray-50) !important;
}

.tool-item:hover {
  background-color: var(--white) !important;
}

.hero-form {
  background-image: radial-gradient(
    450px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.08),
    transparent 100%
  ) !important;
  background-color: var(--white) !important;
}

.faq-item {
  background-image: radial-gradient(
    300px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px),
    rgba(60, 187, 177, 0.06),
    transparent 100%
  ) !important;
  transition: all 0.3s ease;
}

/* ========================================
   HARDWARE ACCELERATION & OPTIMIZATION
   ======================================== */
@media (max-width: 1024px) {
  /* Disable heavy CPU/GPU blur animations on Chromebooks and Mobile Safari */
  .hero-orb {
    animation: none !important;
    filter: blur(40px) !important;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hardware accelerated transitions for elements */
.navbar, .btn, .why-card, .service-card, .who-card, .pain-item, .tool-item, .faq-answer {
  will-change: transform, opacity;
}

/* content-visibility optimization for off-screen rendering boost */
.services-section, .who-section, .pain-section, .process-section, .tools-section, .comparison-section, .faq-section, .final-cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* ========================================
   MOBILE & TABLET RESPONSIVENESS
   ======================================== */
@media (max-width: 991px) {
  :root {
    --section-py: 45px !important;
  }

  /* Header & Navigation */
  .tubelight-nav-wrapper,
  .nav-cta-wrapper {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  /* Mobile Nav Drawer */
  .mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 32px var(--container-px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
  }

  .mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-700);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .mobile-nav-link:hover {
    color: var(--teal-600);
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 40px !important;
    min-height: auto;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    min-height: auto;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 400px;
  }

  .hero-image-wrapper {
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Grids to 2 Columns */
  .why-grid,
  .services-grid,
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Force stack sections using Flexbox to avoid grid column span side-effects */
  .contact-grid,
  .dashboard-preview-grid,
  .pain-content,
  .tools-content,
  .comparison-grid,
  .proof-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .tools-text,
  .pain-list,
  .pain-solution {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Reset grid item column spans */
  .tool-item,
  .why-card,
  .service-card,
  .who-card,
  .pain-item,
  .comparison-card,
  .proof-card,
  .impact-card {
    grid-column: auto !important;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

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

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

  /* Timeline */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    padding: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 24px !important;
  }

  .hero {
    padding: 75px 0 16px !important;
  }

  .final-cta-section {
    padding: 50px 0 !important;
  }

  .footer {
    padding: 40px 0 20px !important;
  }

  .faq-question {
    padding: 14px 8px !important;
  }

  /* Hero typography */
  .hero-title {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
  
  .section-title--lg {
    font-size: 28px !important;
  }

  /* Grids to 1 Column */
  .why-grid,
  .services-grid,
  .who-grid,
  .tools-grid,
  .impact-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

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

  .hero-cta-group .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  /* Allow long CTA buttons to wrap cleanly on mobile to prevent horizontal overflow */
  .btn {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  h1, h2, h3, h4, h5, h6, p, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Fix Contact Form on Mobile */
  .hero-form {
    padding: 28px 20px !important;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px !important;
  }

  .btn {
    width: 100%;
    padding: 12px 16px !important;
  }
  
  .container {
    --container-px: 16px;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}


