*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg-primary: #f5f5f7;
      --bg-white: #ffffff;
      --text-primary: #1d1d1f;
      --text-secondary: #6e6e73;
      --text-tertiary: #aeaeb2;
      --accent: #0071e3;
      --accent-hover: #0077ed;
      --border: rgba(0, 0, 0, 0.08);
      --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.06);
      --nav-h: 52px;
      --radius-card: 18px;
      --radius-input: 12px;
      --radius-pill: 980px;
      --section-pad: 120px;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: -apple-system, "SF Pro Text", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      background: var(--bg-primary);
      color: var(--text-primary);
      overflow-x: hidden;
      padding-top: var(--nav-h);
    }

    .h-title, .s-title, .value-lead {
      font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.05;
    }

    .stat-n, .precio-free, .caso-num {
      font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
      font-weight: 600;
      letter-spacing: -0.04em;
    }

    #bar {
      position: fixed; top: 0; left: 0;
      height: 2px; width: 0;
      background: var(--accent);
      z-index: 99998;
      opacity: 0.6;
    }

    .bg-r1, .bg-r2, .bg-dots, #cursor { display: none !important; }

    /* ── LAYOUT ── */
    .wrap { max-width: 1060px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
    section { position: relative; z-index: 1; }

    .reveal-line {
      display: block;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
                  transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .reveal-lines.is-visible .reveal-line {
      opacity: 1;
      transform: translateY(0);
    }

    .scale-reveal {
      transform: scale(0.95);
      transition: transform 0.85s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    .scale-reveal.is-visible { transform: scale(1); }

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── NAV ── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-h);
    }
    nav {
      height: 100%;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    nav > .wrap {
      max-width: 1200px;
      height: 100%;
      margin: 0 auto;
      padding: 0 24px;
    }
    .nav-in {
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    header .logo {
      display: inline-flex;
      align-items: center;
      line-height: 1;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.02em;
      text-decoration: none;
      color: var(--text-primary);
      flex-shrink: 0;
    }
    header .logo span { color: var(--text-secondary); font-weight: 400; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
      height: 100%;
    }
    .nav-links li { display: flex; align-items: center; }
    .nav-links a {
      text-decoration: none;
      color: #1d1d1f;
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: #6e6e73; }

    .ham {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      flex-shrink: 0;
      background: none;
      border: none;
      padding: 0;
      width: 24px;
      height: 24px;
      cursor: pointer;
    }
    .ham span {
      width: 20px; height: 2px; background: var(--text-primary);
      border-radius: 2px; display: block;
      transition: all 0.3s;
    }
    .ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mob-menu {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 16px 28px 24px;
      flex-direction: column;
      z-index: 999;
    }
    .mob-menu.open { display: flex; }
    .mob-menu a {
      text-decoration: none; color: var(--text-primary);
      font-size: 17px; font-weight: 400;
      padding: 14px 0; border-bottom: 1px solid var(--border);
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      padding: calc(var(--nav-h) + 80px) 0 var(--section-pad);
      background: var(--bg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    #hero.hero-compact {
      min-height: auto;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 120px 0 72px;
    }
    #hero.hero-compact .h-sub {
      margin-bottom: 0;
    }
    .hero-inner { max-width: 900px; margin: 0 auto; }
    .hero-parallax { transform: translateZ(0); }
    .h-badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      margin-bottom: 20px;
    }
    .h-title {
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.02;
      margin-bottom: 24px;
      color: var(--text-primary);
    }
    .h-title em { font-style: normal; color: var(--text-primary); }
    .h-sub {
      font-size: 21px;
      color: var(--text-secondary);
      line-height: 1.5;
      margin: 0 auto 36px;
      max-width: 640px;
    }
    .h-checks {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin-bottom: 40px;
    }
    .h-check {
      display: flex; align-items: center; gap: 10px;
      font-size: 15px; color: var(--text-secondary);
    }
    .chk {
      width: 18px; height: 18px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .chk svg { width: 14px; height: 14px; stroke: var(--accent) !important; }
    .h-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

    .btn-g {
      background: var(--accent);
      color: #fff;
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-size: 17px;
      font-weight: 400;
      text-decoration: none;
      border: none;
      display: inline-block;
      box-shadow: none;
      transition: background 0.25s ease;
      cursor: pointer;
    }
    .btn-g:hover { background: var(--accent-hover); }
    .btn-o {
      background: transparent;
      color: var(--accent);
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-size: 17px;
      text-decoration: none;
      border: none;
      display: inline-block;
      transition: opacity 0.2s;
    }
    .btn-o:hover { opacity: 0.7; }
    .btn-light {
      background: #fff;
      color: var(--text-primary);
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-size: 17px;
      text-decoration: none;
      display: inline-block;
      transition: opacity 0.25s;
    }
    .btn-light:hover { opacity: 0.88; }

    /* ── CONTACTO ── */
    #contacto {
      padding: var(--section-pad) 0;
      background: var(--bg-white);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .contact-copy h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 600;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .contact-copy p { color: var(--text-secondary); max-width: 420px; }
    .form-card {
      background: var(--bg-primary);
      border-radius: var(--radius-card);
      padding: 36px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }
    .form-card h3 {
      font-size: 22px; font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .form-card > p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }
    .fg { margin-bottom: 14px; }
    .fg input, .fg textarea {
      width: 100%;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-input);
      padding: 14px 16px;
      font-size: 17px;
      font-family: inherit;
      color: var(--text-primary);
      outline: none;
      transition: border-color 0.2s;
    }
    .fg input::placeholder, .fg textarea::placeholder { color: var(--text-tertiary); }
    .fg input:focus, .fg textarea:focus { border-color: var(--accent); }
    .fg textarea { resize: none; height: 96px; }
    .form-btn {
      width: 100%;
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 14px 24px;
      border-radius: var(--radius-pill);
      font-size: 17px;
      font-family: inherit;
      margin-top: 4px;
      cursor: pointer;
      transition: background 0.25s;
    }
    .form-btn:hover { background: var(--accent-hover); }
    .form-legal { text-align: center; color: var(--text-tertiary); font-size: 12px; margin-top: 12px; }

    /* ── SECTION COMMON ── */
    .s-head { text-align: center; margin-bottom: 72px; }
    .s-badge {
      font-size: 12px;
      font-weight: 400;
      color: var(--text-tertiary);
      letter-spacing: 0.02em;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .s-title {
      font-size: clamp(36px, 4.5vw, 56px);
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--text-primary);
    }
    .s-title::after { display: none; }
    .s-title em { font-style: normal; }
    .s-sub {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── SERVICIOS ── */
    #servicios {
      padding: var(--section-pad) 0;
      background: var(--bg-primary);
    }
    .srv-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .srv-card {
      width: calc(33.333% - 13.34px);
      background: var(--bg-white);
      border-radius: var(--radius-card);
      padding: 36px 28px;
      box-shadow: var(--shadow-soft);
      border: 1px solid transparent;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .srv-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
    .srv-icon {
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .srv-icon svg { width: 28px; height: 28px; stroke: var(--text-primary); fill: none; stroke-width: 1.5; }
    .srv-card h3 {
      font-size: 19px; font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .srv-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

    /* ── POR QUÉ / VALOR ── */
    #porque {
      padding: var(--section-pad) 0;
      background: var(--bg-white);
    }
    .value-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 80px;
    }
    .value-lead {
      font-size: clamp(24px, 3vw, 28px);
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }
    .value-lead + p { color: var(--text-secondary); font-size: 17px; }
    .value-visual {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .stat {
      background: var(--bg-primary);
      border-radius: var(--radius-card);
      padding: 28px 24px;
      text-align: left;
    }
    .stat-n { font-size: 48px; color: var(--text-primary); line-height: 1; margin-bottom: 8px; }
    .stat-l { font-size: 12px; color: var(--text-tertiary); font-weight: 400; }
    .stats-grid { display: none; }
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
    .why-item { display: flex; gap: 20px; align-items: flex-start; }
    .why-n {
      font-size: 13px; font-weight: 400;
      color: var(--text-tertiary);
      flex-shrink: 0;
      padding-top: 4px;
    }
    .why-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
    .why-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }



    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .caso-card {
      position: relative;
      border-radius: var(--radius-card);
      overflow: clip;
      background: var(--bg-white);
      box-shadow: var(--shadow-soft);
    }
    .caso-card-visual {
      aspect-ratio: 16 / 10;
      background: var(--bg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      overflow: clip;
      border-radius: var(--radius-card) var(--radius-card) 0 0;
    }
    .caso-card-visual img { width: 80px; height: 80px; opacity: 0.85; }
    .caso-card-body { padding: 28px 32px 32px; }
    .caso-sector {
      font-size: 12px;
      color: var(--text-tertiary);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .caso-nombre {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .caso-metric {
      font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
      font-size: 40px;
      font-weight: 600;
      letter-spacing: -0.04em;
      margin-bottom: 4px;
    }
    .caso-metric-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
    .caso-quote {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .caso-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .caso-tags span {
      font-size: 12px;
      color: var(--text-secondary);
      background: var(--bg-primary);
      padding: 6px 12px;
      border-radius: var(--radius-pill);
    }
    .caso-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(29, 29, 31, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
      border-radius: var(--radius-card);
    }
    .caso-card-overlay span {
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .caso-card:hover .caso-card-overlay { opacity: 1; }
    .caso-list { display: none; }

    .proc-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .proc-steps::after { display: none; }
    .proc-step { text-align: left; }
    .step-n {
      font-size: 12px;
      color: var(--text-tertiary);
      margin-bottom: 16px;
      font-weight: 400;
    }
    .proc-step h3 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }
    .proc-step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }



    /* ── FAQ ── */
    #faq { padding: var(--section-pad) 0; background: var(--bg-white); }
    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      text-align: left;
      font-size: 17px;
      font-weight: 400;
      font-family: inherit;
      color: var(--text-primary);
      cursor: pointer;
    }
    .faq-ico {
      font-size: 22px;
      color: var(--text-tertiary);
      transition: transform 0.35s ease;
      flex-shrink: 0;
    }
    .faq-item.open .faq-ico { transform: rotate(45deg); }
    .faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-ans-in {
      padding-bottom: 22px;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .faq-item.open .faq-ans { max-height: 360px; }

    /* ── AUTOMATIZACIONES / TESTIMONIOS ── */
    #automatizaciones { background: var(--bg-white); }
    #testimonios { padding: var(--section-pad) 0; background: var(--bg-primary); }
    .testimonios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .t-card {
      background: #ffffff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
    }
    .t-stars { font-size: 13px; color: #F5A623; }
    .t-text {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
      flex-grow: 1;
      margin: 12px 0 20px 0;
    }
    .t-sep { border: none; border-top: 1px solid #f0f0f0; margin-bottom: 16px; }
    .t-footer { display: flex; align-items: center; gap: 12px; }
    .t-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; color: #fff;
    }
    .t-name { font-size: 13px; font-weight: 600; color: #111; }
    .t-role { font-size: 12px; color: #9ca3af; }
    @media (max-width: 768px) {
      .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .testimonios-grid { grid-template-columns: 1fr; }
    }

    /* ── PRECIOS ── */


    .precio-free {
      font-size: clamp(40px, 5vw, 54px);
      color: var(--text-primary);
      margin-bottom: 12px;
    }




    /* ── FOOTER ── */
    footer {
      padding: 48px 0 28px;
      background: var(--bg-primary);
      border-top: none;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    .foot-brand p {
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-top: 12px;
      max-width: 280px;
    }
    .foot-col h4 {
      font-size: 12px;
      font-weight: 400;
      color: var(--text-tertiary);
      margin-bottom: 14px;
    }
    .foot-col ul { list-style: none; }
    .foot-col ul li { margin-bottom: 8px; }
    .foot-col ul li a {
      text-decoration: none;
      color: var(--text-secondary);
      font-size: 12px;
      transition: color 0.2s;
    }
    .foot-col ul li a:hover { color: var(--text-primary); text-decoration: underline; }
    .foot-bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      font-size: 12px;
      color: var(--text-tertiary);
    }
    .foot-bot a { color: var(--text-secondary); text-decoration: none; }
    .foot-bot a:hover { text-decoration: underline; }

    @media (prefers-reduced-motion: reduce) {
      .reveal-line, .fade-up, .scale-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .hero-parallax { transform: none !important; }

    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      :root { --section-pad: 96px; }
      .value-layout { gap: 48px; }
      .proc-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .ham { display: flex; }
      .srv-card { width: calc(50% - 10px); }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .foot-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 768px) {
      :root { --section-pad: 80px; }
      #hero.hero-compact { padding: 96px 0 48px; }
      .wrap { padding: 0 20px; }
      .portfolio-grid, .value-layout, .contact-grid, .why-grid {
        grid-template-columns: 1fr;
      }
      .h-checks { flex-direction: column; align-items: center; }

      .foot-bot { flex-direction: column; text-align: center; }
    }
    @media (max-width: 600px) {
      .srv-card { width: 100%; }
      .proc-steps { grid-template-columns: 1fr; }

    }

    .skip-nav {
      position: absolute; top: -100%; left: 0;
      background: var(--accent); color: #fff;
      padding: 12px 20px; font-size: 14px;
      text-decoration: none; z-index: 999999;
      transition: top 0.2s;
    }
    .skip-nav:focus { top: 0; }

    .legal-modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0, 0, 0, 0.4); z-index: 9999;
      align-items: center; justify-content: center;
    }
    .legal-modal-overlay.open { display: flex; }
    .legal-modal {
      position: relative;
      background: var(--bg-white);
      border-radius: var(--radius-card);
      padding: 36px 32px;
      max-width: 480px;
      width: 90%;
      color: var(--text-secondary);
      line-height: 1.6;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    }
    .legal-modal h3 { color: var(--text-primary); font-size: 20px; margin-bottom: 16px; }
    .legal-modal a { color: var(--accent); }
    .legal-modal-close {
      position: absolute; top: 16px; right: 18px;
      background: none; border: none;
      color: var(--text-tertiary);
      font-size: 22px; cursor: pointer;
    }
    .privacy-check {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 12px; color: var(--text-secondary);
      margin-bottom: 16px; cursor: pointer;
    }
    .privacy-check input { accent-color: var(--accent); margin-top: 3px; }

    .wa-btn {
      position: fixed; bottom: 24px; right: 24px; z-index: 9000;
      width: 52px; height: 52px; border-radius: 50%;
      background: #25D366;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .wa-btn:hover { transform: scale(1.05); }
    .wa-btn svg { width: 28px; height: 28px; }
    .wa-btn::after { display: none; }

/* ── PRICING CARDS ── */
.pricing-card {
  text-align: center;
  padding: 48px 32px;
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  position: relative;
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}
.pricing-price {
  font-size: 36px;
  margin-bottom: 24px;
  font-family: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.pricing-list {
  text-align: left;
  font-size: 14px;
  color: var(--text-secondary);
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}
.pricing-list li {
  margin-bottom: 8px;
}
