/* ============================================================
   main.css — Pocket Penny Proposal · A&S Caribe
   Palette: Dark Mode Verde Oscuro · Archetype: FinTech App
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg:           #0A1A14;   /* verde oscuro profundo - fondo principal */
  --primary:      #0D1F1A;   /* verde oscuro - cards/sections */
  --card-bg:      #132620;   /* verde oscuro medio - cards */
  --accent:       #00E676;   /* verde brillante - CTA, progress bars, amounts positivos */
  --accent-dark:  #00C864;
  --accent-red:   #E74C3C;   /* rojo - amounts negativos */
  --text:         #FFFFFF;   /* blanco - texto principal */
  --text-muted:   #A0B8AF;   /* gris verdoso - texto secundario */
  --border:       rgba(0, 230, 118, 0.15); /* borde verde sutil */
  --surface:      #132620;   /* surface cards */

  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --radius:   10px;
  --nav-h:    68px;
  --container: 1200px;
  --section-py: clamp(4rem, 8vw, 7rem);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-muted);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.7; color: var(--text-muted); }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

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

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== DARK SECTION ===== */
.section--dark {
  background: var(--primary);
  color: var(--text);
}
.section--dark h2, .section--dark h3, .section--dark strong { color: var(--text); }
.section--dark .section__eyebrow { color: var(--accent); }
.section--dark p { color: var(--text-muted); }

/* ===== ACCENT SECTION (Final CTA — inverted) ===== */
.section--accent {
  background: var(--accent);
  color: #0A1A14;
}
.section--accent h2 { color: #0A1A14; }
.section--accent p { color: rgba(10,26,20,0.8); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent);
  color: #0A1A14;
  border-color: var(--accent);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,230,118,0.35);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(0,230,118,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--card-bg);
  color: var(--text);
  border-color: rgba(0,230,118,0.3);
}

.btn--white {
  background: #0A1A14;
  color: var(--accent);
  border-color: #0A1A14;
  font-weight: 700;
}
.btn--white:hover {
  background: rgba(10,26,20,0.85);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn--block { width: 100%; text-align: center; display: block; }

/* Nav CTA button */
.btn--nav {
  padding: 0.55rem 1.25rem;
  font-size: 0.84rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,31,26,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  height: var(--nav-h);
}
.nav.scrolled {
  border-color: rgba(0,230,118,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--accent); }

/* Lang toggle */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.lang-btn {
  background: none;
  border: none;
  padding: 0.2rem 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  color: var(--accent);
  font-weight: 700;
  background: rgba(0,230,118,0.08);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ===== HERO: SPLIT ===== */
.hero { padding-top: var(--nav-h); min-height: 100vh; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
}

.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
  padding-top: calc(var(--nav-h) + 2.5rem);
}

.hero-split__visual {
  background: linear-gradient(135deg, #071410 0%, #0D1F1A 50%, #132620 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  min-height: 100%;
  overflow: hidden;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.hero__headline {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero__sub {
  max-width: 480px;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}

/* Badges */
.hero__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.badge--accent {
  background: rgba(0,230,118,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,230,118,0.3);
}

.badge--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== DASHBOARD MOCKUP ===== */
.dashboard-mockup {
  background: #0D1F1A;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 2px 8px rgba(0,230,118,0.08), 0 0 0 1px rgba(0,230,118,0.1);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  font-family: var(--font-body);
}

.dm__topbar {
  background: #0D1F1A;
  border-bottom: 1px solid rgba(0,230,118,0.12);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dm__topbar-dots {
  display: flex;
  gap: 5px;
}

.dm__topbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.dm__topbar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  flex: 1;
  text-align: center;
}

.dm__topbar-period {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.dm__balance-row {
  display: flex;
  padding: 14px 16px;
  gap: 0;
  border-bottom: 1px solid rgba(0,230,118,0.08);
}

.dm__balance-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}

.dm__balance-item + .dm__balance-item {
  border-left: 1px solid rgba(0,230,118,0.08);
}

.dm__balance-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dm__balance-value {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.dm__balance-value--spent { color: #E74C3C; }
.dm__balance-value--available { color: #00E676; }

.dm__categories {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-bottom: 1px solid rgba(0,230,118,0.08);
}

.dm__cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.dm__cat-name {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text);
}

.dm__cat-amounts {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.dm__cat-amounts em {
  font-style: normal;
  color: rgba(160,184,175,0.5);
}

.dm__bar-track {
  height: 6px;
  background: #1A3028;
  border-radius: 999px;
  overflow: hidden;
}

.dm__bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.8s var(--ease);
}

.dm__cat-warning {
  font-size: 0.63rem;
  color: #F59E0B;
  font-weight: 600;
  margin-top: 2px;
  display: block;
}

.dm__transactions {
  padding: 12px 16px 14px;
  background: #0D1F1A;
}

.dm__section-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.dm__txn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: #132620;
  border: 1px solid rgba(0,230,118,0.06);
}

.dm__txn:last-child { margin-bottom: 0; }

.dm__txn-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dm__txn-icon--bank { background: rgba(0,230,118,0.12); color: #00E676; }
.dm__txn-icon--store { background: rgba(231,76,60,0.12); color: #E74C3C; }
.dm__txn-icon--income { background: rgba(0,230,118,0.15); color: #00E676; }

.dm__txn-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dm__txn-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.dm__txn-meta {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.dm__txn-amt {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dm__txn-amt--neg { color: #E74C3C; }
.dm__txn-amt--pos { color: #00E676; }

/* ===== STATS ===== */
.stats {
  background: #132620;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(0,230,118,0.08);
  border-bottom: 1px solid rgba(0,230,118,0.08);
}

.stats__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stats__label {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== FEATURES ===== */
.features { background: var(--bg); }

.features .container > .reveal > h2 {
  margin-top: 0.5rem;
  max-width: 600px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: #132620;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0,230,118,0.1);
  border-left: 3px solid var(--accent);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,230,118,0.12);
}

.feature-card__icon {
  color: var(--accent);
  margin-bottom: 1.1rem;
  width: 28px; height: 28px;
}

.feature-card h3 {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 1.05rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: #0D1F1A; }

.how-it-works .container > .reveal > h2 {
  margin-top: 0.5rem;
  max-width: 520px;
}

.how__steps {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,230,118,0.08);
}

.how__step:last-child { border-bottom: none; }

.how__step--alt {
  direction: rtl;
}
.how__step--alt > * { direction: ltr; }

.how__step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 120px;
}

.how__step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}

.how__step-icon {
  color: var(--accent);
  background: rgba(0,230,118,0.08);
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how__step-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.how__step-content p {
  color: var(--text-muted);
  max-width: 500px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: var(--section-py) 0; }

.testimonials h2 {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  max-width: 560px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #132620;
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card__quote {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  border-left: 3px solid rgba(0,230,118,0.5);
  padding-left: 1rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-style: normal;
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #00A854 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  color: #0A1A14;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-card__author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing { background: var(--bg); }

.pricing .container > .reveal > h2 {
  margin-top: 0.5rem;
}

.pricing__sub {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

.pricing__card {
  background: #132620;
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  max-width: 440px;
  margin-top: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,230,118,0.1), 0 1px 4px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,230,118,0.15);
  position: relative;
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 2rem;
  background: var(--accent);
  color: #0A1A14;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.pricing__currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing__price {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing__period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pricing__features svg { flex-shrink: 0; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; }

.final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.final-cta__inner h2 { color: #0A1A14; line-height: 1.2; }
.final-cta__inner p  { color: rgba(10,26,20,0.8); }

/* ===== FOOTER ===== */
.footer {
  background: #071410;
  color: var(--text-muted);
  padding: 1.75rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(0,230,118,0.08);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

/* ===== BILINGUAL TOGGLE =====
   NOTE: text swapping is done via JS (setLang updates textContent).
   These rules are intentionally removed — they were hiding all bilingual
   elements because every element carries both data-es and data-en attributes.
   JS now handles the language swap by updating innerHTML on each element.
   ===== */

/* ===== SCROLL REVEAL =====
   Default: elements are visible (safe fallback for no-JS or slow JS).
   When .js-ready is added to body by JS, we activate the reveal animation.
   ===== */

/* Fallback: always visible without JS */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* JS active: hide elements before they enter viewport */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* When JS adds .visible (element in viewport), show it */
.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__hamburger { display: flex; }

  .nav__menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0D1F1A;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(0,230,118,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    align-items: flex-start;
  }

  .nav__menu.open { display: flex; }
  .nav__lang { margin-left: 0; }
  .btn--nav { width: 100%; text-align: center; }

  /* Hero: stack */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split__text {
    padding: 5.5rem 1.5rem 2.5rem;
  }

  .hero-split__visual {
    padding: 2rem 1.5rem 3rem;
    min-height: auto;
  }

  /* Features: 1 col */
  .features__grid { grid-template-columns: 1fr; }

  /* How it works: stack */
  .how__step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .how__step--alt { direction: ltr; }
  .how__step-visual { flex-direction: row; justify-content: flex-start; }

  /* Testimonials: 1 col */
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__grid { flex-direction: column; align-items: center; }
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero__badges { flex-direction: column; }
  .badge { text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}
