/* ============================================================
   ARGONOVA — STYLES.CSS
   Palette: Chlorophyll · Tone: Retro-Futuristic Agri-Tech
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --bg-deep:       #050F02;
  --bg-dark:       #0A1F02;
  --bg-mid:        #0F2A04;
  --bg-card:       rgba(15, 42, 4, 0.6);
  --green-neon:    #B8F369;
  --green-mid:     #2D6A1E;
  --green-light:   #F0FFF0;
  --green-glow:    rgba(184, 243, 105, 0.15);
  --green-glow-md: rgba(184, 243, 105, 0.25);
  --green-glow-lg: rgba(184, 243, 105, 0.4);
  --text-primary:  #E8F5E0;
  --text-secondary:#8FAF7A;
  --text-muted:    #4A6B3A;
  --border:        rgba(184, 243, 105, 0.12);
  --border-hover:  rgba(184, 243, 105, 0.35);
  --font-display:  'Bricolage Grotesque', sans-serif;
  --font-body:     'Spline Sans', sans-serif;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s 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;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-neon);
  color: var(--bg-deep);
  box-shadow: 0 0 20px rgba(184,243,105,0.3);
}
.btn--primary:hover {
  background: #ceff7a;
  box-shadow: 0 0 35px rgba(184,243,105,0.55);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--green-neon);
  border-color: var(--border-hover);
  background: var(--green-glow);
}
.btn--outline {
  background: transparent;
  color: var(--green-neon);
  border: 1.5px solid var(--border-hover);
}
.btn--outline:hover {
  background: var(--green-glow);
  box-shadow: 0 0 20px rgba(184,243,105,0.15);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--bg-deep);
  color: var(--green-neon);
  border: 1.5px solid var(--green-neon);
}
.btn--dark:hover {
  background: var(--green-neon);
  color: var(--bg-deep);
  box-shadow: 0 0 30px rgba(184,243,105,0.4);
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--green-light);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-neon);
  background: var(--green-glow);
  border: 1px solid var(--border-hover);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--green-neon);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.section-diagonal {
  height: 60px;
  position: relative;
  overflow: hidden;
}
.section-diagonal--top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}
.section-diagonal--bottom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-neon);
  background: var(--green-glow);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(5, 15, 2, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--green-glow);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green-neon);
  transition: var(--transition);
}
.nav__link:hover { color: var(--green-neon); }
.nav__link:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,243,105,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,243,105,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,243,105,0.4), transparent);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero > .container,
.hero > * { position: relative; z-index: 1; }

/* Hero uses a custom inner layout */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__canvas,
.hero__grid-overlay,
.hero__scan-line,
.hero__scroll-hint {
  position: fixed;
}
.hero__canvas,
.hero__grid-overlay,
.hero__scan-line {
  position: absolute;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: rgba(15,42,4,0.8);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--green-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-neon);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--green-neon); transform: scale(1); }
  50%       { box-shadow: 0 0 16px var(--green-neon); transform: scale(1.2); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero__title-accent {
  color: var(--green-neon);
  text-shadow: 0 0 40px rgba(184,243,105,0.4);
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-neon), transparent);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-neon);
  line-height: 1;
}
.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-neon);
  line-height: 1;
  display: inline;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,106,30,0.5), transparent 70%);
  top: -60px; right: -40px;
  animation: orbFloat 6s ease-in-out infinite;
}
.hero__orb--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184,243,105,0.2), transparent 70%);
  bottom: -40px; left: 20px;
  animation: orbFloat 8s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.hero__dashboard-card {
  position: relative;
  z-index: 2;
  background: rgba(10, 31, 2, 0.75);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 340px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(184,243,105,0.08), 0 24px 48px rgba(0,0,0,0.4);
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.dash-card__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.dash-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-card__dot--green  { background: #B8F369; box-shadow: 0 0 6px #B8F369; }
.dash-card__dot--yellow { background: #FFD700; }
.dash-card__dot--red    { background: #FF5F57; }
.dash-card__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.dash-card__score {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.dash-card__ring {
  width: 120px; height: 120px;
}
.dash-card__ring-fill {
  stroke-dashoffset: 47;
  filter: drop-shadow(0 0 8px rgba(184,243,105,0.6));
  animation: ringDraw 2s ease-out forwards;
}
@keyframes ringDraw {
  from { stroke-dashoffset: 314; }
  to   { stroke-dashoffset: 47; }
}
.dash-card__score-inner {
  position: absolute;
  text-align: center;
}
.dash-card__score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-neon);
  line-height: 1;
}
.dash-card__score-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.dash-card__metrics { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.dash-card__metric {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-card__metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  width: 60px;
  flex-shrink: 0;
}
.dash-card__bar {
  flex: 1;
  height: 4px;
  background: rgba(184,243,105,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.dash-card__bar-fill {
  height: 100%;
  background: var(--green-neon);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(184,243,105,0.5);
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}
.dash-card__bar-fill--warn { background: #FFD700; box-shadow: 0 0 6px rgba(255,215,0,0.5); }
@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.dash-card__metric-val {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  width: 30px;
  text-align: right;
}

.dash-card__recommendation {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--green-neon);
  background: var(--green-glow);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* Floating Tags */
.hero__floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(10,31,2,0.85);
  border: 1px solid var(--border-hover);
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  z-index: 3;
}
.hero__floating-tag--1 {
  top: 10px; left: -20px;
  animation: tagFloat 4s ease-in-out infinite;
}
.hero__floating-tag--2 {
  bottom: 20px; right: -10px;
  animation: tagFloat 5s ease-in-out infinite reverse;
}
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-neon), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card--large {
  grid-column: span 1;
  grid-row: span 2;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(184,243,105,0.06);
}
.feature-card:hover .feature-card__glow {
  opacity: 1;
}
.feature-card:hover .feature-card__arrow {
  transform: translateX(4px);
}

.feature-card__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(184,243,105,0.12), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.feature-card__glow--accent {
  background: radial-gradient(circle, rgba(10,31,2,0.3), transparent 70%);
}

.feature-card__icon {
  width: 56px; height: 56px;
  background: var(--green-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-card__icon {
  background: rgba(184,243,105,0.2);
  border-color: var(--border-hover);
  box-shadow: 0 0 20px rgba(184,243,105,0.15);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-card__title--dark { color: var(--bg-deep); }

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-card__desc--dark { color: rgba(10,31,2,0.75); }

.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.feature-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--green-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.feature-card__arrow--dark {
  background: rgba(10,31,2,0.15);
  border-color: rgba(10,31,2,0.2);
}

.feature-card--accent {
  background: var(--green-neon);
  border-color: transparent;
}
.feature-card--accent:hover {
  box-shadow: 0 20px 40px rgba(184,243,105,0.25);
}
.feature-card--accent .feature-card__icon {
  background: rgba(10,31,2,0.15);
  border-color: rgba(10,31,2,0.2);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-deep);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--green-neon), rgba(184,243,105,0.2), var(--green-neon));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 56px; height: 56px;
  background: var(--bg-dark);
  border: 2px solid var(--green-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green-neon);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(184,243,105,0.2);
  flex-shrink: 0;
  transition: var(--transition);
}
.step:hover .step__number {
  background: var(--green-neon);
  color: var(--bg-deep);
  box-shadow: 0 0 30px rgba(184,243,105,0.5);
}
.step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
}

.carousel {
  position: relative;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--green-neon);
  opacity: 0.4;
  margin-bottom: 16px;
  font-weight: 800;
}
.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testimonial-card__stars {
  font-size: 0.8rem;
  color: var(--green-neon);
  letter-spacing: 2px;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.carousel__btn {
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.carousel__btn:hover {
  background: var(--green-glow);
  border-color: var(--border-hover);
  color: var(--green-neon);
}
.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel__dot.active {
  background: var(--green-neon);
  box-shadow: 0 0 8px rgba(184,243,105,0.6);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg-deep);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: rgba(15, 42, 4, 0.9);
  border-color: var(--green-neon);
  box-shadow: 0 0 40px rgba(184,243,105,0.12), 0 24px 48px rgba(0,0,0,0.3);
  transform: translateY(-8px);
}
.pricing-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 60px rgba(184,243,105,0.2), 0 32px 64px rgba(0,0,0,0.4);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-neon);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
}

.pricing-card__header { margin-bottom: 28px; }
.pricing-card__tier {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 12px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.pricing-card__currency {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-card__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pricing-card__feature::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-card__feature--yes {
  color: var(--text-secondary);
}
.pricing-card__feature--yes::before {
  background-color: var(--green-glow);
  border: 1px solid var(--border-hover);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23B8F369' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.pricing-card__feature--no {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}
.pricing-card__feature--no::before {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L7 7M7 3L3 7' stroke='%234A6B3A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(45,106,30,0.4), transparent),
    linear-gradient(180deg, var(--bg-deep), var(--bg-mid), var(--bg-deep));
}
.cta-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,243,105,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,243,105,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-banner__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

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

.footer__logo { margin-bottom: 16px; }
.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--green-glow);
  border-color: var(--border-hover);
  color: var(--green-neon);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__link:hover {
  color: var(--green-neon);
  padding-left: 4px;
}

.footer__newsletter-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer__newsletter {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.footer__newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}
.footer__newsletter-input::placeholder { color: var(--text-muted); }
.footer__newsletter-input:focus {
  border-color: var(--border-hover);
  background: rgba(15,42,4,0.8);
}
.footer__newsletter-btn {
  background: var(--green-neon);
  border: 1px solid var(--green-neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 16px;
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__newsletter-btn:hover {
  background: #ceff7a;
  box-shadow: 0 0 20px rgba(184,243,105,0.3);
}

.footer__langs {
  display: flex;
  gap: 8px;
}
.footer__lang {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.footer__lang--active,
.footer__lang:hover {
  color: var(--green-neon);
  border-color: var(--border-hover);
  background: var(--green-glow);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__legal-link:hover { color: var(--green-neon); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 80px;
  }
  .hero__content { order: 1; }
  .hero__visual  { order: 2; display: none; }
  .hero__stats   { justify-content: center; }
  .hero__cta     { justify-content: center; }
  .hero__subtitle { margin: 0 auto 40px; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .steps::before { display: none; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(5,15,2,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    z-index: 999;
  }
  .nav__links.open + .nav__actions {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(64px + 180px);
    left: 0; right: 0;
    background: rgba(5,15,2,0.97);
    padding: 0 24px 24px;
    z-index: 999;
  }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .steps { grid-template-columns: 1fr; }

  .testimonial-card { flex: 0 0 100%; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat-divider { width: 40px; height: 1px; }

  .section-title { font-size: 1.8rem; }
  .hero__title   { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .btn--lg { padding: 13px 22px; font-size: 0.9rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { justify-content: center; }
}