:root {
    --bg1: #2a0a6b;
    --bg2: #5a0c7c;
    --bg3: #8a0e7a;

    --bg-deep:    #1a0836;
    --bg-hero:    #2d0f5e;
    --bg-card:    #241248;
    --bg-card2:   #1e0d3e;
    --accent:     #f97316;
    --accent-2:   #a855f7;
    --green:      #22c55e;
    --text-muted: #c4b5d8;
    --border:     rgba(168,85,247,.25);

    --bg-page:      #fdf4ff;
    --purple:       #7e0092 !important;
    --purple-light: #ede9fe;
    --purple-icon:  #7e0092;
    --text-dark:    #111827;
    --text-body:    #374151;
    --text-muted:   #6b7280;
    --card-border:  #e5e7eb;
    --card-bg:      #ffffff;

    --purple-pill:  #ede9fe;
    --purple-badge: #7e0092;
    --header-bg:    #1e1b3a;
    --header-text:  #e2d9f3;
    --row-border:   #ede9fe;
    --highlight-bg: #faf5ff;

    --bg-purle-light:#fce4ff;
    --purple:      #7c3aed;
    --purple-dark: #2d0f5e;
    --green-bg:    #d1fae5;
    --green-icon:  #059669;

    --bg-dark: #0f172a;
    --card-bgs: #1e293b;
    /* --card-border: #334155; */
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --accent-pink: #d946ef;
    --accent-yellow: #fbbf24;
    --accent-purple: #a855f7;


    --bg-light: #fdf2f8;
    --card-bg2: #2a2740;
    --card-border2: #3d3855;
    --purples: #7c3aed;
    --purple-lights: #a78bfa;
    --pink: #d946ef;
    --green: #22c55e;
    --green-light: #4ade80;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-dark: #1e293b;


    --purple-dark: #6b21a8;
    --yellow: #fbbf24;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-muted: #94a3b8;
    --border-light: #e2e8f0;
    --border-purple: #c4b5fd;
    --purple-bg: #f3e8ff;
    --bg-white: #ffffff;
}

/* ── Hero Section ── */
    .hero-section {
        background: radial-gradient(1100px 600px at 15% 20%, #7c0aa0 0%, transparent 55%),
            radial-gradient(900px 520px at 85% 25%, #2b2a90 0%, transparent 55%),
            linear-gradient(135deg, var(--bg1), var(--bg2) 45%, var(--bg3));
        min-height: 100vh;
        /* display: grid; */
        place-items: center;
        position: relative;
        overflow: hidden;
        padding: 40px 0;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(168,85,247,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(249,115,22,.08) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ── Badge ── */
    .hero-section .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(168,85,247,.18);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .06em;
      color: #e2c9ff;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero-section .badge-pill {
        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-title .text-gradient {
        color: transparent;
        background-image: var(--gradient3);
        -webkit-background-clip: text;
        background-clip: text;
    }

    /* ── Headline ── */
    .hero-section .hero-title {
      /* color:#FFF; */
      font-size: clamp(1.8rem, 4vw, 3.3rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 10px;
    }
    .hero-section .hero-title .highlight { color: var(--accent); }

    .hero-section .hero-desc {
      color: var(--color-dark);
      font-weight: 600;
      font-size: 18px;
      line-height: 1.4;
      max-width: 520px;
      margin-bottom: 16px;
    }

    /* ── Feature List ── */
    .hero-section .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 24px;
      margin-bottom: 20px;
    }
    .hero-section .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #000;
    }
    .hero-section .feature-item i {
      font-size: 1.05rem;
      /* color: var(--text-white); */
      flex-shrink: 0;
    }
    .hero-section .feature-item::before{
        display: none;
    }

    /* ── CTA Row ── */
    .hero-section .cta-row {
      display: flex !important;
      align-items: center !important;
      /* flex-wrap: wrap !important; */
      gap: 16px;
      margin-bottom: 10px;
    }
    .hero-section .btn-enroll {
      /* background: var(--accent);
      color: #fff; */
      font-weight: 700;
      font-size: 18px;
      padding: 19px 28px;
      border-radius: 8px;
      border: none;
      white-space: nowrap;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 20px rgba(249,115,22,.35);
      margin-top: 0px;
      width: auto;
    }
    .hero-section .btn-enroll:hover { background: #ea6a0e; transform: translateY(-2px); color: #fff; }

    .hero-section .price-boxs {
        background: rgb(253 195 141 / 35%);
        border: 1px solid rgb(255 150 98);
        border-radius: 8px;
        padding: 5px 10px 5px 20px;
        text-align: center;
        min-width: 140px;
    }
    .hero-section .price-old {
      font-size: .8rem;
      color: #EF4444;
      text-decoration: line-through;
      text-align: left;
    }
    .hero-section .price-new {
      font-size: 1.8rem;
      font-weight: 800;
      color: #ff7a48;
      line-height: 1;
    }
    .hero-section .price-per { font-size: .78rem; color: #ff7a48; }

    /* ── Trust Bar ── */
    .hero-section .trust-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 8px;
    }
    .hero-section .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .hero-section .trust-item i { color: var(--accent-2); font-size: .95rem; }

    /* ── Video Card ── */
    .hero-section .video-cards {
      background: var(--bg-card);
      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;
    }
    .play-btn {
    position: relative;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--accent-2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 0 30px rgba(168,85,247,.5);
      transition: transform .2s, box-shadow .2s;
      flex-shrink: 0;
    }
    .play-btn:hover { transform: scale(1.08); box-shadow: 0 0 44px rgba(168,85,247,.7); }
    .play-btn i { font-size: 1.6rem; color: #fff; margin-left: 4px; }
    .video-label {
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
      text-align: center;
    }
    .video-hint { font-size: .8rem; color: var(--text-muted); text-align: center; }

    /* ── Courses Card ── */
    .hero-section .courses-card {
        background: #ffebe3;
        border: 1px solid rgb(255, 125, 74, 0.4);
        border-radius: 16px;
        padding: 24px 24px 14px 24px;
        margin-top: 16px;
    }
    .hero-section .courses-tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-2);
      text-align: center;
      margin-bottom: 18px;
    }
    .hero-section .course-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: .9rem;
        font-weight: 500;
        color: #000;
        border-bottom: 1px solid rgba(168,85,247,.12);
        background: transparent;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        box-shadow: none;
    }
    .hero-section .course-item:last-child { border-bottom: none; }
    .hero-section .course-item .ci-icon { font-size: 1rem; flex-shrink: 0; }
    .hero-section .ci-green  { color: var(--green); }
    .hero-section .ci-yellow { color: #facc15; }
    .hero-section .badge-current {
      margin-left: auto;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: rgba(168,85,247,.25);
      color: #7130b6;
      border: 1px solid rgba(168,85,247,.4);
      border-radius: 4px;
      padding: 2px 8px;
    }
    .hero-section .course-item.active { color: #000; font-weight: 600; }

    /* ── Section ── */
    .section-who {
      background: var(--bg-page);
      padding: 50px 0 !important;
    }

    /* ── Labels & Heading ── */
    .section-who .section-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 10px;
    }
    .section-who .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.25rem);
      font-weight: 800;
      /* color: var(--text-dark); */
      line-height: 1.2;
    }
    /* .section-who .section-title span { color: var(--purple); } */

    .learn-section::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;
    }

    /* ── Card ── */
    .section-who .persona-card {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      border-radius: 16px;
      padding: 28px 26px 30px;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .section-who .persona-card:hover {
      box-shadow: 0 8px 32px rgba(124,58,237,.12);
      transform: translateY(-3px);
    }

    /* ── Icon Box ── */
    .section-who .icon-box {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      /* background: var(--purple-light); */
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .section-who .icon-box i {
      font-size: 1.35rem;
      /* color: var(--purple-icon); */
      color: #FFF;
    }

    /* ── Card Title ── */
    .section-who .persona-title {
      font-size: 20px;
      font-weight: 700;
      /* color: var(--text-dark); */
      margin-bottom: 16px;
    }

    /* ── Bullet List ── */
    .section-who .persona-list {
      list-style: disc;
      padding-left: 0;
      margin: 0;
    }
    .section-who .persona-list li {
      font-size: .875rem;
      line-height: 1.4;
      color: var(--text-body);
      margin-bottom: 8px;
      list-style: none;
      display: flex;
    }
    .section-who .persona-list li .bi{
        padding-right: 0.6rem;
        position: relative;
        top: 0.2rem;
        color: #41be7d;
        font-size: 1.05rem;
        flex-shrink: 0;
    }
    .section-who .persona-list li:last-child { margin-bottom: 0; }

    .learn-section { padding: 40px 0; }

    /* ── Heading ── */
    .learn-section .section-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 10px;
    }
    .learn-section .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.25rem);
      font-weight: 800;
      /* color: var(--text-dark); */
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .learn-section .section-title span { 
        /* color: var(--purple);  */
    }
    .learn-section .section-sub {
      font-size: .95rem;
      color: var(--text-body);
      margin: 0 auto 20px 0;
      line-height: 1.65;
    }

    /* ── Learn Card ── */
    .learn-section .learn-card {
      background: var(--card-bg);
      border: 1.5px solid var(--card-border);
      border-radius: 14px;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .learn-section .learn-card:hover {
      box-shadow: 0 6px 24px rgba(124,58,237,.12);
      transform: translateY(-2px);
    }
    .learn-section .check-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .learn-section .check-circle i {
      font-size: 1.05rem;
      color: var(--green-icon);
    }
    .learn-section .learn-text {
      font-size: .925rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

    /* ── Bottom Banner ── */
    .learn-section .bottom-banner {
      background: var(--purple-dark);
      border-radius: 14px;
      padding: 16px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
      width: 550px;
      margin: 0px auto;
    }
    .learn-section .bottom-banner i { font-size: 1.2rem; color: #facc15; }
    .learn-section .bottom-banner span {
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .01em;
    }

    /* ── CTA Button ── */
    .learn-section .btn-enroll {
        /* background: var(--purple); */
        color: #fff;
        font-weight: 700;
        font-size: .95rem;
        padding: 18px 40px;
        border-radius: 50px;
        border: none;
        transition: background .2s, transform .15s;
        box-shadow: 0 4px 20px rgba(237, 144, 58, 0.35);
        display: flex;
        width: auto;
        align-items: center;
        justify-content: center;
        margin: 0px auto;
    }
    .learn-section .btn-enroll:hover {
      background: #6d28d9;
      transform: translateY(-2px);
      color: #fff;
    }

    .learn-section{
        /* background: var(--bg-purle-light); */
        position: relative;
    }

    .course-section {
        background: var(--bg-page);
        padding: 40px 0;
    }

    /* ── Heading ── */
    .course-section .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.2rem);
      font-weight: 800;
      /* color: var(--text-dark); */
      margin-bottom: 10px;
    }
    .course-section .section-title span { color: var(--purple); }
    .course-section .section-sub {
      font-size: .925rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      text-align: left !important;
    }

    /* ── Table Wrapper ── */
    .table-wrap {
      border: 1.5px solid var(--row-border);
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 24px rgba(124,58,237,.07);
    }

    /* ── Table ── */
    .curriculum-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
    }

    /* Header */
    .curriculum-table thead tr {
      /* background: var(--header-bg); */
      background: var(--gradient);
      color: #FFFF !important;
    }
    .curriculum-table thead th {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      /* color: var(--header-text); */
      color: #FFFF !important;
      padding: 16px 20px;
      border: none;
    }
    .curriculum-table thead th:first-child { width: 60px; }
    .curriculum-table thead th:last-child  { width: 90px; text-align: center; }

    /* Body rows */
    .curriculum-table tbody tr {
      border-bottom: 1.5px solid var(--row-border);
      transition: background .15s;
    }
    .curriculum-table tbody tr:last-child { border-bottom: none; }
    .curriculum-table tbody tr:hover { background: #faf7ff; }

    /* Highlight row */
    .curriculum-table tbody tr.highlight-row {
      background: var(--highlight-bg);
    }
    .curriculum-table tbody tr.highlight-row:hover { background: #f3eeff; }

    .curriculum-table tbody td {
      padding: 12px 20px;
      vertical-align: middle;
      font-size: .88rem;
      color: var(--text-body);
      border: none;
    }

    /* Row number */
    .row-num {
      font-size: .95rem;
      font-weight: 700;
      color: var(--text-muted);
    }
    .row-num.highlight { color: var(--purple); }

    /* Group name */
    .group-name {
      font-weight: 700;
      color: var(--text-dark);
      font-size: .9rem;
      white-space: nowrap;
    }
    .group-name.highlight { color: var(--purple); }

    /* Topics */
    .topics-text { color: var(--text-body); line-height: 1.5; }
    .topics-text.highlight { font-weight: 600; color: var(--text-dark); }

    /* Module badge */
    .module-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      border-radius: 50px;
      background: var(--purple-pill);
      color: var(--purple-dark);
      font-size: .82rem;
      font-weight: 700;
      padding: 0 10px;
    }
    .module-badge.filled {
      background: var(--purple-badge);
      color: #fff;
    }

    /* ── Note ── */
    .course-note {
      font-size: .82rem;
      color: var(--text-muted);
      font-style: italic;
      margin-top: 20px;
      padding: 0 4px;
      line-height: 1.6;
    }

    .hs-1 .hero-single {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    /* ── CTA ── */
    .btn-enroll {
      /* background: var(--purple);
      color: #fff; */
      font-weight: 700;
      font-size: .95rem;
      padding: 18px 44px;
      border-radius: 50px;
      border: none;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 20px rgba(124,58,237,.35);
      margin-top: 36px;
    }
    .btn-enroll:hover {
      background: var(--purple-dark);
      transform: translateY(-2px);
      color: #fff;
    }

    .feature-section{
        background-color: var(--bg-dark);
    }

    .feature-section .section-title {
        color: var(--accent-pink);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .main-heading {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .highlight-text {
        background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .feature-card {
        background-color: var(--card-bgs);
        border: 1px solid #334155;
        border-radius: 16px;
        padding: 1.5rem;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .icon-pink {
        background: rgba(217, 70, 239, 0.15);
        color: var(--accent-pink);
    }

    .icon-yellow {
        background: rgba(251, 191, 36, 0.15);
        color: var(--accent-yellow);
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-white);
    }

    .card-text {
        color: var(--text-gray);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .large-card .card-title {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-white);
    }

    .large-card .card-text {
        font-size: 1rem;
    }

    /* ========================
        CERTIFICATE & BONUSES
        ======================== */
    .section-certificate {
        /* background-color: var(--bg-light); */
        padding: 4rem 0;
    }

    .section-label {
        color: var(--pink);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .section-heading {
        font-size: 2.25rem;
        font-weight: 800;
        /* color: var(--text-dark); */
    }

    .highlight-pink {
        color: var(--pink);
    }

    /* Certificate Card */
    .certificate-card {
        background: var(--gradient);
        border-radius: 20px;
        padding: 2rem 2rem 1rem 2rem;
        color: white;
        height: 100%;
    }

    .certificate-img-wrapper {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .certificate-img-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

    .certificate-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
    }

    .cert-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .cert-feature i {
        color: var(--green-light);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    /* Bonuses Card */
    .bonuses-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid #e2e8f0;
        height: 100%;
    }

    .bonuses-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .free-badge {
        background: var(--purple);
        color: white;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        letter-spacing: 1px;
    }

    .bonuses-header h3 {
        font-size: 1.25rem;
        font-weight: 700;
        /* color: var(--text-dark); */
        margin: 0;
    }

    .bonus-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.875rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .bonus-item:last-child {
        border-bottom: none;
    }

    .bonus-name {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

    .bonus-value {
        color: var(--text-gray);
        font-size: 0.85rem;
        text-decoration: line-through;
    }

    .total-bonus-bar {
        /* background: var(--purple); */
        color: white;
        text-align: center;
        padding: 1rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.05rem;
        margin-top: 1rem;
    }

    /* ========================
        PRICING SECTION
        ======================== */
    .section-pricing {
        background-color: var(--bg-dark);
        padding: 3rem 0;
        position: relative;
    }

    .section-pricing::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 843px;
        left: 0px;
        top: 0px;
        background: linear-gradient(180deg, rgba(126, 0, 146, 0.1) 0%, rgba(126, 0, 146, 0) 100%);
    }
    .section-pricing .container{
        z-index: 1;
        position: relative;
    }

    .pricing-heading {
        color: white;
        font-size: 2rem;
        font-weight: 700;
    }

    .pricing-subtitle {
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    /* Pricing Card */
    .pricing-card {
        background-color: var(--card-bg2);
        border: 1px solid var(--card-border2);
        border-radius: 16px;
        padding: 2rem;
        color: white;
        height: 100%;
        position: relative;
    }

    .pricing-card.featured {
        border-color: var(--purple);
        border-width: 2px;
        background: #28163d;
    }

    .best-value-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--purple);
        color: white;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 0.35rem 1rem;
        border-radius: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .plan-name {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .plan-desc {
        color: var(--text-gray);
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .old-price {
        color: var(--text-gray);
        font-size: 0.9rem;
        text-decoration: line-through;
        margin-bottom: 0.25rem;
    }

    .current-price {
        font-size: 2.25rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.25rem;
    }

    .current-price span {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-gray);
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .feature-list li i {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .check-purple { color: var(--purple-lights); }
    .check-green { color: var(--green); }

    .pricing-card .btn-enroll {
        width: 100%;
        padding: 0.875rem;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        border: none;
        padding: 0.875rem 1.5rem;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
}

    .pricing-card .btn-outline-light-custom {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
    }

    .btn-outline-light-custom:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }

    .btn-purple {
        background: var(--purple);
        color: white;
    }

    .btn-purple:hover {
        background: #6d28d9;
        color: white;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        font-size: 0.65rem;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .trust-badges i {
        margin-right: 0.25rem;
    }

    .tagline {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--purple-lights);
        margin-bottom: 0.75rem;
    }

    /* Guarantee Box */
    .guarantee-box {
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--card-border2);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        color: white;
        max-width: 600px;
        margin: 2rem auto 0;
    }

    .guarantee-box i {
        color: var(--green);
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .guarantee-box h4 {
        color: var(--green);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .guarantee-box p {
        color: var(--text-gray);
        font-size: 0.9rem;
        margin: 0;
    }




    /* ========================
        HERO / CTA SECTION
        ======================== */
    .section-hero {
        padding: 3rem 0;
        background: var(--bg-white);
    }

    .section-hero .hero-badge {
        display: inline-block;
        background: var(--yellow);
        color: var(--text-dark);
        font-size: 0.7rem;
        font-weight: 800;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-hero .hero-title {
        font-size: 2.25rem;
        font-weight: 800;
        /* color: var(--text-dark); */
        margin-top: 1rem;
    }

    .section-hero .hero-title .highlight {
        color: var(--purple);
    }

    .section-hero .hero-subtitle {
        /* color: var(--text-gray); */
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-top: 0.2rem;
    }

    /* Course List */
    .section-hero .course-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .section-hero .course-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        border: 1px solid var(--border-light);
        border-radius: 10px;
        margin-bottom: 0.75rem;
        background: #FFF;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .section-hero .course-item.active {
        background: var(--purple-bg);
        border-color: var(--border-purple);
        color: var(--purple-dark);
        font-weight: 600;
    }

    .section-hero .course-item.future {
        background: #fef3c7;
        border-color: #fde68a;
    }

    .section-hero .course-item i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .section-hero .course-item .icon-check {
        color: var(--green);
    }

    .section-hero .course-item .icon-star {
        color: var(--purple);
    }

    .section-hero .course-item .icon-gift {
        color: var(--yellow);
    }

    /* Pricing CTA */
    .section-hero .pricing-cta {
        text-align: center;
        padding: 2rem 0;
    }

    .section-hero .old-price {
        color: var(--text-muted);
        font-size: 1.5rem;
        text-decoration: line-through;
        margin-bottom: 0.25rem;
    }

    .section-hero .current-price {
        font-size: 3rem;
        font-weight: 800;
        color: var(--purple);
        line-height: 1;
    }

    .section-hero .current-price span {
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-muted);
    }

    .section-hero .btn-cta {
        /* background: var(--purple); */
        color: white;
        border: none;
        border-radius: 50px;
        padding: 1rem 3rem;
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 0rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .section-hero .btn-cta:hover {
        background: var(--purple-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
        color: white;
    }

    .section-hero .trust-badges {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .section-hero .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.8rem;
        color: var(--text-gray);
    }

    .section-hero .trust-badge i {
        color: var(--text-muted);
    }

    .section-hero .quote-text {
        color: var(--text-gray);
        font-style: italic;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    /* ========================
        EXPLORE MORE SECTION
        ======================== */
    .section-explore {
        padding: 3rem 0;
        background: var(--bg-page);
    }

    .explore-label {
        color: var(--purple);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        border-left: 3px solid var(--purple);
        padding-left: 1rem;
    }

    .explore-title {
        font-size: 1.75rem;
        font-weight: 700;
        /* color: var(--text-dark); */
        padding-left: 1rem;
    }

    .explore-title .highlight {
        color: var(--purple);
    }

    .explore-subtitle {
        color: var(--text-gray);
        font-size: 0.9rem;
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    /* Course Cards */
    .course-card {
        background: var(--bg-white);
        border: 1px solid var(--border-light);
        border-radius: 16px;
        padding: 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .course-card.featured {
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        /* background: url('../../assets/img/wfh1.png') no-repeat center/cover; */
        color: white;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .course-card.featured::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        transform: translate(50%, -50%);
    }

    .flagship-badge {
        display: inline-block;
        background: var(--yellow);
        color: var(--text-dark);
        font-size: 0.6rem;
        font-weight: 800;
        padding: 0.3rem 0.75rem;
        border-radius: 4px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        width: 125px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: var(--purple-bg);
        color: var(--purple);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .course-card.featured .card-icon {
        background: rgba(255,255,255,0.15);
        color: white;
    }

    .course-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }

    .course-card p {
        font-size: 16px;
        color: var(--text-gray);
        line-height: 1.4;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .course-card.featured p {
        color: rgba(255,255,255,0.8);
    }

    .card-meta {
        display: flex;
        gap: 1.5rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .course-card.featured .card-meta {
        color: rgba(255,255,255,0.7);
    }

    .card-meta i {
        margin-right: 0.3rem;
    }

    .included-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .course-card.featured .included-badge {
        color: rgba(255,255,255,0.9);
    }

    .btn-explore {
        padding: 0.75rem;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.85rem;
        border: 1px solid var(--border-light);
        background: transparent;
        color: var(--purple);
        transition: all 0.3s ease;
    }

    .btn-explore:hover {
        background: var(--purple);
        color: white;
        border-color: var(--purple);
    }

    .btn-explore-light {
        background: white;
        color: var(--purple);
        border: none;
    }

    .btn-explore-light:hover {
        background: rgba(255,255,255,0.9);
        color: var(--purple);
    }

    /* Value Card */
    .value-card {
        background: #EBE7E7;
        border: 1px solid #D5C1D2;
        border-radius: 16px;
        padding: 1.5rem;
        height: 100%;
    }

    .value-card .value-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--purple);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .value-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .value-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
        color: var(--text-dark);
    }

    .value-list li i {
        color: #a754f7;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .value-price {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--purple);
        margin-bottom: 0.25rem;
    }

    .value-note {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* Bottom CTA */
    .bottom-cta {
        text-align: center;
        padding: 2rem 0 0rem;
    }

    .bottom-cta p {
        color: var(--text-gray);
        font-size: 0.95rem;
        max-width: 500px;
        margin: 0 auto 1.5rem;
        line-height: 1.6;
    }

    .btn-enroll-bottom {
        /* background: var(--purple); */
        color: white;
        border: none;
        border-radius: 50px;
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-enroll-bottom:hover {
        background: var(--purple-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
        color: white;
    }




    .faq-section {
        width: 100%;
        padding: 3rem 0 2rem 0;
        /* background: var(--bg-page); */
    }

    .faq-heading {
        font-size: 2.25rem;
        font-weight: 700;
        /* color: var(--text-dark); */
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .faq-heading .highlight {
        color: var(--purple);
    }

    .faq-subtitle {
        text-align: center;
        /* color: var(--text-gray); */
        /* font-size: 0.95rem; */
        margin-bottom: 1.5rem;
    }

    /* Custom Accordion Styling */
    .accordion-item {
        background: var(--card-bg);
        border: 1px solid var(--border-light);
        border-radius: 12px !important;
        margin-bottom: 0.6rem;
        overflow: hidden;
    }

    .accordion-item:first-of-type,
    .accordion-item:last-of-type {
        border-radius: 12px !important;
    }

    .accordion-button {
        background: var(--card-bg);
        color: var(--text-dark);
        font-size: 1rem;
        font-weight: 500;
        padding: 1.25rem 1.5rem;
        border: none;
        box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
        background: var(--card-bg);
        color: var(--text-dark);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-button .icon-toggle {
        margin-left: auto;
        font-size: 1.25rem;
        color: var(--text-dark);
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed) .icon-toggle {
        transform: rotate(45deg);
        color: var(--purple);
    }

    .accordion-body {
        padding: 0 1.5rem 1.25rem 1.5rem;
        color: var(--text-gray);
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* ── Responsive tweaks ── */
    @media (max-width: 767px) {
      .hero-section { padding: 40px 0 36px; }
      .feature-grid  { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
      .cta-row       { flex-direction: column; align-items: flex-start; }
      .btn-enroll    { width: 100%; text-align: center; padding: 17px 10px; }
      .price-boxs     { width: 100%; }
      .learn-section {
        padding: 30px 0;
      }
      .learn-section .section-sub{
        margin: 0 auto 10px 0;
      }
      .learn-section .bottom-banner{
        width: auto;
      }
      .course-section {
        padding: 34px 0;
     }
    .hs-1 .hero-single {
        padding-top: 105px !important;
        padding-bottom: 40px !important;
    }
    .section-who{
        padding: 30px 0 !important;
    }
    .main-heading {
        font-size: 1.5rem;
     }
     .section-certificate {
        padding: 2rem 0;
    }
    .section-heading {
        font-size: 1.5rem;
    }
    .section-pricing{
        padding: 2rem 0;
    }
    .pricing-heading {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    .faq-heading {
        font-size: 1.6rem;
    }
    .faq-section {
        padding: 2rem 0 2rem 0;
    }
    .faq-subtitle{
        margin-bottom: 1rem;
    }
    .accordion-item{
        margin-bottom: 0.3rem;
    }
    .section-hero .hero-title{
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    .section-hero {
        padding: 2rem 0;
    }
    .section-hero .pricing-cta{
        padding: 0rem 0;
    }
    .hero-section .btn-enroll {
      width: 100%;
    }
    .hero-section .trust-bar{
        gap: 10px;
    }
    .hero-section .price-old{
        text-align: center;
    }
    }
    @media (max-width: 400px) {
      .feature-grid { grid-template-columns: 1fr; }
    }