/* ============================================================
   GESTODO — Landing Page Styles
   Dark SaaS theme with green neon accents
   Font: Syne (display) + DM Sans (body)
   ============================================================ */

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

:root {
  --bg: #0a0c0e;
  --bg-2: #0f1214;
  --bg-3: #141618;
  --bg-card: #161a1d;
  --bg-card-2: #1a1e22;
  --border: rgba(255, 255, 255, .07);
  --border-2: rgba(255, 255, 255, .12);

  --green: #22c55e;
  --green-dim: #16a34a;
  --green-glow: rgba(34, 197, 94, .15);
  --green-glow2: rgba(34, 197, 94, .06);

  --text-1: #f0f4f8;
  --text-2: #94a3b8;
  --text-3: #64748b;

  --red: #ef4444;
  --orange: #f97316;
  --yellow: #eab308;
  --blue: #3b82f6;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow: 0 4px 24px rgba(0, 0, 0, .4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, .6);
  --shadow-green: 0 0 40px rgba(34, 197, 94, .12);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --section-gap: 120px;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-1);
}

.text-gradient {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn--xl {
  padding: 20px 42px;
  font-size: 20px;
  border-radius: var(--radius);
}

.btn--primary {
  background: var(--green);
  color: #000;
}

.btn--primary:hover {
  background: #2dde6b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, .35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn--ghost:hover {
  background: var(--bg-card);
  color: var(--text-1);
  border-color: var(--border-2);
}

/* ── SECTION REUSABLES ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-tag--green {
  color: var(--green);
  border-color: rgba(34, 197, 94, .25);
  background: rgba(34, 197, 94, .06);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

@keyframes count-up {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 12, 14, .92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-1);
  letter-spacing: -.02em;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav__links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.nav__links a:hover {
  color: var(--text-1);
  background: var(--bg-card);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: .3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav__mobile .btn {
  margin-top: 12px;
  justify-content: center;
  color: #fff !important;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
  opacity: .5;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, .12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float-slow 8s ease-in-out infinite;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, .07) 0%, transparent 70%);
  bottom: 0;
  left: -50px;
  animation: float-slow 11s ease-in-out infinite reverse;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.badge__dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── APP PREVIEW ──────────────────────────────────────────── */
.hero__visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.app-preview {
  position: absolute;
  inset: 0;
  width: 100%;
}

/* STAT CARDS */
.stat-card {
  position: absolute;
  background: rgba(20, 22, 26, .9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  min-width: 160px;
  box-shadow: var(--shadow);
  /* Floating Animations */
}

.stat-card--1 {
  bottom: 20%;
  left: -5%;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.stat-card--2 {
  top: 30%;
  right: -5%;
  z-index: 10;
  animation: float 5s ease-in-out infinite .7s;
}

.stat-card--3 {
  bottom: 30%;
  right: -10%;
  z-index: 10;
  animation: float 6s ease-in-out infinite 1.2s;
}

.stat-card__label {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 4px;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
}

.stat-card__delta {
  font-size: 12px;
  color: var(--green);
  margin-top: 2px;
}

.stat-card__icon {
  margin-bottom: 4px;
}

/* PLACEHOLDER */
.preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  width: 100%;
  min-height: 240px;
  color: var(--text-3);
}

.preview-placeholder p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.preview-placeholder span {
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px dashed var(--border-2);
  padding: 4px 10px;
  border-radius: 4px;
}

.preview-placeholder--sm {
  min-height: 160px;
  padding: 32px 16px;
}

.preview-placeholder--xs {
  min-height: 60px;
  padding: 16px;
}

/* ── METRICS BAND ─────────────────────────────────────────── */
.metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 48px 0;
}

.metrics__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
  padding: 0 56px;
}

.metric-item__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.03em;
}

.metric-item__label {
  font-size: 14px;
  color: var(--text-3);
}

.metric-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── PROBLEM ──────────────────────────────────────────────── */
.problem {
  padding: var(--section-gap) 0;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.problem-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card__icon--red {
  background: rgba(239, 68, 68, .12);
  color: var(--red);
}

.problem-card__icon--orange {
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
}

.problem-card__icon--yellow {
  background: rgba(234, 179, 8, .12);
  color: var(--yellow);
}

.problem-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── SOLUTION ─────────────────────────────────────────────── */
.solution {
  padding: var(--section-gap) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution__content .section-tag {
  margin-bottom: 16px;
}

.solution__content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.solution__text {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.75;
}

.solution__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.solution__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green-glow);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.solution__list li strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.solution__list li span {
  font-size: 14px;
  color: var(--text-2);
}

/* FEATURE MOCKUP */
.feature-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-mockup__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border);
}

.feature-mockup__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-2);
}

.feature-mockup__dot:nth-child(1) {
  background: #ef4444;
}

.feature-mockup__dot:nth-child(2) {
  background: #eab308;
}

.feature-mockup__dot:nth-child(3) {
  background: #22c55e;
}

.feature-mockup__title {
  margin-left: 8px;
  font-size: 13px;
  color: var(--text-3);
}

.feature-mockup__body {
  padding: 20px;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mock-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.mock-stat__label {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 4px;
}

.mock-stat__val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.mock-stat__val--green {
  color: var(--green);
}

.mock-stat__val--red {
  color: var(--red);
}

.mock-stat__val--yellow {
  color: var(--yellow);
}

.mock-chart {
  margin-bottom: 16px;
}

.mock-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  padding: 8px 12px;
  background: var(--bg-3);
  border-radius: 6px;
}

.mock-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-item__dot--green {
  background: var(--green);
}

.mock-item__dot--blue {
  background: var(--blue);
}

.mock-item__dot--yellow {
  background: var(--yellow);
}

.mock-item__count {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-1);
  font-size: 12px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works {
  padding: var(--section-gap) 0;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.steps__line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--green), var(--border), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step__number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.step__content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}

.step__content:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}

.step__icon {
  width: 46px;
  height: 46px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  margin-bottom: 16px;
}

.step__icon--green {
  background: var(--green-glow);
  border-color: rgba(34, 197, 94, .3);
  color: var(--green);
}

.step__content h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step__content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.step--highlight .step__content {
  border-color: rgba(34, 197, 94, .2);
  background: linear-gradient(135deg, rgba(34, 197, 94, .04), var(--bg-card));
  box-shadow: var(--shadow-green);
}

.step__result {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.step__result span {
  font-size: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .2);
  padding: 3px 10px;
  border-radius: 99px;
}

/* ── STATS SECTION ────────────────────────────────────────── */
.stats-section {
  padding: var(--section-gap) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.stats-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border);
}

.stats-mockup__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.stats-mockup__tabs {
  display: flex;
  gap: 4px;
}

.stats-mockup__tabs span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--text-3);
  cursor: pointer;
}

.stats-mockup__tabs span.active {
  background: var(--bg-3);
  color: var(--text-1);
}

.stats-mockup__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.kpi {
  background: var(--bg-card);
  padding: 20px;
}

.kpi--highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, .05), var(--bg-card));
}

.kpi__label {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 6px;
}

.kpi__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.kpi__value--green {
  color: var(--green);
}

.kpi__value--red {
  color: var(--red);
}

.kpi__trend {
  font-size: 12px;
  color: var(--text-3);
}

.stats-mockup__chart {
  padding: 16px 20px 20px;
}

.stats-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.stats-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stats-feature__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-feature h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.stats-feature p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── STOCK SECTION ────────────────────────────────────────── */
.stock-section {
  padding: var(--section-gap) 0;
}

.stock__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stock-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stock-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.stock-mockup__search {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg-3);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.stock-table {
  padding: 8px 0;
}

.stock-table__head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 8px 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
}

.stock-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  transition: background .15s;
}

.stock-row:hover {
  background: var(--bg-3);
}

.stock-row--warning {
  background: rgba(234, 179, 8, .03);
}

.stock-row--danger {
  background: rgba(239, 68, 68, .04);
}

.stock-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}

.stock-badge--ok {
  background: rgba(34, 197, 94, .1);
  color: var(--green);
}

.stock-badge--low {
  background: rgba(234, 179, 8, .1);
  color: var(--yellow);
}

.stock-badge--critical {
  background: rgba(239, 68, 68, .1);
  color: var(--red);
}

.stock-mockup__footer {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
}

.stock__content .section-tag {
  margin-bottom: 16px;
}

.stock__content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.stock__text {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.75;
}

.stock__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stock__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}

.stock__features li svg {
  flex-shrink: 0;
}

/* ── BUSINESSES ───────────────────────────────────────────── */
.businesses {
  padding: var(--section-gap) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.businesses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}

.business-card:hover {
  border-color: rgba(34, 197, 94, .25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, .08);
}

.business-card__emoji {
  font-size: 32px;
  margin-bottom: 12px;
}

.business-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.business-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.businesses__cta {
  text-align: center;
}

.businesses__cta p {
  color: var(--text-3);
  margin-bottom: 20px;
  font-size: 15px;
}

/* ── TRIAL ────────────────────────────────────────────────── */
.trial {
  padding: var(--section-gap) 0;
}

.trial__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.trial__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  background: rgba(34, 197, 94, .06);
  border: 1px solid rgba(34, 197, 94, .2);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.trial__title {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.trial__subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.7;
}

.trial__features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-3);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  padding: var(--section-gap) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq__grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover {
  border-color: var(--border-2);
}

.faq-item.open {
  border-color: rgba(34, 197, 94, .2);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  transition: color .2s;
}

.faq-item__question:hover {
  color: var(--green);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform .3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── CTA FINAL ────────────────────────────────────────────── */
.cta-final {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-final__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-final__subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-final__note {
  font-size: 13px;
  color: var(--text-3);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 60px 0 32px;
}

.footer__inner {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.footer__brand {
  flex: 1;
}

.footer__brand .nav__logo {
  margin-bottom: 14px;
  display: flex;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-3);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s;
}

.footer__col a:hover {
  color: var(--text-1);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .solution__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stock__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    display: flex;
    flex-direction: column-reverse;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    display: flex;
    flex-direction: column-reverse;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__line {
    display: none;
  }

  .businesses__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .metrics__grid {
    gap: 0;
  }

  .metric-item {
    padding: 20px 24px;
  }

  .metric-divider {
    display: none;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .businesses__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-mockup__kpis {
    grid-template-columns: 1fr 1fr;
  }

  .trial__features {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .problem__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__title {
    font-size: 34px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .metrics__grid {
    flex-wrap: wrap;
  }

  .metric-item {
    width: 50%;
  }
}

.solution-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-2), var(--shadow-green);
}