﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  :root {
    --black: #000;
    --white: #fff;
    --off-white: #fafafa;
    --dark-grey: #1a1a1a;
    --neutral-faded: rgba(255,255,255,0.15);
    --neutral-semi: rgba(255,255,255,0.8);
    --neutral-light: #aaa;
    --neutral-lighter: #ccc;
    --neutral-lightest: #eee;
    --blue: #2d62ff;
    --blue-dark: #080331;
    --blue-light: #d9e5ff;
    --earthy: #f2b76c;
    --sky-blue: #7ec4e3;
    --light-green: #7eea9b;
    --pink: #dd23bb;
    --pink-light: #ffaefe;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Source Serif 4', Georgia, serif;
    --ease: cubic-bezier(.25,.46,.45,.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 6rem;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

  .container { max-width: 80rem; margin: 0 auto; padding: 0 2rem; }

  /* ═══════ BUTTONS ═══════ */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 6.25rem;
    font-size: 0.875rem; font-weight: 500;
    transition: all 300ms var(--ease);
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--white); color: var(--black); }
  .btn-primary:hover { box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    color: var(--white);
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.2); }
  .btn-outline { border: 1px solid var(--neutral-faded); color: var(--white); }
  .btn-outline:hover { border-color: rgba(255,255,255,0.4); }
  .btn-arrow { width: 16px; height: 16px; transition: transform 200ms; }
  .btn:hover .btn-arrow { transform: translateX(2px); }

  /* ═══════ NAV ═══════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: background 300ms;
  }
  .nav-inner {
    max-width: 980px; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 22px;
  }
  .nav-logo {
    font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em;
    color: var(--white);
  }
  .nav-links { display: flex; gap: 1.75rem; }
  .nav-link {
    font-size: 0.72rem; color: #86868b;
    transition: color 200ms;
  }
  .nav-link:hover { color: var(--white); }

  /* ═══════ HERO ═══════ */
  .hero {
    position: relative; overflow: hidden;
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background: #000;
  }
  .hero-bg video {
    width: 100%; height: 100%; object-fit: cover;
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.85) 70%, #000 100%);
  }
  .hero-inner {
    position: relative; z-index: 3;
    max-width: 50rem; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    padding: 6rem 2rem 4rem;
  }
  .hero .tag {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.25rem 1rem; border-radius: 4rem;
    border: 1px solid rgba(250,250,250,0.15);
    font-size: 0.8rem; font-weight: 500;
    color: var(--neutral-semi);
    margin-bottom: 2rem;
  }
  .hero .tag svg { width: 16px; height: 16px; flex-shrink: 0; }
  .hero h1.hero-headline {
    font-size: clamp(2.16rem, 5.4vw, 3.96rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero h1 {
    font-size: 4rem; font-weight: 500; line-height: 1.2;
    letter-spacing: -2.56px; margin-bottom: 1.5rem;
    text-wrap: balance;
  }
  .hero h1.hero-headline .hero-headline-line {
    display: block;
    white-space: nowrap;
  }
  .hero h1.hero-headline em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
  }
  .hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
  }
  .hero-sub {
    font-size: 1rem; color: var(--neutral-semi);
    max-width: 34rem; margin: 0 auto 2rem; line-height: 1.6;
  }
  .hero-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

  /* ═══════ PRICING ═══════ */
  .pricing-section { padding: 5rem 0 4rem; }
  .pricing-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
  .pricing-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
    color: var(--blue); margin-bottom: 1.25rem;
  }
  .pricing-header h2 {
    font-size: clamp(1.51rem, 3.78vw, 2.77rem);
    font-weight: 700; letter-spacing: -0.04em; line-height: 1.05;
    margin-bottom: 1.25rem;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .pricing-header p {
    font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.65;
  }
  .pricing-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem;
    margin-bottom: 0.75rem;
  }
  .pricing-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 1rem; border-radius: 6.25rem;
    font-size: 0.8rem; font-weight: 500;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: var(--neutral-semi);
  }
  .pricing-pills-note {
    text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35);
    margin-bottom: 3rem; font-weight: 500;
  }

  /* Calculator toggle */
  .calc-toggle-wrap { text-align: center; margin-bottom: 1.5rem; }
  .calc-toggle-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.35rem; border-radius: 6.25rem;
    font-size: 0.82rem; font-weight: 600; cursor: pointer;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    color: var(--white); transition: all 250ms var(--ease);
  }
  .calc-toggle-btn:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
  .calc-toggle-btn svg { width: 14px; height: 14px; transition: transform 300ms var(--ease); }
  .calc-toggle-btn.is-open svg { transform: rotate(180deg); }
  .calc-panel {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 500ms var(--ease), opacity 350ms var(--ease);
  }
  .calc-panel.is-open { max-height: 800px; opacity: 1; }

  /* Calculator wrapper */
  .calc-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.25rem;
    padding: 2rem 2.25rem;
    margin-bottom: 1.25rem;
  }
  .calc-title {
    font-size: 1rem; font-weight: 700; color: var(--white);
    margin-bottom: 0.3rem;
  }
  .calc-subtitle {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    line-height: 1.45; margin-bottom: 1.5rem;
  }

  /* Segment cards */
  .calc-segments {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
    margin-bottom: 1.75rem;
  }
  .calc-seg {
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    padding: 0.85rem 0.5rem; border-radius: 0.75rem;
    cursor: pointer; text-align: center;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45); transition: all 200ms var(--ease);
  }
  .calc-seg:hover { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.65); }
  .calc-seg.is-active {
    background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25);
    color: var(--white);
  }
  .calc-seg-icon { font-size: 1.25rem; line-height: 1; }
  .calc-seg-name { font-size: 0.72rem; font-weight: 600; }
  .calc-seg-avg { font-size: 0.62rem; font-weight: 500; color: rgba(255,255,255,0.3); }
  .calc-seg.is-active .calc-seg-avg { color: rgba(255,255,255,0.5); }

  /* Slider */
  .calc-slider-area { position: relative; margin-bottom: 2rem; }
  .calc-slider-area input[type="range"] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 5px; border-radius: 3px;
    background: rgba(255,255,255,0.1);
    outline: none; cursor: pointer;
  }
  .calc-slider-area input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--blue); cursor: pointer;
    box-shadow: 0 0 0 4px rgba(45,98,255,0.18);
  }
  .calc-slider-area input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%; border: none;
    background: var(--blue); cursor: pointer;
    box-shadow: 0 0 0 4px rgba(45,98,255,0.18);
  }
  .calc-slider-labels {
    display: flex; justify-content: space-between; margin-top: 0.5rem;
  }
  .calc-slider-min, .calc-slider-max {
    font-size: 0.68rem; color: rgba(255,255,255,0.3); font-weight: 500;
  }

  /* Results bar */
  .calc-result {
    display: flex; align-items: stretch; gap: 1.5rem;
  }
  .calc-result-col {
    flex: 1; text-align: center;
  }
  .calc-result-num {
    font-size: 2.5rem; font-weight: 800; color: var(--white);
    letter-spacing: -0.03em; line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .calc-result-label {
    font-size: 0.7rem; color: rgba(255,255,255,0.4);
    margin-top: 0.3rem; font-weight: 500;
  }
  .calc-result-divider {
    width: 1px; background: rgba(255,255,255,0.08);
    align-self: stretch; flex-shrink: 0;
  }
  .calc-result-bar-wrap {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
  }
  .calc-bar-track {
    width: 100%; height: 8px; border-radius: 4px;
    background: rgba(255,255,255,0.06);
    overflow: hidden; margin-bottom: 0.5rem;
  }
  .calc-bar-fill {
    height: 100%; border-radius: 4px;
    background: var(--blue);
    transition: width 300ms ease-out;
    min-width: 2%;
  }
  .calc-bar-label {
    display: flex; justify-content: space-between;
    font-size: 0.65rem; color: rgba(255,255,255,0.3); font-weight: 500;
  }

  /* Info banner */
  .calc-info {
    display: flex; align-items: flex-start; gap: 0.65rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.75rem; padding: 1rem 1.25rem;
    margin-bottom: 3rem; font-size: 0.72rem; line-height: 1.55;
    color: rgba(255,255,255,0.45);
  }
  .calc-info svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--white); }
  .calc-info strong { color: var(--white); }

  .plans-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .plan-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.25rem; padding: 2rem 1.75rem;
    display: flex; flex-direction: column;
    position: relative; transition: border-color 400ms var(--ease);
  }
  .plan-card.is-featured {
    border-color: var(--blue);
    background: rgba(45,98,255,0.05);
  }
  .plan-card.is-recommended {
    border-color: var(--light-green);
    box-shadow: 0 0 24px rgba(126,234,155,0.1);
  }
  .plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 0.25rem 0.85rem; border-radius: 6.25rem;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
    background: var(--blue); color: var(--white);
    white-space: nowrap;
  }
  .plan-badge.is-reco {
    background: var(--light-green); color: var(--black);
  }
  /* Un solo cartel en Growth: si el calculador lo recomienda, el "Más elegido" pasa a color de selección */
  .plan-card.is-featured.is-recommended > .plan-badge {
    background: var(--light-green);
    color: var(--black);
  }
  .plan-name {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem;
    color: var(--white);
  }
  .plan-ideal {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem; font-weight: 400;
  }
  .plan-price {
    font-size: 2.75rem; font-weight: 700; color: var(--white);
    line-height: 1; margin-bottom: 0.15rem;
    font-variant-numeric: tabular-nums;
  }
  .plan-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.4); }
  .plan-exec-block {
    background: rgba(255,255,255,0.04); border-radius: 0.75rem;
    padding: 1rem; margin: 1.25rem 0; text-align: center;
  }
  .plan-exec-num { font-size: 1.5rem; font-weight: 700; color: var(--white); }
  .plan-exec-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
  .plan-exec-equiv { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.15rem; }
  .plan-excess {
    font-size: 0.75rem; color: rgba(255,255,255,0.35);
    text-align: center; margin-bottom: 1.25rem;
  }
  .plan-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    padding: 0.35rem 0;
  }
  .plan-features li svg {
    width: 16px; height: 16px; flex-shrink: 0;
    margin-top: 2px;
    color: var(--light-green);
  }
  .plan-card-enterprise .plan-price {
    font-size: 2rem;
    background: linear-gradient(135deg, #a78bfa, var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .plan-cta { margin-top: auto; }
  .plan-cta .btn { width: 100%; justify-content: center; }

  /* Implementación a medida — card bajo planes */
  .impl-custom-card {
    margin-top: 1.75rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(45,98,255,0.08) 0%, rgba(126,234,155,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 0 1px rgba(45,98,255,0.06) inset;
  }
  .impl-custom-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .impl-custom-card-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--light-green);
  }
  .impl-custom-card-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }
  .impl-custom-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }
  .impl-custom-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.55);
    max-width: 42rem;
  }
  .impl-custom-card p strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
  }

  .pricing-excess-notice {
    display: flex; align-items: flex-start; gap: 0.65rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.72rem; color: rgba(255,255,255,0.45);
    line-height: 1.55;
    margin: 3rem 0 0;
    text-align: left;
  }
  .pricing-excess-notice svg {
    width: 16px; height: 16px; flex-shrink: 0;
    margin-top: 1px; color: var(--white);
  }
  .pricing-excess-notice strong {
    color: var(--white);
  }

  /* ═══════ COMPARISON TABLE ═══════ */
  .compare-section { margin-top: 5rem; }
  .compare-title {
    text-align: left; margin-bottom: 2.5rem;
  }
  .compare-title h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.78));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .compare-wrap {
    overflow: visible;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    background: rgba(255,255,255,0.02);
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    table-layout: fixed;
  }
  .compare-table thead th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 700; font-size: 0.9rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    white-space: normal;
    word-break: break-word;
  }
  .compare-table thead th:first-child {
    text-align: left;
    color: rgba(255,255,255,0.9);
    font-weight: 500; font-size: 0.78rem;
    letter-spacing: 0.03em;
  }
  .compare-table thead th.is-highlight {
    background: rgba(45,98,255,0.06);
    border-bottom-color: var(--blue);
    position: relative;
  }
  .compare-table thead th.is-highlight::after {
    content: 'Más elegido';
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    padding: 0.15rem 0.6rem; border-radius: 4rem;
    font-size: 0.6rem; font-weight: 700;
    background: var(--blue); color: var(--white);
    white-space: nowrap;
  }
  .compare-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 150ms;
  }
  .compare-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
  }
  .compare-table tbody tr:last-child { border-bottom: none; }
  .compare-table tbody tr.is-category td {
    padding: 1rem 1rem 0.5rem;
    font-weight: 700; font-size: 0.72rem;
    color: var(--blue);
    letter-spacing: 0.05em; text-transform: uppercase;
    border-bottom: 1px solid rgba(45,98,255,0.15);
    background: rgba(45,98,255,0.03);
  }
  .compare-table td {
    padding: 0.7rem 1rem;
    color: rgba(255,255,255,0.95);
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    word-break: break-word;
  }
  .compare-table td:first-child {
    text-align: left;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
  }
  .compare-table td.is-highlight {
    background: rgba(45,98,255,0.03);
  }
  .ct-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(126,234,155,0.12);
  }
  .ct-check svg { width: 12px; height: 12px; color: var(--light-green); }
  .ct-dash {
    display: inline-block; width: 16px; height: 2px;
    background: rgba(255,255,255,0.12); border-radius: 1px;
  }
  .ct-text { color: rgba(255,255,255,0.95); font-weight: 600; }

  /* Sticky precio (fila) */
  .compare-table tbody tr.is-price-row td {
    position: sticky;
    top: 56px; /* altura aproximada del header fijo */
    z-index: 4;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }
  .compare-table tbody tr.is-price-row td.is-highlight {
    background: #10183a;
  }

  /* ═══════ FOOTER ═══════ */
  .footer {
    border-top: 1px solid var(--neutral-faded); padding: 3rem 0 2rem;
    margin-top: 5rem;
  }
  .footer-top {
    display: flex; justify-content: space-between; gap: 3rem;
    margin-bottom: 2.5rem;
  }
  .footer-columns { display: flex; gap: 4rem; }
  .footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col h6 { font-size: 0.78rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--white); }
  .footer-col a { font-size: 0.78rem; color: var(--neutral-light); transition: color 200ms; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--neutral-faded); padding-top: 1.5rem;
    font-size: 0.72rem; color: var(--neutral-light);
  }

  /* ═══════ FLOATING CTA (Calendly) ═══════ */
  .floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.7rem 0.6rem 1.25rem;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    opacity: 1;
    transition:
      transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
      opacity 0.4s ease,
      box-shadow 200ms var(--ease),
      background 200ms var(--ease);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }
  button.floating-cta {
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
  }
  .floating-cta:hover {
    transform: translateX(-50%) scale(1.04);
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 6px 32px rgba(0,0,0,0.5);
  }
  .floating-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2d62ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .floating-cta-icon svg {
    width: 15px;
    height: 15px;
  }
  @media (prefers-reduced-motion: reduce) {
    .floating-cta { transition-duration: 0.05s; }
  }

  /* ═══════ RESPONSIVE ═══════ */
  @media (max-width: 991px) {
    .nav-links { display: none; }
    .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .plan-card { padding: 1.5rem 1.25rem; }
    .plan-price { font-size: 2.25rem; }
    .calc-segments { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 767px) {
    .container { padding: 0 1.25rem; }
    .hero { min-height: 50vh; }
    .hero h1.hero-headline { font-size: clamp(1.6rem, 7.2vw, 2.25rem); letter-spacing: -0.03em; }
    .hero-inner { padding: 5rem 1.25rem 3rem; }
    .pricing-section { padding: 3rem 0 2rem; }
    .pricing-header h2 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
    .pricing-pills { gap: 0.4rem; }
    .pricing-pill { font-size: 0.72rem; padding: 0.35rem 0.75rem; }
    .plans-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    /* Orden: mismo que el HTML (Starter → Growth → Scale → Enterprise), del más barato al más caro */
    .compare-wrap { max-height: none; }
    .calc-wrap { padding: 1.5rem; border-radius: 1rem; }
    .calc-segments { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .calc-result { flex-direction: column; gap: 1rem; }
    .calc-result-divider { width: 100%; height: 1px; }
    .calc-result-num { font-size: 2rem; }
    .pricing-excess-notice { flex-direction: column; gap: 0.5rem; }
    .impl-custom-card {
      padding: 1.25rem 1.15rem;
      margin-top: 1.25rem;
    }
    .compare-section { margin-top: 3rem; }
    .compare-table { font-size: 0.72rem; }
    .compare-table thead th { padding: 0.85rem 0.5rem; font-size: 0.75rem; }
    .compare-table td { padding: 0.55rem 0.5rem; }
    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-columns { flex-wrap: wrap; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; }
    .floating-cta {
      bottom: 1.25rem;
      padding: 0.5rem 0.6rem 0.5rem 1rem;
      font-size: 0.85rem;
    }
    .floating-cta-icon { width: 26px; height: 26px; }
  }