/* ==========================================================================
   Delivera — Design tokens (from _ds design system)
   ========================================================================== */
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange-50: #fff5e8;
  --orange-500: #ff8a00;
  --orange-600: #e57a00;
  --orange-700: #c46700;

  --neutral-0: #ffffff;
  --neutral-50: #f5f5f5;
  --neutral-200: #e0e0e0;
  --neutral-300: #c7c7c7;
  --neutral-400: #9c9c9c;
  --neutral-500: #666666;
  --neutral-700: #333333;
  --neutral-800: #1c1c1c;
  --neutral-900: #111111;
  --neutral-1000: #000000;

  --text-strong: var(--neutral-1000);
  --text-body: var(--neutral-700);
  --text-muted: var(--neutral-500);

  --surface-page: var(--neutral-50);
  --surface-card: var(--neutral-0);
  --surface-hover: var(--neutral-50);

  --border-subtle: var(--neutral-200);
  --border-strong: var(--neutral-1000);

  --radius-card: 16px;
  --radius-pill: 999px;

  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-brand: 0 8px 20px rgba(255, 138, 0, 0.3);

  --transition-control:
    background-color 140ms cubic-bezier(0.22, 0.61, 0.36, 1),
    color 140ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 140ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 140ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-core: "Gilroy", -apple-system, "Segoe UI", sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-core);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: var(--orange-700);
  text-decoration: none;
}
a:hover {
  color: var(--orange-500);
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
}

picture {
  display: contents;
}
.icon {
  flex: 0 0 auto;
}

@keyframes dl-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 24px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header .wrap {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  height: 34px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.main-nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-body);
}
.main-nav a:hover {
  color: var(--orange-500);
}

.cta-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 clamp(14px, 4vw, 20px);
  border-radius: var(--radius-pill);
  background: var(--orange-500);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  flex: 0 0 auto;
  white-space: nowrap;
  transition: var(--transition-control);
}
.cta-header:hover {
  background: var(--orange-600);
  color: #000;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: #fff;
  flex: 0 0 auto;
  cursor: pointer;
  padding: 0;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px clamp(16px, 5vw, 24px) 16px;
  gap: 2px;
  border-top: 1px solid var(--border-subtle);
  background: #fff;
}
.mobile-nav a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav.is-open {
  display: flex;
}

@media (max-width: 859px) {
  .main-nav {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .cta-header {
    margin-left: auto;
  }
  .cta-header .cta-label {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--neutral-1000);
}
.hero-mark {
  position: absolute;
  right: -140px;
  top: -120px;
  width: 620px;
  opacity: 0.05;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  padding-top: clamp(56px, 10vw, 96px);
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}
.hero-copy {
  animation: dl-rise 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
}
.hero h1 span {
  color: var(--orange-500);
}
.hero-lead {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--neutral-300);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 17px;
  transition: var(--transition-control);
}
.btn-primary {
  background: var(--orange-500);
  color: #000;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--orange-600);
  color: #000;
}
.btn-ghost-dark {
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--neutral-400);
  font-weight: 700;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
/* Al apilarse los datos en pantallas angostas, el divisor vertical sobra */
@media (max-width: 560px) {
  .hero-stats {
    gap: 22px;
  }
  .hero-stat-divider {
    display: none;
  }
}

.hero-shots {
  position: relative;
  padding: 40px 0 0;
}
.hero-shot-main {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: none;
  background: #fff;
}
.hero-shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--neutral-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-shot-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--neutral-500);
}
.hero-shot-dot.is-brand {
  background: var(--orange-500);
}
.hero-shot-url {
  margin-left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral-400);
  letter-spacing: 0.04em;
}
.hero-shot-main img {
  width: 100%;
  height: auto;
}
.hero-shot-mobile {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: clamp(110px, 32vw, 212px);
  border-radius: 26px;
  overflow: hidden;
  border: 8px solid var(--neutral-900);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  background: #fff;
}
.hero-shot-mobile img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Section headers
   ========================================================================== */
section {
  padding: clamp(56px, 10vw, 96px) 0;
}
.eyebrow-small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-700);
}
.eyebrow-small.on-dark {
  color: var(--orange-500);
}
h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-strong);
}
h2.on-dark {
  color: #fff;
}

/* ==========================================================================
   Ecosistema (cards grid)
   ========================================================================== */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.section-head-row > div:first-child {
  flex: 1 1 420px;
}
.section-head-row h2 {
  max-width: 20ch;
}
.section-head-row p {
  flex: 0 1 360px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 20px;
}
.feature-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-control);
}
.feature-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.feature-tag.is-add {
  background: var(--orange-50);
  border-color: transparent;
  color: var(--orange-700);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--orange-50);
  color: var(--orange-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-strong);
}
.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   Una sola base (sync)
   ========================================================================== */
.sync {
  position: relative;
  overflow: hidden;
  background: var(--neutral-1000);
  text-align: center;
}
.sync-mark {
  position: absolute;
  left: -160px;
  bottom: -180px;
  width: 560px;
  opacity: 0.05;
  pointer-events: none;
}
.sync h2 {
  margin: 14px auto 0;
  max-width: 24ch;
}

.sync-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 16px;
  margin: 52px 0 40px;
}
.sync-pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.sync-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sync-divider-line {
  width: 56px;
  height: 1px;
  background: var(--orange-500);
  opacity: 0.5;
}

.sync-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 14px;
  margin-top: 40px;
}
.sync-box {
  background: var(--neutral-900);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.sync-box.is-brand {
  background: var(--orange-500);
  color: #000;
}

/* ==========================================================================
   En uso (tabs)
   ========================================================================== */
.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab-btn {
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-core);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-control);
  background: var(--surface-card);
  color: var(--text-body);
}
.tab-btn.is-active {
  background: var(--neutral-1000);
  color: #fff;
  border-color: var(--neutral-1000);
}

.tabs-viewport {
  background: var(--neutral-1000);
  border-radius: 24px;
  padding: clamp(12px, 3vw, 24px);
  overflow: hidden;
}
.tabs-clip {
  overflow: hidden;
  border-radius: 16px;
}
.tabs-track {
  display: flex;
  width: 400%;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tab-pane {
  width: 25%;
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
}
.tab-pane img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.tab-pane.is-mobile {
  align-items: flex-start;
  padding: 8px 0;
}
.tab-pane-phone {
  width: min(280px, 60%);
  border-radius: 32px;
  overflow: hidden;
  border: 10px solid var(--neutral-800);
  background: #fff;
}

/* imagenes */
#en-uso img {
  object-fit: cover;
  object-position: center;
}

/* pan infinito (ken burns) en las capturas, no en el mockup de telefono */
.tab-pane:not(.is-mobile) {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tab-pane:not(.is-mobile) img {
  width: 112%;
  max-width: 112%;
  height: 100%;
  object-fit: cover;
  animation: pan-lr 14s ease-in-out infinite;
}
@keyframes pan-lr {
  0%,
  100% {
    object-position: left center;
  }
  50% {
    object-position: right center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tab-pane:not(.is-mobile) img {
    animation: none;
  }
}

/* ==========================================================================
   Pago
   ========================================================================== */
.pay-section {
  background: var(--surface-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: clamp(40px, 7vw, 56px) 0;
}
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 48px;
  align-items: center;
}
.pay-grid h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.pay-grid > div:first-child p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 38ch;
}

.pay-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 12px;
}
.pay-method {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-strong);
}
.pay-method span {
  font-size: 14px;
  font-weight: 700;
}

/* ==========================================================================
   Precios
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 20px;
  align-items: start;
}
.price-card {
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.price-card.is-featured {
  background: var(--neutral-1000);
}
.price-card.is-plain {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}

.price-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-badge.is-featured {
  background: var(--orange-500);
  color: #000;
}
.price-badge.is-plain {
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.price-card h3 {
  margin: 20px 0 0;
  font-size: 24px;
  font-weight: 800;
}
.price-card.is-featured h3 {
  color: #fff;
}
.price-card.is-plain h3 {
  color: var(--text-strong);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 6px;
}
.price-amount .num {
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex: 0 0 auto;
}
.price-card.is-featured .num {
  color: var(--orange-500);
}
.price-card.is-plain .num {
  color: var(--text-strong);
}
.price-amount .per {
  font-size: 16px;
  font-weight: 700;
}
.price-card.is-featured .per {
  color: var(--neutral-400);
}
.price-card.is-plain .per {
  color: var(--text-muted);
}

.price-card > p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}
.price-card.is-featured > p {
  color: var(--neutral-300);
}
.price-card.is-plain > p {
  color: var(--text-muted);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.price-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #fff;
  font-size: 15px;
}
.price-feature .icon {
  color: var(--orange-500);
  margin-top: 2px;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px;
}
.price-row span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
}
.price-row span:last-child {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange-700);
  font-variant-numeric: tabular-nums;
}
.price-row.is-highlight {
  border: none;
  background: var(--neutral-1000);
}
.price-row.is-highlight span:first-child {
  color: #fff;
}
.price-row.is-highlight span:last-child {
  color: var(--orange-500);
}

.btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition-control);
}
.btn-block.is-brand {
  background: var(--orange-500);
  color: #000;
}
.btn-block.is-brand:hover {
  background: var(--orange-600);
  color: #000;
}
.btn-block.is-outline {
  border: 1px solid var(--border-strong);
  color: var(--text-strong);
}
.btn-block.is-outline:hover {
  background: var(--surface-hover);
}

.setup-card {
  margin-top: 20px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px clamp(20px, 5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 32px;
  align-items: center;
}
.setup-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.setup-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-strong);
}
.setup-card p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.setup-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.setup-price .num {
  font-size: 34px;
  font-weight: 900;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex: 0 0 auto;
}
.setup-price .label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   Preguntas frecuentes
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  transition: var(--transition-control);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-item[open] {
  border-color: var(--border-strong);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-strong);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: -2px;
  border-radius: var(--radius-card);
}
.faq-chevron {
  flex: none;
  color: var(--orange-700);
  transition: transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 26px 24px;
}
.faq-answer p {
  margin: 0;
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ==========================================================================
   Pasos
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.step-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border-subtle);
}
.step-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--orange-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.step-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
}
.step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--orange-500);
  text-align: center;
}
.cta-final-mark {
  position: absolute;
  right: -100px;
  top: -120px;
  width: 520px;
  opacity: 0.12;
  pointer-events: none;
}
.cta-final .wrap {
  position: relative;
  padding: clamp(64px, 9vw, 88px) 0;
}
.cta-final h2 {
  margin: 0 auto;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #000;
  max-width: 22ch;
}
.cta-final-lead {
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  max-width: 44ch;
}
.cta-final-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn-dark {
  background: #000;
  color: #fff;
}
.btn-dark:hover {
  background: var(--neutral-800);
  color: #fff;
}
.btn-ghost-light {
  border: 1px solid rgba(0, 0, 0, 0.35);
  color: #000;
}
.btn-ghost-light:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--neutral-1000);
}
.footer-grid {
  padding: clamp(40px, 7vw, 56px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 40px;
}
.footer-logo {
  height: 44px;
  width: auto;
}
.footer-grid p {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-400);
  max-width: 34ch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col span:first-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-500);
}
.footer-col a {
  font-size: 15px;
  color: var(--neutral-300);
}
.footer-col a:hover {
  color: var(--orange-500);
}
.footer-col span.plain {
  font-size: 15px;
  color: var(--neutral-300);
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .wrap {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 13px;
  color: var(--neutral-500);
}
.delivera-tagline {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.22em;
}
