.elementor-28664 .elementor-element.elementor-element-656aee8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-28664 .elementor-element.elementor-element-656aee8:not(.elementor-motion-effects-element-type-background), .elementor-28664 .elementor-element.elementor-element-656aee8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#003A3A;}.elementor-28664 .elementor-element.elementor-element-27ff0c7{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-27ff0c7 *//* ============================================================
   Zero to Swing Pro — Course Landing Page Styles
   Finance Dipankar
   ============================================================
   EDIT GUIDE:
   - Colors      → :root section (top)
   - Fonts       → @import line + :root font variables
   - Spacing     → Section padding variables
   - Breakpoints → bottom of file (@media)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@400;500;600&family=Kalpurush&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:        #0B0D11;
  --c-surface:   #13161E;
  --c-surface2:  #1A1D26;
  --c-border:    #242730;
  --c-gold:      #E8C84A;
  --c-gold-soft: rgba(232, 200, 74, 0.12);
  --c-text:      #EAEDF3;
  --c-muted:     #6B7280;
  --c-green:     #34D399;
  --c-red:       #F87171;
  --c-white:     #FFFFFF;

  /* Typography */
  --f-display: 'Syne', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-bengali: 'Kalpurush', sans-serif;

  /* Spacing */
  --s-section: 96px;
  --s-section-sm: 64px;

  /* Shape */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.bn { font-family: var(--f-bengali); }
.gold { color: var(--c-gold); }
.muted { color: var(--c-muted); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
}
.eyebrow-line {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--c-gold);
}

.section-divider {
  height: 1px;
  background: var(--c-border);
  margin: 0;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 13, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav__brand {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.3px;
}
.nav__brand span { color: var(--c-gold); }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.15s;
}
.nav__link:hover { color: var(--c-text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--gold {
  background: var(--c-gold);
  color: #0B0D11;
  padding: 10px 20px;
}
.btn--outline {
  background: transparent;
  color: var(--c-text);
  padding: 9px 20px;
  border: 1px solid var(--c-border);
}
.btn--outline:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn--lg {
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  letter-spacing: -4px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-gold-soft);
  border: 1px solid rgba(232,200,74,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero__heading {
  font-family: var(--f-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--c-white);
  margin-bottom: 16px;
}
.hero__heading .line-gold { color: var(--c-gold); }

.hero__subhead {
  font-family: var(--f-bengali);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--c-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.9;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 60px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
}
.hero-stat__num {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat__num span { color: var(--c-gold); }
.hero-stat__label {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PROBLEM STRIP ───────────────────────────────────────────── */
.problems {
  background: var(--c-surface);
  padding: var(--s-section-sm) 0;
}
.problems__heading {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 36px;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.problem-item {
  background: var(--c-surface);
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.problem-item__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.problem-item__text {
  font-family: var(--f-bengali);
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ── WHAT YOU'LL LEARN ───────────────────────────────────────── */
.learn { padding: var(--s-section) 0; }
.learn__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.learn-card {
  background: var(--c-bg);
  padding: 28px 24px;
  transition: background 0.2s;
}
.learn-card:hover { background: var(--c-surface); }
.learn-card__icon { font-size: 22px; margin-bottom: 14px; }
.learn-card__title {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.learn-card__desc {
  font-family: var(--f-bengali);
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ── CURRICULUM ──────────────────────────────────────────────── */
.curriculum {
  background: var(--c-surface);
  padding: var(--s-section) 0;
}
.module-list { margin-top: 40px; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.module-item { border-bottom: 1px solid var(--c-border); }
.module-item:last-child { border-bottom: none; }
.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.module-header:hover { background: rgba(255,255,255,0.02); }
.module-header__left { display: flex; align-items: center; gap: 16px; }
.module-num {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 1px;
  min-width: 28px;
}
.module-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.module-arrow {
  font-size: 16px;
  color: var(--c-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.module-item.open .module-arrow { transform: rotate(180deg); }
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.module-item.open .module-body { max-height: 500px; }
.module-lessons {
  padding: 8px 24px 20px 68px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lesson {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lesson::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* ── BONUS ────────────────────────────────────────────────────── */
.bonus { padding: var(--s-section) 0; }
.bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.bonus-card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  background: var(--c-bg);
  transition: border-color 0.2s;
}
.bonus-card:hover { border-color: rgba(232,200,74,0.35); }
.bonus-card__icon { font-size: 26px; margin-bottom: 12px; }
.bonus-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 6px;
}
.bonus-card__desc {
  font-family: var(--f-bengali);
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing {
  background: var(--c-surface);
  padding: var(--s-section) 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 44px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  background: var(--c-bg);
  position: relative;
}
.price-card--featured {
  border-color: var(--c-gold);
  background: linear-gradient(160deg, rgba(232,200,74,0.05) 0%, var(--c-bg) 60%);
}
.price-card__badge {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--c-gold);
  color: #0B0D11;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.price-card__plan {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.price-card__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 24px;
}
.price-card__amount {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -2px;
}
.price-card__currency {
  font-size: 24px;
  vertical-align: super;
  margin-right: 2px;
}
.price-card__note {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 6px;
  margin-bottom: 28px;
}
.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}
.feat-icon--yes { color: var(--c-green); flex-shrink: 0; }
.feat-icon--no  { color: var(--c-muted); flex-shrink: 0; }
.feat-icon--no + span { color: var(--c-muted); }


/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { padding: var(--s-section) 0; }
.faq__list {
  margin-top: 40px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.5;
  max-width: 85%;
}
.faq-q__arrow {
  font-size: 16px;
  color: var(--c-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q__arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a__inner {
  padding: 0 24px 20px;
  font-family: var(--f-bengali);
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.9;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}
.footer__brand span { color: var(--c-gold); }
.footer__tagline {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 6px;
  max-width: 260px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13px;
  color: var(--c-muted);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--c-text); }
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: var(--c-muted);
}
.footer__disclaimer {
  font-family: var(--f-bengali);
  font-size: 12px;
  color: var(--c-muted);
  max-width: 500px;
  text-align: right;
  line-height: 1.7;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --s-section: 64px;
    --s-section-sm: 48px;
  }
  .hero { padding: 72px 0 60px; }
  .nav__link { display: none; }
  .hero__meta { gap: 20px; }
  .hero__watermark { font-size: 22vw; }
  .module-lessons { padding-left: 24px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__disclaimer { text-align: left; }
}

/* ── HERO VIDEO ──────────────────────────────────────────────── */
.hero__video-wrap {
  margin: 40px 0 48px;
  max-width: 760px;
}
.hero__video-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.hero__video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.hero__video-frame iframe,
.hero__video-frame video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── PRICING PLAN LABEL (updated) ───────────────────────────── */
.price-card__plan-label {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--c-text);
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  margin-bottom: 12px;
}
.price-card__plan-label--featured {
  color: var(--c-gold);
  background: rgba(232, 200, 74, 0.1);
  border-color: rgba(232, 200, 74, 0.3);
}

/* ── STRIKETHROUGH ORIGINAL PRICE ───────────────────────────── */
.price-card__original {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-muted);
  text-decoration: line-through;
  text-decoration-color: var(--c-red);
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.75;
}/* End custom CSS */