:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --text-white: #ffffff;
    --text-yellow: #fbbf24;
    --text-green: #22c55e;
    --text-gray: #94a3b8;
    --btn-red: #ef4444;
    --btn-red-hover: #dc2626;
    --border-color: #334155;
    --primary-blue: #1a56db;
    --warning-yellow: #fbbf24;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f3f5f7;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --border-light: #e5e7eb;
    --cta-red: #dc2626;
    --cta-red-hover: #b91c1c;
    --bg:         #ffffff;
    --surface:    #f8f9fb;
     --border:     rgba(168,85,247,.25);
    --blue:       #2563eb;
    --blue-light: #eff4ff;
    --orange:     #f06a1b;
    --text:       #0f172a;
    --muted:      #94a3b8;
    --badge-bg:   #eff4ff;

    --bg-blue:    #e8edf8;
    --icon-bg:     #dde5f7;
    --icon-color:  #3b5bdb;
    --body-text:   #374151;

    --green:        #16a34a;
    --green-bg:     #f0fdf4;
    --green-border: #bbf7d0;
    --orange:       #ea580c;
    --orange-bg:    #fff7ed;
    --orange-border:#fed7aa;
    --blue:         #3b5bdb;
    --blue-bg:      #eff4ff;
    --card-border:  #e2e8f0;
    --card-bg:      #ffffff;

    --bg-dark:          #0d1117;
    --card-bg:     #161d2b;
    --card-border: #232e42;
    --blue-light:        #3b82f6;
    --yellow:      #f5a623;
    --red:         #e02020;
    --red-hover:   #c41a1a;
    --guarantee-bg:#0f2318;
    --guarantee-border:#1a4a2e;
    --yellow-hover: #e0b310;

    --border-light: #e5e7eb;
    --link-blue: #2563eb;
    --link-blue-hover: #1d4ed8;

    --card-bg:      #ffffff;
    --card-border:  #e4e8f0;
    --blue-btn-bg:  #eff4ff;
    --red-border:   #fcd5d5;
    --icon-bg:      #eef1fb;
    --featured-border: #f0a0a0;

    --primary-color: #0d4a7c;
    --accent-color: #c47a1f;
    --bg-light: #f0f2f5;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --badge-bg: #e8f5f0;
    --badge-color: #0d8a6a;
}

.ai-banner-body{
    padding: 40px 0;
    /* background-color: var(--bg-dark); */
}
.hero-list{

}

.hero-title .text-gradient {
  color: transparent;
  background-image: var(--gradient3);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Hero Section */
.hero-section {
    padding: 40px 0 40px;
    background-color: var(--bg-dark);
}

.hero-section .video-cards {
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 250px;
  justify-content: center;
}

/* Tags */
.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.hero-tag {
    display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe3c1;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--theme-color2);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-tag.green {
    color: var(--theme-color2);
    border: 1px solid var(--border);
}

/* Hero Title */
.hero-title {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    /* color: var(--text-white); */
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 18px;
    line-height: 1.4;
}

/* CTA Button */
.btn-cta {
    background-color: var(--btn-red);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    max-width: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cta:hover {
    background-color: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    color: var(--text-white);
}

/* Video Card */
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--btn-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.play-btn i {
    color: white;
    font-size: 28px;
    margin-left: 4px;
}

/* Features Card */
.features-card {
    background: #ffebe3;
    border: 1px solid rgb(255, 125, 74, 0.4);
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.features-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.features-header i {
    color: var(--text-yellow);
    font-size: 1.1rem;
}

.features-header span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 2px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item i {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item .check { color: var(--text-green); }
.feature-item .uncheck { color: var(--text-gray); opacity: 0.5; }
.feature-item .arrow { color: var(--text-green); font-size: 0.8rem; }

.feature-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item .you-here {
    /* color: var(--text-green); */
    font-weight: 600;
    margin-left: 4px;
}

.feature-item.future {
    color: var(--text-dark);
    font-weight: 600;
    /* margin-top: 4px; */
}

/* Stats Section */
.stats-section {
    padding: 30px 0 0px;
}

.stats-container {
    /* background-color: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-color); */
}

.stat-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;

    /* Overlay+Border+Shadow+OverlayBlur */
    border: 1px solid rgb(255, 125, 74);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    background: #ffebe3;
    backdrop-filter: blur(2px);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-color);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon .bi{
    color: var(--orange);
    font-size: 1.8rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.feature-item::before{
    display: none;
}


.section-pain-points {
    padding: 40px 0;
}

.section-pain-points .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    /* color: var(--text-dark); */
    margin-bottom: 2rem;
}

.section-pain-points .pain-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 1.6rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--card-shadow);
}

.section-pain-points .pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.section-pain-points .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.section-pain-points .icon-business {
    background-color: #dbeafe;
    color: #2563eb;
}

.section-pain-points .icon-student {
    background-color: #fef3c7;
    color: #d97706;
}

.section-pain-points .icon-homemaker {
    background-color: #f3e8ff;
    color: #9333ea;
}

.section-pain-points .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-dark);
}

.section-pain-points .pain-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.section-pain-points .pain-point:last-child {
    margin-bottom: 0;
}

.section-pain-points .pain-icon {
    color: var(--text-green);
    font-size: 16px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.section-pain-points .cta-section {
    margin-top: 3rem;
    text-align: center;
}

.section-pain-points .cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.section-pain-points .btn-cta {
    background-color: var(--warning-yellow);
    /* color: #1f2937; */
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
}

.section-pain-points .btn-cta:hover {
    background-color: #f59e0b;
    /* color: #1f2937; */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.section-pain-points .trust-badges {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
}


.trust-badges {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.section-pain-points .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.section-pain-points .trust-badge i {
    font-size: 0.9rem;
}

.text-dark{
    color: #ADC6FF !important;
}

.section-learn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.section-learn {
    padding: 40px 0;
    /* background-color: var(--bg-light); */
    position: relative;
}

.section-learn .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-learn .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    /* color: var(--text-dark); */
    margin-bottom: 0.75rem;
}

.section-learn .section-subtitle {
    color: var(--text-dark);
    font-weight: 400;
}

.section-learn .learn-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--card-shadow);
}

.section-learn .learn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.section-learn .card-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-learn .card-icon {
    font-size: 1.5rem;
    color: #2563eb;
}

.section-learn .card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.section-learn .learn-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-learn .learn-point:last-child {
    margin-bottom: 0;
}

.section-learn .check-icon {
    color: #16a34a;
    font-size: 1.1rem;
    margin-top: -0.15rem;
    flex-shrink: 0;
}

.section-learn .bottom-text {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.section-learn .bottom-text p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.section-learn .btn-cta {
    background-color: var(--cta-red);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
}

.section-learn .btn-cta:hover {
    background-color: var(--cta-red-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.section-learn .cta-wrapper {
    text-align: center;
}

.learn-card-special{
    border: 2px solid var(--cta-red) !important;
    background: #fceded !important;
}


.cta-wrap::before{
    background: none;
}


.curriculum-section{
    padding: 50px 0;
}
.curriculum-section .section-title {
    font-size: clamp(1.6rem, 2.6vw, 3.2rem);
    font-weight: 800;
    /* color: var(--text); */
    text-align: center;
    line-height: 1.15;
    margin-bottom: 12px;
}

.curriculum-section .section-meta {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--blue);
    margin-bottom: 40px;
}
.curriculum-section .section-meta span { color: #c0cce0; margin: 0 6px; }

/* ── Accordion ── */
.curriculum-section .accordion { --bs-accordion-bg: transparent; }

.curriculum-section .accordion-item {
    background: var(--surface);
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.curriculum-section .accordion-item:hover {
    border-color: #c7d5f8 !important;
    box-shadow: 0 4px 20px rgba(37,99,235,0.07);
}

.curriculum-section .accordion-button {
    background: var(--surface);
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 22px;
    border-radius: 14px !important;
    box-shadow: none !important;
    gap: 16px;
    align-items: center;
}
.curriculum-section .accordion-button:not(.collapsed) {
    background: var(--surface);
    color: var(--text);
}

/* hide default BS arrow */
.curriculum-section .accordion-button::after { display: none; }

/* number badge */
.curriculum-section .acc-badge {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* module label */
.curriculum-section .acc-modules {
    margin-left: auto;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    padding-left: 16px;
}

/* expand chevron */
.curriculum-section .acc-chevron {
    margin-left: 12px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--muted);
}
.curriculum-section .accordion-button:not(.collapsed) .acc-chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.curriculum-section .accordion-body {
    background: var(--surface);
    padding: 0 22px 20px 72px;
    border-top: 1px solid var(--border);
}
.curriculum-section .accordion-body ul {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
}
.curriculum-section .accordion-body ul li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f4f9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.curriculum-section .accordion-body ul li:last-child { border-bottom: none; }
.curriculum-section .lesson-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    opacity: 0.5;
}

/* ── "7 More" teaser row ── */
.curriculum-section .more-teaser {
    background: #eff4ff;
    border: 1px solid #c7d5f8;
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 12px;
    user-select: none;
}
.curriculum-section .more-teaser:hover { background: #e0eaff; }
.curriculum-section .more-teaser .plus-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-size: 1rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}
.curriculum-section .more-teaser .more-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
}

/* ── hidden accordion items ── */
.curriculum-section .accordion-item.hidden-item { display: none; }

/* ── CTA Button ── */
.curriculum-section .cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
.curriculum-section .cta-btn {
    /* background: var(--orange);
    color: #fff; */
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    padding: 18px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(240,106,27,0.28);
}
.curriculum-section .cta-btn:hover {
    background: #d95e10;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240,106,27,0.35);
}
.curriculum-section .cta-btn svg { flex-shrink: 0; }

/* entry animations */
.curriculum-section .accordion-item, .more-teaser {
    animation: fadeUp 0.4s ease both;
}
.curriculum-section .accordion-item:nth-child(1) { animation-delay: 0.05s; }
.curriculum-section .accordion-item:nth-child(2) { animation-delay: 0.12s; }
.curriculum-section .accordion-item:nth-child(3) { animation-delay: 0.19s; }
.curriculum-section .more-teaser                 { animation-delay: 0.26s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* stagger revealed items */
.curriculum-section .accordion-item.hidden-item.show-anim {
    display: block;
    animation: fadeUp 0.35s ease both;
}
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(4)  { animation-delay: 0.04s; }
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(5)  { animation-delay: 0.09s; }
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(6)  { animation-delay: 0.14s; }
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(7)  { animation-delay: 0.19s; }
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(8)  { animation-delay: 0.24s; }
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(9)  { animation-delay: 0.29s; }
.curriculum-section .accordion-item.hidden-item.show-anim:nth-of-type(10) { animation-delay: 0.34s; }


    .why-choose-section{
        /* background: var(--bg-blue); */
        padding: 40px 0;
    }

     /* ── Title ── */
    .why-choose-section .section-title {
      font-size: clamp(1.6rem, 2.6vw, 3.2rem);
      font-weight: 800;
      text-align: center;
      /* color: var(--text); */
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    /* ── Feature grid ── */
    .why-choose-section .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px 20px;
    }

    @media (max-width: 640px) {
      .why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }
    }

    /* ── Feature card ── */
    .why-choose-section .feature-card {
      display: block;
      text-align: center;
      gap: 16px;
      background: transparent;
      padding: 20px 18px 10px 18px;
      border: 1px solid #b5d5ff;
      border-radius: 14px;
      transition: background 0.2s;
      background: #FFF;
      box-shadow: 0 5px 5px var(--card-shadow);
      -webkit-transition: background 0.2s;
      -moz-transition: background 0.2s;
      -ms-transition: background 0.2s;
      -o-transition: background 0.2s;
      -webkit-border-radius: 14px;
      -moz-border-radius: 14px;
      -ms-border-radius: 14px;
      -o-border-radius: 14px;
}
    .why-choose-section .feature-card:hover {
      background: rgba(255,255,255,0.55);
    }

    /* icon box */
    .why-choose-section .icon-box {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 12px;
      background: var(--gradient);
      color: #FFF !important;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0px auto 10px auto;
    }
    .why-choose-section .icon-box svg {
      width: 24px;
      height: 24px;
      color: var(--icon-white);
    }

    /* text */
    .why-choose-section .feature-text {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--body-text);
      line-height: 1.2;
      padding-top: 5px;
      margin-bottom: 5px;
    }
    .why-choose-section .feature-card p{
        line-height: 1.4 !important;
    }
    .why-choose-section .feature-text strong {
        font-weight: 700;
        color: var(--text);
        font-size: 17px;
    }

    /* entry animation */
    .why-choose-section .feature-card {
      animation: fadeUp 0.45s ease both;
    }
    .why-choose-section .feature-card:nth-child(1) { animation-delay: 0.04s; }
    .why-choose-section .feature-card:nth-child(2) { animation-delay: 0.10s; }
    .why-choose-section .feature-card:nth-child(3) { animation-delay: 0.16s; }
    .why-choose-section .feature-card:nth-child(4) { animation-delay: 0.22s; }
    .why-choose-section .feature-card:nth-child(5) { animation-delay: 0.28s; }
    .why-choose-section .feature-card:nth-child(6) { animation-delay: 0.34s; }
    .why-choose-section .feature-card:nth-child(7) { animation-delay: 0.40s; }
    .why-choose-section .feature-card:nth-child(8) { animation-delay: 0.46s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }




    .certificate-section{
        padding: 60px 0;
    }
    .certificate-section .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.3rem);
        font-weight: 800;
        text-align: center;
        color: var(--text);
        margin-bottom: 40px;
        letter-spacing: -0.02em;
    }

    /* ── Main two-col layout ── */
    .certificate-section .main-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }
    @media (max-width: 768px) {
        .certificate-section .main-grid { grid-template-columns: 1fr; }
    }

    /* ── LEFT: Certificate card ── */
    .certificate-section .cert-card {
        border: 1px solid var(--card-border);
        border-radius: 18px;
        overflow: hidden;
        background: var(--card-bg);
        display: flex;
        flex-direction: column;
    }

    /* Certificate visual */
    .certificate-section .cert-visual {
        background: #1a3a6b;
        padding: 20px;
        position: relative;
        flex: 1;
    }
    .certificate-section .cert-inner {
        border: 3px solid #4a7fc1;
        border-radius: 4px;
        padding: 18px 20px 22px;
        position: relative;
        background: #1e4480;
        box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
    }
    /* decorative scallop border via repeating radial gradient */
    .certificate-section .cert-visual::before {
        content: '';
        position: absolute;
        inset: 8px;
        border-radius: 4px;
        background:
        radial-gradient(circle at 0 0, transparent 6px, #2d5fa8 6px) top left,
        radial-gradient(circle at 100% 0, transparent 6px, #2d5fa8 6px) top right,
        radial-gradient(circle at 0 100%, transparent 6px, #2d5fa8 6px) bottom left,
        radial-gradient(circle at 100% 100%, transparent 6px, #2d5fa8 6px) bottom right;
        background-size: 12px 12px;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 1;
    }

    .certificate-section .cert-title-text {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        color: #c8d8f0;
        text-align: center;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    .certificate-section .cert-subtitle {
        font-size: 0.72rem;
        color: #8aaed4;
        text-align: center;
        margin-bottom: 6px;
        font-style: italic;
    }
    .certificate-section .cert-name {
        font-family: 'Great Vibes', cursive;
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        color: #e8c97a;
        text-align: center;
        margin-bottom: 10px;
    }
    .certificate-section .cert-lines {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin-bottom: 14px;
    }
    .certificate-section .cert-line {
        height: 3px;
        background: linear-gradient(90deg, transparent, #4a7fc1 20%, #4a7fc1 80%, transparent);
        border-radius: 2px;
    }
    .certificate-section .cert-line.short { width: 70%; margin: 0 auto; }
    .certificate-section .cert-line.shorter { width: 50%; margin: 0 auto; }

    /* fake body text lines */
    .certificate-section .cert-body-lines {
        display: flex;
        flex-direction: column;
        gap: 3px;
        margin: 8px 0 16px;
    }
    .certificate-section .cert-body-line {
        height: 2px;
        background: rgba(140,180,230,0.3);
        border-radius: 1px;
    }
    .certificate-section .cert-body-line:nth-child(odd)  { width: 100%; }
    .certificate-section .cert-body-line:nth-child(even) { width: 88%; }
    .certificate-section .cert-body-line:last-child      { width: 60%; }

    /* signatures row */
    .certificate-section .cert-sig-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 6px;
    }
    .certificate-section .cert-sig {
        text-align: center;
        flex: 1;
    }
    .certificate-section .cert-sig-name {
        font-family: 'Great Vibes', cursive;
        font-size: 1.1rem;
        color: #c8d8f0;
        line-height: 1;
    }
    .certificate-section .cert-sig-label {
        font-size: 0.58rem;
        color: #7aabd4;
        letter-spacing: 0.05em;
    }
    /* gold seal */
    .certificate-section .cert-seal {
        width: 46px; height: 46px;
        border-radius: 50%;
        background: radial-gradient(circle, #f4d03f, #d4a017);
        border: 3px solid #b8860b;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        margin: 0 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    }
    .certificate-section .cert-seal-text {
        font-family: 'Cinzel', serif;
        font-size: 0.5rem;
        color: #5a3e00;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
    }

    /* caption */
    .certificate-section .cert-caption {
        padding: 10px 20px;
        text-align: center;
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text);
        line-height: 1.4;
    }

    /* ── RIGHT: Info panel ── */
    .certificate-section .info-panel {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    /* section heading row */
    .certificate-section .panel-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text);
    }
    .certificate-section .panel-heading .head-icon {
        width: 38px; height: 38px;
        border-radius: 10px;
        background: var(--blue-bg);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .certificate-section .panel-heading .head-icon svg { color: var(--blue); width: 20px; height: 20px; }

    .certificate-section .panel-heading.orange .head-icon { background: var(--orange-bg); }
    .certificate-section .panel-heading.orange .head-icon svg { color: var(--orange); }

    /* 2×2 badge grid */
    .certificate-section .badge-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    @media (max-width: 400px) {
        .certificate-section .badge-grid { grid-template-columns: 1fr; }
    }

    .certificate-section .badge-pill {
        display: flex;
        align-items: center;
        gap: 9px;
        border-radius: 10px;
        padding: 13px 14px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    .certificate-section .badge-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

    .certificate-section .badge-pill.green {
        background: var(--green-bg);
        border: 1px solid var(--green-border);
        color: #166534;
    }
    .certificate-section .badge-pill.green svg { color: var(--green); }

    .certificate-section .badge-pill.orange {
        background: var(--orange-bg);
        border: 1px solid var(--orange-border);
        color: #9a3412;
    }
    .certificate-section .badge-pill.orange svg { color: var(--orange); }

    /* ── CTA ── */
    .certificate-section .cta-wrap {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    .certificate-section .cta-btn {
        background: #dc2626;
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        border-radius: 10px;
        padding: 18px 44px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        box-shadow: 0 6px 24px rgba(220,38,38,0.28);
        white-space: nowrap;
    }
    .certificate-section .cta-btn:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(220,38,38,0.35);
    }

    /* animations */
    .certificate-section .cert-card, .certificate-section .info-panel > * {
        animation: fadeUp 0.45s ease both;
    }
    .certificate-section .cert-card            { animation-delay: 0.05s; }
    .certificate-section .info-panel > *:nth-child(1) { animation-delay: 0.12s; }
    .certificate-section .info-panel > *:nth-child(2) { animation-delay: 0.22s; }
    .certificate-section .info-panel > *:nth-child(3) { animation-delay: 0.32s; }
    .certificate-section .info-panel > *:nth-child(4) { animation-delay: 0.42s; }
    .certificate-section .cta-wrap              { animation: fadeUp 0.45s ease 0.5s both; }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: translateY(0); }
    }    


    .pricing-section{
        background: var(--bg-dark);
        padding: 60px 0;
    }

    .pricing-section .section-wrap {
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }

    .pricing-section .section-title {
      font-size: clamp(1.6rem, 3vw, 3.2rem);
      font-weight: 900;
      text-align: center;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .pricing-section .section-sub {
      text-align: center;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 32px;
    }

    /* ── Pricing card ── */
    .pricing-section .pricing-card {
      background: #161d2b;
      border: 1px solid #232e42;
      border-radius: 22px;
      padding: 36px 36px 30px;
      position: relative;
      overflow: hidden;
      margin-bottom: 16px;
    }

    /* red-wine glow top-right */
    .pricing-section .pricing-card::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(180,20,20,0.35) 0%, transparent 70%);
      pointer-events: none;
    }

    @media (max-width: 480px) {
     .pricing-section  .pricing-card { padding: 28px 20px 24px; }
    }

    /* ── Limited time badge ── */
    .pricing-section .ltd-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #1e1010;
      border: 1px solid #5a1a1a;
      color: #f97316;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 50px;
      margin: 0 auto 26px;
      letter-spacing: 0.03em;
    }
    .pricing-section .ltd-wrap { text-align: center; }

    /* ── Feature list ── */
    .pricing-section .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
      margin-bottom: 18px;
    }
    @media (max-width: 500px) {
      .pricing-section .features-grid { grid-template-columns: 1fr; }
    }

    .pricing-section .feat-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 600;
      color: #d1d9e6;
      line-height: 1.4;
    }
    .pricing-section .feat-item .check-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pricing-section .feat-item .check-icon svg {
      width: 11px; height: 11px;
      color: #fff;
    }
    .pricing-section .feat-item.bold-item { font-weight: 700; color: #fff; }

    /* future courses row */
    .pricing-section .future-row {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 26px;
    }
    .pricing-section .future-row svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

    /* ── Pricing ── */
    .pricing-section .price-section { margin-bottom: 24px; }

    .pricing-section .original-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 6px;
    }
    .pricing-section .original-price {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--muted);
      text-decoration: line-through;
    }
    .pricing-section .discount-badge {
      background: transparent;
      border: 1.5px solid var(--green);
      color: var(--green);
      font-size: 0.72rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 6px;
      letter-spacing: 0.04em;
    }

    .pricing-section .current-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pricing-section .price-amount {
      font-size: clamp(3rem, 10vw, 4.5rem);
      font-weight: 900;
      color: var(--yellow);
      letter-spacing: -0.03em;
    }
    .pricing-section .price-period {
      font-size: 1rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 4px;
    }

    /* ── CTA button ── */
    .pricing-section .cta-btn {
      width: 100%;
      /* background: var(--red);
      color: #fff; */
      font-weight: 800;
      font-size: 1.1rem;
      border: none;
      border-radius: 12px;
      padding: 20px 28px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 6px 28px rgba(220,32,32,0.35);
      margin-bottom: 18px;
      letter-spacing: 0.01em;
    }
    .pricing-section .cta-btn:hover {
      /* background: var(--red-hover); */
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(220,32,32,0.45);
    }
    .pricing-section .cta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* ── Secure/instant row ── */
    .pricing-section .trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 500;
    }
    .pricing-section .trust-row svg { width: 13px; height: 13px; }
    .pricing-section .trust-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--muted);
      display: inline-block;
    }

    /* ── Guarantee card ── */
    .pricing-section .guarantee-card {
      background: var(--guarantee-bg);
      border: 1px solid var(--guarantee-border);
      border-radius: 16px;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 18px;
      max-width: fit-content;
      margin: 0 auto;
    }
    .pricing-section .g-icon {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: #14532d;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .pricing-section .g-icon svg { width: 26px; height: 26px; color: var(--green); }
    .pricing-section .g-title {
      font-size: 1rem;
      font-weight: 800;
      color: var(--green);
      margin-bottom: 4px;
    }
    .pricing-section .g-desc {
      font-size: 0.82rem;
      color: var(--muted);
      font-weight: 500;
      line-height: 1.45;
    }

    @media (max-width: 420px) {
      .pricing-section .guarantee-card { flex-direction: column; text-align: center; }
    }

    /* animations */
    .pricing-section .section-title, .pricing-section .section-sub, .pricing-section .pricing-card, .pricing-section .guarantee-card {
      animation: fadeUp 0.5s ease both;
    }
    .pricing-section .section-title  { animation-delay: 0.05s; }
    .pricing-section .section-sub    { animation-delay: 0.12s; }
    .pricing-section .pricing-card   { animation-delay: 0.20s; }
    .pricing-section .guarantee-card { animation-delay: 0.35s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }



    .final-cta-section{
        background: var(--gradient);
        padding: 45px 0;
    }
    .final-cta-section .section-wrap {
      width: 100%;
      text-align: center;
    }

    /* ── Heading ── */
    .final-cta-section .section-title {
      font-size: clamp(1.6rem, 3vw, 3.4rem);
      font-weight: 900;
      color: var(--text-white);
      line-height: 1.3;
      letter-spacing: -0.025em;
      margin-bottom: 10px;
    }

    /* ── Subtext ── */
    .final-cta-section .section-sub {
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      font-weight: 500;
      color: var(--bg);
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 20px;
    }

    /* ── CTA Button ── */
    .final-cta-section .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      /* background: var(--yellow); */
       font-weight: 800;
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      border: none;
      border-radius: 14px;
      padding: 22px 52px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 8px 32px rgba(245,197,24,0.25);
      letter-spacing: 0.01em;
      width: 100%;
      max-width: 580px;
      margin-bottom: 20px;
    }
    .final-cta-section .cta-btn:hover {
      /* background: var(--yellow-hover); */
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(245,197,24,0.35);
      color: #FFF;
    }
    .final-cta-section .cta-btn svg {
      width: 20px; height: 20px;
      flex-shrink: 0;
    }

    /* ── Trust badges row ── */
    .final-cta-section .trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px 28px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--muted);
    }
    .final-cta-section .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .final-cta-section .trust-item svg {
      width: 14px; height: 14px;
      flex-shrink: 0;
      opacity: 0.7;
    }

    /* animations */
    .final-cta-section .section-title { animation: fadeUp 0.5s ease 0.05s both; }
    .final-cta-section .section-sub   { animation: fadeUp 0.5s ease 0.15s both; }
    .final-cta-section .cta-btn       { animation: fadeUp 0.5s ease 0.25s both; }
    .final-cta-section .trust-row     { animation: fadeUp 0.5s ease 0.35s both; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* mobile */
    @media (max-width: 480px) {
      .final-cta-section .cta-btn { padding: 15px 18px !important; }
      .final-cta-section .trust-row { gap: 10px 18px; }
    }

    /* ── FAQ ── */
    .accordion-button { font-weight: 600; font-size: .95rem; background: #e3e4f9; border: solid 1px #ebecf9; }
    .accordion-button:not(.collapsed) { color: var(--brand); background: #eff6ff; }
    .accordion-item { border: 1px solid var(--border); border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; -webkit-border-radius: 10px !important; -moz-border-radius: 10px !important; -ms-border-radius: 10px !important; -o-border-radius: 10px !important; }




    .section-tools {
        padding: 60px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
        font-weight: 700;
        /* color: var(--text-dark); */
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
        /* color: var(--text-muted); */
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .tool-card {
        background: #ffffff;
        border: 1px solid var(--border-light);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: center;
        height: 100%;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: var(--card-shadow);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tool-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }

    .tool-icon-wrapper {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .icon-chatgpt { background-color: #f3f4f6; color: #374151; }
    .icon-gemini { background-color: #eff6ff; color: #3b82f6; }
    .icon-canva { background-color: #f3e8ff; color: #9333ea; }
    .icon-elevenlabs { background-color: #ecfdf5; color: #10b981; }

    .tool-name {
        font-size: 1.2rem;
        font-weight: 600;
        /* color: var(--text-dark); */
        margin-bottom: 0.5rem;
    }

    .tool-desc {
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 1.25rem;
        line-height: 1.5;
        flex-grow: 1;
    }

    .tool-link {
        color: var(--link-blue);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        transition: color 0.2s ease;
    }

    .tool-link:hover {
        color: var(--link-blue-hover);
    }

    .tool-link i {
        font-size: 0.85rem;
    }

    .disclaimer {
        text-align: center;
        margin-top: 2rem;
        font-size: 0.85rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .disclaimer i {
        font-size: 0.9rem;
    }




    .section-courses{
        background: var(--bg-dark);
        padding: 50px 0;
    }
    .section-courses .section-wrap {
      width: 100%;
      margin: 0 auto;
    }

    /* ── Header ── */
    .section-courses .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.3rem);
      font-weight: 800;
      text-align: center;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .section-courses .section-sub {
      text-align: center;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 30px;
    }

    /* ── Cards grid ── */
    .section-courses .courses-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    @media (max-width: 992px) {
    .section-courses   .courses-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
      .section-courses .courses-grid { grid-template-columns: 1fr; }
    }

    /* ── Course card ── */
    .section-courses .course-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 28px 22px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      transition: box-shadow 0.22s, transform 0.22s;
    }
    .section-courses .course-card:hover {
      box-shadow: 0 8px 32px rgba(59,91,219,0.10);
      transform: translateY(-3px);
    }

    /* featured card */
    .section-courses .course-card.featured {
      border-color: var(--featured-border);
    }
    .section-courses .course-card.featured:hover {
      box-shadow: 0 8px 32px rgba(224,48,48,0.12);
    }

    /* Start Here badge */
    .section-courses .start-badge {
      position: absolute;
      top: -1px;
      right: 20px;
      background: var(--red);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 0 0 10px 10px;
      display: flex;
      align-items: center;
      gap: 5px;
      letter-spacing: 0.03em;
    }

    /* icon box */
    .section-courses .icon-box {
      width: 60px; height: 60px;
      border-radius: 16px;
      background: var(--icon-bg);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }
    .section-courses .icon-box svg {
      width: 28px; height: 28px;
      color: var(--blue);
    }
    .section-courses .course-card.featured .icon-box {
      background: #fdecea;
    }
    .section-courses .course-card.featured .icon-box svg {
      color: var(--red);
    }

    /* card title */
    .section-courses .card-title {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    /* card desc */
    .section-courses .card-desc {
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.55;
      margin-bottom: 22px;
      flex: 1;
    }

    /* view course button */
    .section-courses .view-btn {
      width: 100%;
      background: var(--blue-btn-bg);
      color: var(--blue);
      border: none;
      border-radius: 10px;
      padding: 12px 20px;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.18s, color 0.18s;
      text-decoration: none;
    }
    .section-courses .view-btn:hover {
      background: var(--blue);
      color: #fff;
    }
    .section-courses .view-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

    /* featured view button */
    .section-courses .course-card.featured .view-btn {
      background: var(--red-bg);
      color: var(--red);
    }
    .section-courses .course-card.featured .view-btn:hover {
      background: var(--red);
      color: #fff;
    }

    /* animations */
    .section-courses .course-card {
      animation: fadeUp 0.45s ease both;
    }
    .section-courses .course-card:nth-child(1) { animation-delay: 0.05s; }
    .section-courses .course-card:nth-child(2) { animation-delay: 0.13s; }
    .section-courses .course-card:nth-child(3) { animation-delay: 0.21s; }
    .section-courses .course-card:nth-child(4) { animation-delay: 0.29s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }



/* Responsive */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    /* .hero-title {
        font-size: 2rem;
    } */

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 14px 24px;
    }

    .video-card {
        margin-top: 30px;
        aspect-ratio: 16/9;
    }

    .features-card {
        padding: 20px;
    }

    .stats-container {
        padding: 10px;
    }

    .stat-card {
        padding: 15px 8px;
    }

    .stat-number {
        font-size: 1.6rem;
    }
    .section-pain-points .section-title {
        font-size: 1.7rem;
    }
    .section-pain-points {
        padding: 40px 0;
    }
    .section-learn {
        padding: 30px 0;
    }
    .section-learn .section-title {
        font-size: 1.7rem;
    }
    .curriculum-section {
        padding: 25px 0;
    }
    .curriculum-section .cta-btn{
        padding: 18px 10px;
        width: 100%;
    }
    .section-wrapper {
        padding: 30px 0;
    }
    .deliverable-card{
        display: block !important;
    }
    .deliverable-title{
        margin-top: 10px;
    }
    .trust-bar{
        gap: 5px 20px !important;
    }
    .section-wrapper{
        padding: 30px 0 !important;
    }
    .cta-wrap{
        border:none;
    }
    .why-choose-section{
        padding: 30px 0;
    }
    .certificate-section {
       padding: 30px 0;
    }
    .certificate-section .cta-btn{
        padding: 18px 24px;
    }
    .section-heading{
        font-size: 1.6rem;
    }
    .final-cta-section{
        padding: 25px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-tools {
        padding: 30px 0;
    }
    .section-courses{
        padding: 30px 0;
    }
    .section-courses .section-sub{
        margin-bottom: 20px;
    }
    .pricing-section{
        padding: 30px 0;
    }
    .ai-banner-body {
        padding: 20px 0 20px 0;
    }
    .section-pain-points .btn-cta{
        padding: 1rem 0.5rem;
        font-size: 15px;
        width: 100%;
    }
    .section-pain-points .trust-badges{
        gap: 0.5rem 0.8rem;
    }
    .section-learn .btn-cta{
        padding: 1rem 0.5rem;
        font-size: 15px;
        width: 100%;
    }
    .hero-tags{
        margin-bottom: 5px !important;
    }
    .trust-badges{
        gap: 0.5rem 1rem;
    }
    .curriculum-section .section-meta{
        margin-bottom: 20px;
    }
    .curriculum-section .accordion-button{
        padding: 10px 12px;
    }
    .section-courses .courses-grid{
        gap: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Smooth animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


    
.section-wrapper {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.section-wrapper .cta-wrap{
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 10px;
    width: 100%;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* color: var(--accent-color); */
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    /* color: var(--primary-color); */
    line-height: 1.1;
    margin-bottom: 30px;
}

.certificate-image-wrapper {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
}

.certificate-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.image-caption {
    margin-top: 24px;
}

.image-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.image-caption p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.deliverable-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.deliverable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fef3e2 0%, #fde8cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.pain-section .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient2);
    color: var(--color-white);
    box-shadow: 0 10px 30px 0 rgba(253, 156, 40, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}
.pain-section .icon-box i{
    color: #FFF;
}

.deliverable-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.deliverable-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--badge-bg);
    color: var(--badge-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 6px;
}

.badge-item i {
    font-size: 0.75rem;
}


/* ── Trust Bar ── */
.trust-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 4px;
    }
 .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .82rem;
      color: var(--text-muted);
    }
.trust-item i { color: var(--orange); font-size: .95rem; }