:root {
      --primary: hsl(199, 100%, 50%);
      --accent: hsl(145, 80%, 50%);
      --bg: hsl(220, 20%, 7%);
      --card: hsl(220, 18%, 10%);
      --border: hsl(220, 14%, 18%);
      --fg: hsl(210, 20%, 95%);
      --muted: hsl(215, 12%, 55%);
      --radius: 0.75rem;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: 'Space Grotesk', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .text-gradient {
      background: linear-gradient(to right, var(--primary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 48px;
      background: hsla(220, 20%, 7%, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { width: 32px; height: 32px; object-fit: contain; }
    .nav-logo .logo-text {
      font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem;
      background: linear-gradient(to right, var(--primary), var(--accent));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--fg); }
    .nav-cta {
      background: var(--primary); color: hsl(220,20%,7%);
      padding: 9px 22px; border-radius: var(--radius);
      font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem;
      text-decoration: none; transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 120px 24px 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, hsla(199,100%,50%,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: hsla(199,100%,50%,0.1); border: 1px solid hsla(199,100%,50%,0.25);
      color: var(--primary); font-size: 0.75rem; font-weight: 600;
      padding: 6px 16px; border-radius: 999px; margin-bottom: 28px;
      animation: fadeUp 0.5s ease both;
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
    .hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 4.4rem);
      font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
      max-width: 740px; animation: fadeUp 0.5s 0.08s ease both;
    }
    .hero p {
      color: var(--muted); font-size: 1.05rem; max-width: 480px;
      margin: 20px auto 0; line-height: 1.75;
      animation: fadeUp 0.5s 0.16s ease both;
    }
    .hero-actions {
      display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
      margin-top: 36px; animation: fadeUp 0.5s 0.24s ease both;
    }
    .btn-primary {
      background: var(--primary); color: hsl(220,20%,7%);
      padding: 13px 28px; border-radius: var(--radius);
      font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.92rem;
      text-decoration: none; transition: opacity 0.2s, transform 0.15s;
      display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn-secondary {
      background: transparent; color: var(--fg);
      padding: 13px 28px; border-radius: var(--radius);
      border: 1px solid var(--border);
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem;
      text-decoration: none; transition: border-color 0.2s, transform 0.15s;
    }
    .btn-secondary:hover { border-color: var(--primary); transform: translateY(-1px); }

    .stores {
      display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
      margin-top: 40px; animation: fadeUp 0.5s 0.32s ease both;
    }
    .store-badge {
      display: flex; align-items: center; gap: 10px;
      background: hsla(210,20%,95%,0.04); border: 1px solid var(--border);
      padding: 10px 18px; border-radius: var(--radius);
      text-decoration: none; color: var(--fg); transition: border-color 0.2s;
    }
    .store-badge:hover { border-color: hsla(199,100%,50%,0.4); }
    .store-badge svg { width: 20px; height: 20px; fill: var(--fg); flex-shrink: 0; }
    .sb-small { font-size: 0.63rem; color: var(--muted); }
    .sb-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem; }
    .store-soon {
      font-size: 0.63rem; font-weight: 600; color: var(--primary);
      border: 1px solid hsla(199,100%,50%,0.3); padding: 2px 8px; border-radius: 999px;
    }

    /* SECTIONS */
    section { padding: 96px 24px; }
    .container { max-width: 1060px; margin: 0 auto; }
    .section-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
      max-width: 520px;
    }
    .section-desc { color: var(--muted); margin-top: 14px; max-width: 440px; line-height: 1.7; }

    /* STEPS */
    .steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      margin-top: 56px;
      border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
    }
    .step {
      background: var(--card); padding: 36px 28px;
      border-right: 1px solid var(--border);
      transition: background 0.2s;
    }
    .step:last-child { border-right: none; }
    .step:hover { background: hsla(199,100%,50%,0.04); }
    .step-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em;
      color: transparent; -webkit-text-stroke: 1px hsla(199,100%,50%,0.5);
      line-height: 1; margin-bottom: 20px;
    }
    .step h3 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
    .step p { color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

    /* SPORTS */
    .sports-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 10px; margin-top: 44px;
    }
    .sport-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px 16px;
      text-align: center; transition: border-color 0.2s, transform 0.2s;
    }
    .sport-card:hover { border-color: hsla(199,100%,50%,0.4); transform: translateY(-3px); }
    .sport-icon { font-size: 2rem; margin-bottom: 10px; }
    .sport-card span { font-weight: 600; font-size: 0.85rem; }

    /* TWO COL */
    .two-col {
      display: grid; grid-template-columns: 1fr 1fr;
      margin-top: 56px;
      border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
    }
    .col-card { background: var(--card); padding: 44px 40px; }
    .col-card:first-child { border-right: 1px solid var(--border); }
    .col-tag {
      display: inline-block;
      background: hsla(199,100%,50%,0.1); border: 1px solid hsla(199,100%,50%,0.25);
      color: var(--primary); font-size: 0.7rem; font-weight: 700;
      padding: 4px 12px; border-radius: 999px; margin-bottom: 20px;
      letter-spacing: 0.05em; text-transform: uppercase;
    }
    .col-card h3 { font-weight: 800; font-size: 1.4rem; margin-bottom: 20px; }
    .col-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .col-card li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
    .col-card li::before { content: '→'; color: var(--primary); flex-shrink: 0; margin-top: 1px; }

    /* TESTIMONIALS */
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 14px; margin-top: 44px;
    }
    .testimonial {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px;
    }
    .testimonial-text { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 11px; }
    .avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: hsla(199,100%,50%,0.1); border: 1px solid hsla(199,100%,50%,0.25);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.82rem; flex-shrink: 0;
    }
    .author-name { font-weight: 700; font-size: 0.88rem; }
    .author-role { color: var(--muted); font-size: 0.75rem; margin-top: 2px; }

    /* CONTACT */
    .contact-wrapper {
      background: var(--card); border: 1px solid var(--border);
      border-radius: calc(var(--radius) * 1.5); padding: 56px 48px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
      margin-top: 44px;
    }
    .contact-info h3 { font-weight: 800; font-size: 1.6rem; margin-bottom: 14px; }
    .contact-info p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
    .contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
    .contact-link {
      display: flex; align-items: center; gap: 11px;
      color: var(--muted); text-decoration: none; font-size: 0.88rem;
      transition: color 0.2s; font-weight: 500;
    }
    .contact-link:hover { color: var(--primary); }
    .contact-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; flex-shrink: 0; }
    .contact-form { display: flex; flex-direction: column; gap: 12px; }
    .form-input {
      background: hsla(210,20%,95%,0.03); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 13px 16px;
      color: var(--fg); font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem;
      outline: none; transition: border-color 0.2s; width: 100%;
    }
    .form-input:focus { border-color: hsla(199,100%,50%,0.5); }
    .form-input::placeholder { color: var(--muted); }
    textarea.form-input { resize: vertical; min-height: 110px; }

    .wa-float{position:fixed;bottom:2rem;right:2rem;z-index:999;background:#25D366;color:white;width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);transition:all 0.3s;animation:pulse-wa 2.5s infinite;}
    .wa-float:hover{transform:scale(1.1);}

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border); padding: 36px 48px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-logo { display: flex; align-items: center; gap: 9px; }
    .footer-logo img { width: 26px; height: 26px; object-fit: contain; }
    .footer-logo .logo-text {
      font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem;
      background: linear-gradient(to right, var(--primary), var(--accent));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .footer-copy { color: var(--muted); font-size: 0.78rem; }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { color: var(--muted); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--primary); }

    .divider { border: none; border-top: 1px solid var(--border); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step:nth-child(2) { border-right: none; }
      .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--border); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .two-col { grid-template-columns: 1fr; }
      .col-card:first-child { border-right: none; border-bottom: 1px solid var(--border); }
      .contact-wrapper { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; }
      footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
      section { padding: 72px 20px; }
      .steps { grid-template-columns: 1fr; }
      .step { border-right: none !important; border-bottom: 1px solid var(--border); }
      .step:last-child { border-bottom: none; }
      .hero h1 { font-size: 2.2rem; }
      .col-card { padding: 32px 24px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
    }
  
  /* COOKIE BANNER */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: hsl(220,18%,10%);
    border-top: 1px solid var(--border);
    padding: 16px 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .cookie-banner.show { transform: translateY(0); }
  .cookie-text { font-size: 0.85rem; color: var(--muted); max-width: 600px; line-height: 1.6; }
  .cookie-text a { color: var(--primary); text-decoration: underline; }
  .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-accept {
    background: var(--primary); color: hsl(220,20%,7%);
    border: none; padding: 9px 22px; border-radius: 6px;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; transition: opacity 0.2s;
  }
  .cookie-accept:hover { opacity: 0.85; }
  .cookie-decline {
    background: transparent; color: var(--muted);
    border: 1px solid var(--border); padding: 9px 22px; border-radius: 6px;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem;
    cursor: pointer; transition: border-color 0.2s;
  }
  .cookie-decline:hover { border-color: var(--muted); }
  @media (max-width: 600px) {
    .cookie-banner { padding: 16px 20px; }
    .cookie-actions { width: 100%; }
    .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
  }