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

    :root {
      --cream: #f7f3ee;
      --cream2: #efe9e0;
      --ink: #1a130b;
      --ink2: #3d3028;
      --muted: #9a8a78;
      --border: rgba(26, 19, 11, .1);
      --wine: #1a6fa8;
      --wine-lt: rgba(26, 111, 168, .08);
      --gold: #3a9fd4;
      --gold-lt: rgba(58, 159, 212, .14);
      --white: #ffffff;
      --font-d: 'Plus Jakarta Sans', sans-serif;
      --font-b: 'DM Sans', sans-serif;
      --radius-sm: 10px;
      --radius-md: 14px;
      --radius-lg: 18px;
      --radius-xl: 22px;
      --shadow-soft: 0 10px 28px rgba(26, 19, 11, .07);
      --shadow-lift: 0 16px 42px rgba(26, 19, 11, .1);
      --fs-body: clamp(15px, 1.5vw, 16px);
      --fs-small: clamp(13px, 1.3vw, 14px);
      --fs-h1: clamp(38px, 8vw, 78px);
      --fs-h2: clamp(30px, 5vw, 52px);
      --space-section: clamp(72px, 11vw, 120px);
      --tag-color: var(--wine);
      --tag-border: rgba(26, 111, 168, .22);
      --hero-badge-ink: #1a6fa8;
      --pricing-tag-color: #9ed4f3;
      --pricing-tag-border: rgba(58, 159, 212, .34);
      --pricing-tag-bg: rgba(58, 159, 212, .12);
      --cta-gradient: linear-gradient(145deg, #0e4f7a 0%, #1a6fa8 55%, #0b3d5f 100%);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: var(--font-b);
      overflow-x: hidden;
      line-height: 1.6;
      font-size: var(--fs-body);
    }

    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--wine);
      border-radius: 2px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(16px, 4vw, 28px);
    }

    /* TAG */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--tag-color);
      border: 1px solid var(--tag-border);
      background: var(--wine-lt);
      padding: 6px 14px;
      border-radius: 100px;
    }

    .tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--wine);
      border-radius: 50%;
      animation: blink 1.8s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .25
      }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(247, 243, 238, .92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .btn-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: 8px;
      background: var(--wine);
      color: #fff;
      font-weight: 600;
      font-size: 13px;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }

    .btn-nav:hover {
      background: var(--ink);
      transform: translateY(-1px);
    }

    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--ink);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 92px clamp(16px, 4vw, 28px) 56px;
      position: relative;
      overflow: hidden;
    }

    /* Premium Grid Background */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-size: 60px 60px;
      background-image: 
        linear-gradient(to right, rgba(26, 19, 11, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26, 19, 11, 0.04) 1px, transparent 1px);
      mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
      pointer-events: none;
      z-index: 0;
    }

    /* Glowing Orbs (Mesh Gradient Effect) */
    .hero-orb1 {
      position: absolute;
      top: -10%;
      right: 0%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(58, 159, 212, 0.4) 0%, transparent 65%);
      border-radius: 50%;
      filter: blur(80px);
      animation: floatOrb1 8s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }

    .hero-orb2 {
      position: absolute;
      bottom: -15%;
      left: -5%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(26, 111, 168, 0.35) 0%, transparent 65%);
      border-radius: 50%;
      filter: blur(90px);
      animation: floatOrb2 10s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes floatOrb1 {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-10vw, 15vh) scale(1.15); }
      100% { transform: translate(5vw, -5vh) scale(0.9); }
    }

    @keyframes floatOrb2 {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(15vw, -10vh) scale(0.85); }
      100% { transform: translate(-5vw, 10vh) scale(1.1); }
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      margin-bottom: 28px;
    }

    .hero-title {
      font-family: var(--font-d);
      font-size: var(--fs-h1);
      line-height: .98;
      letter-spacing: -.03em;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 18px;
      max-width: 15ch;
    }

    .hero-title em {
      font-style: italic;
      color: var(--wine);
    }

    .text-gradient-dental {
      background: linear-gradient(135deg, #1b6fa8 0%, #3a9fd4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      padding-bottom: 0.15em;
      margin-bottom: -0.15em;
      vertical-align: bottom;
    }

    .hero-sub {
      font-size: clamp(15px, 2.1vw, 18px);
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 30px;
      line-height: 1.6;
      font-weight: 400;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: var(--radius-sm);
      background: var(--gold);
      color: var(--ink);
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: background .2s, box-shadow .2s, transform .2s;
    }

    .btn-primary:hover {
      background: #79b597;
      transform: translateY(-2px);
      box-shadow: 0 10px 34px rgba(106, 168, 139, .36);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 24px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      color: var(--ink2);
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }

    .btn-ghost:hover {
      border-color: rgba(61, 48, 40, .28);
      background: rgba(255, 255, 255, .52);
    }

    .trust-badges {
      display: flex;
      gap: 16px;
      margin-top: 52px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: var(--fs-small);
      font-weight: 500;
      color: var(--ink);
      background: var(--cream2);
      padding: 8px 16px;
      border-radius: 100px;
    }

    .trust-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #2d8c55;
    }

    /* hero visual */
    .hero-visual {
      position: relative;
    }

    .hero-screen {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 32px 80px rgba(26, 19, 11, .15), 0 4px 12px rgba(26, 19, 11, .08);
      position: relative;
    }

    .hero-screen::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
    }

    .hero-screen img {
      width: 100%;
      display: block;
    }

    .hero-badge {
      position: absolute;
      bottom: -18px;
      left: -22px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-soft);
    }

    .hero-badge-icon {
      font-size: 22px;
    }

    .hero-badge-label {
      font-size: 11px;
      color: var(--muted);
      font-weight: 500;
    }

    .hero-badge-value {
      font-size: 17px;
      font-weight: 700;
      color: var(--wine);
      font-family: var(--font-d);
    }

    .hero-badge2 {
      position: absolute;
      top: 18px;
      right: -18px;
      background: var(--white);
      border: 1px solid rgba(106, 168, 139, .32);
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 8px 32px rgba(26, 19, 11, .1);
      font-size: 13px;
      font-weight: 600;
      color: var(--hero-badge-ink);
    }

    .hero-badge2 span {
      display: block;
      font-size: 11px;
      color: var(--muted);
      font-weight: 400;
      margin-top: 2px;
    }

    

    /* ── FEATURES ── */
    /* Seccion Premium de Funcionalidades */
    .features-premium {
      padding: 100px 24px;
      background: var(--cream);
    }

    .section-header-premium {
      max-width: 700px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .tag-premium {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--wine);
      background: rgba(27, 63, 115, 0.08);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .section-title-premium {
      font-family: var(--font-d);
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.1;
      color: var(--ink);
    }

    .section-title-premium em {
      font-style: italic;
      color: var(--wine);
    }

    .section-subtitle-premium {
      font-size: 16px;
      color: var(--muted);
      margin-top: 14px;
    }

    /* Rejilla Asimétrica Premium */
    .features-premium-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* Tarjetas Asimétricas */
    .feat-premium-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
      min-height: 420px;
    }

    .feat-premium-card.card-large {
      grid-column: span 2;
      flex-direction: row;
      align-items: center;
      gap: 40px;
    }

    .feat-premium-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(26, 19, 11, 0.08), 0 4px 15px rgba(26, 19, 11, 0.03);
    }

    /* Iconos SVG Estilizados */
    .feat-premium-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: transform 0.3s;
    }

    .feat-premium-card:hover .feat-premium-icon {
      transform: scale(1.1) rotate(2deg);
    }

    .feat-premium-icon svg {
      width: 26px;
      height: 26px;
    }

    .color-blue { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
    .color-gold { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }
    .color-green { background: rgba(16, 185, 129, 0.08); color: #10b981; }
    .color-red { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
    .color-wine { background: rgba(124, 29, 46, 0.08); color: var(--wine); }
    .color-sage { background: rgba(52, 120, 80, 0.08); color: #347850; }

    .feat-premium-content h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .feat-premium-content p {
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Micro Previsualizaciones (Interactividad Ficticia) */
    .feat-premium-preview {
      margin-top: 32px;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      overflow: hidden;
      position: relative;
      transition: background-color 0.3s;
    }

    .feat-premium-card:hover .feat-premium-preview {
      background: var(--cream2);
    }

    .card-large .feat-premium-preview {
      margin-top: 0;
      width: 280px;
      flex-shrink: 0;
    }

    /* UI Simuladas (Detalle Fino) */
    .mini-ui-patient {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ui-header {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ui-avatar {
      font-size: 24px;
    }

    .ui-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
    }

    .ui-sub {
      font-size: 11px;
      color: var(--muted);
    }

    .ui-tags {
      display: flex;
      gap: 6px;
    }

    .ui-tag {
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 100px;
      font-weight: 600;
    }

    .ui-tag.active { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
    .ui-tag.danger { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

    .ui-timeline-item {
      border-left: 2px solid var(--border);
      padding-left: 10px;
      margin-left: 6px;
      position: relative;
      font-size: 11px;
    }

    .timeline-dot {
      position: absolute;
      left: -5px;
      top: 4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--wine);
    }

    /* Micro UI Receta */
    .mini-ui-recipe {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .recipe-item {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      font-weight: 600;
    }

    .recipe-detail {
      font-size: 11px;
      color: var(--muted);
    }

    .recipe-btn-mock {
      background: var(--wine);
      color: white;
      border: none;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 4px;
      text-align: center;
    }

    /* Micro UI Agenda */
    .mini-ui-agenda {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 11px;
    }

    .agenda-time {
      font-weight: 700;
      color: var(--wine);
    }

    .agenda-info strong {
      display: block;
      font-size: 12px;
      color: var(--ink);
    }

    .agenda-action-btn {
      background: #25d366;
      color: white;
      font-weight: 700;
      padding: 5px;
      border-radius: 6px;
      text-align: center;
      cursor: pointer;
    }

    /* Odontograma mini UI */
    .mini-ui-odontograma {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    .odontograma-row {
      display: flex;
      gap: 12px;
    }

    .tooth-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .tooth-num {
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
    }

    .tooth-draw {
      width: 24px;
      height: 24px;
      border: 2px solid var(--border);
      border-radius: 4px;
      background: var(--white);
      transition: background-color 0.3s, border-color 0.3s;
    }

    .tooth-item.crown-red .tooth-draw {
      background: #fca5a5;
      border-color: #ef4444;
    }

    .tooth-item.crown-blue .tooth-draw {
      background: #93c5fd;
      border-color: #3b82f6;
    }

    .tooth-item.crown-green .tooth-draw {
      background: #a7f3d0;
      border-color: #10b981;
    }

    .odontograma-status {
      display: flex;
      gap: 8px;
    }

    .status-badge {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      color: white;
    }

    .status-badge.red { background: #ef4444; }
    .status-badge.blue { background: #3b82f6; }

    /* Micro UI Facturacion */
    .mini-ui-invoice {
      font-size: 11px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .invoice-row {
      display: flex;
      justify-content: space-between;
    }

    .invoice-bar-green {
      background: rgba(34, 197, 94, 0.1);
      color: #16a34a;
      padding: 4px;
      border-radius: 4px;
      text-align: center;
      font-weight: 600;
    }

    /* Responsividad */
    @media (max-width: 991px) {
      .features-premium-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .features-premium-grid {
        grid-template-columns: 1fr;
      }
      .feat-premium-card.card-large {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
      }
      .card-large .feat-premium-preview {
        width: 100%;
      }
    }

    /* ── BENTO ── */
    .bento-section {
      padding: 0 clamp(16px, 4vw, 28px) var(--space-section);
    }

    .bento-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .bento-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 36px;
      overflow: hidden;
      position: relative;
      transition: transform .2s, box-shadow .2s;
    }

    .bento-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lift);
    }

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

    .bento-card.tall {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bento-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--wine);
      margin-bottom: 12px;
    }

    .bento-title {
      font-family: var(--font-d);
      font-size: 22px;
      line-height: 1.15;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .bento-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* chart */
    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 80px;
      margin-top: 28px;
    }

    .bar {
      flex: 1;
      border-radius: 6px 6px 0 0;
      background: var(--cream2);
      position: relative;
      overflow: hidden;
    }

    .bar-fill {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border-radius: 6px 6px 0 0;
    }

    .bar:nth-child(1) .bar-fill {
      height: 45%;
      background: linear-gradient(180deg, var(--wine), rgba(124, 29, 46, .3));
    }

    .bar:nth-child(2) .bar-fill {
      height: 70%;
      background: linear-gradient(180deg, var(--wine), rgba(124, 29, 46, .3));
    }

    .bar:nth-child(3) .bar-fill {
      height: 55%;
      background: linear-gradient(180deg, var(--wine), rgba(124, 29, 46, .3));
    }

    .bar:nth-child(4) .bar-fill {
      height: 92%;
      background: linear-gradient(180deg, var(--gold), rgba(196, 138, 42, .4));
    }

    .bar:nth-child(5) .bar-fill {
      height: 65%;
      background: linear-gradient(180deg, var(--wine), rgba(124, 29, 46, .3));
    }

    .bar:nth-child(6) .bar-fill {
      height: 78%;
      background: linear-gradient(180deg, var(--wine), rgba(124, 29, 46, .3));
    }

    /* status */
    .status-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }

    .status-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: var(--cream);
      border-radius: 8px;
      font-size: 13px;
      border: 1px solid var(--border);
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .status-dot.green {
      background: #2d8c55;
      box-shadow: 0 0 5px #2d8c55;
    }

    .status-dot.wine-d {
      background: var(--gold);
      box-shadow: 0 0 5px var(--gold);
    }

    .status-name {
      color: var(--ink);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .status-val {
      color: var(--muted);
      font-size: 12px;
    }

    .sunat-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      background: rgba(45, 140, 85, .08);
      border: 1px solid rgba(45, 140, 85, .22);
      border-radius: 10px;
      margin-top: 20px;
      font-size: 14px;
      font-weight: 600;
      color: #2d8c55;
    }

    /* ── PRICING ── */
    .pricing {
      padding: var(--space-section) clamp(16px, 4vw, 28px);
      background: var(--ink);
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .pricing-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 72px;
    }

    .pricing-header .tag {
      color: var(--pricing-tag-color);
      border-color: var(--pricing-tag-border);
      background: var(--pricing-tag-bg);
    }

    .pricing-header .tag::before {
      background: var(--gold);
    }

    .pricing-header .section-title {
      color: var(--cream);
    }

    .pricing-header p {
      color: rgba(247, 243, 238, .76);
      margin-top: 14px;
      font-size: 15px;
    }

    .pricing-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: stretch;
    }

    .pricing-grid--2col {
      grid-template-columns: repeat(2, 1fr);
      max-width: 880px;
      justify-content: center;
    }

    .plan-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: var(--radius-xl);
      padding: 36px;
      position: relative;
      transition: transform .2s, background .2s;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .plan-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, .08);
    }

    .plan-card.featured {
      border-color: rgba(106, 168, 139, .42);
      background: rgba(106, 168, 139, .1);
    }

    .plan-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      padding: 5px 14px;
      border-radius: 100px;
      background: var(--gold);
      color: var(--ink);
    }

    .plan-name {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(247, 243, 238, .72);
      margin-bottom: 18px;
      text-align: center;
    }

    .plan-price {
      font-family: var(--font-d);
      font-size: 52px;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 6px;
      text-align: center;
    }

    .plan-price span {
      font-size: 18px;
      color: rgba(247, 243, 238, .78);
      vertical-align: top;
      margin-top: 10px;
      display: inline-block;
      font-family: var(--font-b);
    }

    .plan-price em {
      font-style: normal;
      font-size: 16px;
      color: rgba(247, 243, 238, .72);
      font-weight: 400;
    }

    .plan-annual-price {
      font-size: 13px;
      color: rgba(64, 168, 216, .85);
      text-align: center;
      margin-top: -2px;
      margin-bottom: 16px;
      font-weight: 500;
    }

    .plan-desc {
      font-size: 14px;
      color: rgba(247, 243, 238, .8);
      margin-bottom: 28px;
      line-height: 1.6;
      text-align: center;
    }

    .plan-divider {
      height: 1px;
      background: rgba(255, 255, 255, .07);
      margin-bottom: 24px;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
      text-align: left;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: rgba(247, 243, 238, .78);
    }

    .plan-features li.on {
      color: var(--cream);
    }

    .feat-check {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      margin-top: 1px;
    }

    .feat-check.yes {
      background: rgba(31, 95, 86, .3);
      color: #b7e2d1;
      border: 1px solid rgba(31, 95, 86, .42);
    }

    .feat-check.yes-g {
      background: rgba(196, 138, 42, .2);
      color: var(--gold);
      border: 1px solid rgba(196, 138, 42, .3);
    }

    .feat-check.no {
      background: rgba(255, 255, 255, .05);
      color: rgba(255, 255, 255, .58);
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .btn-plan {
      display: block;
      width: 100%;
      text-align: center;
      padding: 14px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: all .2s;
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(247, 243, 238, .9);
      margin-top: auto;
    }

    .btn-plan:hover {
      border-color: rgba(255, 255, 255, .55);
      color: var(--cream);
    }

    .btn-plan.featured-btn {
      background: var(--gold);
      color: var(--ink);
      border-color: transparent;
      box-shadow: 0 4px 22px rgba(106, 168, 139, .34);
    }

    .btn-plan.featured-btn:hover {
      box-shadow: 0 8px 34px rgba(106, 168, 139, .45);
      transform: translateY(-1px);
    }

    /* ── RESULTS ── */
    .results {
      padding: 20px clamp(16px, 4vw, 28px) 0;
    }

    .results-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .result-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px 16px;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }

    .result-num {
      font-family: var(--font-d);
      font-size: clamp(24px, 2.8vw, 34px);
      line-height: 1.1;
      color: var(--wine);
    }

    .result-label {
      margin-top: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ── FAQ ── */
    .faq {
      padding: clamp(52px, 9vw, 64px) clamp(16px, 4vw, 28px) 0;
    }

    .faq-grid {
      max-width: 1200px;
      margin: 28px auto 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px 18px 16px;
      box-shadow: var(--shadow-soft);
    }

    .faq-q {
      font-size: 15px;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .faq-a {
      font-size: 14px;
      color: #43362f;
    }

    /* ── CTA ── */
    .cta-section {
      padding: var(--space-section) clamp(16px, 4vw, 28px);
    }

    .cta-box {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--cta-gradient);
      border-radius: var(--radius-xl);
      padding: 80px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
      pointer-events: none;
    }

    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -40px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      pointer-events: none;
    }

    .cta-title {
      font-family: var(--font-d);
      font-size: clamp(36px, 4vw, 54px);
      color: #fff;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .cta-sub {
      font-size: 17px;
      color: rgba(255, 255, 255, .9);
      max-width: 480px;
      margin: 0 auto 28px;
      position: relative;
      z-index: 2;
    }

    .cta-chips {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      position: relative;
      z-index: 2;
    }

    .cta-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      border-radius: 100px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .9);
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .btn-cta-pri {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: var(--radius-sm);
      background: var(--gold);
      color: var(--ink);
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all .2s;
      box-shadow: 0 4px 24px rgba(196, 138, 42, .4);
    }

    .btn-cta-pri:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(196, 138, 42, .55);
    }

    .btn-cta-sec {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 24px;
      border-radius: var(--radius-sm);
      border: 1.5px solid rgba(255, 255, 255, .62);
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }

    .btn-cta-sec:hover {
      border-color: rgba(255, 255, 255, .82);
      background: rgba(255, 255, 255, .14);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink2);
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: clamp(48px, 8vw, 64px) clamp(16px, 4vw, 28px) 32px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .footer-brand {
      max-width: 300px;
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(247, 243, 238, .72);
      margin-top: 14px;
      line-height: 1.65;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(247, 243, 238, .8);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: rgba(247, 243, 238, .75);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--cream);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .06);
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 13px;
      color: rgba(247, 243, 238, .65);
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(247, 243, 238, .8);
      text-decoration: none;
      font-size: 14px;
      transition: border-color .2s, color .2s;
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* FAB */
    .fab-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 56px;
      height: 56px;
      border-radius: var(--radius-md);
      background: #25d366;
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
      transition: transform .2s, box-shadow .2s;
    }

    .fab-wa:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 48px rgba(37, 211, 102, .55);
    }

    .fab-wa svg {
      width: 26px;
      height: 26px;
    }

    /* MOBILE STICKY CTA */
    .mobile-sticky-cta {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: max(12px, env(safe-area-inset-bottom));
      z-index: 420;
      background: rgba(26, 19, 11, .92);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius-md);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 32px rgba(0, 0, 0, .28);
      padding: 10px;
      gap: 8px;
      grid-template-columns: 1fr 1fr;
    }

    .sticky-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      min-height: 42px;
      padding: 0 10px;
    }

    .sticky-cta-btn.primary {
      background: var(--gold);
      color: var(--ink);
    }

    .sticky-cta-btn.secondary {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
    }


    /* MOBILE NAV */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
      background: var(--cream);
      flex-direction: column;
      padding: 28px;
    }

    .mobile-overlay.open {
      display: flex;
    }

    .mobile-overlay a {
      font-family: var(--font-d);
      font-size: 30px;
      color: var(--ink);
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .mobile-overlay a:hover {
      color: var(--wine);
    }

    .mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .mobile-close {
      background: none;
      border: none;
      color: var(--ink);
      cursor: pointer;
      font-size: 24px;
      padding: 8px;
    }

    .mobile-cta {
      margin-top: 28px;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .results-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

    @media (max-width: 768px) {
      body {
        padding-bottom: 92px;
      }

      .hero {
        min-height: auto;
        padding-top: 94px;
        padding-bottom: 40px;
      }

      .hero-title {
        max-width: 16ch;
        margin-bottom: 14px;
      }

      .hero-sub {
        margin-bottom: 22px;
      }

      .hero-ctas {
        width: 100%;
      }

      .hero-ctas a {
        width: 100%;
        justify-content: center;
      }

      .mobile-sticky-cta {
        display: grid;
      }

      .fab-wa {
        bottom: 92px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        display: none;
      }

      

      

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

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

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

      .pricing-grid,
      .pricing-grid--2col {
        grid-template-columns: 1fr;
      }

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

      .footer-links {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .cta-box {
        padding: 38px 20px;
      }

      .trust-badges {
        gap: 10px;
        margin-top: 28px;
      }
    }

    /* ── SCROLL REVEAL ── */
    .reveal-section {
      opacity: 0;
      transform: translateY(34px) scale(.992);
      filter: blur(7px);
      transition: opacity .72s cubic-bezier(.25,.46,.45,.94),
                  transform .72s cubic-bezier(.25,.46,.45,.94),
                  filter .72s cubic-bezier(.25,.46,.45,.94);
      will-change: opacity, transform, filter;
    }

    .reveal-section.visible {
      opacity: 1 !important;
      transform: none !important;
      filter: blur(0);
    }

    .animate {
      opacity: 0;
      transform: translateY(36px);
      filter: blur(5px);
      transition: opacity .65s cubic-bezier(.25,.46,.45,.94),
                  transform .65s cubic-bezier(.25,.46,.45,.94),
                  filter .65s cubic-bezier(.25,.46,.45,.94);
    }
    .animate.from-scale {
      transform: scale(.97) translateY(20px);
    }
    .animate.from-left {
      transform: translateX(-44px);
    }
    .animate.visible {
      opacity: 1 !important;
      transform: none !important;
      filter: blur(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal-section,
      .animate {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
      }
    }

    @media (max-width: 768px) {
      .hero-orb1 {
        width: 300px;
        height: 300px;
        animation: floatOrb1 12s ease-in-out infinite alternate;
      }
      .hero-orb2 {
        width: 250px;
        height: 250px;
        animation: floatOrb2 15s ease-in-out infinite alternate;
      }
    }