    .hero {
      padding: 5.5rem 1.5rem 3.5rem;
      max-width: 1060px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--adim);
      border: 1px solid rgba(247, 183, 49, .3);
      padding: .28rem .9rem;
      border-radius: 100px;
      font-size: .75rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 1.5rem;
      font-family: 'Syne', sans-serif;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .3;
      }
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5.5vw, 4rem);
      font-weight: 800;
      margin-bottom: 1rem;
      letter-spacing: -.03em;
    }

    .grad {
      background: linear-gradient(135deg, var(--accent), #FF9F43 50%, var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--dim);
      max-width: 540px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .8rem;
      flex-wrap: wrap;
    }

    .btn-lg {
      padding: .75rem 1.75rem;
      border-radius: 9px;
      font-size: .95rem;
      font-weight: 700;
      color: #000;
      background: var(--accent);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: .4rem;
      font-family: 'Syne', sans-serif;
      transition: all .2s;
    }

    .btn-lg:hover {
      opacity: .9;
      transform: translateY(-2px);
    }

    .btn-lg-out {
      padding: .75rem 1.75rem;
      border-radius: 9px;
      font-size: .95rem;
      color: var(--text);
      background: var(--surface);
      border: 1px solid var(--border2);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: .4rem;
      transition: all .2s;
    }

    .btn-lg-out:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .pv {
      margin: 3rem auto 0;
      max-width: 820px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: var(--rx);
      overflow: hidden;
      box-shadow: 0 32px 64px rgba(0, 0, 0, .5);
    }

    .pv-bar {
      padding: .65rem 1rem;
      background: var(--surface2);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .pv-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .pv-body {
      padding: 1.25rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .9rem;
    }

    .pv-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: .9rem;
    }

    .pv-lbl {
      font-size: .65rem;
      color: var(--muted);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: .4rem;
      font-family: 'Syne', sans-serif;
    }

    .pv-txt {
      font-size: .8rem;
      color: var(--dim);
      line-height: 1.6;
    }

    .pv-hl {
      color: var(--teal);
      font-weight: 700;
    }

    .sec {
      padding: 4rem 1.5rem;
      max-width: 1060px;
      margin: 0 auto;
    }

    .sec-lbl {
      font-size: .72rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: .6rem;
      font-family: 'Syne', sans-serif;
    }

    .sec-title {
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 800;
      margin-bottom: .75rem;
      letter-spacing: -.02em;
    }

    .sec-sub {
      color: var(--dim);
      max-width: 480px;
      line-height: 1.7;
    }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .feat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 1.35rem;
      transition: all .25s;
    }

    .feat-card:hover {
      border-color: var(--border2);
      transform: translateY(-3px);
    }

    .feat-icon {
      width: 42px;
      height: 42px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: .9rem;
    }

    .feat-card h3 {
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: .4rem;
    }

    .feat-card p {
      font-size: .82rem;
      color: var(--dim);
      line-height: 1.6;
    }

    .fi-a {
      background: var(--adim);
      border: 1px solid rgba(247, 183, 49, .2);
    }

    .fi-t {
      background: var(--tdim);
      border: 1px solid rgba(0, 201, 167, .2);
    }

    .fi-p {
      background: var(--pdim);
      border: 1px solid rgba(139, 92, 246, .2);
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .plan {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 1.5rem;
      position: relative;
    }

    .plan.pop {
      border-color: var(--accent);
      background: var(--surface2);
    }

    .plan.pop::before {
      content: 'Most Popular';
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #000;
      font-size: .65rem;
      font-weight: 800;
      padding: .2rem .75rem;
      border-radius: 0 0 7px 7px;
      font-family: 'Syne', sans-serif;
    }

    .plan-name {
      font-size: .75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      margin-bottom: .6rem;
      font-family: 'Syne', sans-serif;
    }

    .plan-price {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: .2rem;
      letter-spacing: -.03em;
    }

    .plan-price span {
      font-size: .9rem;
      font-weight: 500;
      color: var(--muted);
    }

    .plan-desc {
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: 1.25rem;
    }

    .plan-feats {
      list-style: none;
      margin-bottom: 1.25rem;
    }

    .plan-feats li {
      font-size: .82rem;
      color: var(--dim);
      padding: .28rem 0;
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .plan-feats li::before {
      content: '✓';
      color: var(--teal);
      font-weight: 800;
    }

    .plan-feats li.no::before {
      content: '✕';
      color: var(--muted);
    }

    .plan-feats li.no {
      color: var(--muted);
    }

    .btn-plan {
      width: 100%;
      padding: .65rem;
      border-radius: 8px;
      font-size: .875rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
      font-family: 'Syne', sans-serif;
    }

    .btn-pp {
      background: var(--accent);
      color: #000;
      border: none;
    }

    .btn-pp:hover {
      opacity: .9;
    }

    .btn-po {
      background: none;
      color: var(--text);
      border: 1px solid var(--border2);
    }

    .btn-po:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

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

    .step-num {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--accent);
      margin: 0 auto .9rem;
    }

    .step-c h3 {
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: .4rem;
    }

    .step-c p {
      font-size: .82rem;
      color: var(--dim);
    }

    .lang-grid {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-top: 1.5rem;
    }

    .lpill {
      padding: .28rem .75rem;
      border-radius: 100px;
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: .78rem;
      color: var(--dim);
    }

    .lpill.feat {
      background: var(--adim);
      border-color: rgba(247, 183, 49, .3);
      color: var(--accent);
      font-weight: 600;
    }

    .lpill.teal {
      background: var(--tdim);
      border-color: rgba(0, 201, 167, .3);
      color: var(--teal);
    }

    .footer {
      border-top: 1px solid var(--border);
      padding: 1.75rem 1.5rem;
      max-width: 1060px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .9rem;
    }

    .fl {
      font-size: .8rem;
      color: var(--muted);
      cursor: pointer;
    }

    .fl:hover {
      color: var(--text);
    }

    @media(max-width:768px) {

      .price-grid,
      .steps-row {
        grid-template-columns: 1fr;
      }

      .pv-body {
        grid-template-columns: 1fr;
      }
    }