:root{
      --bg:#f8fafc;
      --surface:#ffffff;
      --surface-soft:#f1f5f9;
      --text:#0f172a;
      --muted:#475569;
      --muted-2:#64748b;
      --dark:#020617;
      --line:#e2e8f0;
      --brand:#22c55e;
      --brand-dark:#16a34a;
      --accent:#0ea5e9;
      --accent-soft:#93c5fd;
      --shadow:0 10px 30px rgba(2, 6, 23, 0.08);
      --radius:16px;
    }

    *{box-sizing:border-box}

    html{scroll-behavior:smooth}

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
    }

    a{text-decoration:none}

    .wrap{
      max-width:1140px;
      margin:0 auto;
      padding:0 20px;
    }

    header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(2,6,23,0.94);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:76px;
    }

    .brand{
      color:#fff;
      font-size:20px;
      font-weight:700;
      letter-spacing:.01em;
    }

    .nav-links{
      display:flex;
      gap:24px;
      align-items:center;
      flex-wrap:wrap;
    }

    .nav-links a{
      color:#dbeafe;
      font-size:14px;
    }

    .nav-links a:hover{color:#fff}

    .hero{
      background:linear-gradient(180deg, #020617 0%, #0f172a 100%);
      color:#fff;
      padding:96px 0 84px;
    }

    .eyebrow{
      display:inline-block;
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.12em;
      color:var(--accent-soft);
      margin-bottom:16px;
      font-weight:700;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:36px;
      align-items:center;
    }

    .hero h1{
      font-size:54px;
      line-height:1.08;
      margin:0 0 18px;
      max-width:760px;
    }

    .hero p{
      font-size:18px;
      color:#cbd5e1;
      max-width:720px;
      margin:0;
    }

    .hero-actions{
      margin-top:30px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .btn{
      display:inline-block;
      padding:14px 24px;
      border-radius:10px;
      font-weight:700;
      transition:.2s ease;
    }

    .btn-primary{
      background:gold;
      color:white;
    }

    .btn-primary:hover{background:var(--brand); color: gold; transition: ease-in-out 0.5s;}

    .btn-secondary{
      background-color: gold;
      color:#fff;
      border:1px solid rgba(255,255,255,0.12);
    }

    .btn-secondary:hover{background:var(--brand); color: gold; transition: ease-in-out 0.5s;}

   
    
    .hero-card{
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.1);
      border-radius:18px;
      padding:28px;
      box-shadow:0 16px 40px rgba(0,0,0,0.2);
    }

    .hero-card h3{
      margin-top:0;
      margin-bottom:14px;
      font-size:20px;
    }

    .hero-card ul{
      margin:0;
      padding-left:20px;
      color:#dbeafe;
    }

    .hero-card li{margin-bottom:10px}

    .trust-bar{
      background:#fff;
      border-bottom:1px solid var(--line);
    }

    .trust-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
      padding:28px 0;
    }

    .trust-item strong{
      display:block;
      margin-bottom:6px;
      font-size:15px;
    }

    .trust-item span{
      color:var(--muted-2);
      font-size:14px;
    }

    section{padding:82px 0}

    .section-title{
      font-size:38px;
      line-height:1.15;
      margin:0 0 12px;
    }

    .section-intro{
      color:var(--muted);
      max-width:720px;
      margin:0 0 38px;
      font-size:17px;
    }

    .template-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
    }

    .template-card{
      background:var(--surface);
      border-radius:var(--radius);
      padding:30px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
      position:relative;
      display:flex;
      flex-direction:column;
    }

    .template-card.featured{
      border:2px solid var(--brand);
      transform:translateY(-4px);
    }

    .badge{
      display:inline-block;
      background:#dcfce7;
      color:#166534;
      border-radius:999px;
      padding:7px 12px;
      font-size:12px;
      font-weight:700;
      margin-bottom:16px;
    }

    .template-card h3{
      margin:0 0 12px;
      font-size:26px;
      line-height:1.2;
    }

    .template-card p{
      color:var(--muted);
      margin:0 0 18px;
    }

    .template-card ul{
      margin:0 0 22px;
      padding-left:20px;
      color:var(--text);
    }

    .template-card li{margin-bottom:10px}

    .template-meta{
      margin-top:auto;
    }

    .price{
      font-size:34px;
      font-weight:800;
      margin-bottom:16px;
    }

    .price small{
      font-size:14px;
      color:var(--muted-2);
      font-weight:600;
    }

    .mini-note{
      margin-top:10px;
      font-size:13px;
      color:var(--muted-2);
    }

    .soft-section{background:var(--surface-soft)}

    .benefit-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .benefit-card,
    .faq-item,
    .monetise-card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:14px;
      padding:24px;
      box-shadow:0 6px 18px rgba(2,6,23,0.04);
    }

    .benefit-card h3,
    .faq-item h3,
    .monetise-card h3{
      margin-top:0;
      margin-bottom:10px;
      font-size:22px;
    }

    .benefit-card p,
    .faq-item p,
    .monetise-card p{
      margin:0;
      color:var(--muted);
    }

    
    .bundlebox {
  grid-column: 1 / -1;      /* Make it span the full width of the grid */
  display: flex;            /* Allow centering inside */
  justify-content: center;  /* Centre the card horizontally */
 
}

    .bundle-box{
      background:linear-gradient(135deg, #020617 0%, #0f172a 100%);
      color:#fff;
      border-radius:20px;
      padding:40px;
      display:flex;
      justify-content:space-between;
      gap:30px;
      align-items:center;
      box-shadow:0 20px 50px rgba(2,6,23,0.2);
    }

    .bundle-box p{color:#cbd5e1}

    .bundle-price{
      font-size:42px;
      font-weight:800;
      margin-bottom:14px;
      text-align:right;
    }


    .faq-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }

    .monetise-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .final-cta{
      text-align:center;
      padding-top:30px;
    }

    .final-cta p{
      max-width:680px;
      margin:0 auto 22px;
      color:var(--muted);
      font-size:17px;
    }

    footer{
      background:var(--dark);
      color:#94a3b8;
      padding:34px 0;
      margin-top:20px;
      border-top:1px solid rgba(255,255,255,0.06);
    }

    .footer-inner{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      flex-wrap:wrap;
    }

    .footer-links{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    .footer-links a{
      color:#cbd5e1;
      font-size:14px;
    }

    .footer-links a:hover{color:#fff}

    @media(max-width:980px){
      .hero-grid,
      .template-grid,
      .benefit-grid,
      .monetise-grid,
      .trust-grid,
      .faq-list{
        grid-template-columns:1fr 1fr;
      }

      .bundle-box{
        flex-direction:column;
        align-items:flex-start;
      }

      .bundle-price{text-align:left}
    }

    @media(max-width:720px){
      .nav{
        align-items:flex-start;
        flex-direction:column;
        padding:16px 0;
      }

      .nav-links{
        gap:14px;
      }

      .hero{padding:72px 0 64px}

      .hero h1{font-size:38px}

      .hero-grid,
      .template-grid,
      .benefit-grid,
      .monetise-grid,
      .trust-grid,
      .faq-list{
        grid-template-columns:1fr;
      }

      .section-title{font-size:31px}

      .bundle-box{padding:28px}
    }