:root {
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(15, 23, 42, 0.08);
  --text: #111111;
  --muted: #5f6673;
  --accent: #161616;
  --accent-soft: #e9eef7;
  --success: #18864b;
  --danger: #c54f36;
  --success-soft: rgba(24, 134, 75, 0.12);
  --danger-soft: rgba(197, 79, 54, 0.12);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 105, 47, 0.13), transparent 38%),
    radial-gradient(circle at top right, rgba(79, 105, 47, 0.22), transparent 30%),
    linear-gradient(180deg, #f6f9f2 0%, #eaefe3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 28px 0 56px;
  overflow-x: clip;
}

.site-header,
.site-footer,
.service-card,
.bundle-card,
.video-showcase,
.value-strip,
.pricing-table-wrap,
.device-card,
.calc-group,
.results-panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  height: 58px;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
  transition: transform 260ms ease, opacity 220ms ease;
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 12px;
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 220ms ease, color 220ms ease;
}

.site-nav a:hover {
  background: #4F692F;
  color: #ffffff;
}

main {
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

.hero,
.demo-section,
.services-section,
.calculator-section,
.pricing-section,
.bundle-section {
  padding: 38px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  min-height: 78vh;
}

.hero-copy,
.hero-panel,
.section-heading,
.service-card,
.bundle-card,
.site-footer > div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6c7484;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2 {
  max-width: 14ch;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.service-card p,
.site-footer p,
.video-note,
.bundle-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.video-placeholder:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.18);
}

.button-secondary {
  color: var(--accent);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.desktop-hero-demo {
  display: none;
}

.device-card {
  width: min(100%, 500px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 248, 0.72));
  box-shadow: var(--shadow);
}

@media (min-width: 761px) {
  body.audience-con .hero-panel > .device-card {
    display: none;
  }

  body.audience-con .desktop-hero-demo {
    display: flex;
  }

  .desktop-hero-demo {
    width: min(100%, 520px);
    min-height: 570px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 8px;
  }

  .desktop-hero-demo-caption {
    display: flex;
    min-height: 2.8em;
    margin: 0;
    align-items: center;
    justify-content: center;
    color: #4F692F;
    font-size: clamp(1rem, 1.45vw, 1.3rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.035em;
    text-align: center;
    text-wrap: balance;
  }

  .desktop-hero-demo-caption.is-revealing {
    animation: desktopCaptionDrop 1050ms cubic-bezier(0.22, 0.85, 0.24, 1) both;
  }

  @keyframes desktopCaptionDrop {
    0% {
      opacity: 0;
      transform: translateY(-26px);
      color: rgba(79, 105, 47, 0.38);
    }
    72% {
      opacity: 1;
      transform: translateY(2px);
      color: #4F692F;
    }
    100% {
      opacity: 1;
      transform: translateY(0);
      color: #4F692F;
    }
  }

  .desktop-hero-demo-stage {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-hero-demo-phone {
    position: relative;
    width: min(52%, 250px);
    aspect-ratio: 618 / 1205;
    overflow: hidden;
    border-radius: 22px;
  }

  .desktop-hero-demo-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
    transform: translateX(108%);
    transition: transform 720ms cubic-bezier(0.22, 0.85, 0.24, 1);
    pointer-events: none;
    will-change: transform;
  }

  .desktop-hero-demo-frame.is-before {
    transform: translateX(-108%);
  }

  .desktop-hero-demo-frame.is-after {
    transform: translateX(108%);
  }

  .desktop-hero-demo-frame.is-active {
    z-index: 2;
    transform: translateX(0);
  }

  .desktop-hero-demo-screen {
    position: absolute;
    inset: 1.2% 1.2% 1% 1.2%;
    z-index: 1;
    overflow: hidden;
    border-radius: 38px;
    background: #000;
  }

  .desktop-hero-demo-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: inherit;
    background: #000;
    pointer-events: none;
  }

  .desktop-hero-demo-shell {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.28));
    pointer-events: none;
    user-select: none;
  }

  .desktop-hero-demo-prev,
  .desktop-hero-demo-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .desktop-hero-demo-prev {
    left: 4%;
  }

  .desktop-hero-demo-next {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  .desktop-hero-demo-next-wrap {
    position: absolute;
    top: 50%;
    right: 1%;
    z-index: 5;
    display: flex;
    width: 94px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateY(-50%);
  }

  .desktop-hero-demo-more {
    color: #4F692F;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-align: center;
    animation: desktopMorePulse 1.8s ease-in-out infinite;
  }

  @keyframes desktopMorePulse {
    0%,
    100% {
      opacity: 0.48;
    }
    50% {
      opacity: 1;
    }
  }

  .desktop-hero-demo-prev:hover {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.24);
    transform: translateY(-50%) scale(1.06);
  }

  .desktop-hero-demo-next:hover {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.24);
    transform: scale(1.06);
  }

  .desktop-hero-demo-prev::before,
  .desktop-hero-demo-next::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-top: 3px solid #65656b;
    border-right: 3px solid #65656b;
  }

  .desktop-hero-demo-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .desktop-hero-demo-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .desktop-hero-demo-prev[hidden],
  .desktop-hero-demo-next[hidden] {
    display: none;
  }

  .desktop-hero-demo-next-wrap[hidden] {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .desktop-hero-demo {
    min-height: 540px;
  }

  .desktop-hero-demo-phone {
    width: min(42vw, 240px);
  }

  .desktop-hero-demo-prev {
    left: calc(50% - 190px);
  }

  .desktop-hero-demo-next-wrap {
    right: calc(50% - 225px);
  }
}

.hero h1 .hero-pill {
  color: #4F692F;
}

body.audience-con .hero h1 .con-title-highlight,
body.audience-con .hero h1 .con-title-rest {
  display: inline-block;
}

@media (min-width: 761px) {
  body.audience-con .hero h1 .con-title-highlight,
  body.audience-con .hero h1 .con-title-suffix {
    margin-left: 0.12em;
  }
}

body.audience-con .hero h1.con-title-animate .con-title-highlight {
  animation: conTitleHighlightIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.audience-con .hero h1.con-title-animate .con-title-rest {
  animation: conTitleRestIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
}

@keyframes conTitleHighlightIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes conTitleRestIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-hero-demo-caption.is-revealing,
  .desktop-hero-demo-more,
  .trial-desktop-more,
  body.audience-con .hero h1.con-title-animate .con-title-highlight,
  body.audience-con .hero h1.con-title-animate .con-title-rest {
    animation: none;
  }

  .desktop-hero-demo-frame {
    transition: none;
  }
}

.device-topbar {
  display: flex;
  gap: 8px;
  padding-bottom: 14px;
}

.device-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.16);
}

.device-screen {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(79, 105, 47, 0.08), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f0 100%);
}

.device-label {
  margin-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #404757;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid article,
.bundle-meta div {
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.mini-calc-results article:first-child {
  background: #4F692F;
  border-color: transparent;
}

.mini-calc-results article:first-child span {
  color: rgba(255, 255, 255, 0.78);
}

.mini-calc-results article:first-child strong {
  color: #ffffff;
}

.metric-grid span,
.bundle-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-grid strong,
.bundle-meta strong {
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.device-flow {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.device-flow div {
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(86, 95, 113, 0.15));
}

.value-strip {
  padding: 22px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #ffffff;
}

.value-strip p {
  margin: 0;
  max-width: 72ch;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: none;
}

.demo-section,
.services-section,
.calculator-section,
.pricing-section,
.bundle-section {
  border: 1px solid var(--border);
  border-radius: 40px;
  background: #ffffff;
}

.services-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.services-section .section-heading {
  gap: 8px;
  margin-bottom: 20px;
}

.services-section .section-heading h2,
.services-section .section-heading p {
  margin-bottom: 0;
}

.video-showcase {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.9), rgba(230, 234, 243, 0.82));
}

.video-placeholder {
  width: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 35%),
    linear-gradient(135deg, #141414 0%, #2a3442 50%, #d5dce7 100%);
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button {
  width: 92px;
  height: 92px;
  position: relative;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #ffffff;
}

.video-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.video-subtitle {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.video-note {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
}

.service-kicker {
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1d1d1f;
}

.split-heading {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.split-heading > p {
  max-width: 36ch;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface-strong);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.pricing-table th,
.pricing-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-table th {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.pricing-table td {
  line-height: 1.7;
  color: #2f3644;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.bundle-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(224, 231, 255, 0.8), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 243, 248, 0.82));
}

.bundle-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.site-footer {
  margin-top: 28px;
  padding: 0;
  border: none;
  border-radius: 32px;
  background: transparent;
  overflow: hidden;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 52px 40px;
  border-radius: 22px;
  background: #4F692F;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(79, 105, 47, 0.28);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -28px;
  margin-bottom: 4px;
}

.footer-logo-icon {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.footer-logo-letters {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-top: -48px;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s;
}

.site-footer.is-visible .footer-logo-icon,
.site-footer.is-visible .footer-logo-letters {
  opacity: 1;
  transform: translateY(0);
}

.footer-headline {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  white-space: nowrap;
}

.footer-sub,
.footer-cta .footer-sub {
  margin: 0;
  font-size: 0.96rem;
  color: #ffffff;
  line-height: 1.6;
}

.footer-cta-btn {
  margin-top: 8px;
  min-height: 50px;
  padding: 0 30px;
  font-size: 0.97rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-family: inherit;
}

.footer-cta-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.calc-group,
.results-panel {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  height: 100%;
}

.calc-group-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.calc-group-heading h3,
.breakdown-head h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.calc-group-kicker,
.breakdown-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

.field-stack {
  display: grid;
  gap: 8px;
}

.calc-field,
.calc-subfield {
  padding: 0;
  border: 0;
  background: transparent;
}

.calc-field-split {
  display: grid;
  gap: 8px;
}

.calc-field-compact {
  display: grid;
  gap: 8px;
}

.field-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.field-marker {
  color: #4f5666;
}

.field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.field-head label,
.subfield-label {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  color: #202633;
}

.field-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: center;
}

.dual-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.calc-subfield .field-control {
  margin-top: 8px;
}

.input-with-unit {
  position: relative;
}

.range-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: #202633;
  font-size: 0.84rem;
  font-weight: 800;
}

.range-input {
  --range-progress: 0%;
  width: 100%;
  height: 8px;
  margin: 6px 0 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #111111 0%,
    #111111 var(--range-progress),
    rgba(15, 23, 42, 0.12) var(--range-progress),
    rgba(15, 23, 42, 0.12) 100%
  );
  appearance: none;
  cursor: pointer;
}

.range-input::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.range-input::-moz-range-track {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.range-input::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -7px;
  border: 2px solid #111111;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
  appearance: none;
}

.range-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid #111111;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
}

.range-input:focus {
  outline: none;
}

.range-input:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.08);
}

.range-input:focus::-moz-range-thumb {
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.08);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
}

.compact-input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(247, 248, 251, 0.95);
  font: inherit;
  font-weight: 700;
  color: #1d2430;
}

.input-with-unit .compact-input {
  appearance: textfield;
  -moz-appearance: textfield;
  padding-right: 40px;
}

.compact-input.calc-fixed {
  background: #1a2333;
  border-color: transparent;
  color: #e2e8f0;
  cursor: default;
  pointer-events: none;
  font-weight: 800;
}

.input-with-unit .compact-input::-webkit-outer-spin-button,
.input-with-unit .compact-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.input-unit {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 800;
  pointer-events: none;
}

.field-head-delivery-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
}

.delivery-split-value {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: #202633;
}

.compact-input:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.compact-input[readonly] {
  background: rgba(239, 242, 247, 0.98);
  color: #4f5666;
  cursor: default;
}

.tooltip-wrap {
  position: relative;
  flex-shrink: 0;
}

.tooltip-trigger {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #4d5565;
  font: inherit;
  font-weight: 800;
  cursor: help;
}

.tooltip-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.tooltip-text {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(320px, 78vw);
  padding: 12px 38px 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #1f2430;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  line-height: 1.55;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
  z-index: 2;
}

.tooltip-wrap.is-open .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .tooltip-wrap:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.tooltip-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.tooltip-close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.savings-modal .tooltip-wrap {
  position: relative;
}

.savings-modal .tooltip-text {
  position: fixed;
  left: var(--tooltip-left, -9999px);
  top: var(--tooltip-top, -9999px);
  right: auto;
  bottom: auto;
  width: min(340px, calc(100vw - 24px));
  transform: translate(-50%, 8px);
  z-index: 10020;
}

.savings-modal .tooltip-wrap.is-open .tooltip-text {
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  /* Desktop: same CSS-only positioning as regular tooltips, right-aligned to the ? */
  .savings-modal .tooltip-text {
    position: absolute;
    left: auto;
    top: auto;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(320px, 78vw);
    transform: translateY(6px);
  }

  .savings-modal .tooltip-wrap:hover .tooltip-text,
  .savings-modal .tooltip-wrap.is-open .tooltip-text {
    transform: translateY(0);
  }

  /* Desktop: no close button — hover dismisses the tooltip */
  .tooltip-close {
    display: none;
  }

  /* Remove extra right padding reserved for the close button */
  .tooltip-text {
    padding-right: 14px;
  }
}

/* ── Gateway combined display (1,5% + 0,25€) ── */
.gateway-combined {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  flex-wrap: nowrap;
}

.gateway-combined .input-with-unit {
  width: 92px;
  flex-shrink: 0;
}

.gateway-plus {
  font-size: 1rem;
  font-weight: 700;
  color: #4d5565;
  flex-shrink: 0;
}

/* ── Monthly fee tooltip: pricing tiers ── */
.fee-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 4px;
}

.fee-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.fee-tier-range {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.fee-tier-price {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
}

.fee-tiers-note {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 720px) {
  .savings-modal .gateway-combined .input-with-unit {
    width: 68px;
  }

  .savings-modal .gateway-combined .compact-input {
    padding: 8px 20px 8px 8px;
    text-align: right;
    width: 100%;
  }

  .savings-modal .gateway-combined .input-unit {
    right: 7px;
  }
}

.calc-tarifa-link {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.calc-tarifa-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.calc-tarifa-btn:hover {
  background: #4F692F;
  color: #ffffff;
  border-color: #4F692F;
}

.calc-disclosure {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px dashed rgba(15, 23, 42, 0.16);
  border-radius: 20px;
  background: rgba(244, 246, 250, 0.78);
}

.calc-disclosure summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  color: #202633;
  font-size: 0.94rem;
  font-weight: 800;
}

.calc-disclosure summary::-webkit-details-marker {
  display: none;
}

.calc-disclosure summary::after {
  content: "+";
  margin-left: auto;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1;
}

.calc-disclosure[open] summary::after {
  content: "−";
}

.calc-disclosure-body {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: #4f5666;
  font-size: 0.9rem;
  line-height: 1.65;
}

.calc-disclosure-body p {
  margin: 0;
}

.calc-disclosure-body strong {
  color: #111111;
}

.calculator-results {
  position: relative;
}

.results-panel {
  position: sticky;
  top: 108px;
  background:
    radial-gradient(circle at top left, rgba(79, 105, 47, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(248, 251, 245, 0.96), rgba(234, 240, 227, 0.88));
}

.results-topline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.results-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-topline strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.06em;
}

.results-caption {
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.results-section + .results-section {
  margin-top: 18px;
}

.results-section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.results-section-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.results-section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section-subtitle {
  max-width: 34rem;
  margin-top: 14px;
  margin-bottom: 0;
  color: #5d6472;
  font-size: 1rem;
  line-height: 1.6;
}

.results-grid-customer {
  grid-template-columns: 1fr;
}

.result-card {
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #ffffff;
}

.result-card-emphasis {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.result-card-emphasis.is-negative {
  background: linear-gradient(180deg, rgba(253, 240, 236, 0.96), rgba(255, 255, 255, 0.82));
}

.result-card.is-negative {
  background: linear-gradient(180deg, rgba(253, 240, 236, 0.96), rgba(255, 255, 255, 0.82));
}

.result-label {
  display: block;
  margin-bottom: 12px;
  color: #4f5666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.result-value {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}

.result-meta {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.savings-positive {
  color: #4F692F;
}

.savings-negative {
  color: var(--danger);
}

.results-breakdown {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.breakdown-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.chart-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot-platform {
  background: #2b3240;
}

.legend-dot-owned {
  background: #9ca8bf;
}

.breakdown-note {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.05);
  color: #39404f;
}

.breakdown-note strong {
  color: #111111;
}

.breakdown-chart {
  display: grid;
  gap: 14px;
}

.chart-row {
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(248, 249, 252, 0.92);
}

.chart-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.chart-row-head > span {
  font-weight: 800;
  color: #242b38;
}

.chart-row-values {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.chart-row-values strong {
  font-size: 0.88rem;
  color: #475062;
}

.mini-bar-stack {
  display: grid;
  gap: 10px;
}

.mini-bar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mini-bar span {
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-bar-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.mini-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 220ms ease;
}

.mini-bar-fill-platform {
  background: linear-gradient(90deg, #12161f, #3d4659);
}

.mini-bar-fill-owned {
  background: linear-gradient(90deg, #9aa7bf, #d0d7e3);
}

.mini-bar-fill.is-negative {
  background: linear-gradient(90deg, #19864b, #84c99d);
}

.results-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.65;
  color: #1f2b21;
  background: var(--success-soft);
}

.results-message.is-negative {
  color: #592d24;
  background: var(--danger-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .bundle-meta,
  .results-grid,
  .dual-field-grid,
  .calculator-inputs {
    grid-template-columns: 1fr;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .footer-headline {
    white-space: normal;
  }

  .results-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at top center, rgba(79, 105, 47, 0.18), transparent 34%),
      linear-gradient(180deg, #f6f9f2 0%, #eaefe3 100%);
  }

  .page-shell {
    width: 100%;
    padding: 12px 0 40px;
  }

  .site-header {
    position: sticky;
    top: 12px;
    width: calc(100% - 24px);
    margin: 0 auto;
    border-radius: 24px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.78);
  }

  .site-nav {
    display: none;
  }

  main {
    gap: 18px;
    padding-top: 18px;
  }

  .field-head {
    align-items: start;
  }

  .field-meta {
    gap: 8px;
  }

  .range-value {
    min-width: 62px;
    font-size: 0.8rem;
  }

  .hero,
  .demo-section,
  .services-section,
  .calculator-section,
  .pricing-section,
  .bundle-section {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 24px 20px;
    border-radius: 32px;
  }

  .hero {
    gap: 22px;
    padding-top: 28px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }

  .hero-copy {
    display: grid;
    gap: 14px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 4px;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    text-wrap: balance;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 4px;
    padding: 8px 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
  }

  .hero-text,
  .section-heading p,
  .service-card p,
  .site-footer p,
  .video-note,
  .bundle-card p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-text {
    max-width: none;
    margin-bottom: 4px;
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
    min-height: 54px;
    padding: 14px 18px;
    font-size: 0.98rem;
  }

  .hero-panel {
    width: 100%;
  }

  .device-card,
  .device-screen {
    width: 100%;
  }

  .device-card {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 250, 0.95));
  }

  .device-screen {
    padding: 18px;
    border-radius: 22px;
  }

  .device-label {
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .metric-grid article {
    padding: 16px;
    border-radius: 18px;
  }

  .metric-grid span {
    margin-bottom: 6px;
    font-size: 0.86rem;
  }

  .metric-grid strong {
    font-size: 1.05rem;
  }

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

  .device-flow {
    gap: 10px;
    margin-top: 14px;
  }

  .device-flow div {
    height: 56px;
    border-radius: 16px;
  }

  .value-strip {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 26px;
  }

  .value-strip p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 20px;
  }

  .video-showcase,
  .pricing-table-wrap,
  .service-card,
  .bundle-card,
  .calc-group,
  .results-panel {
    border-radius: 24px;
  }

  .video-placeholder {
    min-height: 280px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }

  .play-button::before {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }

  .video-title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .video-subtitle {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    padding: 22px 20px;
  }

  .calc-group,
  .results-panel {
    padding: 20px;
  }

  .field-head {
    flex-direction: row;
    align-items: flex-start;
  }

  .breakdown-head,
  .chart-row-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .field-control {
    grid-template-columns: 1fr;
  }

  .mini-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .calc-group,
  .results-panel {
    height: auto;
  }

  .service-kicker {
    margin-bottom: 14px;
  }

  .pricing-section {
    overflow: hidden;
  }

  .pricing-table-wrap {
    margin: 0 -2px;
  }

  .pricing-table {
    min-width: 720px;
  }

  .bundle-card {
    padding: 24px 20px;
  }

  .bundle-meta {
    gap: 12px;
    margin-top: 18px;
  }

  .bundle-meta div {
    padding: 16px;
    border-radius: 18px;
  }

  .site-footer {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 22px 20px;
    border-radius: 26px;
  }
}

/* ==============================================
   Hero — order status pills
   ============================================== */

.device-order-preview {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.order-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 8px;
}

.order-pill-new {
  background: rgba(24, 134, 75, 0.1);
  color: #18864b;
  border: 1px solid rgba(24, 134, 75, 0.18);
}

.order-pill-delivering {
  background: rgba(17, 17, 17, 0.06);
  color: #2d3345;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.order-pill-done {
  background: rgba(15, 23, 42, 0.04);
  color: #6b7280;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* ==============================================
   Platform features grid
   ============================================== */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.platform-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.platform-card-wide {
  grid-column: span 2;
}

/* Carta unificada: left copy, right badges */
.platform-card-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

/* Logística: icon/title/desc then scenario split below */
.platform-card-wide:not(.platform-card-split) {
  display: block;
}

.platform-main {
  min-width: 0;
}

.platform-aside {
  min-width: 0;
}

.platform-aside-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
}

.platform-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d1d1f;
}

/* ==============================================
   Channel badges
   ============================================== */

.channel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.07);
  font-size: 0.84rem;
  font-weight: 700;
  color: #3d4459;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.badge-own {
  background: #111111;
  color: #ffffff;
}

/* ==============================================
   Delivery scenarios (inside logistics card)
   ============================================== */

.scenario-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.scenario-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.scenario-label {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.scenario-desc {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ==============================================
   Tech strip (app, emails, tracking)
   ============================================== */

.tech-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tech-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

.tech-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.tech-feature strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.tech-feature p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==============================================
   Pricing cards (subscription)
   ============================================== */

.pricing-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pricing-section .section-heading {
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-section .section-heading h2 {
  max-width: none;
  margin-bottom: 0;
  white-space: nowrap;
}

.pricing-section .section-heading p {
  margin: 0;
  max-width: 68ch;
}

@media (min-width: 981px) {
  .pricing-section .section-heading p {
    max-width: none;
    white-space: nowrap;
  }
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  border: none;
  border-radius: 22px;
  background: #eef0f3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 14px 32px rgba(0, 0, 0, 0.06);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.pricing-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.pricing-card-reservas .pricing-icon-wrap {
  border-color: rgba(47, 92, 148, 0.2);
  background: rgba(47, 92, 148, 0.08);
}

.pricing-card-web .pricing-icon-wrap {
  border-color: rgba(84, 148, 47, 0.22);
  background: rgba(84, 148, 47, 0.08);
}

.pricing-card-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

.pricing-desc {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.55;
}

.pricing-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price strong {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  line-height: 1;
}

.pricing-price-period {
  font-size: 0.92rem;
  font-weight: 500;
  color: #6e6e73;
  letter-spacing: 0;
}

.pricing-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 0 0 14px;
}

/* Animated reveal — uses grid-template-rows trick to animate to auto height */
.pricing-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
}

.pricing-details-inner {
  min-height: 0;
  overflow: hidden;
}

.pricing-details.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  font-weight: 400;
  color: #1d1d1f;
  line-height: 1.55;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #86868b;
}

.pricing-expand-btn {
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #1d1d1f;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.pricing-expand-btn:hover {
  border-color: rgba(15, 23, 42, 0.18);
  background: #ffffff;
}

.pricing-expand-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.05em;
  line-height: 1;
}

.pricing-expand-btn.is-open .pricing-expand-arrow {
  transform: rotate(-90deg);
}

/* Pricing tier toggle — vertical stack of selectable rows */
.pricing-tier-toggle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 14px;
}

.tier-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.tier-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}

.tier-btn-active {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.tier-range {
  font-size: 0.85rem;
  color: #6e6e73;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.tier-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

.tier-period {
  font-size: 0.78rem;
  font-weight: 500;
  color: #6e6e73;
  letter-spacing: 0;
  margin-left: 2px;
}

.tier-btn-active .tier-range {
  color: #1d1d1f;
}

/* ==============================================
   Pricing info modal (cuotas mensuales popup)
   ============================================== */
.pricing-info-modal .pricing-modal-dialog.pricing-info-dialog {
  max-width: 1280px;
  width: 100%;
  padding: 32px 36px 36px;
  max-height: 94vh;
}

.pricing-info-header {
  display: grid;
  gap: 10px;
  margin: 0 40px 26px 0;
}

.pricing-info-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #111111;
  max-width: none;
  white-space: nowrap;
}

.pricing-info-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #6e6e73;
  line-height: 1.55;
  max-width: 68ch;
}

.pricing-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.pricing-info-modal .pricing-card h3 {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

@media (max-width: 980px) {
  .pricing-info-cards {
    grid-template-columns: 1fr;
  }

  .pricing-info-modal .pricing-modal-dialog.pricing-info-dialog {
    padding: 22px 22px 26px;
  }

  .pricing-info-header {
    margin-right: 36px;
  }

  .pricing-info-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    white-space: normal;
  }
}

/* ==============================================
   Responsive — new components
   ============================================== */

@media (max-width: 980px) {
  .platform-grid,
  .pricing-cards,
  .tech-strip {
    grid-template-columns: 1fr;
  }

  .pricing-section .section-heading h2 {
    white-space: normal;
  }

  .pricing-card h3 {
    font-size: 1.32rem;
  }

  .platform-card-wide {
    grid-column: span 1;
  }

  .platform-card-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scenario-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scenario-divider {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: 100%;
  }

  .hero,
  .demo-section,
  .services-section,
  .calculator-section,
  .pricing-section,
  .bundle-section {
    width: calc(100% - 16px);
    padding: 20px 16px;
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 16px;
  }

  .site-footer {
    width: calc(100% - 16px);
  }

  .footer-cta {
    padding: 40px 24px;
  }

  .footer-headline {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.05rem, 12.2vw, 2.85rem);
  }

  .hero {
    padding-top: 24px;
    gap: 18px;
    border-radius: 0;
  }

  .eyebrow {
    font-size: 0.64rem;
    padding: 7px 10px;
  }

  .value-strip {
    width: calc(100% - 16px);
    padding: 18px;
  }

  .value-strip p {
    font-size: 1rem;
  }

  .service-card,
  .bundle-card,
  .calc-group,
  .results-panel {
    padding: 20px;
  }

  .device-card {
    border-radius: 24px;
  }

  .device-screen {
    padding: 16px;
  }

  .metric-grid article {
    padding: 14px;
  }

  .results-breakdown,
  .chart-row,
  .calc-field,
  .calc-subfield {
    padding: 16px;
  }

  .platform-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .tech-feature {
    padding: 18px 20px;
    border-radius: 20px;
  }

  .pricing-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .pricing-card h3 {
    font-size: 1.5rem;
  }

  .order-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

/* Keep metric-grid 2 columns on small screens (override the 1-col default) */
@media (max-width: 760px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==============================================
   Audience show / hide system
   ============================================== */

/* for-con and for-sin are hidden by default */
.for-con,
.for-sin {
  display: none;
}

/* for-none is shown by default (no audience selected) */
.for-none {
  display: block;
}

/* When "con repartidores" is selected */
body.audience-con .for-con {
  display: block;
}

body.audience-con .for-none {
  display: none;
}

/* When "sin repartidores" is selected */
body.audience-sin .for-sin {
  display: block;
}

body.audience-sin .for-none {
  display: none;
}

/* The SIN calculator teaser was removed; hide empty calculator block in SIN mode */
body.audience-sin .calculator-section {
  display: none;
}

/* ==============================================
   Audience section (pitch — hidden until selection)
   ============================================== */

.audience-section {
  display: none;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: #ffffff;
  padding: 38px;
}

body.audience-con .audience-section,
body.audience-sin .audience-section {
  display: block;
}

/* Smooth reveal when section appears */
.audience-section.is-visible {
  animation: slideIn 420ms ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================================
   Splash screen
   ============================================== */

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vh, 40px) 24px;
  background:
    radial-gradient(circle at top left, rgba(79, 105, 47, 0.13), transparent 38%),
    radial-gradient(circle at top right, rgba(79, 105, 47, 0.22), transparent 30%),
    linear-gradient(180deg, #f6f9f2 0%, #eaefe3 100%);
}

/* Grid pattern identical to body::before */
.splash-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
}

.splash-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  width: 100%;
}

.splash-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c7484;
  margin: 0 0 24px;
  opacity: 0;
  animation: splashFadeIn 500ms ease 100ms forwards;
}

.splash-headline {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, min(8vw, 7.8vh), 5.8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.07em;
  color: var(--text);
  margin: 0 auto clamp(12px, 2.8vh, 28px);
  opacity: 0;
  animation: splashFadeUp 550ms ease 100ms forwards;
}

.splash-picker {
  opacity: 1;
}

.splash-question {
  margin: 0 0 clamp(10px, 2vh, 20px);
  font-size: clamp(0.78rem, 1.4vh, 1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #4F692F;
  opacity: 0;
  animation: splashFadeIn 400ms ease 550ms forwards;
}

.splash-options {
  opacity: 0;
  animation: splashFadeUp 450ms ease 900ms forwards;
}

.splash-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.4vh, 14px);
  max-width: 540px;
  margin: 0 auto;
}

.splash-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(4px, 0.6vh, 6px);
  padding: clamp(12px, 2.2vh, 20px) 22px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease,
    transform 160ms ease, box-shadow 160ms ease;
}

.splash-btn:hover {
  border-color: #4F692F;
  background: #4F692F;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(79, 105, 47, 0.28);
}

.splash-btn:hover strong,
.splash-btn:hover span {
  color: #ffffff;
}

.splash-btn.is-selected {
  border-color: #4F692F;
  background: rgba(79, 105, 47, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(79, 105, 47, 0.18);
}

.splash-btn.is-selected strong {
  color: #4F692F;
}

.splash-btn strong {
  font-size: clamp(0.78rem, 1.4vh, 0.97rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.splash-btn span {
  font-size: clamp(0.68rem, 1.2vh, 0.86rem);
  color: var(--muted);
  line-height: 1.4;
}

.splash-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0 clamp(6px, 1.5vh, 12px);
}

.splash-logo-icon {
  width: clamp(110px, 22vh, 220px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: splashDropDown 500ms cubic-bezier(0.22, 1, 0.36, 1) 1500ms forwards;
}

.splash-logo-letters {
  height: clamp(40px, 8vh, 78px);
  width: auto;
  object-fit: contain;
  margin-top: clamp(-74px, -7.5vh, -36px);
  opacity: 0;
  animation: splashDropDown 500ms cubic-bezier(0.22, 1, 0.36, 1) 1900ms forwards;
}

.splash-tagline {
  font-size: clamp(0.62rem, 1.1vh, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4F692F;
  margin: 0 0 clamp(8px, 1.8vh, 18px);
  opacity: 0;
  animation: splashFadeIn 400ms ease 1200ms forwards;
}

/* Splash entrance keyframes */
@keyframes splashDropDown {
  from { opacity: 0; transform: translateY(-26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes splashFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Splash exit — curtain rising effect */
.splash-screen.is-leaving {
  animation: splashCurtain 580ms cubic-bezier(0.55, 0, 0.35, 1) forwards;
  pointer-events: none;
}

@keyframes splashCurtain {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

/* Lock scroll while splash is active */
body.splash-active {
  overflow: hidden;
}

/* Allow splash to scroll internally if content overflows on small screens */
.splash-screen {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
}

/* ==============================================
   Hero tagline (shown after audience selection)
   ============================================== */

.hero-tagline {
  margin: 20px 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ==============================================
   Nav audience toggle
   ============================================== */

.audience-toggle {
  display: none; /* hidden until audience selected */
  align-items: center;
  gap: 4px;
  padding: 4px 4px 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

body.audience-con .audience-toggle,
body.audience-sin .audience-toggle {
  display: flex;
}

.toggle-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 4px;
}

.toggle-opt {
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.toggle-opt:hover {
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
}

/* Active toggle option */
body.audience-con .toggle-opt[data-pick="con"],
body.audience-sin .toggle-opt[data-pick="sin"] {
  background: #111111;
  color: #ffffff;
}

/* ==============================================
   Pitch card variants
   ============================================== */

/* Savings-highlighted cards for "sin repartidores" audience */
.service-card-savings {
  background: linear-gradient(180deg, rgba(232, 247, 239, 0.85), rgba(255, 255, 255, 0.72));
  border-color: rgba(24, 134, 75, 0.15);
}

/* Apple-style cards for SIN repartidores section */
.for-sin .services-grid {
  gap: 16px;
}

.for-sin .service-card,
.for-sin .service-card-savings {
  padding: 36px 34px;
  border: none;
  border-radius: 22px;
  background: #eef0f3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.for-sin .service-card:hover,
.for-sin .service-card-savings:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 14px 32px rgba(0, 0, 0, 0.06);
}

.for-sin .service-card .card-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin: 0 0 20px;
}

.for-sin .service-card .card-icon-lg {
  width: 69px;
  height: 69px;
  margin-top: -12px;
  margin-left: -10px;
  margin-bottom: 6px;
}

.for-sin .service-card .card-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -14px 0 6px;
}

.for-sin .service-card .card-icon-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.for-sin .service-card .card-icon-row img.icon-lg {
  width: 77px;
  height: 77px;
}

/* Mobile: keep all 7 icons on a single row */
@media (max-width: 600px) {
  .for-sin .service-card .card-icon-row {
    gap: 4px;
    flex-wrap: nowrap;
    margin-left: -4px;
  }
  .for-sin .service-card .card-icon-row img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .for-sin .service-card .card-icon-row img.icon-lg {
    width: 54px;
    height: 54px;
  }
}

.for-sin .service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #1d1d1f;
}

.for-sin .service-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #6e6e73;
  margin: 0;
}

.for-sin .service-card ul {
  margin-top: 22px;
}

.for-sin .service-card li {
  font-size: 0.95rem;
  color: #1d1d1f;
  line-height: 1.9;
  padding-left: 20px;
}

.for-sin .service-card li::before {
  top: 12px;
  width: 6px;
  height: 6px;
  background: #86868b;
}

.for-sin .service-card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #38AB2B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.for-sin .service-card .card-link:hover {
  color: #2d8a22;
  text-decoration: underline;
}

.for-sin .service-card .card-link-blue {
  color: #007AFF;
}

.for-sin .service-card .card-link-blue:hover {
  color: #0051a8;
}

/* Apple-style cards for CON repartidores section */
.for-con .services-grid {
  gap: 16px;
}

.for-con .service-card {
  padding: 36px 34px;
  border: none;
  border-radius: 22px;
  background: #eef0f3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.for-con .service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 14px 32px rgba(0, 0, 0, 0.06);
}

.for-con .service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #1d1d1f;
}

.for-con .service-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #6e6e73;
  margin: 0;
}

.for-con .service-card ul {
  margin-top: 22px;
}

.for-con .service-card li {
  font-size: 0.95rem;
  color: #1d1d1f;
  line-height: 1.9;
  padding-left: 20px;
}

.for-con .service-card li::before {
  top: 12px;
  width: 6px;
  height: 6px;
  background: #86868b;
}

.for-con .service-card .card-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin: 0 0 20px;
}

.for-con .service-card .card-icon-lg {
  width: 62px;
  height: 62px;
  margin-top: -8px;
  margin-bottom: 14px;
}

/* Card 2: seguimiento + movil overlay */
.con-app-visual {
  position: relative;
  width: 95px;
  height: 68px;
  margin: -22px 0 18px;
}

.con-app-seguimiento {
  width: 81px;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.con-app-movil {
  width: 17px;
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Single icon cards: slide up from below */
.for-con .card-animate .card-icon {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.for-con .card-animate.is-visible .card-icon {
  opacity: 1;
  transform: translateY(0);
}

/* Card 2: seguimiento al mismo ritmo que el resto de iconos, movil 2s después */
.for-con .card-animate .con-app-seguimiento {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.for-con .card-animate.is-visible .con-app-seguimiento {
  opacity: 1;
  transform: translateY(0);
}

.for-con .card-animate .con-app-movil {
  opacity: 0;
  transform: scale(0.75) translateY(8px);
  transition: opacity 0.4s ease-out 2s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 2s;
}

.for-con .card-animate.is-visible .con-app-movil {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.for-con .service-card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #38AB2B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.for-con .service-card .card-link-purple {
  color: #9D00FF;
}

.for-con .service-card .card-link-purple:hover {
  color: #7a00cc;
}

.for-con .service-card .card-link-orange {
  color: #FF9500;
}

.for-con .service-card .card-link-orange:hover {
  color: #cc7700;
}

@media (prefers-reduced-motion: reduce) {
  .for-con .card-animate .card-icon,
  .for-con .card-animate .con-app-seguimiento,
  .for-con .card-animate .con-app-movil {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.services-grid-apple {
  gap: 16px;
}

.service-card-apple {
  padding: 36px 34px;
  border: none;
  border-radius: 22px;
  background: #eef0f3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-apple:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 14px 32px rgba(0, 0, 0, 0.06);
}

.service-card-apple h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #1d1d1f;
}

.service-card-apple > p:not(.service-kicker) {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #6e6e73;
  margin: 0;
}

.service-card-apple ul {
  margin-top: 22px;
}

.service-card-apple li {
  font-size: 0.95rem;
  color: #1d1d1f;
  line-height: 1.9;
  padding-left: 20px;
}

.service-card-apple li::before {
  top: 12px;
  width: 6px;
  height: 6px;
  background: #86868b;
}

.services-grid-apple .service-card-apple-reservas {
  order: 2;
}

.services-grid-apple .service-card-apple-web {
  order: 1;
  padding-top: 30px;
}

.services-grid-apple .service-card-apple-reservas h3 {
  color: #1d1d1f;
}

.services-grid-apple .service-card-apple-reservas .service-title-highlight-reservas {
  color: #2F5C94;
}

.services-grid-apple .service-card-apple-web h3 {
  color: #1d1d1f;
}

.services-grid-apple .service-card-apple-web .service-title-highlight-web {
  color: #54942F;
}

.service-card-apple .service-kicker {
  display: none;
}

.service-card-apple-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

.service-card-apple-visual-reservas {
  position: relative;
  width: 44px;
  min-height: 44px;
}

.service-card-apple-visual-reservas .service-card-apple-reservas-base {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.service-card-apple-visual-reservas .service-card-apple-reservas-tick {
  position: absolute;
  left: 8px;
  top: 16px;
  width: 18px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.service-card-apple-visual-web {
  position: relative;
  width: 58px;
  min-height: 44px;
}

.service-card-apple-visual-web .service-card-apple-screen {
  width: 56px;
  height: auto;
  object-fit: contain;
}

.service-card-apple-visual-web .service-card-apple-mouse {
  position: absolute;
  left: 40px;
  top: 30px;
  width: 9px;
  height: 9px;
  object-fit: contain;
  z-index: 2;
}

/* Same staggered icon reveal style used in the cards above */
.services-grid-apple .card-animate .card-icon-row img {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-grid-apple .card-animate.is-visible .card-icon-row img {
  opacity: 1;
  transform: translateY(0);
}

.services-grid-apple .card-animate.is-visible .service-card-apple-visual-web img:nth-child(1) {
  transition-delay: 0.2s;
}

.services-grid-apple .card-animate.is-visible .service-card-apple-visual-web img:nth-child(2) {
  transition-delay: 0.56s;
}

.services-grid-apple .card-animate.is-visible .service-card-apple-visual-reservas img.service-card-apple-reservas-base {
  transition-delay: 0.2s;
}

.services-grid-apple .card-animate .service-card-apple-visual-reservas img.service-card-apple-reservas-tick {
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.services-grid-apple .card-animate.is-visible .service-card-apple-visual-reservas img.service-card-apple-reservas-tick {
  opacity: 1;
  transform: scale(1);
  transition-delay: 2s;
}

.services-grid-apple .card-animate.is-visible .service-card-apple-visual-web .service-card-apple-mouse {
  animation: serviceCardMouseDrift 6s ease-in-out 1.2s infinite;
}

@keyframes serviceCardMouseDrift {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  8%   { opacity: 1; transform: translate(0, 0) scale(1); }
  33%  { opacity: 1; transform: translate(-18px, -14px) scale(1); }
  66%  { opacity: 1; transform: translate(-18px, -14px) scale(1); }
  78%  { opacity: 0; transform: translate(-18px, -14px) scale(1); }
  100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

.hero h1 .hero-pill {
  color: #4F692F;
}

/* ==============================================
   SIN audience — hero entrance animations
   ============================================== */

/* Initial hidden state for hero elements when audience is SIN */
body.audience-sin .site-header {
  opacity: 0;
  transform: translateY(-100%);
}

body.audience-sin .hero-panel {
  opacity: 0;
  transform: translateX(70px) scale(0.96);
}

/* Paragraph below h1: hidden until the period is typed */
body.audience-sin .for-sin .hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.audience-sin .for-sin .hero-text.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Disable default .reveal transition so our animations run cleanly */
body.audience-sin .hero-panel.reveal {
  transition: none;
}

/* Play entrance animations once .hero-intro is applied to body */
body.audience-sin.hero-intro .site-header {
  opacity: 1;
  transform: translateY(0);
  animation: heroHeaderSlideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

body.audience-sin.hero-intro .hero-panel {
  animation: heroPanelSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

@keyframes heroHeaderSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes heroPanelSlideIn {
  from { opacity: 0; transform: translateX(70px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Typewriter: per-character spans start hidden (space reserved) and are
   revealed one by one — layout never reflows. */
.tw-char.is-hidden {
  visibility: hidden;
}

.hero-caret {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: currentColor;
  vertical-align: -0.08em;
  margin-left: 4px;
  animation: heroCaretBlink 0.75s steps(1) infinite;
}

.hero-period {
  display: inline-block;
}

.hero-period.is-blinking {
  animation: heroPeriodBlink 0.5s steps(1) 4;
}

@keyframes heroCaretBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@keyframes heroPeriodBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  body.audience-sin .site-header,
  body.audience-sin .hero-panel,
  body.audience-sin .for-sin .hero-text {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-caret,
  .hero-period.is-blinking {
    animation: none !important;
  }
}

/* ==============================================
   SIN repartidores — card animations
   ============================================== */

/* Icon slides up from below (cards 1, 2, 4) */
.for-sin .card-animate .card-icon {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.for-sin .card-animate.is-visible .card-icon {
  opacity: 1;
  transform: translateY(0);
}

/* Card 3 icon row: sequential left-to-right reveal */
.for-sin .card-animate .card-icon-row img {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.for-sin .card-animate.is-visible .card-icon-row img {
  opacity: 1;
  transform: translateY(0);
}

.for-sin .card-animate.is-visible .card-icon-row img:nth-child(1) { transition-delay: 0.2s; }
.for-sin .card-animate.is-visible .card-icon-row img:nth-child(2) { transition-delay: 0.56s; }
.for-sin .card-animate.is-visible .card-icon-row img:nth-child(3) { transition-delay: 0.92s; }
.for-sin .card-animate.is-visible .card-icon-row img:nth-child(4) { transition-delay: 1.28s; }
.for-sin .card-animate.is-visible .card-icon-row img:nth-child(5) { transition-delay: 1.64s; }
.for-sin .card-animate.is-visible .card-icon-row img:nth-child(6) { transition-delay: 2s; }
.for-sin .card-animate.is-visible .card-icon-row img:nth-child(7) { transition-delay: 2.36s; }

@media (prefers-reduced-motion: reduce) {
  .for-sin .card-animate .card-icon,
  .for-sin .card-animate .card-icon-row img,
  .services-grid-apple .card-animate .card-icon-row img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .services-grid-apple .card-animate .service-card-apple-visual-web .service-card-apple-mouse {
    animation: none !important;
  }

  .services-grid-apple .card-animate .service-card-apple-visual-reservas .service-card-apple-reservas-tick {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==============================================
   Pricing modal (delivery cost)
   ============================================== */
.pricing-modal[hidden] {
  display: none;
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-modal:not([hidden]) .pricing-modal-backdrop {
  animation: modal-backdrop-in 0.28s ease both;
}

.pricing-modal:not([hidden]) .pricing-modal-dialog {
  animation: modal-slide-up 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==============================================
   Trial CTA — slow fade-in highlight
   ============================================== */
.trial-mobile-video-section {
  display: none;
  position: relative;
}

.trial-mobile-video-track {
  display: flex;
  gap: 12px;
}

.trial-mobile-video-frame {
  position: relative;
  flex: 0 0 84%;
  scroll-snap-align: start;
  aspect-ratio: 618 / 1205;
  overflow: visible;
}

.trial-mobile-video-screen {
  position: absolute;
  inset: 1.2% 1.2% 1% 1.2%;
  border-radius: 42px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.trial-mobile-heading {
  display: none;
  margin: 0 0 12px;
  min-height: 3.6em;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  color: #1d1d1f;
  font-family: inherit;
  font-size: clamp(1.05rem, 4.1vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  text-wrap: balance;
  will-change: transform, opacity, color;
}

.trial-mobile-heading.is-revealing {
  animation: trialHeadingReveal 1320ms cubic-bezier(0.22, 0.85, 0.24, 1) forwards;
}

@keyframes trialHeadingReveal {
  0% {
    opacity: 0;
    transform: translateY(26px);
    color: rgba(29, 29, 31, 0.38);
  }
  72% {
    opacity: 1;
    transform: translateY(-2px);
    color: #1d1d1f;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #1d1d1f;
  }
}

.trial-mobile-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
  background: #000;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .trial-mobile-heading { transition: none !important; }
  .trial-mobile-heading.is-revealing { animation: none !important; }
}

.trial-mobile-phone-shell {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.26));
}

.trial-mobile-next {
  display: none;
}

.trial-mobile-prev {
  display: none;
}

.trial-desktop-next-wrap,
.trial-desktop-more {
  display: none;
}

@media (min-width: 761px) {
  body.audience-sin .trial-mobile-video-section {
    display: block;
    width: min(100% - 48px, 520px);
    margin: 22px auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.audience-sin .trial-mobile-heading {
    display: flex;
  }

  body.audience-sin .trial-mobile-video-track {
    width: 250px;
    margin: 0 auto;
    gap: 0;
    overflow-x: hidden;
    border-radius: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  body.audience-sin .trial-mobile-video-frame {
    flex-basis: 100%;
  }

  body.audience-sin .trial-mobile-video-track::-webkit-scrollbar {
    display: none;
  }

  body.audience-sin .trial-mobile-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(228, 228, 232, 0.5);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    transform: translateY(-50%);
    cursor: pointer;
  }

  body.audience-sin .trial-desktop-next-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 5;
    display: flex;
    width: 96px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateY(-50%);
  }

  body.audience-sin .trial-mobile-next {
    position: relative;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(228, 228, 232, 0.5);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    cursor: pointer;
  }

  body.audience-sin .trial-mobile-prev {
    left: 6px;
  }

  body.audience-sin .trial-mobile-next::before,
  body.audience-sin .trial-mobile-prev::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-top: 3px solid #65656b;
    border-right: 3px solid #65656b;
  }

  body.audience-sin .trial-mobile-next::before {
    transform: translateX(-1px) rotate(45deg);
  }

  body.audience-sin .trial-desktop-more {
    display: block;
    color: #4F692F;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    animation: desktopMorePulse 1.8s ease-in-out infinite;
  }

  body.audience-sin .trial-mobile-prev::before {
    transform: translateX(1px) rotate(-135deg);
  }

  body.audience-sin .trial-desktop-next-wrap[hidden],
  body.audience-sin .trial-mobile-next[hidden],
  body.audience-sin .trial-mobile-prev[hidden] {
    display: none;
  }
}

@media (max-width: 760px) {
  .trial-desktop-next-wrap {
    display: contents;
  }

  .site-header.is-scroll-hidden {
    transform: translateY(calc(-100% - 18px)) !important;
    opacity: 0 !important;
    pointer-events: none;
  }

  .trial-mobile-heading {
    display: flex;
  }

  .trial-mobile-video-section {
    display: block;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.audience-con .hero-panel > .device-card {
    display: none;
  }

  .hero-panel > .trial-mobile-video-section.is-hero-mobile {
    width: 100%;
    margin: 0;
  }

  .trial-mobile-video-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .trial-mobile-video-track::-webkit-scrollbar {
    display: none;
  }

  .trial-mobile-next,
  .trial-mobile-prev {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(228, 228, 232, 0.5);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .trial-mobile-next {
    right: 6px;
  }

  .trial-mobile-prev {
    left: 6px;
  }

  .trial-mobile-next::before,
  .trial-mobile-prev::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-top: 3px solid #65656b;
    border-right: 3px solid #65656b;
  }

  .trial-mobile-video-section.is-first-frame .trial-mobile-next {
    background: rgba(184, 186, 194, 0.78);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.24);
  }

  .trial-mobile-video-section.is-first-frame .trial-mobile-next::before {
    border-top-color: #53535a;
    border-right-color: #53535a;
  }

  .trial-mobile-next::before {
    transform: translateX(-1px) rotate(45deg);
  }

  .trial-mobile-prev::before {
    transform: translateX(1px) rotate(-135deg);
  }

  .trial-mobile-next[hidden],
  .trial-mobile-prev[hidden] {
    display: none;
  }

  body.audience-con .hero h1 {
    max-width: 100%;
    padding-inline: 4px;
    font-size: clamp(2.15rem, 10.8vw, 2.75rem);
    letter-spacing: -0.065em;
    text-wrap: pretty;
  }

  body.audience-con .hero h1 .con-title-prefix,
  body.audience-con .hero h1 .con-title-highlight,
  body.audience-con .hero h1 .con-title-suffix {
    display: inline;
  }

}

.trial-highlight {
  color: #4F692F;
  opacity: 0;
  transition: opacity 2.2s ease-out 0.65s;
}

.services-section.is-visible .trial-highlight {
  opacity: 1;
}

#plataforma .trial-cta {
  margin-bottom: 0;
}

#plataforma .trial-cta h2 {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .trial-highlight {
    opacity: 1 !important;
    transition: none !important;
  }
}

.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.pricing-modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f2f2f7;
  color: #1d1d1f;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.pricing-modal-close:hover {
  background: #e5e5ea;
}

.pricing-modal-dialog h3 {
  margin: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1d1d1f;
}

.pricing-modal-toggle {
  display: inline-flex;
  background: #f2f2f7;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 22px;
}

.pricing-toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6e6e73;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-toggle-btn.is-active {
  background: #fff;
  color: #1d1d1f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.pricing-toggle-btn.pricing-toggle-uber.is-active {
  background: #38AB2B;
  color: #fff;
}

.pricing-toggle-btn.pricing-toggle-glovo.is-active {
  background: #FFC244;
  color: #1d1d1f;
}

.pricing-modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  color: #1d1d1f;
}

.pricing-modal-table th,
.pricing-modal-table td {
  border: 1px solid #e5e5ea;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.pricing-modal-table th {
  background: #fafafa;
  font-weight: 600;
  width: 28%;
}

.pricing-modal-table p {
  margin: 0 0 8px;
}

.pricing-modal-table p:last-child {
  margin-bottom: 0;
}

.pricing-modal-table-glovo thead th {
  background: #fafafa;
  width: auto;
}

.pricing-modal-note {
  margin: 6px 0 0;
  font-size: 0.82rem;
  color: #86868b;
  text-align: center;
  font-style: italic;
}

body.modal-open {
  overflow: hidden;
  position: fixed; /* iOS Safari: prevents page scroll-through behind modal */
  width: 100%;
}

@media (max-width: 600px) {
  .pricing-modal-dialog {
    padding: 22px 18px;
  }
  .pricing-modal-table {
    font-size: 0.85rem;
  }
  .pricing-modal-table th,
  .pricing-modal-table td {
    padding: 10px;
  }
}

/* ==============================================
   Savings calculator modal (SIN repartidores)
   ============================================== */
.savings-modal {
  padding: 24px 16px;
}

.savings-top-summary {
  display: none;
}

@media (max-width: 720px) {
  .savings-top-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
}

.savings-top-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f7f8fa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
}

.savings-top-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.01em;
}

.savings-top-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.savings-top-value.savings-positive {
  color: #38ab2b;
}

.savings-top-value.savings-negative {
  color: #d32f2f;
}

@media (max-width: 480px) {
  .savings-top-card {
    padding: 13px 14px;
  }
  .savings-top-value {
    font-size: 1.25rem;
  }
}

/* backdrop-filter on .calc-group/.results-panel would create a new containing block
   for position:fixed children (breaking tooltip positioning). The dialog background
   is white so the blur has no visual effect here — safe to remove. */
.savings-modal .calc-group,
.savings-modal .results-panel {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.savings-modal .calc-group-heading {
  margin-bottom: 10px;
}

.savings-modal-dialog {
  max-width: 1280px;
  width: 100%;
  padding: 28px 32px;
  max-height: 94vh;
}

.savings-modal-header {
  display: grid;
  gap: 8px;
  margin: 0 40px 20px 0;
}

.savings-modal-header .eyebrow {
  margin: 0;
}

.savings-modal-header h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.savings-modal-header .section-subtitle {
  margin: 0;
  color: #6e6e73;
  font-size: 0.98rem;
}

.savings-modal-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.savings-modal-layout .calculator-inputs {
  display: contents;
}

.savings-modal-layout .calc-group {
  align-self: stretch;
}

.savings-modal-layout .calculator-results {
  grid-column: 3;
}

.savings-modal-layout .results-panel {
  position: static;
  height: auto;
}

.savings-modal .results-grid-customer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.savings-modal .result-card-full {
  grid-column: 1 / -1;
  text-align: center;
}

@media (max-width: 720px) {
  /* Full-height mobile layout without top gap */
  .savings-modal {
    padding: 0;
    align-items: flex-start;
  }

  .savings-modal-dialog {
    margin-top: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    padding: 44px 18px 22px;
  }

  /* Keep close button visible while dialog scrolls */
  .savings-modal .pricing-modal-close {
    position: fixed;
    top: 12px;
    top: calc(env(safe-area-inset-top) + 12px);
    right: 16px;
    z-index: 1010;
  }

  .savings-modal-header {
    margin-right: 0;
  }

  .savings-modal-header h3 {
    font-size: 1.3rem;
  }

  .savings-modal-layout {
    grid-template-columns: 1fr;
  }

  .savings-modal-layout .calculator-results {
    grid-column: auto;
  }

  .savings-modal .calc-group-heading {
    margin-bottom: 6px;
    gap: 4px;
  }

  .savings-modal .field-head-delivery-split {
    gap: 0;
  }

  .savings-modal .delivery-split-value {
    font-size: 0.84rem;
  }

  .savings-modal .calc-field-compact:has(input[type="range"]) {
    gap: 4px;
    padding: 2px 0;
  }

  .savings-modal .calc-field-compact:has(input[type="range"]) + .calc-field-compact:has(input[type="range"]) {
    margin-top: -4px;
  }
}

/* Compact "table-like" rows inside the savings modal on mobile:
   label on the left, small input on the right for number fields. */
@media (max-width: 720px) {
  .savings-modal .calc-field-compact:has(input[type="number"]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 22px;
    row-gap: 0;
    padding: 6px 0;
  }

  .savings-modal .calc-field-compact:has(input[type="number"]) .field-head {
    align-items: center;
    flex-wrap: nowrap;
  }

  .savings-modal .calc-field-compact:has(input[type="number"]) label {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  /* Keep "(delivery)" / "(takeaway)" on the same line as "plataforma" */
  .savings-modal .label-nowrap {
    white-space: nowrap;
  }

  .savings-modal .calc-field-compact:has(input[type="number"]) .compact-input {
    width: 68px;
    padding: 8px 10px;
    text-align: right;
  }

  .savings-modal .calc-field-compact:has(input[type="number"]) .input-with-unit {
    width: 68px;
  }

  /* Inside input-with-unit: leave room on the right for the € (or other unit)
     so value and symbol never overlap. */
  .savings-modal .calc-field-compact:has(input[type="number"]) .input-with-unit .compact-input {
    width: 100%;
    padding: 8px 20px 8px 8px;
    text-align: right;
  }

  .savings-modal .calc-field-compact:has(input[type="number"]) .input-with-unit .input-unit {
    right: 7px;
  }

  /* Remove the old stacked gap only for these rows */
  .savings-modal .calc-field-compact:has(input[type="number"]) {
    row-gap: 0;
  }

  /* Split field (Comisión de pasarela de pago): stack sub-fields vertically
     so label and input never overlap on narrow screens. */
  .savings-modal .calc-field-split {
    padding: 6px 0;
  }

  .savings-modal .calc-field-split .field-head {
    margin-bottom: 6px;
  }

  .savings-modal .calc-field-split .dual-field-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .savings-modal .calc-field-split .calc-subfield {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
  }

  .savings-modal .calc-field-split .calc-subfield .subfield-label {
    white-space: normal;
    overflow: visible;
  }

  .savings-modal .calc-field-split .calc-subfield .compact-input {
    width: 86px;
    padding: 8px 12px;
    text-align: right;
  }

  .savings-modal .calc-field-split .calc-subfield .input-with-unit {
    width: 96px;
  }

  .savings-modal .calc-field-split .calc-subfield .input-with-unit .compact-input {
    width: 100%;
    padding: 8px 28px 8px 10px;
  }

  .savings-modal .calc-field-split .calc-subfield .input-with-unit .input-unit {
    right: 10px;
  }

  .savings-modal .field-stack {
    gap: 4px;
  }
}

/* ── Result card styling within savings modal ── */
.savings-modal .result-label {
  font-weight: 700;
}

.savings-modal .result-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.savings-modal .result-card-emphasis,
.savings-modal .result-card-full {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.savings-modal .result-card-emphasis.is-negative {
  background: linear-gradient(180deg, rgba(253, 240, 236, 0.96), rgba(255, 255, 255, 0.82));
}

.results-section-kicker-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-trial-cta-wrap {
  margin: 12px 0 14px;
}

.results-trial-cta {
  min-height: 42px;
  padding: 0 18px;
  border: none;
  border-radius: 12px;
  background: #4F692F;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
}

.results-trial-cta:hover {
  background: #3d5124;
  box-shadow: 0 10px 20px rgba(79, 105, 47, 0.28);
}

.trial-form-modal {
  padding: 24px 16px;
}

.trial-form-dialog {
  max-width: 760px;
  width: 100%;
  padding: 28px 26px;
}

.trial-form-header {
  display: grid;
  gap: 8px;
  margin: 0 34px 18px 0;
}

.trial-form-header .eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  background: #4F692F;
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.trial-form-header h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.trial-form-header .section-subtitle {
  margin: 0;
  color: #6e6e73;
}

.trial-form-email-link {
  width: fit-content;
  font-size: 0.86rem;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trial-form-email-link:hover {
  color: #111111;
}

.trial-interest-form {
  display: grid;
  gap: 14px;
}

.trial-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trial-form-field {
  display: grid;
  gap: 6px;
}

.trial-form-field span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #202633;
}

.trial-form-field input,
.trial-form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #f8f9fb;
  font: inherit;
  color: #1d2430;
}

.trial-form-field textarea {
  resize: vertical;
}

.trial-form-field input:focus,
.trial-form-field textarea:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.24);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.trial-form-field-full {
  grid-column: 1 / -1;
}

.trial-map-preview[hidden] {
  display: none;
}

.trial-map-preview {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(245, 247, 251, 0.92);
}

.trial-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f7, #e3e8ef);
}

.trial-map-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.trial-map-hint,
.trial-map-meta {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.trial-map-hint {
  color: #1f2937;
  font-weight: 700;
}

.trial-map-meta {
  color: #4b5563;
}

.trial-map-attribution {
  margin: 0;
  font-size: 0.68rem;
  color: #6b7280;
  text-align: right;
}

.trial-map-attribution a {
  color: inherit;
  text-decoration: underline;
}

.trial-map-preview.is-loading .trial-map-hint {
  color: #374151;
}

.trial-map-preview.is-error {
  border-color: rgba(185, 28, 28, 0.24);
  background: rgba(254, 242, 242, 0.92);
}

.trial-map-preview.is-error .trial-map-hint {
  color: #991b1b;
}

.trial-form-actions {
  display: grid;
  gap: 8px;
}

.trial-form-submit {
  min-height: 46px;
  border: none;
  border-radius: 12px;
  background: #4F692F;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 160ms ease;
}

.trial-form-submit:hover {
  background: #3d5124;
}

.trial-form-submit:disabled {
  opacity: 0.65;
  cursor: default;
}

.trial-form-status {
  margin: 0;
  min-height: 20px;
  font-size: 0.85rem;
  color: #4f5666;
}

.trial-form-status.is-success {
  color: #15803d;
}

.trial-form-status.is-error {
  color: #b91c1c;
}

.trial-success-panel {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 16px 14px;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.96), rgba(249, 255, 252, 0.96));
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.trial-success-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trial-success-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111111;
  position: relative;
  animation: trialPulseIn 520ms ease-out;
}

.trial-success-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 9px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.trial-success-title,
.trial-success-copy {
  margin: 0;
  text-align: center;
}

.trial-success-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #14532d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trial-success-copy {
  font-size: 0.84rem;
  color: #166534;
}

@keyframes trialPulseIn {
  0% {
    transform: scale(0.78);
    opacity: 0.4;
  }
  65% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* ── Green pill for "Calculadora de ahorro" eyebrow ── */
.savings-modal-header .eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 14px;
  background: #4F692F;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

/* Red value for current platform cost */
#currentMonthlyCostValue {
  color: #dc2626;
}

/* ── Scroll-reveal animation for result cards (mobile) ── */
@media (max-width: 720px) {
  .savings-modal .result-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .savings-modal .result-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .savings-modal .result-card {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
}

/* ── Mobile results panel layout within savings modal ── */
@media (max-width: 720px) {
  .savings-modal .results-panel {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
  }

  .savings-modal .results-topline {
    display: none;
  }

  .savings-modal .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .savings-modal .result-card-mobile-hidden {
    display: none;
  }

  .savings-modal .results-grid-customer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .savings-modal .result-card-full {
    grid-column: 1 / -1;
    text-align: center;
  }

  .savings-modal .result-card {
    padding: 18px 14px;
  }

  .savings-modal .result-label {
    font-size: 0.75rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .savings-modal .result-value {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .savings-modal .results-section {
    margin-top: 20px;
  }

  .savings-modal .results-section-head {
    margin-bottom: 10px;
  }

  .results-trial-cta-wrap {
    margin: 10px 0 12px;
  }

  .results-trial-cta {
    width: 100%;
  }

  .trial-form-dialog {
    padding: 22px 18px;
  }

  .trial-form-header {
    margin-right: 28px;
  }

  .trial-form-header h3 {
    font-size: 1.25rem;
  }

  .trial-form-grid {
    grid-template-columns: 1fr;
  }

  .trial-map-frame {
    aspect-ratio: 16 / 8;
  }

  .trial-success-panel {
    padding: 14px 12px;
  }
}

/* Emoji icon in service-kicker slot */
.pitch-icon {
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  margin-bottom: 16px;
}

/* ==============================================
   Responsive — audience / picker / toggle
   ============================================== */

@media (max-width: 980px) {
  .audience-toggle {
    order: -1; /* moves before nav on small screens */
  }
}

@media (max-width: 760px) {
  .splash-headline {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
    margin-bottom: clamp(10px, 1.8vh, 24px);
  }

  .splash-options {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .splash-btn {
    padding: 16px 18px;
    border-radius: 20px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-top: 14px;
  }

  .audience-section {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 24px 20px;
    border-radius: 32px;
  }

  .toggle-label {
    display: none; /* hide label on mobile, keep just Sí/No */
  }

  .audience-toggle {
    padding: 4px;
  }
}

@media (max-width: 420px) {
  .audience-section {
    width: calc(100% - 16px);
    padding: 20px 16px;
  }
}

/* ==============================================
   Mini savings calculator — hero device panel
   ============================================== */

.mini-calc-slider-wrap {
  margin-bottom: 4px;
}

.mini-calc-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.mini-calc-slider-head span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}

/* ── iPhone-sized screens: fill the screen ── */
@media (max-width: 480px) {
  .splash-screen {
    padding-top: clamp(6px, 1.5vh, 16px);
    padding-bottom: clamp(10px, 2vh, 20px);
  }

  .splash-logo {
    margin-bottom: clamp(4px, 0.8vh, 10px);
  }

  .splash-logo-icon {
    width: clamp(110px, 20vh, 180px);
  }

  .splash-logo-letters {
    height: clamp(38px, 7.5vh, 64px);
    margin-top: clamp(-64px, -7vh, -36px);
  }

  .splash-tagline {
    margin-bottom: clamp(8px, 1.4vh, 16px);
  }

  .splash-headline {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
    margin-bottom: clamp(14px, 2.2vh, 26px);
  }

  .splash-question {
    font-size: clamp(0.85rem, 1.6vh, 1rem);
    margin-bottom: clamp(12px, 1.8vh, 20px);
  }

  .splash-btn {
    padding: clamp(14px, 2.4vh, 20px) 18px;
  }

  .splash-btn strong {
    font-size: clamp(0.95rem, 1.8vh, 1.1rem);
  }

  .splash-btn span {
    font-size: clamp(0.82rem, 1.5vh, 0.96rem);
  }

  .splash-options {
    gap: clamp(8px, 1.4vh, 14px);
  }
}

.mini-calc-slider-head strong {
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  color: var(--text);
  white-space: nowrap;
}

.mini-calc-results {
  margin-top: 14px;
}

.mini-calc-results strong {
  font-size: 1.2rem;
  transition: color 180ms ease;
}

.mini-calc-note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.mini-calc-cta {
  display: flex;
  width: 100%;
  margin-top: 14px;
  font-size: 0.9rem;
}

/* ==============================================
   Hamburger button (mobile only)
   ============================================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

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

/* Cross state when open */
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==============================================
   Mobile nav drawer
   ============================================== */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  gap: 32px;
  overflow-y: auto;
  animation: drawerIn 220ms ease forwards;
}

.mobile-drawer[hidden] {
  display: none;
}

@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:active {
  color: var(--accent);
}

/* Show hamburger on mobile, hide audience toggle from header */
@media (max-width: 760px) {
  .hamburger-btn {
    display: flex;
  }

  .site-header .audience-toggle {
    display: none !important;
  }
}

