:root{
  --bg:#1f0e22;
  --panel:#301227;
  --muted:#bdb7c9;
  --pink:#ff2b8a;
  --teal:#19c8d6;
  --card:#ffffff;
  --glass: rgba(255,255,255,0.03);
  --radius:18px;
  --maxw:1200px;
  --accent-text-shadow: 0 6px 20px rgba(0,0,0,0.35);
  --shadow-strong: 0 18px 40px rgba(16,8,20,0.6);
}

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

*{box-sizing:border-box}
html,body{
    height:100%;
    margin:0;
    font-family:Inter,system-ui,-apple-system,Roboto,Arial;
    background:var(--bg);
    color:#fff;
scroll-behavior: smooth;
}
.page{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}



/* container */
.container{
  width:100%;
    margin: auto;
    padding:24px;
    background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.05));
    border-radius:16px;
    box-shadow:0 18px 40px rgba(16,8,20,0.6)
}

/* hero */
.hero{
    display:flex;
    gap:28px;
    align-items:center;
    margin-top: 50px;
}
.hero-left{
    flex:1;
}
.hero-right{
    width:420px;
    position:relative;
}
.hero img{
    width:100%;
    height:auto;
    border-radius:14px;
    display:block;
}
.badge{
    position:absolute;
    left:12px;bottom:-16px;
    background:#fff;
    color:#111;
    padding:10px 14px;
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,0.35);
    font-weight:700;
}
.hero h1{
    font-family:Poppins,Inter;
    font-size:34px;
    margin:6px 0 8px;
}
.lead{
    color:var(--muted);
    margin:0 0 16px
}

/* Why Choose Us */
.section-wrap{
  max-width:fit-content;
  margin:48px auto;
  padding:36px 28px;
  color:#f5f5f6
}
.top-nav{
  display:flex;
  gap:48px;
  margin-bottom:18px
}
.top-nav a{
  color:#f5f5f6;
  font-weight:600;
  text-decoration:none
}
.rule{
  border:0;
  border-top:1px solid rgba(255,255,255,0.12)
}
.intro{
  color:rgba(255,255,255,0.85);
  line-height:1.6;
  max-width:900px;
  margin:20px 0
}
.grid{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:34px
}

.features{
  display:flex;
  flex-direction:column;
  gap:22px
}
.feature{
  display:flex;
  gap:18px;
  background:var(--card-bg);
  padding:22px;
  border-radius:18px;
  box-shadow:0 6px 18px rgba(2,2,6,0.35)
}
.icon{
  width:66px;
  height:66px;
  border-radius:50%;
  background:var(--circle);
  display:grid;
  place-items:center;
}
.icon svg{
  width:34px;
  height:34px;
  fill:#fff
}
.feature h4{
  margin:0;
  font-size:18px;
  font-weight:700;
}
.feature p{
  margin:6px 0 0;
  color:var(--muted);
}
.right-card{
  background:var(--card-bg);
  padding:26px;
  border-radius:18px;
  box-shadow:0 8px 28px rgba(2,2,6,0.32);
}
.benefits{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.benefit{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:14px;
}
.b-icon{
  width:56px;
  height:56px;
  border-radius:12px;
  background:var(--soft);
  display:grid;
  place-items:center;
}
.b-icon svg{
  width:26px;
  height:26px;
}
.benefit h5{
  margin:0;
  font-weight:700;
  font-size:15px;
}
.benefit p{
  margin:6px 0 0;
  color:var(--muted);
}
@media(max-width:980px){.grid{grid-template-columns:1fr}
}

/* features */
.feature-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:12px 0;
}
.pill-card{
    background:#fff;
    color:#111;
    padding:10px 14px;
    border-radius:10px;
    min-width:120px;
    display:flex;
    gap:8px;
    align-items:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.25)
}
.cta-row{
    display:flex;
    gap:14px;
    margin-top:12px;
}
.btn{
    padding:12px 18px;
    border-radius:12px;
    border:0;
    font-weight:700;
    cursor:pointer;
}
.btn.primary{
    background:linear-gradient(90deg,var(--pink),#e65aa7);
    color:#fff;
}
.btn.outline{
    background:transparent;
    border:2px solid rgba(255,255,255,0.12);
    color:#fff;
}

/* stats */
.stats-panel{
    display:flex;
    gap:18px;
    background:var(--glass);
    padding:18px;
    border-radius:12px;
    margin-top:20px;
}
.stat{
    flex:1;
    text-align:center;
    padding:8px;
}
.stat-ico{
    font-size:22px;
}
.stat-num{
    font-weight:800;
    font-size:20px;
}
.stat-label{
    color:var(--muted);
    font-size:13px;
} ̰
/* What will you learn  */
.learn-section{
  background:white;
  padding:44px 0 80px;
}
.learn-section .container{
  max-width:fit-content;
  margin:0 auto;
  padding:0 28px;
}
.learn-title{
  text-align:center;
  font-size:34px;
  margin:6px 0 8px;
  color:white;
}
.learn-title strong{
  color:var(--accent);
}
.learn-sub{
  text-align:center;
  color:rgba(255, 255, 255, 0.85);
  margin-bottom:28px;
}
.tools-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.tool-card{
  background:white;
  color:black;
  padding:22px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(64, 64, 184, 0.3);
}
.tool-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:8px;
}
.tool-icon{
  width:48px;
  height:48px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#0a9b4d,#f7f7fb);
  font-size:20px;
}
.tool-card h4{
  margin:0;
  font-size:18px;
}
.tool-list{
  list-style:none;
  color:black;
  padding:0;
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}
.tool-list li{
  position:relative;
  padding-left:28px;
  color:#333;
  margin-bottom:10px;
}
.tool-list li:before{
  content:"✓";
  position:absolute;
  left:0;top:0;color:var(--accent);
  background:#100f13;
  color:white;
  border-radius:50%;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  font-weight:700;
}
@media(max-width:1100px){.tools-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.tools-grid{grid-template-columns:1fr}.learn-title{font-size:26px}}


/* WHY CHOOSE STYLES */
.why-section{
  padding:56px 0;
  background:transparent;
}
.why-section .container{
  max-width:fit-content;
  margin:0 auto;
  padding:0 28px;
}
.why-title{
  text-align:center;
  color:#fff;
  font-size:34px;
  margin-bottom:28px;
}
.why-title strong{color:var(--accent)}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.why-card{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:var(--card-bg);
  padding:26px;
  border-radius:14px
  ;box-shadow:0 6px 18px rgba(2,2,6,0.28)
}
.why-icon{
  width:56px;
  height:56px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-size:22px;
}
.why-body h4{
  margin:0;
  font-size:20px;
}
.why-body p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}
@media(max-width:1100px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.why-grid{grid-template-columns:1fr}.why-title{font-size:24px}}
/* pricing */
.pricing-section{
  margin-top:32px;
}
.section-title{
  text-align:center;
  font-size:28px;
  margin-bottom:14px;
}
.accent{color:var(--pink)}
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start}

/* price card base */
.price-card{background:var(--card);color:#111;border-radius:14px;padding:22px;position:relative;box-shadow:0 12px 40px rgba(0,0,0,0.25);min-height:600px;display:flex;flex-direction:column}
.price-card .ribbon{position:absolute;left:0;top:12px;background:var(--pink);color:#fff;padding:10px 16px;border-radius:0 12px 12px 0;font-weight:700;transform:translateX(-6px)}
.ribbon.teal{background:var(--teal);color:#fff}
.card-top{text-align:center;margin-top:8px}
.round-ico{width:62px;height:62px;border-radius:50%;background:linear-gradient(135deg,rgba(0,0,0,0.06),rgba(0,0,0,0.03));display:inline-flex;align-items:center;justify-content:center;font-size:26px;margin:6px auto}
.price-row{display:flex;align-items:baseline;justify-content:center;gap:12px;margin:18px 0}
.price{font-size:34px;font-weight:800}
.savings{display:flex;flex-direction:column;font-size:13px;align-items:flex-start}
.strike{color:var(--muted);text-decoration:line-through;font-weight:600}
.save{color:#0a9b4d;font-weight:700;font-size:13px;margin-top:4px}
.sub{color:var(--muted);text-align:center;margin-bottom:18px}

/* checklist */
.checklist{list-style:none;padding:0;margin:0 0 22px 0;flex:1}
.checklist li{display:flex;align-items:flex-start;gap:12px;padding:10px 0;color:#333;font-weight:600}
.check{min-width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,43,138,0.08);color:var(--pink);font-weight:800}
.check.teal{background:rgba(25,200,214,0.08);color:var(--teal)}

/* big enroll button */
.enroll-btn{border:0;padding:14px;border-radius:12px; 
 text-align: center; text-decoration: none; font-weight:800;cursor:pointer;box-shadow:0 12px 24px rgba(0,0,0,0.12)}
.primary-large{background:linear-gradient(90deg,var(--pink),#e65aa7);color:#fff}
.secondary-large{background:linear-gradient(90deg,var(--teal),#12b7c2);color:#fff}
.small-note{font-size:13px;color:#666;margin-top:10px;text-align:center}

/* card borders */
.pink-card{border:4px solid rgba(255,43,138,0.06)}
.teal-card{border:4px solid rgba(25,200,214,0.05)}

/* stats */
.stats-panel{display:flex;gap:18px;background:var(--glass);padding:18px;border-radius:12px;margin-top:20px}
.stat{flex:1;text-align:center;padding:8px}
.stat-ico{font-size:22px}
.stat-num{font-weight:800;font-size:20px}
.stat-label{color:var(--muted);font-size:13px}

/* pricing section */
.pricing-section{margin-top:34px}
.section-title{text-align:center;font-size:28px;margin-bottom:14px}
.accent{color:var(--pink)}
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start}

/* price card base */
.price-card{background:var(--card);color:#111;border-radius:16px;padding:26px;position:relative;box-shadow:0 12px 40px rgba(0,0,0,0.25);min-height:640px;display:flex;flex-direction:column}
.price-card .ribbon{position:absolute;left:0;top:12px;background:var(--pink);color:#fff;padding:10px 18px;border-radius:0 12px 12px 0;font-weight:700;transform:translateX(-6px)}
.ribbon.teal{background:var(--teal);color:#fff}

.card-top{text-align:center;margin-top:8px}
.round-ico{width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,rgba(0,0,0,0.06),rgba(0,0,0,0.03));display:inline-flex;align-items:center;justify-content:center;font-size:28px;margin:6px auto}
.price-row{display:flex;align-items:baseline;justify-content:center;gap:12px;margin:18px 0}
.price{font-size:36px;font-weight:800}
.savings{display:flex;flex-direction:column;font-size:13px;align-items:flex-start}
.strike{color:var(--muted);text-decoration:line-through;font-weight:600}
.save{color:#0a9b4d;font-weight:700;font-size:13px;margin-top:4px}
.sub{color:var(--muted);text-align:center;margin-bottom:18px}

/* checklist */
.checklist{list-style:none;padding:0;margin:0 0 22px 0;flex:1}
.checklist li{display:flex;align-items:flex-start;gap:12px;padding:10px 0;color:#333;font-weight:600}
.check{min-width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,43,138,0.08);color:var(--pink);font-weight:800}
.check.teal{background:rgba(25,200,214,0.08);color:var(--teal)}

/* big enroll button */
.enroll-btn{border:0;padding:14px;border-radius:12px;font-weight:800;cursor:pointer;box-shadow:0 12px 24px rgba(0,0,0,0.12)}
.primary-large{background:linear-gradient(90deg,var(--pink),#e65aa7);color:#fff}
.secondary-large{background:linear-gradient(90deg,var(--teal),#12b7c2);color:#fff}
.small-note{font-size:13px;color:#666;margin-top:10px;text-align:center}

/* color accents for each card */
.pink-card{border:4px solid rgba(255,43,138,0.08)}
.teal-card{border:4px solid rgba(25,200,214,0.06)}

/* responsive */
@media (max-width:1100px){
  .pricing-grid{grid-template-columns:1fr}
  .hero{flex-direction:column}
  .hero-right{width:100%}
  .price-card{min-height:600px}
}
@media (max-width:640px){
  .container{padding:18px}
  .hero h1{font-size:22px}
  .main-nav{display:none}
  .price-card{padding:20px}
}
/* Footer */
.footer {
    max-width: var(--max-width);
    margin: auto;
    padding: 50px 40px;
    background: linear-gradient(180deg, #240418, #1b0510);
    border-radius: 4px;
}

.footer .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* LOGO */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 200px;
}

.logo1 {
  img{
    width: 150px;
    height:150px;
  } ;
}

.name {
    color: var(--accent);
    font-weight: 700;
    font-family: "Montserrat";
}

.small {
    font-size: 12px;
    color: var(--link);
    font-weight: 400;
}

/* NAVIGATION */
.nav-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    min-width: 280px;
}

.col h4 {
    color: var(--accent);
    font-family: "Montserrat";
    font-size: 16px;
    margin-bottom: 12px;
}

.col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col ul li {
    margin: 8px 0;
    color: var(--link);
    font-size: 14px;
}

/* NEWSLETTER */
.newsletter {
    min-width: 280px;
}

.newsletter h3 {
    font-family: "Montserrat";
    color: var(--accent);
    margin-bottom: 12px;
}

.lead {
    color: var(--link);
    margin-bottom: 16px;
}

.subscribe-row {
    display: flex;
    gap: 12px;
}

.subscribe-row input {
    flex: 1;
    padding: 14px;
    background: var(--accent);
    border-radius: 12px;
    border: none;
    font-weight: 600;
}

.subscribe-row button {
    background: var(--accent);
    padding: 12px 22px;
    border-radius: 28px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.privacy {
    font-size: 12px;
    color: var(--link);
    margin-top: 10px;
}

/* DIVIDER */
.divider {
    margin: 35px 0 20px;
    border-top: 1px solid var(--hr);
}

/* SOCIAL ICONS */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    transition: 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* COPYRIGHT */
copyright {
    text-align: center;
}

copyright, .copyright {
    text-align: center;
    color: var(--accent);
    font-family: "Montserrat";
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 880px) {
    .subscribe-row {
        flex-direction: column;
    }
    .subscribe-row button {
        width: 100%;
    }
    .socials {
        gap: 14px;
    }
}