    :root {
      --primary: #00d4ff;
      --primary-dark: #00a0cc;
      --dark: #0f172a;
      --gray: #334155;
      --light: #f8fafc;
    }

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

    body {
      font-family: system-ui, -apple-system, sans-serif;
      background: var(--dark);
      color: white;
      line-height: 1.6;
    }

    .container {
      width: min(92%, 1180px);
      margin: 0 auto;
    }



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

    .logo {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(90deg, #00d4ff, #a78bfa);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero {
      padding: 8rem 0 6rem;
      text-align: center;
      background: linear-gradient(to bottom, #0f172a, #0f172a 50%, #1e293b);
    }

    .hero h1 {
      font-size: clamp(2.8rem, 8vw, 5.2rem);
      margin-bottom: 1.2rem;
      line-height: 1.1;
      font-weight: 800;
    }

    .highlight {
      color: var(--primary);
    }

    .hero p {
      font-size: 1.35rem;
      max-width: 680px;
      margin: 0 auto 2.5rem;
      color: #cbd5e1;
    }

    .badges {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin: 2rem 0 3rem;
    }

    .badge {
      background: rgba(0, 212, 255, 0.12);
      color: var(--primary);
      padding: 0.6rem 1.4rem;
      border-radius: 50px;
      font-weight: 600;
      border: 1px solid rgba(0, 212, 255, 0.3);
    }

    .cta-button {
      display: inline-block;
      background: var(--primary);
      color: black;
      font-size: 1.3rem;
      font-weight: 800;
      padding: 1.1rem 2.6rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 10px 30px rgba(0,212,255,0.35);
    }

    .cta-button:hover {
      transform: translateY(-4px);
      background: #00eaff;
      box-shadow: 0 16px 40px rgba(0,212,255,0.5);
    }

    .cta-button:active {
      transform: translateY(-1px);
    }

    .secondary-cta {
      margin-left: 1.5rem;
      background: transparent;
      border: 2px solid #64748b;
      color: white;
      box-shadow: none;
    }

    .secondary-cta:hover {
      background: rgba(255,255,255,0.08);
      border-color: white;
    }

    section {
      padding: 6rem 0;
    }

    h2 {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 3rem;
    }

    .hooks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.8rem;
    }

    .hook-card {
      background: #1e293b;
      border: 1px solid #334155;
      border-radius: 16px;
      padding: 1.8rem;
      transition: all 0.3s;
    }

    .hook-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .hook-card h3 {
      color: var(--primary);
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .price-section {
      text-align: center;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      padding: 6rem 0;
    }

    .price-card {
      background: #1e293b;
      border: 2px solid var(--primary);
      border-radius: 20px;
      padding: 3rem 2rem;
      max-width: 480px;
      margin: 0 auto;
    }

    .price {
      font-size: 4.5rem;
      font-weight: 800;
      margin: 1.5rem 0;
      color: var(--primary);
    }

    .features-list {
      list-style: none;
      text-align: left;
      margin: 2rem 0 3rem;
    }

    .features-list li {
      margin: 1rem 0;
      font-size: 1.15rem;
    }

    .features-list li::before {
      content: "✓ ";
      color: var(--primary);
      font-weight: bold;
      margin-right: 0.6rem;
    }

    footer {
      text-align: center;
      padding: 4rem 0 2rem;
      color: #64748b;
      border-top: 1px solid #1e293b;
    }

    @media (max-width: 640px) {
      .hero { padding: 6rem 0 4rem; }
      .hero h1 { font-size: 2.8rem; }
      .hero p { font-size: 1.15rem; }
      .badges { gap: 1rem; }
      h2 { font-size: 2.4rem; }
      .price { font-size: 3.8rem; }
    }

  
    header {
      padding: 2.5rem 0 1.5rem;
      text-align: center;
      background: linear-gradient(to bottom, #1a0033, #0a0a15);
    }

    h1 {
      font-size: clamp(2.4rem, 7vw, 4.2rem);
      margin-bottom: 1rem;
      /* background-clip: text; */
      /* color: transparent; */
      color: linear-gradient(90deg, var(--primary), var(--accent));
      font-weight: 800;
    }

    .subtitle {
      font-size: 1.4rem;
      max-width: 720px;
      margin: 0 auto 2rem;
      color: #d1d5db;
    }

    .gift-box {
      background: rgba(255, 62, 158, 0.08);
      border: 2px dashed var(--primary);
      border-radius: 16px;
      padding: 2.5rem;
      margin: 2rem 0 3rem;
      text-align: center;
    }

    .gift-box h2 {
      color: var(--primary);
      font-size: 2.1rem;
      margin-bottom: 1.5rem;
    }

    .categories {
      margin: 3rem 0;
    }

    .category {
      margin-bottom: 3.5rem;
    }

    .category h3 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
      border-left: 5px solid var(--primary);
      padding-left: 1rem;
    }

    .hook-list {
      list-style: none;
      display: grid;
      gap: 1.1rem;
    }

    .hook-item {
      background: var(--gray);
      padding: 1.2rem 1.5rem;
      border-radius: 12px;
      border: 1px solid #3a3a55;
      transition: all 0.2s;
      font-size: 1.08rem;
    }

    .hook-item:hover {
      transform: translateX(8px);
      border-color: var(--primary);
      box-shadow: 0 8px 25px rgba(255, 62, 158, 0.15);
    }

    .hook-item::before {
      content: "→ ";
      color: var(--accent);
      font-weight: bold;
      margin-right: 0.6rem;
    }

    .visual-examples {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 3rem 0;
    }

    .visual-examples img {
      width: 100%;
      border-radius: 12px;
      border: 2px solid #3a3a55;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .cta-final {
      text-align: center;
      padding: 4rem 0 5rem;
      background: linear-gradient(to top, var(--dark), #1a0033);
    }

  

    .cta-button:hover {
      transform: translateY(-6px);
      background: #ff5ca8;
      box-shadow: 0 20px 50px rgba(255, 62, 158, 0.6);
    }

    footer {
      text-align: center;
      padding: 3rem 0;
      color: #888;
      font-size: 0.95rem;
      border-top: 1px solid #222;
    }

    @media (max-width: 640px) {
      h1 {
        font-size: 2.8rem;
      }

      .subtitle {
        font-size: 1.2rem;
      }

      .gift-box {
        padding: 1.8rem;
      }

      .category h3 {
        font-size: 1.6rem;
      }
    }
