/* ============================================
     DESIGN V2 — Editorial / Image-Forward
     Prefix: cpz-
     ============================================ */
  .cpz-wrap {
    --cpz-primary: #2563eb;
    --cpz-primary-dark: #1d4ed8;
    --cpz-secondary: #7c3aed;
    --cpz-accent: #f97316;
    --cpz-yellow: #facc15;
    --cpz-green: #16a34a;
    --cpz-dark: #05070f;
    --cpz-dark2: #0f172a;
    --cpz-text: #1e293b;
    --cpz-muted: #64748b;
    --cpz-light: #f8fafc;
    --cpz-border: #e2e8f0;
    --cpz-white: #ffffff;
    --cpz-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    --cpz-radius: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    color: var(--cpz-text);
    line-height: 1.6;
    background: var(--cpz-white);
    font-size: 18px;
  }

  .cpz-wrap * { box-sizing: border-box; }
  .cpz-wrap img { max-width: 100%; height: auto; display: block; }
  .cpz-wrap a { text-decoration: none; }

  /* ============ CONTAINER: MORE BREATHING ROOM ============ */
  .cpz-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 80px;
  }

  .cpz-container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
  }

  @media (max-width: 1400px) {
    .cpz-container,
    .cpz-container-wide {
      padding: 0 60px;
    }
  }

  @media (max-width: 1100px) {
    .cpz-container,
    .cpz-container-wide {
      padding: 0 44px;
    }
  }

  @media (max-width: 768px) {
    .cpz-container,
    .cpz-container-wide {
      padding: 0 28px;
    }
  }

  @media (max-width: 480px) {
    .cpz-container,
    .cpz-container-wide {
      padding: 0 20px;
    }
  }

  /* ============ HERO: FULL BLEED ============ */
  /* Background image is set inline on the element (reliable). Overlay via ::before. */
  .cpz-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    background-color: #05070f;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
  }

  .cpz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5,7,15,0.35) 0%, rgba(5,7,15,0.55) 55%, rgba(5,7,15,0.94) 100%);
  }

  .cpz-hero .cpz-container {
    padding-left: 100px;
    padding-right: 100px;
  }

  @media (max-width: 1400px) {
    .cpz-hero .cpz-container { padding-left: 60px; padding-right: 60px; }
  }

  @media (max-width: 1100px) {
    .cpz-hero .cpz-container { padding-left: 44px; padding-right: 44px; }
  }

  @media (max-width: 768px) {
    .cpz-hero .cpz-container { padding-left: 28px; padding-right: 28px; }
  }

  @media (max-width: 480px) {
    .cpz-hero .cpz-container { padding-left: 20px; padding-right: 20px; }
  }

  .cpz-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 70px;
    width: 100%;
  }

  .cpz-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 30px;
    backdrop-filter: blur(6px);
  }

  .cpz-hero h1 {
    margin: 0;
    font-size: clamp(46px, 6.4vw, 104px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 900;
    max-width: 1150px;
    color: #fff !important;
  }

  .cpz-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #facc15, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .cpz-hero-tag {
    margin-top: 26px;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
    color: var(--cpz-yellow);
  }

  .cpz-hero-desc {
    font-size: 22px;
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    line-height: 1.6;
  }

  .cpz-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 46px;
  }

  .cpz-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .cpz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 20px 36px;
    font-weight: 900;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    font-size: 19px;
    font-family: inherit;
    white-space: nowrap;
  }

  .cpz-btn:hover { transform: translateY(-3px); }

  .cpz-btn-primary { background: var(--cpz-primary); color: #fff; }
  .cpz-btn-primary:hover { background: var(--cpz-primary-dark); color: #fff; box-shadow: 0 16px 34px rgba(37,99,235,0.4); }
  .cpz-btn-whatsapp { background: #22c55e; color: #fff; }
  .cpz-btn-whatsapp:hover { color: #fff; box-shadow: 0 16px 34px rgba(34,197,94,0.4); }
  .cpz-btn-outline { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.5); }
  .cpz-btn-outline:hover { background: rgba(255,255,255,0.2); color: #fff; }
  .cpz-btn-accent { background: var(--cpz-accent); color: #fff; }
  .cpz-btn-accent:hover { color: #fff; box-shadow: 0 16px 34px rgba(249,115,22,0.4); }
  .cpz-btn-dark { background: var(--cpz-dark2); color: #fff; }
  .cpz-btn-dark:hover { color: #fff; }

  /* ============ STAT STRIP OVER HERO BOTTOM ============ */
  .cpz-stat-strip {
    position: relative;
    z-index: 3;
    background: var(--cpz-white);
    margin-top: -1px;
  }

  .cpz-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .cpz-stat-cell {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid var(--cpz-border);
  }

  .cpz-stat-cell:last-child { border-right: none; }

  .cpz-stat-num {
    font-size: 46px;
    font-weight: 900;
    color: var(--cpz-primary);
    letter-spacing: -0.03em;
  }

  .cpz-stat-label {
    margin-top: 8px;
    font-size: 17px;
    font-weight: 800;
    color: var(--cpz-muted);
  }

  /* ============ SECTION GENERIC ============ */
  .cpz-section { padding: 110px 0; }
  .cpz-section.cpz-tight { padding: 70px 0; }
  .cpz-section.cpz-dark {
    background: var(--cpz-dark2);
    color: #fff;
  }
  .cpz-section.cpz-light { background: var(--cpz-light); }

  .cpz-eyebrow-label {
    color: var(--cpz-primary);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .cpz-section.cpz-dark .cpz-eyebrow-label { color: var(--cpz-yellow); }

  .cpz-h2 {
    margin: 0;
    color: var(--cpz-dark);
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 900;
  }

  .cpz-section.cpz-dark .cpz-h2 { color: #fff; }

  .cpz-lead {
    margin: 20px 0 0;
    font-size: 21px;
    color: var(--cpz-muted);
    max-width: 760px;
    line-height: 1.7;
  }

  .cpz-section.cpz-dark .cpz-lead { color: rgba(255,255,255,0.78); }

  /* ============ INTRO: BIG IMAGE SPLIT ============ */
  .cpz-intro-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .cpz-intro-image {
    position: relative;
    min-height: 640px;
    background-color: #0f172a;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .cpz-intro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.1));
  }

  .cpz-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--cpz-light);
  }

  .cpz-rating-big {
    color: var(--cpz-accent);
    font-size: 28px;
    letter-spacing: 6px;
    margin-bottom: 24px;
  }

  .cpz-intro-text h2 {
    font-size: clamp(32px, 3.6vw, 48px);
    color: var(--cpz-dark);
    margin: 0 0 26px;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .cpz-intro-text p {
    font-size: 20px;
    color: var(--cpz-text);
    line-height: 1.75;
    white-space: pre-line;
  }

  /* ============ FULL BLEED IMAGE BREAK — FIXED CONTRAST ============ */
  .cpz-image-break {
    position: relative;
    height: 480px;
    background-color: #0b1220;
    background-position: right -80px center;
    background-size: auto 130%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* Strong scrim so text zone is always dark regardless of image content */
  .cpz-image-break::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg,
        rgba(5,7,15,0.97) 0%,
        rgba(5,7,15,0.94) 32%,
        rgba(5,7,15,0.72) 52%,
        rgba(5,7,15,0.35) 70%,
        rgba(5,7,15,0.05) 100%);
  }

  /* Extra vignette top/bottom to keep edges clean on any image */
  .cpz-image-break::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,7,15,0.25) 0%, rgba(5,7,15,0) 20%, rgba(5,7,15,0) 80%, rgba(5,7,15,0.35) 100%);
  }

  .cpz-image-break-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 34px 38px;
    background: rgba(5,7,15,0.38);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    backdrop-filter: blur(6px);
  }

  .cpz-image-break-content h3 {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.55);
  }

  .cpz-image-break-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin: 0;
  }

  @media (max-width: 980px) {
    .cpz-image-break {
      height: auto;
      min-height: 380px;
      padding: 50px 0;
      background-position: center center;
      background-size: cover;
    }
    .cpz-image-break::before {
      background: rgba(5,7,15,0.78);
    }
    .cpz-image-break-content {
      max-width: 100%;
    }
  }

  /* ============ OBJECTIVES: BIG BENTO ============ */
  .cpz-obj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .cpz-obj-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--cpz-radius);
    padding: 36px 28px;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .cpz-obj-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.11);
  }

  .cpz-obj-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--cpz-primary), var(--cpz-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
  }

  .cpz-obj-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 800;
  }

  .cpz-obj-card p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.6;
  }

  /* ============ VIDEO: HUGE CINEMATIC BANNER ============ */
  .cpz-video-banner {
    position: relative;
    height: 620px;
    border-radius: 0;
    overflow: hidden;
    display: block;
    background-color: #0f172a;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .cpz-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,7,15,0.85) 0%, rgba(5,7,15,0.2) 60%, rgba(5,7,15,0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 60px;
    color: #fff;
    text-align: center;
  }

  .cpz-play-btn {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    color: var(--cpz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
  }

  .cpz-video-banner:hover .cpz-play-btn { transform: scale(1.1); }

  .cpz-video-overlay strong {
    font-size: 28px;
    font-weight: 900;
    max-width: 640px;
  }

  /* ============ MAIN: SIDEBAR + TABS (LARGER) ============ */
  .cpz-main-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
  }

  .cpz-sidebar {
    position: sticky;
    top: 24px;
    background: var(--cpz-white);
    border: 1px solid var(--cpz-border);
    border-radius: var(--cpz-radius);
    box-shadow: var(--cpz-shadow);
    padding: 36px;
  }

  .cpz-sidebar h4 {
    margin: 0 0 22px;
    color: var(--cpz-dark);
    font-size: 26px;
    font-weight: 900;
  }

  .cpz-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
  }

  .cpz-info-list li {
    background: var(--cpz-light);
    border: 1px solid var(--cpz-border);
    border-radius: 16px;
    padding: 16px 18px;
  }

  .cpz-info-label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--cpz-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }

  .cpz-info-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--cpz-dark);
  }

  .cpz-sidebar-contact {
    margin-top: 28px;
    display: grid;
    gap: 12px;
  }

  .cpz-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 17px;
    color: #fff;
  }

  .cpz-contact-btn.cpz-call { background: #50ABC8; }
  .cpz-contact-btn.cpz-wa { background: #22c55e; }
  .cpz-contact-btn.cpz-ask { background: #386BC0; }

  /* ============ TABS NAV ============ */
  .cpz-tabs-nav {
    display: flex;
    gap: 10px;
    background: var(--cpz-white);
    border: 1px solid var(--cpz-border);
    border-radius: 999px;
    padding: 8px;
    box-shadow: var(--cpz-shadow);
    position: sticky;
    top: 24px;
    z-index: 5;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .cpz-tab-btn {
    flex: 1;
    text-align: center;
    padding: 16px 18px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 17px;
    color: var(--cpz-muted);
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    white-space: nowrap;
  }

  .cpz-tab-btn.active {
    background: var(--cpz-primary);
    color: #fff;
  }

  .cpz-tab-panel { display: none; }
  .cpz-tab-panel.active { display: block; }

  /* ============ COURSE MODULES (LARGER) ============ */
  .cpz-content-card {
    background: var(--cpz-white);
    border: 1px solid var(--cpz-border);
    border-radius: var(--cpz-radius);
    box-shadow: var(--cpz-shadow);
    overflow: hidden;
  }

  .cpz-module { border-bottom: 1px solid var(--cpz-border); }
  .cpz-module:last-child { border-bottom: none; }

  .cpz-module-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 30px 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }

  .cpz-module-header:hover { background: var(--cpz-light); }

  .cpz-module-title {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .cpz-module-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cpz-primary), var(--cpz-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    flex: 0 0 auto;
  }

  .cpz-module-title strong {
    font-size: 25px;
    color: var(--cpz-dark);
    font-weight: 900;
  }

  .cpz-module-chevron {
    font-size: 28px;
    color: var(--cpz-muted);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
  }

  .cpz-module.open .cpz-module-chevron { transform: rotate(180deg); color: var(--cpz-primary); }

  .cpz-module-body { display: none; padding: 4px 34px 36px; }
  .cpz-module.open .cpz-module-body { display: block; }

  .cpz-module-body h6 {
    margin: 28px 0 14px;
    color: var(--cpz-primary-dark);
    font-size: 18px;
    font-weight: 900;
  }
  .cpz-module-body h6:first-child { margin-top: 8px; }

  .cpz-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .cpz-sub-list li {
    background: var(--cpz-light);
    border: 1px solid var(--cpz-border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 17px;
    color: var(--cpz-text);
    line-height: 1.5;
  }

  /* ============ INSTRUCTOR: BIG PROFILE ============ */
  .cpz-instructor-card {
    background: var(--cpz-white);
    border: 1px solid var(--cpz-border);
    border-radius: var(--cpz-radius);
    box-shadow: var(--cpz-shadow);
    overflow: hidden;
  }

  .cpz-instructor-banner {
    height: 260px;
    background: linear-gradient(135deg, var(--cpz-primary), var(--cpz-secondary));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 40px;
  }

  .cpz-instructor-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpz-primary);
    font-size: 48px;
    font-weight: 900;
    transform: translateY(50%);
    box-shadow: var(--cpz-shadow);
  }

  .cpz-instructor-body {
    padding: 90px 44px 44px;
  }

  .cpz-instructor-body h3 {
    margin: 0 0 6px;
    color: var(--cpz-dark);
    font-size: 34px;
    font-weight: 900;
  }

  .cpz-instructor-body > span {
    color: var(--cpz-primary);
    font-weight: 800;
    font-size: 18px;
  }

  .cpz-instructor-bio {
    color: var(--cpz-text);
    font-size: 19px;
    line-height: 1.75;
    margin: 26px 0 32px;
  }

  .cpz-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    padding: 26px;
    background: var(--cpz-light);
    border: 1px solid var(--cpz-border);
    border-radius: 18px;
    margin-bottom: 36px;
  }

  .cpz-badge-row img { height: 68px; width: auto; }

  .cpz-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .cpz-two-col h5 {
    margin: 0 0 16px;
    color: var(--cpz-dark);
    font-size: 20px;
    font-weight: 900;
  }

  .cpz-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .cpz-check-list li {
    background: var(--cpz-light);
    border: 1px solid var(--cpz-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--cpz-text);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }

  .cpz-check-list li::before { content: "⭐"; flex: 0 0 auto; }

  /* ============ CLIENTS ============ */
  .cpz-clients-card {
    background: var(--cpz-white);
    border: 1px solid var(--cpz-border);
    border-radius: var(--cpz-radius);
    box-shadow: var(--cpz-shadow);
    padding: 44px;
  }

  .cpz-clients-card h4 {
    margin: 0 0 8px;
    color: var(--cpz-dark);
    font-size: 28px;
    font-weight: 900;
  }

  .cpz-clients-card > p {
    color: var(--cpz-muted);
    margin-bottom: 26px;
    font-size: 18px;
  }

  /* ============ FINAL CTA: FULL BLEED IMAGE ============ */
  .cpz-final-cta {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-color: #05070f;
    background-position: center 20%;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
  }

  .cpz-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5,7,15,0.7), rgba(5,7,15,0.92));
  }

  .cpz-final-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 90px 0;
  }

  .cpz-final-cta h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
  }

  .cpz-final-cta .cpz-lead {
    color: rgba(255,255,255,0.82);
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
  }

  .cpz-final-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 48px;
  }

  .cpz-logo-strip {
    margin-top: 60px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--cpz-radius);
    padding: 40px;
    backdrop-filter: blur(4px);
  }

  /* ============ MOBILE STICKY ============ */
  .cpz-mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--cpz-border);
    padding: 12px 14px;
    display: none;
    gap: 10px;
    backdrop-filter: blur(12px);
  }

  .cpz-mobile-sticky a {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
  }

  .cpz-mobile-sticky .cpz-wa { background: #22c55e; }
  .cpz-mobile-sticky .cpz-call { background: var(--cpz-primary); }
  .cpz-mobile-sticky .cpz-ask { background: var(--cpz-accent); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1180px) {
    .cpz-main-grid { grid-template-columns: 1fr; }
    .cpz-sidebar { position: static; }
    .cpz-obj-grid { grid-template-columns: repeat(2, 1fr); }
    .cpz-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .cpz-stat-cell:nth-child(2) { border-right: none; }
  }

  @media (max-width: 980px) {
    .cpz-intro-split { grid-template-columns: 1fr; }
    .cpz-intro-image { min-height: 380px; }
    .cpz-intro-text { padding: 50px 34px; }
    .cpz-two-col { grid-template-columns: 1fr; }
    .cpz-tabs-nav { position: static; overflow-x: auto; }
  }

  @media (max-width: 640px) {
    .cpz-wrap { font-size: 16.5px; }
    .cpz-section { padding: 64px 0; }
    .cpz-section.cpz-tight { padding: 46px 0; }
    .cpz-obj-grid { grid-template-columns: 1fr; }
    .cpz-hero { min-height: 100vh; }
    .cpz-hero-row { flex-direction: column; align-items: flex-start; }
    .cpz-mobile-sticky { display: flex; }
    .cpz-badge-row img { height: 48px; }
    .cpz-instructor-body { padding: 90px 24px 34px; }
    .cpz-video-banner { height: 420px; }
    .cpz-final-cta { min-height: 480px; }
    .cpz-stat-grid { grid-template-columns: 1fr; }
    .cpz-stat-cell { border-right: none; border-bottom: 1px solid var(--cpz-border); }
  }
