/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #f9f9f9;
  --text-secondary: rgba(249, 249, 249, 0.6);
  --text-muted: rgba(249, 249, 249, 0.35);
  --accent: #00e87b;
  --accent-dim: rgba(0, 232, 123, 0.15);
  --accent-glow: rgba(0, 232, 123, 0.4);
  --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 50%, #0a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #00e87b 0%, #00c9ff 100%);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ========================================
   CUSTOM CURSOR
======================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 232, 123, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo),
              border-color 0.3s ease;
}

.cursor-dot.hovering {
  width: 16px;
  height: 16px;
  background: var(--text-primary);
}

.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--text-primary);
}

/* ========================================
   LOADING SCREEN
======================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 60px;
  height: auto;
  opacity: 0;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  width: 32px;
  height: auto;
}

.navbar-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.navbar-cta {
  padding: 0.65rem 1.75rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.navbar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.navbar-cta:hover {
  color: var(--bg-primary);
}

.navbar-cta:hover::before {
  transform: scaleX(1);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: auto;
  padding: 10rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  opacity: 0;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 800px;
  overflow: hidden;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 1rem;
  opacity: 0;
}

.hero-subtitle-secondary {
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.hero-cta-wrap {
  opacity: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.75rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  box-shadow: 0 0 40px var(--accent-dim), 0 0 80px rgba(0, 232, 123, 0.1);
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 40px var(--accent-dim), 0 0 80px rgba(0, 232, 123, 0.1); }
  50% { box-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(0, 232, 123, 0.2); }
}

.hero-cta:hover {
  transform: scale(1.05);
}

.hero-cta .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-cta .arrow {
  display: inline-flex;
  transition: transform 0.3s var(--ease-out-expo);
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   SECTION COMMONS
======================================== */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ========================================
   PROBLEM SECTION
======================================== */
.problem {
  background: var(--bg-primary);
  overflow: hidden;
}

.problem .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.problem-visual {
  position: relative;
  opacity: 0;
}

.problem-visual img {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.problem-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-dim), transparent 50%);
  z-index: -1;
}

.problem-content {
  opacity: 0;
}

.problem-highlight {
  color: var(--text-primary);
  font-weight: 500;
}

/* Decorative floating elements */
.float-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.float-element.green {
  width: 300px;
  height: 300px;
  background: var(--accent-dim);
}

.float-element.blue {
  width: 200px;
  height: 200px;
  background: rgba(0, 201, 255, 0.08);
}

/* ========================================
   SOLUTION SECTION
======================================== */
.solution {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.solution::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.solution .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.solution-visual {
  position: relative;
  opacity: 0;
  order: 2;
}

.solution-visual img {
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.solution-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

.solution-content {
  opacity: 0;
  order: 1;
}

/* Feature pills */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--text-primary);
}

.feature-pill .icon {
  font-size: 1rem;
}

/* ========================================
   COST SECTION
======================================== */
.cost-section {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

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

.cost-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.cost-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cost-content {
  opacity: 0;
}

.cost-visual {
  position: relative;
  opacity: 0;
}

.cost-visual img {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.cost-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.1), transparent 50%);
  z-index: -1;
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works {
  background: var(--bg-primary);
  overflow: hidden;
}

.how-header {
  opacity: 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
}

.how-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-6px);
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.how-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.how-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.how-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.how-visual {
  max-width: 900px;
  margin: 0 auto 3rem;
  opacity: 0;
}

.how-visual img {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.how-bottom {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--accent-dim), rgba(0, 201, 255, 0.05));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  opacity: 0;
}

.how-bottom-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.how-bottom-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   GROWTH SECTION
======================================== */
.growth-section {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

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

.growth-header {
  text-align: center;
  opacity: 0;
}

.growth-visual {
  max-width: 900px;
  margin: 0 auto 3rem;
  opacity: 0;
}

.growth-visual img {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.growth-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.growth-stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
}

.growth-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.growth-stat-card:hover::before {
  opacity: 1;
}

.growth-stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.growth-stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.growth-stat-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.growth-stat-sublabel {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.growth-stat-value {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.growth-stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Testimonial */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-mark {
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  opacity: 0.3;
}

.testimonial-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  padding-left: 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2.5rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
  background: var(--bg-primary);
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  opacity: 0;
}

.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  text-align: center;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.pricing-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.pricing-feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.pricing-feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 16px;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.pricing-feature-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  box-shadow: 0 0 40px var(--accent-dim), 0 0 80px rgba(0, 232, 123, 0.1);
  text-align: center;
}

.pricing-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(0, 232, 123, 0.2);
}

.pricing-cta .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

/* ========================================
   STATS SECTION
======================================== */
.stats {
  background: var(--bg-primary);
  padding: 4rem 2rem;
  overflow: hidden;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 60%);
  opacity: 0.5;
}

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

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.final-cta-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.final-cta .hero-cta {
  font-size: 1.05rem;
  padding: 1.2rem 3rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img {
  width: 22px;
  height: auto;
}

.footer-brand span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

/* ========================================
   CONTACT FORM
======================================== */
.contact-form-wrap {
  max-width: 520px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-input.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border-subtle);
  border-radius: 5px;
  background: var(--bg-card);
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.form-checkbox:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}

.form-checkbox-label {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.form-checkbox-label a:hover {
  color: var(--text-primary);
}

.form-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, opacity 0.3s ease;
  box-shadow: 0 0 40px var(--accent-dim), 0 0 80px rgba(0, 232, 123, 0.1);
  margin-top: 0.5rem;
}

.form-submit:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(0, 232, 123, 0.2);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-submit .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.form-error-msg {
  font-size: 0.7rem;
  color: #ff4d4d;
  margin-top: 0.35rem;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

/* Success / Error states */
.form-status {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(0, 232, 123, 0.08);
  border: 1px solid rgba(0, 232, 123, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.2);
}

.form-status-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.form-status-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-status-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .problem .section-inner,
  .solution .section-inner,
  .cost-section .section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* On mobile: always text first, image second */
  .solution-content {
    order: 1;
  }

  .solution-visual {
    order: 2;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .growth-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-feature {
    flex-direction: row;
    text-align: left;
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
  }

  .navbar-logo img {
    width: 26px;
  }

  .navbar-logo span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .navbar-cta {
    padding: 0.5rem 1.1rem;
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 5rem 0 3rem;
  }

  .hero-content {
    padding: 0 1.5rem;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    text-align: left;
  }

  .hero-subtitle-secondary {
    margin-bottom: 1.75rem;
  }

  .hero-cta {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta .arrow svg {
    width: 15px;
    height: 15px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .section {
    padding: 2.5rem 1.25rem;
  }

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

  .section-text {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .problem .section-inner,
  .solution .section-inner,
  .cost-section .section-inner {
    gap: 1.5rem;
  }

  .how-grid {
    gap: 1rem;
  }

  .how-card {
    padding: 2rem 1.5rem;
  }

  .how-card-title {
    font-size: 1.1rem;
  }

  .how-card-text {
    font-size: 0.85rem;
  }

  .how-bottom {
    padding: 2rem 1.5rem;
  }

  .how-bottom-title {
    font-size: 1.15rem;
  }

  .how-bottom-text {
    font-size: 0.9rem;
  }

  .growth-stats-grid {
    gap: 1rem;
  }

  .growth-stat-card {
    padding: 2rem 1.5rem;
  }

  .growth-stat-number {
    font-size: 3rem;
  }

  .testimonial {
    padding: 2rem 1.5rem;
  }

  .testimonial-quote p {
    font-size: 1rem;
    padding-left: 2rem;
  }

  .testimonial-author {
    padding-left: 2rem;
  }

  .testimonial-mark {
    width: 28px;
    height: 28px;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

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

  .pricing-feature {
    flex-direction: row;
    text-align: left;
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }

  .pricing-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .pricing-feature-text {
    font-size: 0.9rem;
  }

  .pricing-cta {
    font-size: 0.85rem;
    padding: 1rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.5rem 1.25rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .features {
    gap: 0.5rem;
  }

  .feature-pill {
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
  }

  .final-cta {
    padding: 3rem 1.25rem;
  }

  .final-cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .final-cta-text {
    font-size: 0.95rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    margin-top: 2rem;
  }

  .form-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .form-submit {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .form-checkbox-label {
    font-size: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-inner > div {
    justify-content: center;
  }

  /* Hide custom cursor on touch devices */
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}

@media (max-width: 380px) {
  .hero {
    padding: 4.5rem 0 2.5rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-subtitle-secondary {
    margin-bottom: 1.25rem;
  }

  .hero-cta {
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
  }

  .navbar-logo span {
    font-size: 0.65rem;
  }

  .navbar-cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.65rem;
  }

  .feature-pill {
    font-size: 0.68rem;
    padding: 0.45rem 0.8rem;
  }
}

/* ========================================
   UTILITIES
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
