:root {
  --bg: #0b0f1a;
  --card: #131a2a;
  --text: #f5f7ff;

  --meta-blue: #0153bd;
  --meta-purple: #4A2165;
  --meta-pink: #e1306c;
  --meta-orange: #fd5949;
}


body {
    margin: 0;
    font-family:
        "Urbanist",
        "Poppins",
        system-ui,
        -apple-system,
        "Segoe UI",
        Arial,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

/* Style 1.css */ 
/* ================= Base / Desktop ================= */
.gtl-timeline {
  --gtl-bg: #081612;
  --gtl-bg2: #06120f;
  --gtl-card-start: #167a57;
  --gtl-card-end: #0b1e17;
  --gtl-line: #2e4a40;
  --gtl-dot: #ffffff;
  --gtl-text: #ecf5ef;
  --gtl-muted: #d9eee5;
  --gtl-radius: 18px;
  --dot: 18px; /* desktop dot size */

  position: relative;
  padding: 10px 12px 10px;
  color: var(--gtl-text);
  background: radial-gradient(1200px 700px at 50% -10%, #0b2a20 0%, var(--gtl-bg) 38%, var(--gtl-bg2) 100%);
  font-family:
    "Urbanist",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
.gtl-timeline h2 {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3vw, 42px);
  margin: 0 0 60px;
}

.gtl-timeline__list {
  --gap: 90px; /* vertical distance between items (desktop) */
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: var(--gap);

  /* add padding so the rail starts/ends exactly at dot centers */
  padding-top: calc(var(--dot) / 2);
  padding-bottom: calc(var(--dot) / 2);
  margin-bottom: 36px; /* space above CTA */
}

/* Single continuous rail on desktop (no per-item segments) */
.gtl-timeline__list::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(var(--dot) / 2);
  bottom: calc(var(--dot) / 2);
  width: 2px;
  background: var(--gtl-line);
  opacity: 0.9;
  z-index: 0;
}

/* Items */
.gtl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

/* Center dot (desktop) */
.gtl-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: var(--gtl-dot);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px #101010;
  z-index: 1;
}

/* Remove earlier per-item connectors (we have a full rail now) */
.gtl-item::after {
  display: none;
}

.gtl-card {
  background: radial-gradient(120% 180% at 20% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.08)),
    linear-gradient(135deg, var(--gtl-card-start), var(--gtl-card-end));
  border-radius: var(--gtl-radius);
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  max-width: 520px;
  position: relative;
  z-index: 2; /* keep above rail */
}
.gtl-card h4 {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 20px;
}
.gtl-card p {
  margin: 0;
  color: var(--gtl-muted);
  line-height: 1.6;
  font-size: 17px;
}

/* Alternate sides on desktop */
.gtl-item:nth-child(odd) .gtl-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 40px;
}
.gtl-item:nth-child(even) .gtl-card {
  grid-column: 2;
  justify-self: start;
  margin-left: 40px;
}

/* CTA */
.gtl-timeline .cta {
  display: block;
  margin: 10px auto 0;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 18px 25px;
  border-radius: 14px;
  max-width: 680px;
  background: linear-gradient(270deg, #ff3e3e, #ff6a3a, #ff3e3e);
  background-size: 400% 400%;
  animation: ctaGradient 6s ease infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.gtl-timeline .cta small {
  display: block;
  font-weight: 600;
  opacity: 0.95;
}
@keyframes ctaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ================= Mobile: all-left + continuous left rail ================= */

/* ============ Mobile: all-left + dots perfectly on the rail ============ */
/* ========= Mobile: dot on the line, cards cleared to the right ========= */
@media (max-width: 768px) {
  /* one place to tune things */
  .gtl-timeline {
    --dot: 0px; /* dot diameter */
    --rail-width: 0px; /* line thickness */
    --rail-left: 24px; /* LEFT edge of the line (tweak 23–26px if needed) */
    /* space between the OUTER edge of the dot and the card */
  }

  .gtl-timeline {
    padding: 40px 16px 60px;
  }
  .gtl-timeline h2 {
    margin-bottom: 36px;
    font-size: 26px;
  }

  .gtl-timeline__list {
    --gap: 36px;
    position: relative;
    display: block;

    /* rail + full dot + extra gutter = card never touches the dot */
    padding-left: calc(var(--rail-left) + var(--dot) + var(--gutter));

    /* rail starts/ends at dot centers */
    padding-top: calc(var(--dot) / 2);
    padding-bottom: calc(var(--dot) / 2);
    margin-bottom: 36px;
  }

  /* single continuous rail */
  .gtl-timeline__list::before {
    content: "";
    position: absolute;
    left: var(--rail-left); /* left EDGE of the line */
    top: calc(var(--dot) / 2);
    bottom: calc(var(--dot) / 2);
    width: var(--rail-width);
    background: var(--gtl-line);
    opacity: 0.9;
    z-index: 0; /* behind dot & card */
  }
  .gtl-item::before {
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0),
      inset 0 0 0 2px #101010;
  }
  .gtl-item {
    position: relative;
    display: block;
    margin-bottom: var(--gap);
  }
  .gtl-item:last-child {
    margin-bottom: 0;
  }

  /* dot centered on the rail */
  .gtl-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--rail-left) + (var(--rail-width) / 2) - (var(--dot) / 2));
    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
    background: #fff;
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.08),
      inset 0 0 0 2px #101010;
    z-index: 2; /* above the card */
  }

  /* kill desktop alternation & any extra margins */
  .gtl-item::after {
    display: none;
  }
  .gtl-item .gtl-card {
    margin-left: 0 !important; /* rely on list padding for spacing */
    margin-right: 0 !important;
    width: auto;
    max-width: none;
    padding: 18px;
    border-radius: 16px;
    position: relative;
    z-index: 1; /* below dots, above rail */
  }

  .gtl-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .gtl-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .gtl-timeline .cta {
    margin-top: 10px;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta,
  .sticky-btn,
  .js-open {
    animation: none !important;
  }
}

/* Subtle periodic shake with a long idle */
@keyframes cta-pulse-shake {
  0%,
  92%,
  100% {
    transform: translateX(0) rotate(0);
  }
  2% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  4% {
    transform: translateX(2px) rotate(0.5deg);
  }
  6% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  8% {
    transform: translateX(2px) rotate(0.5deg);
  }
  10% {
    transform: translateX(-1px) rotate(-0.25deg);
  }
  12% {
    transform: translateX(1px) rotate(0.25deg);
  }
}

/* Apply to ALL CTAs */
.cta,
.sticky-btn,
.js-open {
  animation: cta-pulse-shake 5s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

/* Optional: a slightly stronger shake when hovered/focused */
@keyframes cta-shake-quick {
  0%,
  100% {
    transform: translateX(0) rotate(0);
  }
  20% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  40% {
    transform: translateX(2px) rotate(0.5deg);
  }
  60% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  80% {
    transform: translateX(2px) rotate(0.5deg);
  }
}
.cta:hover,
.cta:focus,
.sticky-btn:hover,
.sticky-btn:focus,
.js-open:hover,
.js-open:focus {
  animation:
    cta-pulse-shake 8s ease-in-out infinite,
    cta-shake-quick 0.6s ease-in-out;
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta,
  .sticky-btn {
    animation: none !important;
  }
  .cta::after,
  .sticky-btn::after {
    animation: none !important;
  }
}

/* make buttons a clipping context for the sheen */
.cta,
.sticky-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate; /* keeps the sheen above background, below text */
}

/* the white sheen */
.cta::after,
.sticky-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%; /* start off the left side */
  width: 50%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: btn-shine 3.6s ease-in-out infinite;
  /* optional: make it happen less often */
  animation-delay: 1s;
}


/* faster pass on hover/focus */
.cta:hover::after,
.cta:focus::after,
.sticky-btn:hover::after,
.sticky-btn:focus::after {
  animation-duration: 1.2s;
}

@keyframes btn-shine {
  0% {
    left: -150%;
  }
  55% {
    left: 130%;
  } /* sweep across */
  100% {
    left: 130%;
  } /* idle offscreen */
}


/* HERO SECTION */
/* title + sub */
.dm-title {
    margin: 6px 0 6px;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    font-size: clamp(26px, 3.2vw, 44px);
}
.dm-title u {
    color: #e9ed26;
    text-underline-offset: 2px;
    text-decoration-color: #e9ed26;
    text-decoration-thickness: 2px;
}
.dm-title-aeo {
    margin: 6px 0 6px;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    font-size: clamp(15px, 3.2vw, 32px);
}
.dm-title-aeo u {
    color: #e9ed26;
    text-underline-offset: 2px;
    text-decoration-color: #e9ed26;
    text-decoration-thickness: 2px;
}
.dm-sub {
    margin: 8px 0 8px;
    color: #a2c9bd;
    text-align: center;
    letter-spacing: 0.06em;
}

#hero-dm {
    background: #04130e;
    padding: 4px 0 10px;
    border-bottom: 1px solid #103529;
}
#hero-dm .container {
    max-width: 1156px;
    margin: auto;
    padding: 0 10px;
    color: #ecf6f2;
}

/* GRID LAYOUT */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* LEFT IMAGE COLUMN */
.hero-image {
    border-radius: 16px;
    overflow: hidden;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* RIGHT CONTENT COLUMN */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

/* DATE CARD */
.card {
    background: #0a1f18;
    border: 1px solid #17382c;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 16px;
}

.date-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cal-badge {
    --w: 56px;
    width: var(--w);
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    background: #fff;
}
.cal-month {
    background: var(--green);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 10px;
    line-height: 23px;
    text-transform: uppercase;
}
.cal-day {
    color: #111;
    font-weight: 800;
    font-size: 18px;
    line-height: 35px;
}
.date-info .date-line {
    font-size: 20px;
    font-weight: 800;
}
.date-info .time-line {
    color: #a9cfc3;
    font-weight: 700;
    margin-top: 4px;
}

/* MODE + LANGUAGE */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.info .label {
    color: #96b9ae;
    font-size: 13px;
    margin-bottom: 6px;
}
.info .value {
    font-size: 20px;
    font-weight: 800;
}

/* CTA BUTTON */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    padding: 15px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    user-select: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;

    /* 👇 NEW lines to limit width */
    inline-size: clamp(260px, 80vw, 720px); /* keeps it responsive */
    margin: 15px auto 0; /* centers it horizontally */
}
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.cta:hover {
    transform: translateY(-2px);container
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}
.cta small {
    display: block;
    opacity: 0.95;
    font-weight: 600;
}
.note {
    text-align: center;
    font-weight: 500;
    margin-bottom: -10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
    }
}
/* ============ TESTIMONIALS ============ */
.dm-testimonials {
    background: #06130e;
    padding: 14px 0;
}
.dm-testimonials .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;
}
.dm-testimonials h2 {
    font-family: "Sora", sans-serif;
    text-align: center;
    font-size: clamp(25px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 8px;
}
.dm-testimonials .sub {
    text-align: center;
    color: #9acabc;
    margin-bottom: 28px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testi-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.testi-card img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
@media (max-width: 850px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}
/* rating */
.dm-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a9cfc3;
    font-weight: 700;
    margin-bottom: 10px;
}
.dm-rating .stars {
    color: rgba(255, 232, 2, 0.99);
    margin-top: 15px;
    letter-spacing: 2px;
}
.dm-rating .stars2 {
    padding-top: 15px;
    letter-spacing: 2px;
}
/* =======================
   3-Hour Comparison Block
   ======================= */
/* Grid for the two cards */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto 18px;
}

/* Card interior: two columns */
.compare-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr; /* left block + right list */
    align-items: start;
    gap: 18px 20px;
    padding: 26px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden; /* prevents any weird overflow lines */
}

/* Movie vs Workshop surfaces */
.compare-card.movie {
    background: linear-gradient(135deg, #111 0%, #0b0d0b 100%);
}
.compare-card.workshop {
    background: linear-gradient(135deg, #145f45 0%, #0b2c21 100%);
    box-shadow: 0 4px 22px rgba(5, 0, 255, 0.18);
}

/* Left column: stack image/icon + title */
.compare-card .card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.compare-card .icon {
    font-size: 46px;
    margin: 0;
    line-height: 1;
}
.compare-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: #fff;
}

/* Workshop image size */
.compare-card.workshop .card-left img {
    width: 160px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Right column list */
.compare-card .card-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.compare-card .card-right li {
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    color: #d0e3db;
    font-weight: 500;
    line-height: 1.55;
}
.compare-card.workshop .card-right li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7ef2c2;
    font-weight: 800;
}
.compare-card.movie .card-right li::before {
    content: "✕"; /* or "×" if you prefer */
    position: absolute;
    left: 0;
    top: 0.05em;
    color: #ff5a5a; /* red */
    font-weight: 800;
}

/* CTA should NOT be full width */
.compare-section .cta {
    inline-size: clamp(280px, 80vw, 720px);
    margin: 22px auto 0; /* center and add spacing from cards */
    border-radius: 14px;
}

/* Responsive stack */
@media (max-width: 1000px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 920px) {
    .compare-card {
        grid-template-columns: 1fr;
        align-items: start;
        margin: 0 6px 20px;
    }
    .compare-section {
        padding: 40px 12px 60px; /* extra breathing room for section */
    }
    .compare-card .card-left {
        align-items: flex-start;
    }
    .compare-card h3 {
        text-align: left;
        font-size: 24px;
    }
    .compare-card.workshop .card-left img {
        width: 140px;
    }
}

/* ===== Tools You Will Learn ===== */
.tools {
    padding: 20px 16px 20px;
    text-align: center;
    background: #081711; /* blends with your theme */
    color: var(--text, #f7f7f7);
}

.tools h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    margin: 0 0 22px;
}

.tools-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 26px;
}
.tools-grid2 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 26px;
}

.tool-card {
    background: radial-gradient(120% 140% at 20% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 20px 16px;
    display: grid;
    place-items: center;
    gap: 10px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.25);
}

.tool-card img {
    width: 64px; /* adjust if your icons are larger */
    height: 64px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.tool-card h3 {
    margin: 2px 0 0;
    font-size: 16px;
    font-weight: 600;
    color: #e9f3ee;
}

/* Responsive */
@media (max-width: 1000px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tools-grid2 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tools-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .tool-card img {
        width: 56px;
        height: 56px;
    }
    .dm-title-aeo {
        margin: 6px 6px 6px;
        text-align: center;
        font-weight: 800;
        line-height: 1.2;
        font-size: clamp(20px, 3.5vw, 32px);
    }
    .dm-title-aeo u {
        color: #e9ed26;
        text-underline-offset: 2px;
        text-decoration-color: #e9ed26;
        text-decoration-thickness: 2px;
    }
}
@media (max-width: 420px) {
    .tools-grid {
        gap: 14px;
    }
    .tool-card {
        padding: 16px 12px;
    }
}
/* ===== Bonuses Section ===== */
.bonuses {
    padding: 20px 16px 20px;
    background: #1877f2; /* match your dark theme */
    text-align: center;
    color: #ecf5ef;
}
.bonuses h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    margin: 0 0 6px;
}
.bonuses .accent {
    color: #17d079;
} /* green highlight for ₹17,500 */
.bonuses .sub {
    margin: 0 auto 26px;
    max-width: 760px;
    color: #cfe6db;
    font-weight: 500;
}

/* Grid */
.bonus-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;

    justify-content: center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Card */
.bonus-card {
    position: relative;
    background: linear-gradient(180deg, #10261e 0%, #0b1e17 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-rows: auto auto;
}

/* Ribbon */
.bonus-card .ribbon {
    background: #1f966b;
    color: #fff;
    font-size: large;
    font-weight: 800;
    letter-spacing: 0.2px;
    padding: 15px 12px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

/* Body */
.bonus-card .body {
    padding: 20px 18px 18px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    justify-items: center;
    gap: 10px;
    min-height: 220px; /* to keep the row height consistent like the shot */
}
.bonus-card h3 {
    margin: 0;
    font-size: clamp(26px, 1.9vw, 22px);
    font-weight: 800;
    line-height: 1.25;
    text-wrap: balance;
}
.bonus-card .tag {
    color: #86e7c7;
    font-size: 12px;
    letter-spacing: 0.18em;
}
.bonus-card .icon {
    width: 92px;
    height: 92px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

/* Price strip */
.price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #122e6f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
}
.price-bar .mrp {
    font-weight: 800;
    color: #e8eee9;
    position: relative;
    opacity: 0.9;
}
.price-bar .mrp::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, #ff7a7a, #ff3b3b);
    transform: translateY(-50%) rotate(-8deg);
    border-radius: 2px;
}
.price-bar .free-tag {
    background: #ff4b5a;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 6px 8px;
    border-radius: 6px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1000px) {
    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .bonuses {
        padding: 44px 12px 28px;
    }
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bonus-card .body {
        min-height: 240px;
    }
}
/* ===== Before & After Workshop ===== */
.before-after {
    padding: 16px 16px;
    background: #071711; /* blend with your theme */
    color: #ecf5ef;
    text-align: center;
}
.before-after h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    margin: 0 0 24px;
}

/* layout */
.ba-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* card shell */
.ba-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    text-align: left;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* header bar */
.ba-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.ba-emoji {
    font-size: 18px;
}
/* ❌ Red cross for "Before Workshop" */
.ba-card.negative li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("svg/delete.svg") no-repeat center center / contain;
    transform: translateY(-50%);
}

/* ✅ Green check for "After Workshop" */
.ba-card.positive li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("svg/check.svg") no-repeat center center / contain;
    transform: translateY(-50%);
}

/* spacing for text alignment */
.ba-card li {
    position: relative;
    padding-left: 30px; /* creates space for icon */
    line-height: 1.6;
    display: flex;
    align-items: center; /* vertically centers text with icon */
}

/* bodies (dark gradients like screenshot) */
.ba-card .ba-body {
    padding: 16px 18px 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}
.ba-card.negative .ba-body {
    background: linear-gradient(180deg, #5c1419 0%, #07120e 100%);
}
.ba-card.positive .ba-body {
    background: linear-gradient(180deg, #0a4934 0%, #03150f 100%);
}
/* variants */
.ba-card.negative .ba-head {
    background: #ba1e2a;
} /* red header */
.ba-card.positive .ba-head {
    background: #23a36d;
} /* green header */

/* lists */
.ba-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ba-card li {
    position: relative;
    padding: 10px 10px 10px 22px;
    margin: 2px 0;
    line-height: 1.55;
    color: #e9f3ee;
    border-radius: 8px;
}

/* subtle rounded bottom edge like screenshot */
.ba-card {
    background: transparent;
}
.ba-card .ba-body {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

/* responsive */
@media (max-width: 900px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 520px) {
    .ba-card li {
        padding-left: 20px;
    }
}

/* ===== Mentor Section ===== */
.mentor {
    margin-top: -10px;
    padding: 20px 16px;
    background: #071711;
    color: #ecf5ef;
}
.mentor h2 {
    text-align: center;
    margin: 0 0 26px;
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
}

/* Layout */
.mentor-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: start;
}

/* Photo */
.mentor-photo {
    margin: 0;
}
.mentor-photo img {
    width: 80%;
    display: block; /* allows margin auto to work */
    margin: 0 auto; /* centers horizontally */
    height: auto;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    object-fit: cover;
}
/* Right column */
.mentor-right {
    display: grid;
    gap: 18px 0;
}

/* Badges grid */
.mentor-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #125c41;
    color: #f1fff8;
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
    box-shadow:
        inset 0 -1px 0 rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge:nth-child(2),
.badge:nth-child(4) {
    background: #0f6e4a;
}

/* Flaticon check.svg icon */
.badge .tick {
    width: 18px;
    height: 18px;
    background: url("svg/check.svg") no-repeat center center / contain;
    flex-shrink: 0;
}

/* Copy */
.mentor-copy {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.7;
    color: #e4f0ea;
}
.mentor-copy p {
    margin: 0 0 14px;
}
.mentor-copy .strong {
    font-weight: 800;
    color: #fff;
}
.mentor-copy .accent {
    color: #22cc89;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
    .mentor-grid {
        grid-template-columns: 1fr;
    }
    .mentor-badges {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .mentor-badges {
        grid-template-columns: 1fr;
    }
    .badge {
        padding: 12px 14px;
    }
}
/* ===== Certification Section ===== */
.certificate {
    background: #071711;
    color: #ecf5ef;
    padding: 5px 16px;
   
}

.certificate-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr; /* give more width to text */
    align-items: start;
    gap: 10px;
    padding: 10px 10px;
}

/* Left side */
.cert-left {
    color: #eaf6ef;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 👈 ensures content stays top-aligned */
    align-items: flex-start;
}
.cert-left h2 {
  text-align-last: center;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.25;
    
    /* Center align the certificate heading */
    
}
.cert-left .highlight {
    color: #1777f3;
}

.cert-point {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.cert-point .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(3px);
}

.cert-point .icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.cert-point p {
    margin: 0;
    line-height: 1.6;
    color: #cce7db;
    font-size: clamp(15px, 1.3vw, 17px);
}

/* Right image */
.cert-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cert-right img {
    width: 100%; /* smaller image */
    border-radius: 14px;
    object-fit: contain;
    display: block;
    z-index: 1;
    margin-bottom: 15px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
}
.cert-right::before {
    content: "";
    position: absolute;
    width: 94%;
    height: 97%;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(50, 200, 120, 0.8), rgba(0, 180, 255, 0.7), rgba(50, 200, 120, 0.8));
    background-size: 300% 300%;
    animation: shineBorder 5s ease-in-out infinite;
    filter: blur(10px);
    opacity: 0.4;
    z-index: 0;
}
@keyframes shineBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cert-left {
        order: 2;
    }
    .cert-right {
        order: 1;
    }
    .cert-point {
        justify-content: center;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr;
    }

    /* Make heading appear on top of image */
    .cert-left {
        order: 1;
        text-align: center;
    }

    .cert-right {
        order: 2;
    }

    .cert-right img {
        width: 100%;
        margin-top: 01px;
    }

    .cert-point {
        justify-content: center;
        text-align: left;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 20px 16px;
    background: #071711;
    color: #ecf5ef;
}
.faq h2 {
    text-align: center;
    margin: 0 0 6px;
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
}
.faq .accent {
    color: #20c887;
}
.faq .sub {
    text-align: center;
    color: #cfe6db;
    margin: 0 0 18px;
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(14, 57, 44, 0.45), rgba(8, 31, 25, 0.45));
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.22) inset,
        0 2px 0 rgba(255, 255, 255, 0.02) inset;
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    background: transparent;
    color: #e9f7f1;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: clamp(16px, 1.4vw, 18px);
}
.faq-q:focus-visible {
    outline: 2px solid #22cc89;
    outline-offset: 2px;
    border-radius: 8px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: linear-gradient(90deg, rgba(20, 92, 70, 0.4), rgba(8, 31, 25, 0.35));
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-a p {
    margin: 14px 18px 18px;
    color: #d7efe5;
    line-height: 1.65;
}

.faq-item.open .faq-a {
    max-height: 220px;
} /* enough for a couple of lines */
.faq-item.open .faq-q[aria-expanded="true"] + .faq-a {
    /* just for clarity */
}

.chev {
    --s: 10px;
    inline-size: var(--s);
    block-size: var(--s);
    border-right: 2px solid #bfeee0;
    border-bottom: 2px solid #bfeee0;
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item.open .chev {
    transform: rotate(135deg);
}

/* nicer first item open height */
.faq-item.open:first-child .faq-a {
    max-height: 300px;
}

@media (max-width: 640px) {
    .faq-list {
        gap: 10px;
    }
    .faq-q {
        padding: 16px;
    }
    .faq-a p {
        margin: 12px 16px 16px;
    }
}

/* ==== CTA Section ==== */
.cta-section {
    background: linear-gradient(180deg, #0a4fa8 0%, #041F43 100%);
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
@media (max-width: 940px) {
    .cta-section {
        margin: 40px 20px 20px 20px;
    }
}

/* Section heading */
.cta-section h2 {
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 800;
    margin-bottom: 10px;
}

/* Reusing your existing CTA button but with slightly tweaked width */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
 
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    user-select: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    width: 90%; /* 👈 less than full width */
    margin: 0 auto 10px; /* 👈 centers the button */
    max-width: 720px; /* 👈 keeps it proportional on big screens */
}

.cta small {
    font-size: 14px;
    font-weight: 500;
  
    opacity: 0.9;
}

/* Button hover */
.cta:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 45px rgba(255, 80, 80, 0.45);
}

/* Gradient animation */
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Reviews text */
.reviews {
    color: #a6e7cf;
    font-size: 16px;
    margin-top: 12px;
}

.stars {
    color: #0153bd;
    font-size: 18px;
    margin-right: 6px;
}

/* --- Mobile Sticky Footer --- */
.mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none; /* mobile-only -> enabled in media query */
    background: #0a231c; /* base so the glow blends in */
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    border-top: 1px solid #00c600;
}

.mobile-sticky .ms-wrap {
    display:grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 10px 12px;
  align-items:center;
}

.mobile-sticky .ms-left {
    display:grid;
  gap:4px;
}
.mobile-sticky .ms-label {
    color: #e8f6ef;
    font-weight: 700;
    font-size: 14px;
}
.mobile-sticky .ms-timer {
    display:flex;
  gap: 22px;
  align-items:flex-end;
}
.mobile-sticky .ms-timer span {
    font-weight: 800;
    font-size: 18px;
    color: #22cc89; /* green digits */
    min-width: 28px;
    text-align: center;
}
.mobile-sticky .ms-timer small {
    color: #a7e3cf;
    font-size: 12px;
}

/* CTA button (compact, same feel as your red CTA) */
.mobile-sticky .ms-cta {
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    user-select: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
  min-width: 170px;
  text-align:center;
}

.mobile-sticky .ms-time{
  display:grid;
  gap:2px;
}

.mobile-sticky .ms-time span{
  font-size: 22px;
  line-height: 1;
  min-width: 30px;
  text-align:left;
}
.mobile-sticky .ms-time small{
  font-size: 12px;
  line-height: 1.1;
}


.mobile-sticky .ms-cta:active {
    transform: scale(0.98);
}

.mobile-sticky .ms-note {
    margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.2;
  opacity: 0.9;
  text-align:left;
}
/* Right block: price top, button below */
.mobile-sticky .ms-right{
  display: grid;
  gap: 8px;
  justify-items: center;   /* 👈 center horizontally */
  align-content: center;
  text-align: center;
}
.mobile-sticky .price-wrap{
  display: flex;
  justify-content: center; /* 👈 center price */
  align-items: baseline;
  gap: 10px;
}


/* animated gradient (reuses your CTA motion) */
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile-only */
@media (max-width: 768px) {
    .mobile-sticky {
        display: block;
    }
}

/* Avoid overlapping your own bottom bars (optional) */
body.has-mobile-sticky {
    padding-bottom: 100px;
} /* tweak if you want extra room */

.offer-countdown-text {
    text-align: center;
}
@media (max-width: 420px){
  .mobile-sticky .ms-cta{ min-width: 150px; }
  .mobile-sticky .ms-timer{ gap: 16px; }
}

/* ===== Modal / Popup ===== */
/* ===== Modal / Popup ===== */
.backdrop {
    position: fixed;
    inset: 0;
    display: none; /* shown via JS: display:flex */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    padding: 16px;
}

/* Modal container */
.modal {
    position: relative;
    width: min(560px, 92vw);
    background: #ffffff; /* clean white popup */
    color: #0a1f18;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    padding: 28px 24px 30px;
    border: none;
    max-height: min(86vh, 780px);
    overflow: auto;
    animation: popIn 180ms ease-out;
}

/* Heading */
.modal h4 {
    margin: 0 0 18px;
    font-weight: 800;
    font-size: 24px;
    color: #000;
    text-align: center;
}

/* Close button */
.modal .x {
    position: absolute;
    top: 10px;
    right: 10px;
    inline-size: 32px;
    block-size: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: #000;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.modal .x:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Form layout */
.modal .f {
    margin-top: 8px;
}
.modal .f .row {
    margin: 0 0 12px;
}
.price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Poppins, sans-serif;
}

.old-price {
  position: relative;
  font-size: 16px;
  color: #fff;
}

.old-price::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -5%;
  width: 110%;
  height: 3px;
  background: #e11d48; /* diagonal cut color */
  transform: rotate(1800deg);
}

.new-price {
  font-size: 23px;
  font-weight: 700;
  color: #2ecc8a;
  padding-right: 10px;/* green */
}

/* Inputs */
.modal input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #000;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.modal input::placeholder {
    color: #777;
}
.modal input:focus {
    border-color: #0a8f2b;
    box-shadow: 0 0 0 2px rgba(10, 143, 43, 0.15);
}

/* Submit button (same as main CTA) */
.modal .submit {
    width: 100%;
    padding: 15px 20px;
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.modal .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

/* Info text below button */
.modal .privacy {
    margin: 8px 0 0;
    font-size: 14px;
    color: #222; /* darker for readability */
    line-height: 1.1;
    font-weight: 500; /* was 400 — bolder and cleaner */
}

/* Lock scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/* Small screen optimization */
@media (max-width: 480px) {
    .modal {
        padding: 22px 16px 22px;
    }
    .modal h4 {
        font-size: 20px;
    }
}

/* Entrance animation */
@keyframes popIn {
    from {
        transform: translateY(10px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Gradient animation reused from site */
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Keep the card perfectly centered & contained */
/* --- Modal containment fix --- */
/* Ensure children widths include padding & border */
#modal,
#modal * {
    box-sizing: border-box;
}

/* Prevent any sideways scroll inside the card */
.modal {
    overflow-x: hidden;
}

/* Make sure form controls never exceed the modal width */
.modal input,
.modal .submit {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* 🔧 Reduce vertical spacing between sections */
section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* ===============================
 META COLOR OVERRIDE – FINAL
 =============================== */

/* Main sections */
body,
#hero-dm,
.dm-testimonials,
.tools,
.bonuses,
.before-after,
.mentor,
.certificate,
.faq,
.gtl-timeline {
  background: var(--bg) !important;
  color: var(--text) !important;
}

/* Cards */
.card,
.gtl-card,
.tool-card,
.bonus-card,
.compare-card,
.info,
.ba-card,
.badge,
.faq-item {
  background: var(--card) !important;
  border-color: rgba(255,255,255,.08) !important;
}


/* Timeline cards */
.gtl-card {
  background:
    linear-gradient(135deg, #1b2550, #131a2a) !important;
}

/* Kill ALL green */
[class*="green"],
.cal-month,

.price-wrap span,

.accent {
  background: var(--meta-blue) !important;
  color:#fff !important;
}

.badge {
  background: linear-gradient(180deg, #0a4fa8 0%, #041F43 100%) !important;
}
/* CTA everywhere
.cta,
.sticky-btn,
.js-open,
.mobile-sticky .ms-cta,
.modal .submit {
  background: linear-gradient(
    90deg,
    var(--meta-blue),
    var(--meta-purple),
    var(--meta-pink),
    var(--meta-orange)
  ) !important;
  background-size:300% 300% !important;
  color:#fff !important;
}


@keyframes metaMove {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.cta,
.sticky-btn {
  animation: metaMove 6s ease infinite !important;
}
*/
/* Bonus ribbons */
.bonus-card .ribbon {
  background: linear-gradient(180deg, #0a4fa8 0%, #041F43 100%) !important;
}

/* Before/After headers */
.ba-card.negative .ba-head {
  background:#b91c1c !important;
}
.ba-card.positive  {
  background:var(--meta-blue) !important;
}

/* Timeline rail */
.gtl-timeline__list::before {
  background:rgba(255,255,255,.15) !important;
}

/* Calendar */
.cal-month {
  background:var(--meta-blue)!important;
}

/* Mentor accent */
.mentor-copy .accent {
  color:var(--meta-white)!important;
}

/* FAQ */
.faq-item,
.faq-a {
  background:#131a2a!important;
}

/* Certificate glow */
.cert-right::before {
  background:linear-gradient(120deg,
    var(--meta-blue),
    var(--meta-purple),
    var(--meta-pink)
  ) !important;
}

.cert-wrap {
  position: relative;
}

.cert-date {
  position: absolute;
  bottom: 45px;      /* adjust slightly if needed */
  right: 168px;     /* adjust slightly if needed */
  z-index: 10000;
  font-weight: 600;
  font-size: 12px;
  color: #111;
  line-height: normal;
}
@media (max-width: 480px) {
    .cert-date  {
    bottom: 35px;      /* adjust slightly if needed */
  right: 140px;
      font-size: 10px;
}

