*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1b1b1f;
  --bg2: #222228;
  --bg3: #2a2a30;
  --bg4: #303038;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #f1f1f1;
  --muted: #909090;
  --muted2: #636363;
  --accent: oklch(0.62 0.19 42);
  --accent-dim: oklch(0.42 0.14 42);
  --accent-glow: oklch(0.62 0.19 42 / 0.15);
  --accent2: oklch(0.72 0.17 65);
  --danger: oklch(0.65 0.2 25);
  --mono: 'IBM Plex Mono', monospace;
  --sans: 'Inter Tight', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #1b1b1f;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

#plexus-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body > *:not(#plexus-canvas) {
  position: relative;
  z-index: 1;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 58px;
  background: rgba(27, 27, 31, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--mono);
}

.nav-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav-ghost {
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-nav-primary {
  font-size: 0.8rem;
  padding: 0.45rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.1s;
  cursor: pointer;
}

.btn-nav-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.8rem;
  background: var(--accent-glow);
  letter-spacing: 0.05em;
}

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

@keyframes pulse2 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: 1.4rem;
}

.hero h1 .accent { color: var(--accent); }

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 30px oklch(0.62 0.19 42 / 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg2);
}

.hero-social-proof {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars { display: flex; }

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-dim), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--mono);
}

.avatars .avatar:first-child { margin-left: 0; }

.social-text {
  font-size: 0.78rem;
  color: var(--muted);
}

.social-text strong { color: var(--text); }

/* DASHBOARD MOCKUP */
.dashboard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px oklch(0.62 0.19 42 / 0.06);
  position: relative;
}

.dash-bar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-title {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: auto;
  letter-spacing: 0.05em;
}

.dash-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}

.dash-sidebar {
  border-right: 1px solid var(--border);
  padding: 1rem 0;
}

.dash-nav-item {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s;
  color: var(--muted);
}

.dash-nav-item:hover {
  background: var(--bg4);
  color: var(--text);
}

.dash-nav-item.active {
  background: oklch(0.42 0.14 42 / 0.15);
  color: var(--accent);
  border-right: 2px solid var(--accent);
}

.dash-nav-icon {
  font-size: 0.8rem;
  opacity: 0.6;
}

.dash-main { padding: 1.2rem; }

.dash-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

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

.dash-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
}

.dash-stat-val {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.dash-stat-lbl {
  font-size: 0.62rem;
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
}

.dash-stat-delta {
  font-size: 0.65rem;
  color: var(--accent2);
  margin-top: 0.2rem;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.dash-table th {
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.dash-table td {
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dash-table tr:hover td { background: var(--bg4); }

.status-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.s-completo { background: oklch(0.3 0.1 145); color: oklch(0.75 0.15 145); }
.s-activo { background: oklch(0.3 0.1 42); color: oklch(0.75 0.18 42); }
.s-pendiente { background: oklch(0.25 0.08 50); color: oklch(0.7 0.15 50); }

/* LOGOS BAR */
.logos-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logos-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
}

.logo-pill {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted2);
  letter-spacing: 0.05em;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--muted2);
  border-radius: 4px;
  opacity: 0.5;
}

/* PROBLEM / SOLUTION */
.problem-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 1rem;
}

.section-label.positive { color: var(--accent); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}

.section-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.pain-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.pain-icon {
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.9rem;
}

.pain-icon.ok { color: var(--accent2); }
.pain-item strong { color: var(--text); }

.paper-mockup {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 2;
  color: var(--muted);
  position: relative;
}

.paper-mockup::before {
  content: 'LISTÍN MANUAL — TERMINAL CARACAS';
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted2);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.paper-row {
  display: flex;
  justify-content: space-between;
}

.paper-scratch {
  text-decoration: line-through;
  color: var(--muted2);
}

.paper-note {
  margin-top: 1rem;
  font-size: 0.65rem;
  color: var(--danger);
  font-style: italic;
  opacity: 0.8;
}

.cross-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--danger);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 20px oklch(0.65 0.2 25 / 0.4);
}

/* FEATURES */
.features {
  padding: 2rem 5vw 8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header .section-title {
  max-width: 600px;
  margin: 0 auto 1rem;
}

.features-header .section-body {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg2);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
  position: relative;
}

.feature-card:hover { background: var(--bg3); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  background: oklch(0.3 0.1 42 / 0.3);
  color: var(--accent);
}

.feature-tag.mvp {
  background: oklch(0.3 0.1 65 / 0.3);
  color: var(--accent2);
}

/* HOW IT WORKS */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 8rem;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--accent-dim), var(--border), transparent);
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 8rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 30%;
  right: 30%;
  height: 200px;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.08;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 10%;
  width: 300px;
  height: 150px;
  background: var(--accent2);
  filter: blur(60px);
  opacity: 0.06;
}

.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  position: relative;
}

.cta-card p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-note {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted2);
  position: relative;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(27, 27, 31, 0.88);
  backdrop-filter: blur(12px);
}

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

.footer-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-back {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-back:hover { color: var(--text); }

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* FADE */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* SOLUTION GRID */
.solution-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  background: rgba(27, 27, 31, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 1.5rem 1.25rem;
  z-index: 200;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text); }

.mobile-menu .mobile-cta {
  margin-top: 0.75rem;
  padding: 0.8rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  border: none !important;
  transition: opacity 0.2s;
}

.mobile-cta:hover { opacity: 0.88 !important; }

.nav-mobile-link {
  display: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-mobile-link:hover { color: var(--text); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav-primary { display: none; }
  .nav-mobile-link { display: inline; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 2rem 60px;
    gap: 3rem;
  }

  .hero-desc { margin: 0 auto 2.2rem; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-right { display: none; }

  .problem-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .features { padding: 2rem 2rem 6rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how { padding: 0 2rem 6rem; }

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

  .steps::before { display: none; }
  .cta-section { padding: 0 2rem 6rem; }
  .cta-card { padding: 3rem 2rem; }

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

  .footer-links { justify-content: center; }
}

@media (max-width: 540px) {
  nav { padding: 0 1rem; }
  .hero { padding: 90px 1.25rem 50px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  .logos-bar {
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
  }

  .logo-pill {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }

  .problem-section { padding: 4rem 1.25rem; }
  .solution-grid { padding: 4rem 1.25rem; }
  .features { padding: 2rem 1.25rem 5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .how { padding: 0 1.25rem 5rem; }
  .steps { grid-template-columns: 1fr; }
  .cta-section { padding: 0 1.25rem 5rem; }
  .cta-card { padding: 2.5rem 1.25rem; }

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

  .cta-buttons a,
  .cta-buttons button {
    text-align: center;
    justify-content: center;
  }
}
