:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf8f3;
  --bg-strong: #ebe2d6;

  --fg: #22242b;
  --muted: rgba(34, 36, 43, 0.72);
  --subtle: rgba(34, 36, 43, 0.50);

  --line: rgba(34, 36, 43, 0.10);
  --line-strong: rgba(34, 36, 43, 0.16);

  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.88);

  --accent: #e76731;
  --accent-strong: #d75621;
  --accent-soft: rgba(231, 103, 49, 0.12);
  --accent-2: #72879a;

  --shadow-lg: 0 24px 80px rgba(94, 69, 43, 0.12);
  --shadow-md: 0 16px 40px rgba(94, 69, 43, 0.08);
  --shadow-sm: 0 10px 24px rgba(94, 69, 43, 0.05);

  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(231, 103, 49, 0.10), transparent 60%),
    radial-gradient(800px 480px at 95% 0%, rgba(114, 135, 154, 0.10), transparent 58%),
    linear-gradient(180deg, #f8f3ec 0%, var(--bg) 42%, #f7f2ea 100%);
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(231, 103, 49, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

.landing-wrap {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
}

.landing-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.45;
  z-index: 0;
}

.landing-orb-a {
  width: 280px;
  height: 280px;
  top: 110px;
  left: -90px;
  background: rgba(231, 103, 49, 0.10);
}

.landing-orb-b {
  width: 320px;
  height: 320px;
  top: 480px;
  right: -120px;
  background: rgba(114, 135, 154, 0.10);
}

.landing-gridline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.0), rgba(255,255,255,0.0)),
    linear-gradient(90deg, rgba(34, 36, 43, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(34, 36, 43, 0.025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.20;
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 236, 0.72);
  border-bottom: 1px solid rgba(34, 36, 43, 0.06);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #f0b07d);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.02rem;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--subtle);
  font-weight: 600;
  font-size: 0.95rem;
}

.navlinks a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.navlinks a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.65);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f08a55);
  color: #fff;
  box-shadow: 0 14px 30px rgba(231, 103, 49, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), #eb7f47);
}

.btn-link {
  color: var(--subtle);
  background: transparent;
  padding: 0 10px;
}

.btn-link:hover {
  color: var(--fg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--fg);
  border-color: rgba(34, 36, 43, 0.08);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.94);
}

.btn-light {
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 36, 43, 0.07);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(231, 103, 49, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 850;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

.hero-title {
  margin-top: 18px;
  max-width: 12ch;
}

.hero-sub {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-actions-center {
  justify-content: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(34, 36, 43, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  position: relative;
}

.hero-panel-window {
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.80));
  border: 1px solid rgba(34, 36, 43, 0.07);
  box-shadow: var(--shadow-lg);
}

.window-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(34, 36, 43, 0.06);
  color: var(--subtle);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.84);
}

.window-dots {
  display: inline-flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 36, 43, 0.16);
}

.window-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric-card {
  min-height: 118px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(34, 36, 43, 0.07);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.metric-card-accent {
  background: linear-gradient(135deg, rgba(231, 103, 49, 0.10), rgba(255, 255, 255, 0.92));
}

.metric-wide {
  min-height: 130px;
}

.metric-label {
  display: block;
  color: var(--subtle);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.metric-value {
  display: block;
  margin-top: 12px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.metric-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.metric-bar {
  height: 11px;
  border-radius: 999px;
  background: rgba(34, 36, 43, 0.08);
  overflow: hidden;
}

.metric-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section {
  position: relative;
  z-index: 1;
  padding: 74px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.34);
}

.section-accent {
  padding: 50px 0;
}

.section-cta-final {
  padding-top: 58px;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.78);
}

.section-title {
  max-width: 14ch;
}

.section-sub {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 28px 0;
}

.feature-split + .feature-split {
  border-top: 1px solid rgba(34, 36, 43, 0.06);
  margin-top: 14px;
}

.feature-split-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.feature-split-reverse .feature-visual {
  order: 2;
}

.feature-split-reverse .feature-copy {
  order: 1;
}

.feature-visual {
  min-height: 280px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 36, 43, 0.07);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.feature-visual-soft {
  background: linear-gradient(135deg, rgba(255,255,255,0.90), rgba(255,255,255,0.65));
}

.feature-visual-outline {
  background: linear-gradient(135deg, rgba(231, 103, 49, 0.08), rgba(114, 135, 154, 0.08));
}

.mini-ui {
  width: 170px;
  height: 220px;
  border-radius: 28px;
  border: 2px solid rgba(114, 135, 154, 0.60);
  background: rgba(255, 255, 255, 0.55);
  padding: 16px;
}

.mini-ui-header {
  height: 18px;
  border-radius: 10px;
  background: rgba(114, 135, 154, 0.22);
  margin-bottom: 18px;
}

.mini-ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-ui-grid span {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(231, 103, 49, 0.18);
  border: 1px solid rgba(114, 135, 154, 0.25);
}

.outline-card {
  width: 240px;
  height: 170px;
  border-radius: 22px;
  border: 2px solid rgba(114, 135, 154, 0.55);
  padding: 20px;
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.outline-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(114, 135, 154, 0.16);
  border: 1px solid rgba(114, 135, 154, 0.22);
}

.outline-line-short {
  width: 45%;
}

.outline-line-mid {
  width: 74%;
}

.feature-copy h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
}

.feature-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
  max-width: 56ch;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(231, 103, 49, 0.10);
  color: var(--accent);
  border: 1px solid rgba(231, 103, 49, 0.12);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  color: var(--accent);
}

.module-grid,
.benefit-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card,
.benefit-card,
.price-card {
  border-radius: 28px;
  border: 1px solid rgba(34, 36, 43, 0.08);
  background: rgba(255, 255, 255, 0.76);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
}

.module-card:hover,
.benefit-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 36, 43, 0.14);
}

.module-card p,
.benefit-card p,
.price-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.accent-block {
  border-radius: 36px;
  background: linear-gradient(135deg, var(--accent), #f07f4a);
  color: #fff;
  box-shadow: 0 24px 70px rgba(231, 103, 49, 0.22);
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: center;
}

.accent-copy h2 {
  max-width: 12ch;
}

.accent-copy p {
  margin: 16px 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.accent-visual {
  display: grid;
  place-items: center;
}

.accent-screen {
  width: 260px;
  height: 190px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  padding: 22px;
  display: grid;
  gap: 14px;
}

.accent-screen-row {
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.accent-screen-row.short {
  width: 62%;
}

.price-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 36, 43, 0.06);
  color: var(--fg);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.price-card-featured {
  border-color: rgba(231, 103, 49, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.78));
  box-shadow: 0 20px 50px rgba(231, 103, 49, 0.10);
}

.cta-panel {
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  border: 1px solid rgba(34, 36, 43, 0.08);
  padding: 42px 26px;
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  max-width: 14ch;
  margin: 0 auto;
}

.cta-panel p {
  max-width: 60ch;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  padding: 34px 0 48px;
  color: var(--subtle);
  position: relative;
  z-index: 1;
}

.footer-inner {
  border-top: 1px solid rgba(34, 36, 43, 0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

/* Sin JS: siempre visible. Con JS: oculto hasta que entra en viewport */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Pricing mejorado ──────────────────────────────────────── */
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 8px;
}

.price-number {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 8px;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-popular-badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Testimonios ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.testimonial-card {
  border-radius: 28px;
  border: 1px solid rgba(34, 36, 43, 0.08);
  background: rgba(255, 255, 255, 0.76);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--fg);
  font-style: italic;
}

.testimonial-card blockquote::before { content: "\201C"; }
.testimonial-card blockquote::after  { content: "\201D"; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(34, 36, 43, 0.07);
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f07f4a);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ── Hamburger menu ────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(34, 36, 43, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 36, 43, 0.08);
  padding: 16px 20px 20px;
  z-index: 100;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu-link {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 36, 43, 0.06);
}

.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.mobile-menu-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ── Footer mejorado ───────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(34, 36, 43, 0.08);
}

.footer-tagline {
  margin: 8px 0 16px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.10);
  color: #16a34a;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease;
}

.footer-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin: 0 0 12px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive nuevos componentes ────────────────────────── */
@media (max-width: 1080px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .hamburger-btn {
    display: flex;
  }
  .topbar .actions .btn:not(.hamburger-btn) {
    display: none;
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .module-card,
  .benefit-card,
  .price-card {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .accent-block {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .section-title,
  .accent-copy h2 {
    max-width: none;
  }

  .module-grid,
  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .feature-split,
  .feature-split-reverse {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-split-reverse .feature-visual,
  .feature-split-reverse .feature-copy {
    order: initial;
  }
}

@media (max-width: 880px) {
  .navlinks {
    display: none;
  }

  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
  }

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

@media (max-width: 640px) {
  .landing-wrap {
    width: min(var(--max), calc(100vw - 24px));
  }

  .hero {
    padding: 52px 0 32px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-sub,
  .section-sub,
  .feature-copy p,
  .cta-panel p,
  .accent-copy p {
    font-size: 1rem;
  }

  .hero-panel-window,
  .feature-visual,
  .module-card,
  .benefit-card,
  .price-card,
  .cta-panel,
  .accent-block {
    border-radius: 24px;
  }

  .window-body,
  .module-card,
  .benefit-card,
  .price-card {
    padding: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }
}
/* ── Comparison Table ─────────────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}

.compare-table thead th {
  padding: 14px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}

.compare-table thead th.compare-feature-col {
  text-align: left;
  width: 36%;
}

.compare-table thead th.compare-featured {
  background: rgba(231, 103, 49, 0.08);
  color: var(--accent);
  border-radius: 12px 12px 0 0;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.4);
}

.compare-table tbody td {
  padding: 13px 18px;
  text-align: center;
  color: var(--text-muted);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.compare-table td.compare-featured {
  background: rgba(231, 103, 49, 0.05);
  color: var(--text);
}

.compare-check {
  color: #22c55e;
  font-size: 1.1rem;
  font-weight: 700;
}

.compare-cross {
  color: var(--text-muted);
  opacity: 0.4;
}

.compare-cta-row td {
  padding: 20px 18px;
  border-bottom: none;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 8px 18px;
}

/* ── FAQ Section ──────────────────────────────────────────────── */
.faq-wrap {
  max-width: 720px;
}

.faq-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-question {
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  list-style: none;
  user-select: none;
  margin: 0;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

@media (max-width: 640px) {
  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px 10px;
    font-size: 0.85rem;
  }

  .btn-sm {
    font-size: 0.78rem;
    padding: 7px 12px;
  }
}
