/* IA Geniuz — Section-specific styles */

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 35%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-copy { max-width: 620px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hl {
  background: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-avatars { display: flex; }
.trust-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.trust-av:first-child { margin-left: 0; }

/* hero visual */
.hero-visual-wrap {
  position: relative;
  height: 560px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-orbit svg { max-width: 540px; max-height: 540px; }

.hero-model {
  position: absolute;
  z-index: 2;
  width: 280px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  border-radius: 200px 200px 24px 24px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px),
    radial-gradient(ellipse at 50% 30%, rgba(28,79,216,0.25), transparent 60%),
    linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 0 60px rgba(28,79,216,0.12);
}

.hero-card {
  position: absolute;
  z-index: 3;
  background: rgba(15, 20, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  animation: float 6s ease-in-out infinite;
}
.hero-card-1 { top: 12%; left: -4%; animation-delay: 0s; }
.hero-card-2 { bottom: 18%; left: -8%; animation-delay: -2s; flex-direction: column; align-items: stretch; min-width: 200px; gap: 10px; }
.hero-card-3 { top: 25%; right: -6%; animation-delay: -4s; flex-direction: column; align-items: stretch; min-width: 200px; gap: 4px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hc-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.hc-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.hc-value { font-size: 14px; font-weight: 600; color: var(--fg); margin-top: 2px; }
.hc-row { display: flex; justify-content: space-between; align-items: baseline; }
.hc-pct { font-size: 14px; font-weight: 600; color: var(--accent-hover); }
.hc-bars { display: flex; gap: 4px; height: 36px; align-items: flex-end; }
.hc-bars > div {
  flex: 1; background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  border-radius: 2px; opacity: 0.85;
}
.chip {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border-radius: 6px;
  background: rgba(28,79,216,0.18); color: var(--accent-hover);
  border: 1px solid rgba(28,79,216,0.3);
}
.arrow { color: var(--fg-subtle); font-size: 11px; }

/* hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 40px;
}
.stat { padding: 0 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-v {
  font-size: 36px; font-weight: 600; letter-spacing: -0.02em; color: var(--fg);
  font-family: var(--font-display);
}
.stat-l { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

/* ===== Logos strip ===== */
.logos-strip { padding: 56px 0; }
.logos-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 28px;
}
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px;
  opacity: 0.7;
}
.logo-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  filter: grayscale(1);
  transition: opacity .2s, color .2s;
}
.logo-item:hover { color: var(--fg); }

/* ===== Services grid (home) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(28,79,216,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(28,79,216,0.25);
  color: var(--accent-hover);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.service-title { font-size: 17px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.service-desc { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.55; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--accent-hover); font-weight: 500;
  margin-top: 8px;
}

/* ===== Process ===== */
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .process-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-rail { grid-template-columns: 1fr; } }
.step { position: relative; }
.step-num {
  font-size: 13px; color: var(--accent-hover);
  letter-spacing: 0.1em;
}
.step-line {
  height: 2px; background: linear-gradient(90deg, var(--accent), transparent);
  margin: 16px 0 20px;
  border-radius: 2px;
}
.step-title { font-size: 18px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.step-desc { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ===== Problems ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .problems-grid { grid-template-columns: 1fr; } }
.problem {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.problem-x {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  display: flex; align-items: center; justify-content: center;
}
.problem-title { font-size: 16px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.01em; }
.problem-desc { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.5; }

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev-2);
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefit:nth-child(3n) { border-right: none; }
.benefit:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 900px) {
  .benefit { border-right: none; }
  .benefit:last-child { border-bottom: none; }
}
.benefit-v {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent-hover);
  margin-bottom: 12px;
  line-height: 1;
}
.benefit-t { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.benefit-d { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ===== Cases ===== */
.cases-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
@media (max-width: 900px) { .cases-wrap { grid-template-columns: 1fr; } }
.cases-tabs { display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 900px) { .cases-tabs { flex-direction: row; overflow-x: auto; gap: 6px; } }
.case-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: all .15s;
  white-space: nowrap;
}
.case-tab:hover { color: var(--fg); background: var(--bg-elev-1); }
.case-tab.active {
  color: var(--fg);
  background: var(--bg-elev-2);
  border-color: var(--border-strong);
}
.case-tab-n { font-size: 11px; color: var(--accent-hover); }
.case-detail { padding: 40px; min-height: 320px; position: relative; overflow: hidden; }
.case-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 700px) { .case-detail-grid { grid-template-columns: 1fr; } }
.case-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.case-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--fg);
  line-height: 1.5;
}
.case-bullets svg { margin-top: 4px; flex-shrink: 0; }
.case-stat {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(28,79,216,0.15), rgba(28,79,216,0.05));
  border: 1px solid rgba(28,79,216,0.2);
  text-align: center;
  overflow: hidden;
}
.case-stat-v {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 600;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.case-stat-l {
  font-size: 14px; color: var(--fg-muted);
  margin-top: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-stat-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(59,130,246,0.25), transparent 60%);
  pointer-events: none;
}

/* ===== Portfolio ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 800px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev-2);
  transition: border-color .2s, transform .2s;
}
.portfolio-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.portfolio-thumb { aspect-ratio: 16/10; border-radius: 0; border: none; border-bottom: 1px solid var(--border); }
.portfolio-meta { padding: 24px; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  text-wrap: pretty;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }

/* ===== Stack ===== */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: 1fr; } }
.stack-group {
  padding: 24px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stack-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent-hover);
  margin-bottom: 16px;
}
.stack-items { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-chip {
  font-size: 13px; font-weight: 500;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--fg);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev-1);
  overflow: hidden;
  transition: border-color .15s, background .15s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { background: var(--bg-elev-2); border-color: var(--border-strong); }
.faq-q {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: transform .25s, color .15s, background .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent-hover); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { padding: 0 24px 22px; }

/* ===== Final CTA ===== */
.cta-card {
  position: relative;
  padding: 80px 64px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(28,79,216,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
  border: 1px solid var(--border-strong);
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  width: 600px; height: 400px;
  background: var(--accent);
  opacity: 0.3;
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content .section-eyebrow { margin: 0 auto 20px; }
.cta-content > div:last-child { justify-content: center; }
@media (max-width: 700px) { .cta-card { padding: 56px 24px; } }

/* ===== Page hero ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

/* ===== Servicios detail page ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .services-detail-grid { grid-template-columns: 1fr; } }
.service-detail-card { padding: 32px; }
.sd-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sd-starts {
  font-size: 12px; color: var(--accent-hover);
  padding: 4px 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(28,79,216,0.25);
  border-radius: 999px;
}
.sd-title { font-size: 24px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.02em; }
.sd-desc { font-size: 15px; color: var(--fg-muted); margin: 0; line-height: 1.55; }
.sd-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sd-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg);
}
.sd-features svg { margin-top: 4px; flex-shrink: 0; }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .includes-grid { grid-template-columns: 1fr; } }
.include-item { display: flex; gap: 14px; align-items: flex-start; }
.include-check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* ===== Contacto ===== */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1000px) { .contacto-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.contact-line {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-line:last-child { border-bottom: none; }
.contact-icn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(28,79,216,0.25);
  color: var(--accent-hover);
  display: flex; align-items: center; justify-content: center;
}
.ci-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }
.ci-value { font-size: 15px; color: var(--fg); margin-top: 2px; font-weight: 500; }

.contact-promise {
  padding: 24px;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-promise h3 { font-size: 15px; font-weight: 600; margin: 0 0 16px; }
.contact-promise ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.contact-promise li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--fg-muted); }
.cp-n {
  flex-shrink: 0;
  font-size: 11px; color: var(--accent-hover);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(28,79,216,0.25);
  display: inline-flex; align-items: center; justify-content: center;
}

/* form */
.form-card { padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field-label { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.field-label em { color: var(--accent-hover); font-style: normal; margin-left: 4px; }
.input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .15s, background .15s;
}
.input:focus {
  outline: none;
  border-color: var(--accent-hover);
  background: var(--bg-elev-1);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.input::placeholder { color: var(--fg-subtle); }
.textarea { resize: vertical; min-height: 96px; }
.field-error { font-size: 12px; color: #ef4444; margin-top: 4px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
}
.chip-btn:hover { color: var(--fg); border-color: var(--fg-subtle); }
.chip-btn.on {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-hover);
}

.form-success { text-align: center; padding: 56px 36px; }
.success-ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px var(--accent-glow);
}

/* responsive hero */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual-wrap { height: 460px; }
  .hero-card-1, .hero-card-3 { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat:last-child { border-bottom: none; }
}
