/* ═══════════════════════════════════════════════════════════════
   RODNEY DESIGN — prices.css
   Hoja de estilos exclusiva de la página de servicios y precios.
   Extiende main.css. Zero azul, zero naranja, zero #f2f2f2.
   ═══════════════════════════════════════════════════════════════ */

/* ── Pricing Hero ─────────────────────────────────────────────── */
.ph-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h-desk) + 2rem) 3rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .ph-hero {
    padding: calc(var(--nav-h-desk) + 1rem) 1.5rem calc(3rem + var(--nav-h-mobile));
    min-height: 85vh;
    justify-content: flex-end;
  }
}

/* Large decorative number behind hero */
.ph-hero__bg-num {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(220px, 28vw, 380px);
  line-height: 1;
  color: var(--color-border);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .ph-hero__bg-num { font-size: 40vw; top: auto; bottom: -0.1em; opacity: 0.4; }
}

.ph-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.ph-hero__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.ph-hero__label.visible { opacity: 1; transform: translateY(0); }

.ph-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.ph-hero__line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ph-hero__line.visible { opacity: 1; transform: translateY(0); }
.ph-hero__line:nth-child(2) { transition-delay: 0.15s; }
.ph-hero__line:nth-child(3) { transition-delay: 0.3s; }
.ph-hero__line--accent { color: var(--color-accent); }

.ph-hero__sub {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}
.ph-hero__sub.visible { opacity: 1; transform: translateY(0); }

.ph-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;

  opacity: 0;
  transition: opacity 0.6s ease 0.65s;
}
.ph-hero__meta.visible { opacity: 1; }

.ph-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ph-hero__stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--color-white);
  line-height: 1;
}

.ph-hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.ph-hero__stat-sep {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  align-self: center;
}

.ph-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;

  opacity: 0;
  transition: opacity 0.6s ease 0.8s;
}
.ph-hero__ctas.visible { opacity: 1; }

/* ── Phase Toggle (BUILD / RUN) ───────────────────────────────── */
.phase-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.phase-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 1.1rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  border-right: 1px solid var(--color-border);
  transition: background 0.25s, color 0.25s;
  min-width: 160px;
}
.phase-bar__btn:last-child { border-right: none; }

.phase-bar__btn.active {
  background: var(--color-accent);
  color: #000;
}
.phase-bar__btn:not(.active):hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.phase-bar__name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.phase-bar__desc {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.phase-bar__btn.active .phase-bar__desc { opacity: 0.65; }

@media (max-width: 600px) {
  .phase-bar { width: 100%; }
  .phase-bar__btn { flex: 1; min-width: 0; padding: 0.9rem 1rem; }
}

/* ── Phase panels ────────────────────────────────────────────── */
.phase-panel { display: none; }
.phase-panel.active { display: block; }

/* ── Section wrapper ─────────────────────────────────────────── */
.p-section {
  padding: 7rem 3rem;
  max-width: 1360px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .p-section { padding: 4.5rem 1.5rem; }
}

.p-section--full {
  max-width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .p-section--full { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ── Package cards grid — BUILD ──────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 5rem;
}

@media (max-width: 1024px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .pkg-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: none;
    gap: 1rem;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin: 0 -1.5rem 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .pkg-grid::-webkit-scrollbar { display: none; }
}

.pkg-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s;
  min-width: 280px;
  scroll-snap-align: start;
}
.pkg-card:hover { background: #151515; }

.pkg-card--featured {
  background: #0E0E0E;
  position: relative;
}
.pkg-card--featured::before {
  content: 'MÁS ELEGIDO';
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--color-accent);
  color: #000;
  padding: 0.35rem;
  font-weight: 600;
}
.pkg-card--featured { padding-top: 3.25rem; }

.pkg-card--premium {
  background: #0E0E0E;
}
.pkg-card--premium::before {
  content: 'PREMIUM PROJECT';
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: #1A1A1A;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding: 0.35rem;
  font-weight: 600;
}
.pkg-card--premium { padding-top: 3.25rem; }

.pkg-card__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--color-white);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

.pkg-card__tagline {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.pkg-card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pkg-card--featured .pkg-card__price { color: var(--color-accent); }

.pkg-card__period {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.pkg-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.pkg-card__meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.pkg-card__meta-row svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.pkg-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pkg-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

.pkg-card__features li svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}

.pkg-card__ideal {
  font-size: 12px;
  color: #444;
  line-height: 1.55;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.pkg-card__ideal strong { color: var(--color-muted); }

.pkg-card__cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-bottom: 0.75rem;
}
.pkg-card__cta:hover,
.pkg-card--featured .pkg-card__cta {
  border-color: var(--color-accent);
  color: #000;
  background: var(--color-accent);
}
.pkg-card--featured .pkg-card__cta:hover { background: var(--color-accent-dim); }

.pkg-card__note {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #333;
  text-align: center;
  letter-spacing: 0.06em;
}

.pkg-card__restriction {
  display: block;
  font-size: 11px;
  color: #333;
  line-height: 1.5;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Web packages ────────────────────────────────────────────── */
.web-section {
  padding: 5rem 0 0;
  border-top: 1px solid var(--color-border);
}

.web-section__intro {
  margin-bottom: 3rem;
}

.web-section__hl {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.web-section__sub {
  font-size: 14px;
  color: var(--color-muted);
  max-width: 540px;
  line-height: 1.65;
}

.web-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 1100px) { .web-grid { grid-template-columns: 1fr 1fr; max-width: 100%; } }
@media (max-width: 640px) {
  .web-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: none;
    gap: 1rem;
    scrollbar-width: none;
    margin: 0 -1.5rem;
    padding: 0 1.5rem 0.5rem;
  }
  .web-grid::-webkit-scrollbar { display: none; }
}

.web-card {
  background: var(--color-surface);
  padding: 2rem 1.75rem;
  min-width: 220px;
  scroll-snap-align: start;
  transition: background 0.2s;
}
.web-card:hover { background: #141414; }

.web-card--ultra {
  background: #0E0E0E;
  position: relative;
}
.web-card--ultra::after {
  content: 'ESTRATEGIA GLOBAL';
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(200,241,53,0.15);
  padding: 0.3rem;
}
.web-card--ultra { padding-top: 2.5rem; }

.web-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.web-card--ultra .web-card__name { color: var(--color-accent); }

.web-card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.web-card--ultra .web-card__price { color: var(--color-white); }

.web-card__period {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.web-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.web-card__features li {
  display: flex;
  gap: 0.5rem;
  font-size: 12.5px;
  color: var(--color-muted);
  line-height: 1.5;
}

.web-card__features li svg {
  width: 11px; height: 11px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}

.web-card--ultra .web-card__features li { color: #999; }

/* Maintenance card */
.web-maint-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--color-surface);
  margin-bottom: 2rem;
}

.web-maint-strip__info h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.web-maint-strip__info p {
  font-size: 12px;
  color: var(--color-muted);
}

.web-maint-strip__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--color-white);
  white-space: nowrap;
}

.web-maint-strip__period {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  display: block;
  text-align: right;
}

.web-footnote {
  font-size: 12px;
  color: #333;
  text-align: center;
  line-height: 1.6;
  padding: 0 1rem;
  margin-bottom: 2.5rem;
}

.web-footnote strong { color: #555; }

/* ── RUN / Retainer cards ────────────────────────────────────── */
.run-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .run-grid {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 1rem;
  }
  .run-card { border: 1px solid var(--color-border); border-radius: var(--radius); }
}

.run-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s;
}
.run-card:hover { background: #141414; }

.run-card--featured {
  background: #0E0E0E;
}
.run-card--featured::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--color-accent);
  color: #000;
  padding: 0.35rem;
  font-weight: 600;
}
.run-card--featured { padding-top: 3.25rem; }

.run-card--pro::before {
  content: 'MAX PRIORITY';
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--color-surface);
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding: 0.35rem;
  font-weight: 600;
}
.run-card--pro { padding-top: 3.25rem; }

/* Reuse pkg-card elements for run-card */
.run-card .pkg-card__name,
.run-card .pkg-card__tagline,
.run-card .pkg-card__price,
.run-card .pkg-card__period,
.run-card .pkg-card__meta,
.run-card .pkg-card__meta-row,
.run-card .pkg-card__features,
.run-card .pkg-card__ideal,
.run-card .pkg-card__cta,
.run-card .pkg-card__note { /* Inherited from .pkg-card defs */ }

.run-card--featured .pkg-card__price { color: var(--color-accent); }
.run-card--featured .pkg-card__cta {
  border-color: var(--color-accent);
  color: #000;
  background: var(--color-accent);
}

/* ── Retainer process ────────────────────────────────────────── */
.retainer-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4rem;
}

@media (max-width: 900px) { .retainer-process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .retainer-process-grid { grid-template-columns: 1fr; } }

.retainer-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--color-border);
  background: var(--color-surface);
}
.retainer-step:last-child { border-right: none; }

@media (max-width: 900px) {
  .retainer-step:nth-child(2) { border-right: none; }
  .retainer-step:nth-child(3) { border-top: 1px solid var(--color-border); }
  .retainer-step:nth-child(4) { border-right: none; border-top: 1px solid var(--color-border); }
}
@media (max-width: 520px) {
  .retainer-step { border-right: none; border-bottom: 1px solid var(--color-border); }
  .retainer-step:last-child { border-bottom: none; }
  .retainer-step:nth-child(3), .retainer-step:nth-child(4) { border-top: none; }
}

.retainer-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.retainer-step__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.retainer-step__desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── Add-ons ─────────────────────────────────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 900px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .addons-grid { grid-template-columns: 1fr 1fr; } }

.addon-item {
  background: var(--color-surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background 0.2s;
}
.addon-item:hover { background: #141414; }

.addon-item__icon {
  width: 28px; height: 28px;
  margin-bottom: 0.25rem;
  color: var(--color-accent);
}

.addon-item__name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.addon-item__price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.06em;
}

/* ── Comparison table ────────────────────────────────────────── */
.compare-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 7rem 3rem;
}

@media (max-width: 768px) { .compare-section { padding: 4.5rem 1.5rem; } }

.compare-inner {
  max-width: 1360px;
  margin: 0 auto;
}

/* Desktop table */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4rem;
  display: table;
}

@media (max-width: 768px) { .cmp-table { display: none; } }

.cmp-table th,
.cmp-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 13px;
}

.cmp-table th:last-child,
.cmp-table td:last-child { border-right: none; }

.cmp-table tbody tr:last-child td { border-bottom: none; }

.cmp-table thead th {
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text);
  white-space: nowrap;
}

.cmp-table thead th:first-child {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.cmp-table .col-price {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-white);
  display: block;
  line-height: 1.1;
}

.cmp-table .col-badge {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  padding: 2px 6px;
  border-radius: 2px;
  width: fit-content;
}

.col-badge--featured { background: var(--color-accent); color: #000; }
.col-badge--premium  { color: var(--color-accent); border: 1px solid rgba(200,241,53,0.3); }

.cmp-table th.col-featured,
.cmp-table td.col-featured {
  background: rgba(200,241,53,0.04);
}

.cmp-table tbody tr:hover td { background: rgba(255,255,255,0.015); }

.cmp-table td:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  background: var(--color-surface);
  font-weight: 400;
}

.cmp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(200,241,53,0.12);
}
.cmp-check svg { width: 10px; height: 10px; color: var(--color-accent); }

.cmp-dash {
  color: var(--color-border);
  font-family: var(--font-mono);
  font-size: 14px;
}

.cmp-data {
  font-size: 12px;
  color: var(--color-text);
}

/* Mobile swipe cards for compare */
.cmp-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cmp-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scrollbar-width: none;
    margin: 0 -1.5rem;
    padding: 0 1.5rem 0.5rem;
  }
  .cmp-mobile::-webkit-scrollbar { display: none; }
}

.cmp-card {
  min-width: 85vw;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.cmp-card--featured { border-color: rgba(200,241,53,0.3); }

.cmp-card__head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.cmp-card__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
  display: block;
}

.cmp-card__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}
.cmp-card__badge--featured { background: var(--color-accent); color: #000; }
.cmp-card__badge--premium  { border: 1px solid rgba(200,241,53,0.3); color: var(--color-accent); }

.cmp-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.cmp-card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--color-accent);
}

.cmp-card__rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cmp-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cmp-card__row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  flex: 1;
}

.cmp-card__row-val {
  font-size: 12px;
  color: var(--color-text);
  text-align: right;
  max-width: 60%;
}

.cmp-card__cta {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  transition: background 0.2s, color 0.2s;
}
.cmp-card--featured .cmp-card__cta {
  background: var(--color-accent);
  color: #000;
}

/* ── Not a fit section ───────────────────────────────────────── */
.notfit-section {
  padding: 6rem 3rem;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 768px) { .notfit-section { padding: 4rem 1.5rem; } }

.notfit-inner {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 3rem;
  background: var(--color-surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .notfit-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
}

.notfit__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.notfit__sub {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.notfit__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notfit__list li {
  display: flex;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.notfit__list li:last-child { border-bottom: none; padding-bottom: 0; }

.notfit__list li::before {
  content: '—';
  color: var(--color-border);
  flex-shrink: 0;
  font-family: var(--font-mono);
}

/* ── Upsell nudge ────────────────────────────────────────────── */
.upsell-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  margin-top: 3rem;
}

.upsell-bar__text {
  font-size: 14px;
  color: var(--color-muted);
}

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

.upsell-bar__link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
.upsell-bar__link:hover { color: var(--color-accent-dim); }
