 /* ----- RESET & GLOBAL ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    

    body {
      background: #f5f2fc;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: #141b2b;
      line-height: 1.5;
      overflow-x: hidden;
      width: 100%;
    }

    @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300..700&display=swap');

    :root {
      --primary: #E50F88;
      --primary-light: #f85faf;
      --secondary: #7D48CC;
      --deep: #002760;
      --soft-bg: #f8f3ff;
      --card-bg: rgba(255,255,255,0.75);
      --glass-border: rgba(255,255,255,0.6);
      --shadow-sm: 0 15px 35px -12px rgba(0,39,96,0.1);
      --shadow-hover: 0 30px 50px -20px var(--secondary);
    }

    /* subtle noise texture */
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wMjUiIC8+PC9zdmc+');
      pointer-events: none;
      z-index: 1;
      opacity: 0.3;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 2rem 2.5rem 5rem;
      position: relative;
      z-index: 5;
      width: 100%;
    }

    /* floating background shapes */
    .floating-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }
    .floating-bg div {
      position: absolute;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle at 30% 30%, rgba(229,15,136,0.08), transparent 70%);
      border-radius: 50%;
      filter: blur(40px);
    }

    /* ----- ANIMATIONS ----- */
    @keyframes slideUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0px); }
    }

    .scroll-section {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
      will-change: transform, opacity;
    }

    .scroll-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ----- COMPONENTS (fully responsive, all lx- prefixed) ----- */
    .lx-logo-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .lx-logo-mark {
      font-size: clamp(1.8rem, 5vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(125deg, var(--primary) 15%, var(--secondary) 70%, var(--deep) 95%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .lx-dna-chip {
      background: rgba(125,72,204,0.1);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      padding: 0.4rem 1.2rem 0.4rem 0.8rem;
      border: 1px solid rgba(229,15,136,0.3);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--deep);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }
    .lx-dna-chip i {
      color: var(--primary);
      font-size: 1rem;
    }

    /* headings */
    .lx-section-title {
      font-size: clamp(2rem, 6vw, 2.9rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--deep);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .lx-chip-title {
      display: inline-block;
      background: rgba(0,39,96,0.1);
      border-radius: 40px;
      padding: 0.35rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--deep);
      border: 1px solid rgba(229,15,136,0.2);
      margin-bottom: 1.2rem;
    }

    /* bullet pills & grids */
    .lx-bullet-pill {
      background: white;
      padding: 0.8rem 1.2rem;
      border-radius: 60px;
      font-weight: 500;
      box-shadow: 0 4px 12px rgba(0,39,96,0.03);
      border: 1px solid rgba(125,72,204,0.1);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      transition: all 0.2s;
      font-size: 0.9rem;
      backdrop-filter: blur(4px);
      width: 100%;
    }
    .lx-bullet-pill i {
      color: var(--primary);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .lx-bullet-pill:hover {
      border-color: var(--primary);
      transform: translateX(6px);
      background: white;
    }

    .lx-bullet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
    }

    /* trust row responsive */
    .lx-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.8rem;
      align-items: center;
    }
    .lx-trust-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: #2d264b;
      white-space: nowrap;
    }
    .lx-trust-item i {
      color: var(--secondary);
      background: rgba(125,72,204,0.15);
      border-radius: 50%;
      padding: 0.25rem;
      font-size: 0.8rem;
    }

    /* buttons */
    .lx-btn-primary {
      background: linear-gradient(105deg, var(--primary), #b81170);
      border: none;
      color: white;
      font-weight: 700;
      padding: 0.9rem 2rem;
      border-radius: 60px;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 18px 28px -14px var(--primary);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      border: 1px solid rgba(255,255,255,0.3);
      letter-spacing: -0.2px;
      white-space: nowrap;
    }
    .lx-btn-primary i {
      font-size: 1.1rem;
      transition: transform 0.2s;
    }
    .lx-btn-primary:hover {
      transform: scale(1.02) translateY(-3px);
      box-shadow: 0 28px 38px -14px var(--primary);
    }
    .lx-btn-primary:hover i {
      transform: translateX(4px);
    }

    .lx-btn-outline {
      background: transparent;
      border: 2px solid var(--secondary);
      color: var(--deep);
      padding: 0.7rem 2rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      backdrop-filter: blur(4px);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .lx-btn-outline:hover {
      background: var(--secondary);
      color: white;
    }

    /* cards */
    .lx-glass-card {
      background: var(--card-bg);
      backdrop-filter: blur(14px) saturate(180%);
      -webkit-backdrop-filter: blur(14px) saturate(180%);
      border-radius: 2rem;
      padding: 2rem 1.8rem;
      border: 1px solid var(--glass-border);
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
      width: 100%;
    }
    .lx-glass-card:hover {
      box-shadow: var(--shadow-hover);
      border-color: rgba(229,15,136,0.3);
      background: rgba(255,255,255,0.85);
    }

    /* two column flex */
    .lx-two-col {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .lx-col {
      flex: 1 1 250px;
      list-style: none;
    }

    /* overtraining section */
    .lx-overtrain-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 3rem 0;
    }
    .lx-overtrain-content {
      flex: 1 1 350px;
    }
    .lx-overtrain-visual {
      flex: 1 1 250px;
      background: radial-gradient(circle, rgba(229,15,136,0.03) 0%, transparent 70%);
      border-radius: 3rem;
      min-height: 180px;
      align-content: center;
    }

    /* pro pack grid */
    .lx-pro-section {
      background: rgba(125,72,204,0.04);
      border-radius: 2.5rem;
      padding: 2rem 1.8rem;
      margin: 3rem 0;
      width: 100%;
    }
    .lx-pro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
    }

    /* feature cards */
    .lx-feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin: 2.5rem 0;
    }
    .lx-feature-card {
      background: white;
      border-radius: 2rem;
      padding: 1.8rem 1.5rem;
      box-shadow: 0 20px 30px -15px rgba(125,72,204,0.1);
      border: 1px solid rgba(229,15,136,0.1);
      transition: all 0.25s;
      animation: float 6s infinite ease-in-out;
      height: 100%;
    }
    .lx-feature-card:nth-child(2) { animation-delay: 0.3s; }
    .lx-feature-card:nth-child(3) { animation-delay: 0.7s; }
    .lx-feature-card:nth-child(4) { animation-delay: 0.2s; }
    .lx-feature-card:nth-child(5) { animation-delay: 0.9s; }
    .lx-feature-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
    }
    .lx-feature-icon {
      font-size: 2rem;
      background: linear-gradient(125deg, rgba(229,15,136,0.1), rgba(125,72,204,0.1));
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      color: var(--primary);
    }

    /* differentiator grid */
    .lx-diff-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }
    .lx-diff-col {
      flex: 1 1 240px;
      list-style: none;
    }
    .lx-clarity-text {
      margin-top: 2rem;
      font-size: clamp(1.4rem, 4vw, 1.8rem);
      font-weight: 600;
      background: linear-gradient(145deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* FAQ grid */
    .lx-faq-grid {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .lx-faq-item {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(4px);
      border-radius: 1.8rem;
      padding: 1.5rem;
      border: 1px solid rgba(125,72,204,0.2);
      transition: all 0.2s;
    }
    .lx-faq-item:hover {
      background: white;
      border-color: var(--primary);
    }
    .lx-faq-q {
      font-weight: 700;
      color: var(--deep);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    /* final cta */
    .lx-cta-big {
      background: linear-gradient(135deg, white, #f3ebff);
      border-radius: 3rem;
      padding: 2.5rem 1.8rem;
      text-align: center;
      border: 2px solid rgba(229,15,136,0.2);
      box-shadow: 0 35px 55px -30px var(--secondary);
      margin: 3rem 0 2rem;
      width: 100%;
    }

    .lx-footer {
      text-align: center;
      margin-top: 3rem;
      opacity: 0.5;
      font-size: 0.8rem;
    }

    /* hero specific */
    .lx-hero-title {
      font-size: 60px;
      font-weight: 800;
      line-height: 60px;
      letter-spacing: -0.03em;
      background: linear-gradient(140deg, var(--deep) 0%, #301d5e 40%, var(--secondary) 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.2rem;
    }

    /* responsive container padding */
    @media (max-width: 600px) {
        
        .secmobile22{
            gap:0px !important;
        }
        .btnmobile1{
           font-size:14px !important; 
        }
        .btnfootery{
        font-size:16px !important;
    }
         .lx-two-col {
      gap: 0rem;
    }
      .container {
        padding: 1.5rem 1rem 3rem;
      }
      .lx-glass-card, .lx-pro-section {
        padding: 1.8rem 1.2rem;
      }
      .lx-btn-primary {
        white-space: normal;
        padding: 0.8rem 1.5rem;
      }
      .lx-trust-item {
        white-space: normal;
      }
    }

    /* fix for very small devices */
    @media (max-width: 380px) {
      .lx-bullet-pill {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
      }
      .lx-dna-chip {
        white-space: normal;
      }
    }

