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

:root {
  --cyan: #048BA8;
  --cyan-dark: #036F88;
  --cyan-light: #E6F4F7;
  --orange: #F18F01;
  --orange-dark: #D17A00;
  --orange-light: #FEF3E2;
  --charcoal: #2E4057;
  --graphite: #2F2D2E;
  --success: #2A9D5C;
  --error: #D62828;
  --bg: #F5F7FA;
  --bg-white: #FFFFFF;
  --ivory: #FFFEF3;
  --text: #2F2D2E;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== UTILITIES ===== */
.highlight { color: var(--cyan); }
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cyan-light);
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); font-size: 18px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
}
.btn--primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(4,139,168,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--bg); }
.btn--outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn--outline:hover {
  background: var(--cyan-light);
}
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.nav__logo {
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-mark {
  color: var(--cyan);
}
.logo-text {
  color: var(--charcoal);
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
}
.nav__mobile .btn { margin-top: 8px; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #F5F7FA 0%, var(--ivory) 100%);
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.shape--1 { width: 600px; height: 600px; background: var(--cyan); top: -200px; right: -100px; }
.shape--2 { width: 400px; height: 400px; background: var(--orange); bottom: -100px; left: 5%; }
.shape--3 { width: 300px; height: 300px; background: var(--charcoal); top: 30%; left: 40%; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content { max-width: 560px; }
.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.hero__social-proof p {
  font-size: 13px;
  color: var(--text-muted);
}
.hero__social-proof strong { color: var(--text); }

/* Dashboard Card */
.dashboard-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dashboard-card__header {
  display: flex;
  gap: 6px;
  padding: 14px 20px;
  background: var(--charcoal);
  align-items: center;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--cyan { background: var(--cyan); }
.dot--orange { background: var(--orange); }
.dot--gray { background: rgba(255,255,255,.3); }
.dashboard-card__body { padding: 20px; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.metric {
  background: var(--bg);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.metric__label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.metric__value { font-size: 16px; font-weight: 800; color: var(--charcoal); }
.metric__trend { font-size: 11px; font-weight: 700; }
.metric__trend--up { color: var(--success); }
.metric__trend--neutral { color: var(--text-muted); }
.chart-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 100px;
  margin-bottom: 16px;
  padding: 0 4px;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.bar-group span { font-size: 9px; color: var(--text-muted); font-weight: 600; }
.bar-group.active .bar { opacity: 1; }
.bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  opacity: .65;
  transition: height .6s ease;
}
.bar--entry { height: var(--h); background: var(--cyan); }
.bar--output { height: var(--h); background: var(--orange); }
.stock-list { display: flex; flex-direction: column; gap: 8px; }
.stock-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--bg);
  border-radius: 6px;
}
.stock-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stock-item__dot--ok { background: var(--success); }
.stock-item__dot--warn { background: var(--orange); }
.stock-item__name { font-size: 11px; font-weight: 600; flex: 1; color: var(--text); }
.stock-item__qty { font-size: 11px; font-weight: 700; color: var(--text-muted); }

/* ===== PLANS ===== */
.plans { padding: 100px 0; background: var(--bg); }
.plans__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.plan-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: box-shadow .25s, border-color .25s;
}
.plan-card:hover { box-shadow: var(--shadow-lg); }
.plan-card--featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(4,139,168,.1);
}
.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-card__name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.plan-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-price__currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 8px;
}
.plan-price__value {
  font-size: 52px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -.03em;
}
.plan-card--featured .plan-price__value { color: var(--cyan); }
.plan-price__period {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 8px;
}
.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.plan-check {
  font-size: 13px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,157,92,.12);
  color: var(--success);
  flex-shrink: 0;
}
.plan-check--off {
  background: rgba(0,0,0,.05);
  color: var(--text-muted);
}
.plan-card__features li:has(.plan-check--off) { color: var(--text-muted); }
.plan-card__cta { text-align: center; justify-content: center; margin-top: auto; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
}
.feature-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-card--accent {
  background: linear-gradient(135deg, var(--charcoal), #1e2d42);
  border-color: transparent;
  color: white;
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}
.feature-card--accent .feature-card__icon {
  background: rgba(4,139,168,.25);
  color: var(--cyan);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.feature-card--accent h3 { color: white; }
.feature-card--accent p { color: rgba(255,255,255,.7); }

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--bg);
}
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--cyan);
  color: white;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(4,139,168,.35);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.step__connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(4,139,168,.2));
  margin-top: 28px;
  border-radius: 2px;
}

/* ===== REPORTS ===== */
.reports {
  padding: 100px 0;
}
.reports__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reports__content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.reports__content > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.reports__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reports__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.reports__list strong { display: block; font-size: 15px; font-weight: 700; color: var(--charcoal); }
.reports__list span { font-size: 13px; color: var(--text-muted); }

/* Report card */
.report-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.report-card__title { font-size: 13px; font-weight: 700; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .06em; }
.abc-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.abc-row { display: flex; align-items: center; gap: 12px; }
.abc-label { font-size: 12px; font-weight: 700; width: 52px; flex-shrink: 0; }
.abc-bar { flex: 1; height: 14px; background: var(--bg); border-radius: 100px; overflow: hidden; }
.abc-fill { height: 100%; border-radius: 100px; width: var(--w); transition: width .8s ease; }
.abc-fill--a { background: var(--cyan); }
.abc-fill--b { background: var(--orange); }
.abc-fill--c { background: #CBD5E1; }
.abc-pct { font-size: 12px; font-weight: 700; width: 36px; text-align: right; color: var(--text-muted); }
.report-divider { height: 1px; background: var(--border); margin: 20px 0; }
.cmv-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cmv-block { text-align: center; }
.cmv-label { display: block; font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.cmv-value { display: block; font-size: 17px; font-weight: 800; color: var(--charcoal); }
.cmv-value--green { color: var(--success); }

/* ===== ROLES ===== */
.roles {
  padding: 100px 0;
  background: var(--bg);
}
.roles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.role-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .25s;
}
.role-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}
.role-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.role-card__icon--admin { background: var(--charcoal); }
.role-card__icon--gestor { background: var(--cyan); }
.role-card__icon--almox { background: var(--orange); }
.role-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.role-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== SECURITY ===== */
.security {
  padding: 100px 0;
}
.security__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.shield-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: white;
}
.shield-icon {
  width: 80px;
  height: 80px;
  background: rgba(4,139,168,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--cyan);
}
.shield-icon svg { width: 40px; height: 40px; }
.shield-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.sec-badge {
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.security__content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.security__content > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.security__points { display: flex; flex-direction: column; gap: 20px; }
.sec-point { display: flex; flex-direction: column; gap: 3px; padding-left: 16px; border-left: 3px solid var(--cyan); }
.sec-point strong { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.sec-point span { font-size: 13px; color: var(--text-muted); }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a2434 100%);
  overflow: hidden;
  text-align: center;
}
.cta__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape--4 { width: 500px; height: 500px; background: var(--cyan); top: -200px; right: -100px; opacity: .08; }
.shape--5 { width: 400px; height: 400px; background: var(--orange); bottom: -150px; left: -100px; opacity: .08; }
.cta__inner { position: relative; }
.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta > .cta__inner > p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
}
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 20px;
}
.cta__input {
  padding: 16px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  width: 100%;
  outline: none;
  transition: border-color .2s, background .2s;
}
.cta__input::placeholder { color: rgba(255,255,255,.4); }
.cta__input:focus { border-color: var(--cyan); background: rgba(255,255,255,.12); }
.cta__note--success { color: var(--success) !important; font-weight: 600; }
.cta__note--error { color: #ff7b7b !important; font-weight: 600; }
.cta__note {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--graphite);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .nav__logo { margin-bottom: 16px; display: inline-flex; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  max-width: 320px;
  line-height: 1.7;
}
.footer__links { display: flex; gap: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.footer__col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__col a:hover { color: white; }
.footer__brand .logo-mark { color: var(--cyan); }
.footer__brand .logo-text { color: rgba(255,255,255,.85); }
.footer__bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__social-proof { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .reports__inner { grid-template-columns: 1fr; gap: 48px; }
  .security__inner { grid-template-columns: 1fr; gap: 48px; }
  .plans__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .features__grid { grid-template-columns: 1fr; }
  .roles__grid { grid-template-columns: 1fr; max-width: 400px; }
  .how__steps { flex-direction: column; align-items: center; gap: 24px; }
  .step__connector { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { flex-wrap: wrap; gap: 32px; }
  .metric-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 480px) {
  .cta__form { grid-template-columns: 1fr; }
  .cta__form .btn { width: 100%; justify-content: center; }
  .cmv-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content, .hero__visual {
  animation: fadeInUp .6s ease both;
}
.hero__visual { animation-delay: .2s; }

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
