  :root {
    --navy: #031C67;
    --blue: #184181;
    --pink: #E00F65;
    --yellow: #FEC803;
    --orange: #FBA207;
    --white: #FFFFFF;
    --light: #F4F6FB;
    --dark: #0A1128;
    --muted: #5A6484;
    --grad-cta: linear-gradient(135deg, #E00F65 0%, #FBA207 100%);
    --grad-hero: linear-gradient(160deg, #031C67 0%, #184181 50%, #0A2A7A 100%);
    --sh-sm: 0 2px 8px rgba(3, 28, 103, 0.08);
    --sh-md: 0 8px 32px rgba(3, 28, 103, 0.12);
    --sh-lg: 0 20px 50px rgba(3, 28, 103, 0.18);
    --sh-cta: 0 8px 24px rgba(224, 15, 101, 0.35);
    --r: 16px;
    --r-sm: 10px;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    text-decoration: none;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ═══ NAVBAR ═══ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.stuck {
    background: rgba(3, 28, 103, 0.97);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }

  .nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9));
  }

  .nav-brand span {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-cta);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--sh-cta);
    position: relative;
    overflow: hidden;
  }

  .btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(224, 15, 101, 0.5);
  }

  .btn-cta:hover::after {
    opacity: 1;
  }

  .btn-big {
    padding: 18px 44px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--sh-cta);
  }

  .btn-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(224, 15, 101, 0.55);
  }

  .btn-full {
    width: 100%;
    justify-content: center;
  }

  /* ═══ HERO ═══ */
  .hero {
    background: var(--grad-hero);
    padding: 150px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-orb.a {
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(254, 200, 3, 0.1) 0%, transparent 65%);
  }

  .hero-orb.b {
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 15, 101, 0.07) 0%, transparent 65%);
  }

  .hero-orb.c {
    top: 20%;
    left: 45%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 65, 129, 0.15) 0%, transparent 65%);
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 200, 3, 0.12);
    border: 1px solid rgba(254, 200, 3, 0.25);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: slideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 4.5vw, 3.7rem);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero h1 em {
    font-style: normal;
    background: var(--grad-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 480px;
    animation: slideUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-btns {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .btn-ghost:hover {
    color: var(--yellow);
  }

  .hero-metrics {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    animation: slideUp 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .metric-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
  }

  .metric-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
  }

  /* Hero Mockup */
  .hero-vis {
    position: relative;
    animation: slideLeft 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .mockup {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
  }

  .mockup-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .mockup-dots {
    display: flex;
    gap: 8px;
    margin: 8px 12px 14px;
  }

  .float-tag {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--dark);
  }

  .float-tag.tr {
    top: -16px;
    right: -16px;
    animation: bob 3s ease-in-out infinite;
  }

  .float-tag.bl {
    bottom: -16px;
    left: -16px;
    animation: bob 3s 1.5s ease-in-out infinite;
  }

  @keyframes bob {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  .float-tag .fi {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .float-tag .fi.grn {
    background: rgba(40, 202, 66, 0.1);
  }

  .float-tag .fi.blu {
    background: rgba(24, 65, 129, 0.1);
  }

  /* ═══ TRUST ═══ */
  .trust {
    background: var(--light);
    padding: 30px 0;
    border-bottom: 1px solid rgba(3, 28, 103, 0.05);
  }

  .trust .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
  }

  .trust-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--sh-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
  }

  /* ═══ SECTION COMMONS ═══ */
  .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--pink);
    margin-bottom: 14px;
  }

  .sec-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .sec-title em {
    font-style: normal;
  }

  .sec-sub {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 56px;
  }

  .text-center {
    text-align: center;
  }

  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  /* ═══ ANTES vs DESPUÉS ═══ */
  .compare {
    padding: 110px 0;
    background: #fff;
  }

  .cmp-grid {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    gap: 0;
    align-items: stretch;
  }

  .cmp-card {
    padding: 44px;
    border-radius: var(--r);
  }

  .cmp-card.bad {
    background: #FFF5F7;
    border: 2px solid #FFD6E0;
  }

  .cmp-card.good {
    background: linear-gradient(140deg, #EEFFF0 0%, #EAF6FF 100%);
    border: 2px solid #B8ECBA;
  }

  .cmp-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cmp-card.bad h3 {
    color: #C62828;
  }

  .cmp-card.good h3 {
    color: #2E7D32;
  }

  .cmp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--dark);
  }

  .cmp-item:last-child {
    margin-bottom: 0;
  }

  .cmp-ico {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 2px;
  }

  .cmp-card.bad .cmp-ico {
    background: #FFCDD2;
    color: #C62828;
  }

  .cmp-card.good .cmp-ico {
    background: #C8E6C9;
    color: #2E7D32;
  }

  .cmp-mid {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cmp-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--sh-cta);
    flex-shrink: 0;
  }

  /* ═══ PASOS ═══ */
  .steps {
    padding: 110px 0;
    background: var(--light);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 18%;
    right: 18%;
    height: 3px;
    background: var(--grad-cta);
    opacity: 0.2;
    border-radius: 2px;
  }

  .step-card {
    background: #fff;
    border-radius: var(--r);
    padding: 44px 32px;
    text-align: center;
    position: relative;
    box-shadow: var(--sh-sm);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
  }

  .step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: rgba(224, 15, 101, 0.12);
  }

  .step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-hero);
    color: var(--yellow);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(3, 28, 103, 0.25);
  }

  .step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ═══ FEATURES ═══ */
  .feats {
    padding: 110px 0;
    background: #fff;
  }

  .feats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .feat {
    padding: 34px;
    border-radius: var(--r);
    border: 1px solid rgba(3, 28, 103, 0.07);
    background: #fff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .feat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-cta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feat:hover {
    border-color: rgba(224, 15, 101, 0.18);
    box-shadow: var(--sh-md);
    transform: translateY(-5px);
  }

  .feat:hover::before {
    transform: scaleX(1);
  }

  .feat-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .feat-ico.c1 {
    background: rgba(3, 28, 103, 0.07);
  }

  .feat-ico.c2 {
    background: rgba(224, 15, 101, 0.07);
  }

  .feat-ico.c3 {
    background: rgba(254, 200, 3, 0.13);
  }

  .feat-ico.c4 {
    background: rgba(24, 65, 129, 0.07);
  }

  .feat-ico.c5 {
    background: rgba(251, 162, 7, 0.1);
  }

  .feat-ico.c6 {
    background: rgba(40, 202, 66, 0.08);
  }

  .feat h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .feat p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ═══ PRICING ═══ */
  .pricing {
    padding: 110px 0;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
  }

  .pricing .hero-orb.a {
    top: -200px;
    right: -150px;
    width: 550px;
    height: 550px;
  }

  .pricing .hero-orb.b {
    bottom: -200px;
    left: -100px;
    width: 450px;
    height: 450px;
  }

  .pricing .sec-label {
    color: var(--yellow);
  }

  .pricing .sec-title {
    color: #fff;
  }

  .pricing .sec-sub {
    color: rgba(255, 255, 255, 0.6);
  }

  .price-card {
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 52px 48px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  }

  .price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-cta);
    color: #fff;
    padding: 9px 28px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--sh-cta);
    white-space: nowrap;
  }

  .price-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 8px;
  }

  .price-box {
    margin: 28px 0;
  }

  .price-old {
    text-decoration: line-through;
    color: #ccc;
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .price-curr {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 10px;
  }

  .price-num {
    font-size: 5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -4px;
  }

  .price-dec {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 10px;
  }

  .price-period {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
  }

  .price-list {
    text-align: left;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .price-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--dark);
  }

  .price-chk {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(40, 202, 66, 0.1);
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .price-note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  /* ═══ TESTIMONIALS ═══ */
  .testi {
    padding: 110px 0;
    background: var(--light);
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .testi-card {
    background: #fff;
    border-radius: var(--r);
    padding: 34px;
    box-shadow: var(--sh-sm);
    transition: all 0.35s;
    border: 1px solid transparent;
  }

  .testi-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-5px);
    border-color: rgba(254, 200, 3, 0.2);
  }

  .testi-stars {
    color: var(--orange);
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
  }

  .testi-text {
    font-size: 0.93rem;
    color: var(--dark);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-hero);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
  }

  .testi-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
  }

  .testi-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ═══ FAQ ═══ */
  .faq {
    padding: 110px 0;
    background: #fff;
  }

  .faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .faq-item {
    border: 1px solid rgba(3, 28, 103, 0.07);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .faq-item:hover {
    border-color: rgba(3, 28, 103, 0.14);
  }

  .faq-item.open {
    border-color: rgba(224, 15, 101, 0.2);
  }

  .faq-q {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--navy);
    transition: background 0.25s;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
  }

  .faq-q:hover {
    background: var(--light);
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: all 0.35s;
    line-height: 1;
  }

  .faq-item.open .faq-icon {
    background: var(--navy);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.open .faq-a {
    max-height: 250px;
  }

  .faq-a-inner {
    padding: 0 26px 22px;
  }

  .faq-a p {
    font-size: 0.91rem;
    color: var(--muted);
    line-height: 1.75;
  }

  /* ═══ FINAL CTA ═══ */
  .final {
    padding: 90px 0;
    background: var(--light);
    text-align: center;
  }

  .final .sec-title {
    margin-bottom: 10px;
  }

  .final p {
    font-size: 1.08rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ═══ FOOTER ═══ */
  .footer {
    background: var(--navy);
    padding: 36px 0;
    text-align: center;
  }

  .footer p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.84rem;
  }

  .footer a {
    color: var(--yellow);
    transition: opacity 0.3s;
  }

  .footer a:hover {
    opacity: 0.8;
  }

  /* ═══ WHATSAPP FLOAT ═══ */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1.6rem;
  }

  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  }

  /* ═══ ANIMATIONS ═══ */
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(32px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateX(40px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.vis {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal.d1 {
    transition-delay: 0.1s;
  }

  .reveal.d2 {
    transition-delay: 0.2s;
  }

  .reveal.d3 {
    transition-delay: 0.3s;
  }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 1024px) {
    h1 {
      font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
  }

  @media (max-width: 960px) {
    .hero .container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }

    .hero-sub {
      margin-left: auto;
      margin-right: auto;
      max-width: 600px;
    }

    .hero-btns {
      justify-content: center;
    }

    .hero-metrics {
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .hero-vis {
      display: flex;
      justify-content: center;
      transform: scale(0.9);
      margin-top: 20px;
    }

    .cmp-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .cmp-mid {
      padding: 20px 0;
    }

    .cmp-arrow {
      transform: rotate(90deg);
    }

    .steps-grid {
      grid-template-columns: 1fr;
      max-width: 450px;
      margin: 0 auto;
    }

    .steps-grid::before {
      display: none;
    }

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

    .testi-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
    }
  }

  @media (max-width: 640px) {
    .nav {
      padding: 12px 0;
    }

    .hero {
      padding: 120px 0 60px;
    }

    .hero-vis {
      display: none;
    }

    .hero-metrics {
      gap: 20px;
    }

    .metric-num {
      font-size: 1.5rem;
    }

    .trust .container {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

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

    .price-card {
      padding: 40px 24px;
    }

    .price-num {
      font-size: 3.5rem;
    }

    .cmp-card {
      padding: 30px 20px;
    }

    .nav-brand span {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 480px) {
    .nav-brand span {
      display: none;
    }

    .hero-btns {
      flex-direction: column;
      width: 100%;
    }

    .btn-big,
    .btn-ghost {
      width: 100%;
      justify-content: center;
    }
  }