
    :root {
      --orange: #ff6b35;
      --orange-dark: #e85a25;
      --orange-glow: rgba(255,107,53,0.3);
      --dark: #0a0a0f;
      --dark2: #111118;
      --dark3: #16161f;
      --dark4: #1d1d28;
      --white: #f5f5f7;
      --muted: #9999aa;
      --border: rgba(255,255,255,0.07);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      cursor: default;
    }

    h1, h2, h3, .Roboto { font-family: 'Roboto', sans-serif; }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(10,10,15,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    /* ── ORANGE BTN ── */
    .btn-orange {
      background: linear-gradient(135deg, #ff6b35, #ff8c42);
      color: #fff;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 13px;
      border-radius: 6px;
      padding: 12px 28px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px var(--orange-glow);
      cursor: pointer;
      text-decoration: none;
      border: none;
      white-space: nowrap;
    }
    .btn-orange:hover {
      background: linear-gradient(135deg, #ff8c42, #ffaa55);
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(255,107,53,0.5);
      color: #fff;
      text-decoration: none;
    }
    .btn-outline {
      border: 1px solid rgba(255,107,53,0.5);
      color: #ff6b35;
      background: transparent;
      font-weight: 600;
      border-radius: 6px;
      padding: 12px 28px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .btn-outline:hover {
      background: rgba(255,107,53,0.1);
      border-color: #ff6b35;
      color: #ff6b35;
      text-decoration: none;
    }

    /* ── HERO ── */
    .hero-section {
      background: var(--dark);
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
      top: 50%;
      right: -100px;
      transform: translateY(-50%);
      pointer-events: none;
    }
    .hero-glow2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 70%);
      bottom: -100px;
      left: -50px;
      pointer-events: none;
    }

    /* TAG */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,107,53,0.12);
      border: 1px solid rgba(255,107,53,0.3);
      color: #ff6b35;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 4px;
      padding: 5px 12px;
    }

    /* STAT BOX */
    .stat-box {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 20px;
      text-align: center;
    }
    .stat-num {
      font-family: 'Roboto', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #ff6b35;
      line-height: 1;
    }
    .stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

    /* SECTION HEADER */
    .section-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #ff6b35;
      border-left: 3px solid #ff6b35;
      padding-left: 10px;
      margin-bottom: 14px;
    }

    /* CARD */
    .dark-card {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .dark-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #ff6b35, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .dark-card:hover { border-color: rgba(255,107,53,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
    .dark-card:hover::before { opacity: 1; }

    /* REVIEW CARD */
    .review-card {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: all 0.3s;
      position: relative;
    }
    .review-card:hover { border-color: rgba(255,107,53,0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
    .quote-mark { font-size: 4rem; line-height: 1; color: rgba(255,107,53,0.2); font-family: 'Roboto', sans-serif; margin-bottom: -20px; display: block; }

    /* STAR */
    .star { color: #ff6b35; font-size: 16px; }

    /* TRUST STRIP */
    .trust-strip {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 20px;
      border-right: 1px solid var(--border);
    }
    .trust-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(255,107,53,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    /* NUMBER SECTION */
    .number-badge {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: linear-gradient(135deg, #ff6b35, #ff8c42);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Roboto', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: #fff;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(255,107,53,0.4);
    }

    /* INGREDIENT PILL */
    .ingredient-pill {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: all 0.3s;
    }
    .ingredient-pill:hover { border-color: rgba(255,107,53,0.3); background: var(--dark4); }
    .ingredient-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 10px;
      background: rgba(255,107,53,0.12);
      border: 1px solid rgba(255,107,53,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    /* PRICING */
    .pricing-card-wrap {
      position: relative;
    }
    .pricing-card-wrap img {
      border-radius: 16px;
      transition: transform 0.4s, box-shadow 0.4s;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .pricing-card-wrap:hover img {
      transform: scale(1.04) translateY(-6px);
      box-shadow: 0 20px 60px rgba(255,107,53,0.3);
    }

    /* FAQ */
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 10px;
      overflow: hidden;
      background: var(--dark3);
    }
    .faq-question {
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: #e0e0e8;
      font-size: 15px;
      transition: background 0.2s;
    }
    .faq-question:hover { background: rgba(255,107,53,0.05); }
    .faq-answer {
      display: none;
      padding: 0 24px 20px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 14px;
    }
    .faq-answer.open { display: block; }
    .faq-toggle {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(255,107,53,0.15);
      border: 1px solid rgba(255,107,53,0.3);
      color: #ff6b35;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
      transition: transform 0.3s, background 0.3s;
    }
    .faq-toggle.open { transform: rotate(45deg); background: rgba(255,107,53,0.3); }

    /* GUARANTEE */
    .guarantee-wrap {
      background: linear-gradient(135deg, var(--dark3), var(--dark4));
      border: 1px solid rgba(255,107,53,0.2);
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }
    .guarantee-wrap::after {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    /* DIVIDER */
    .orange-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,107,53,0.5), transparent);
      margin: 0 auto;
    }

    /* FOOTER */
    .footer { background: #050508; border-top: 1px solid var(--border); }

    /* SCROLL TOP */
    #scrollTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: #ff6b35;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(255,107,53,0.5);
      transition: all 0.3s;
      opacity: 0; pointer-events: none;
      z-index: 999; border: none; color: #fff;
    }
    #scrollTop.visible { opacity: 1; pointer-events: all; }
    #scrollTop:hover { background: #ff8c42; transform: translateY(-2px); }

    /* MOBILE MENU */
    #mobile-menu { display: none; background: var(--dark2); border-top: 1px solid var(--border); }
    #mobile-menu.open { display: block; }

    /* TICKER */
    .ticker-wrap { overflow: hidden; background: #ff6b35; padding: 8px 0; }
    .ticker-track {
      display: flex;
      white-space: nowrap;
      animation: ticker 30s linear infinite;
      gap: 0;
    }
    .ticker-item {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      padding: 0 32px;
    }
    .ticker-sep { color: rgba(255,255,255,0.4); }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* PILL BADGE */
    .pill {
      display: inline-block;
      background: rgba(255,107,53,0.15);
      border: 1px solid rgba(255,107,53,0.35);
      color: #ff6b35;
      border-radius: 50px;
      padding: 3px 12px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
    }

    /* BENEFIT CHECK */
    .bcheck {
      width: 22px; height: 22px; min-width: 22px;
      background: rgba(255,107,53,0.15);
      border: 1px solid rgba(255,107,53,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #ff6b35; font-size: 12px; font-weight: 700; margin-top: 1px;
    }

    @keyframes pulse-ring {
      0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
      70% { box-shadow: 0 0 0 20px rgba(255,107,53,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
    }
    .pulse { animation: pulse-ring 2.5s infinite; }

    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    .float { animation: floatY 5s ease-in-out infinite; }
.rating-box {
height: 15px;
width: 80px;
margin-top: 4px;
background-repeat: no-repeat;
background-size: contain;
background-image: url('rating.png');
}