:root {
  --primary: #8B5CF6;
  --primary-gradient: linear-gradient(135deg, #A855F7, #6D28D9);
  --orange: #8B5CF6;
  --orange2: #A855F7;
  --dark: #F8FAFC;
  /* Light background */
  --card: #FFFFFF;
  /* White cards */
  --card2: #F1F5F9;
  /* Subtle off-white */
  --border: #E2E8F0;
  /* Soft border */
  --text: #0F172A;
  /* Dark navy text */
  --muted: #475569;
  /* Gray muted text */
  --green: #10B981;
  --blue: #8B5CF6;
  --gold: #F59E0B;
  --purple: #8B5CF6;
  --purple-light: #F3E8FF;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0A1420;
  border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}

/* ===== FONT AWESOME ICON STYLES ===== */
.fa-solid,
.fa-brands,
.fa-regular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav icons */
.mobile-nav a .fa-solid,
.mobile-nav a .fa-brands {
  width: 18px;
  color: var(--orange);
  font-size: 14px;
}

/* Hero feature list icons */
.feature-list li .icon .fa-solid,
.feature-list li .icon .fa-brands {
  font-size: 14px;
  color: var(--orange);
  width: 16px;
}

/* Roadmap title icons */
.roadmap-title .fa-solid,
.roadmap-title .fa-brands {
  color: var(--orange);
  margin-right: 6px;
  font-size: 15px;
}

/* Roadmap week milestone icon */
.roadmap-week .fa-solid {
  margin-right: 6px;
}

/* Plugin card header icons */
.plugin-card-head .fa-solid,
.plugin-card-head .fa-brands {
  color: var(--orange);
  margin-right: 6px;
  font-size: 15px;
}

/* Certification feature icons */
.cert-feat-icon .fa-solid,
.cert-feat-icon .fa-brands {
  font-size: 22px;
  color: var(--orange);
}

/* Company cert badge icons */
.ccb-icon .fa-solid,
.ccb-icon .fa-brands {
  font-size: 20px;
  color: var(--orange);
}

/* Enroll pills icons */
.enroll-pill .fa-solid,
.enroll-pill .fa-brands {
  font-size: 13px;
  color: var(--orange);
  margin-right: 4px;
}

/* Footer icons */
.footer-links li .fa-solid,
.footer-links li .fa-brands {
  color: var(--orange);
  width: 16px;
  font-size: 13px;
  margin-right: 4px;
}

.footer-bottom .fa-solid,
.footer-bottom .fa-brands {
  font-size: 12px;
  color: var(--orange);
  margin: 0 2px;
}

/* Table icons */
.compare-tbl th .fa-solid,
.compare-tbl th .fa-brands,
.tools-tbl th .fa-solid,
.tools-tbl th .fa-brands {
  margin-right: 5px;
  color: var(--orange);
}

/* FAQ button icons */
.btn-primary .fa-solid,
.btn-primary .fa-brands,
.btn-outline .fa-solid,
.btn-outline .fa-brands {
  margin-right: 6px;
  font-size: 15px;
}

/* Note pin icon */
.fa-thumbtack {
  color: var(--orange);
  font-size: 24px;
}

/* Cert logo area */
.cert-logo-area {
  font-size: 10px;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: #6D28D9;
  /* Deep Violet */
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding: 8px 20px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  position: relative;
  z-index: 1001;
  text-align: center;
}

.top-banner .banner-logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.top-banner span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.top-banner a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  padding: 2px 6px;
  border-radius: 4px;
}

.top-banner a:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  position: relative;
  overflow: hidden;
}

.logo-box::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.logo-placeholder {
  width: 44px;
  height: 44px;
  border: 2px dashed var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--orange);
  text-align: center;
  font-family: 'DM Mono', monospace;
  cursor: pointer;
  transition: background 0.2s;
}

.logo-placeholder:hover {
  background: rgba(139, 92, 246, 0.08);
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
}

.brand-name span {
  color: var(--orange);
}

.brand-tagline {
  font-size: 10px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
  background: rgba(139, 92, 246, 0.08);
}

.nav-enroll {
  background: var(--orange) !important;
  color: white !important;
  font-weight: 700 !important;
}

.nav-enroll:hover {
  background: var(--orange2) !important;
}

/* ===== CERTIFICATIONS BAR ===== */
.cert-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.cert-bar::before,
.cert-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.cert-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--card), transparent);
}

.cert-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--card), transparent);
}

.cert-bar-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  z-index: 3;
  background: var(--card);
  padding-right: 8px;
}

.cert-bar-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.cert-bar-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cert-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange2);
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
}

.cert-item .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0D0616 0%, #1A1229 60%);
  color: #FFFFFF;
  /* Essential for dark hero persistence */
}

.hero .hero-desc,
.hero .stat-label,
.hero .brand-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.hero .stat-num {
  color: #FFFFFF;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.5s infinite;
}

.hero-provider-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-provider-line strong {
  color: var(--primary);
  font-weight: 800;
}

.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-rating-val {
  font-size: 20px;
  font-weight: 800;
  color: #F5C518;
  text-shadow: 0 0 15px rgba(245, 197, 24, 0.3);
}

.hero-stars {
  color: #F5C518;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-rating-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.hero-badge-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.badge-pill i {
  color: var(--primary);
  font-size: 14px;
}

.badge-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.badge-pill.primary {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
}

.badge-pill.bestseller {
  border-color: rgba(202, 138, 4, 0.4);
  background: rgba(202, 138, 4, 0.15);
  color: #FCD34D;
}

.badge-pill.bestseller i {
  color: #FCD34D;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  padding-left: 4px;
}

.hero-meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-row span i {
  color: var(--primary);
  font-size: 15px;
}

.hero-meta-sep {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 .line2 {
  color: var(--orange);
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(139, 92, 246, 0.1);
}

/* Hero card */
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}

.price-display {
  text-align: center;
  margin-bottom: 24px;
}

.price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.price-new {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--orange);
  line-height: 1.2;
  display: block;
  white-space: nowrap;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.feature-list-premium {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.feature-list-premium li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.check-circle {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A855F7;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.hero-card .btn-primary {
  background: var(--primary-gradient);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.feature-list li .icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== TOC ===== */
.toc-section {
  padding: 60px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.toc-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sec-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 36px;
}

.sec-title span {
  color: var(--orange);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.toc-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

.toc-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  background: rgba(139, 92, 246, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
}

.toc-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

/* ===== WHAT YOU'LL LEARN ===== */
.learn-section {
  padding: 80px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.learn-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.learn-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.skill-tag {
  padding: 6px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}

.skill-tag:hover {
  background: var(--purple-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== ROADMAP ===== */
.roadmap-section {
  padding: 80px 40px;
  overflow: hidden;
}

.roadmap-inner {
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-timeline {
  position: relative;
  margin-top: 48px;
}

@keyframes moveLine {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 200%;
  }
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange) 0%, rgba(139, 92, 246, 0.1) 40%, var(--orange) 80%, rgba(139, 92, 246, 0.1) 100%);
  background-size: 100% 200%;
  animation: moveLine 4s linear infinite;
  border-radius: 4px;
}

.roadmap-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.roadmap-dot {
  width: 58px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.rdot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--orange);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.rdot.milestone {
  width: 28px;
  height: 28px;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 0 20px rgba(245, 197, 24, 0.3);
  margin-left: -3px;
}

.roadmap-content {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  flex: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.roadmap-content:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08);
}

.roadmap-week {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

.roadmap-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

.roadmap-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.rtag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--orange2);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ===== MODULES ===== */
.modules-section {
  padding: 80px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.modules-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.module-block {
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.module-block:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
}

.module-head {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  user-select: none;
}

.module-num-block {
  background: var(--orange);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  width: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-info {
  flex: 1;
  padding: 18px 24px;
}

.module-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  gap: 12px;
}

.module-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.module-toggle {
  padding: 0 24px;
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.3s;
}

.module-block.open .module-toggle {
  transform: rotate(180deg);
  color: var(--orange);
}

.module-body {
  display: none;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.module-block.open .module-body {
  display: block;
}

.module-cols {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
}

.topics-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.topics-ul {
  list-style: none;
}

.topics-ul li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.topics-ul li:last-child {
  border-bottom: none;
}

.topics-ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
  top: 8px;
}

.tools-panel {
  background: var(--card2);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}

.tool-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E0E0E0;
}

.tool-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tool-type {
  font-size: 10px;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.t-ai {
  background: rgba(59, 158, 255, 0.15);
  color: var(--blue);
}

.t-free {
  background: rgba(0, 208, 132, 0.15);
  color: var(--green);
}

.t-paid {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
}

.tool-name {
  font-size: 13px;
  color: #ddd;
  font-weight: 500;
}

.tool-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Part sections inside module */
.part-block {
  margin-bottom: 24px;
}

.part-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PLUGINS / TOOLS REFERENCE SECTION ===== */
.plugins-section {
  padding: 80px 40px;
}

.plugins-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.plugin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.plugin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.3);
}

.plugin-card-head {
  padding: 14px 18px;
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plugin-rows {
  padding: 4px 0;
}

.plugin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  border-bottom: 1px solid #181818;
  font-size: 13px;
  color: #ddd;
}

.plugin-row:last-child {
  border-bottom: none;
}

.badge-free {
  background: rgba(0, 208, 132, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge-paid {
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== COMPARISON ===== */
.compare-section {
  padding: 80px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.compare-inner {
  max-width: 900px;
  margin: 0 auto;
}

.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.compare-tbl th {
  padding: 18px 22px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: var(--card2);
  border-bottom: 2px solid var(--orange);
  text-align: left;
}

.compare-tbl th:nth-child(2) {
  color: #8B5CF6;
}

.compare-tbl th:nth-child(3) {
  color: var(--blue);
}

.compare-tbl td {
  padding: 14px 22px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
}

.compare-tbl tr:last-child td {
  border-bottom: none;
}

.compare-tbl tr:hover td {
  background: rgba(20, 184, 166, 0.03);
}

.compare-tbl td:first-child {
  color: var(--text);
  font-weight: 600;
}

/* ===== TOOLS REFERENCE ===== */
.tools-section {
  padding: 80px 40px;
}

.tools-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tools-tbl {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}

.tools-tbl th {
  padding: 14px 20px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: var(--card2);
  border-bottom: 2px solid var(--orange);
  text-align: left;
}

.tools-tbl th:nth-child(2) {
  color: var(--blue);
}

.tools-tbl th:nth-child(3) {
  color: var(--green);
}

.tools-tbl th:nth-child(4) {
  color: var(--gold);
}

.tools-tbl td {
  padding: 11px 20px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
}

.tools-tbl tr:last-child td {
  border-bottom: none;
}

.tools-tbl tr:hover td {
  background: rgba(20, 184, 166, 0.03);
}

.tools-tbl td:first-child {
  color: var(--text);
  font-weight: 600;
}

/* ===== CERTIFICATION ===== */
.cert-section {
  padding: 80px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

/* CERTIFICATE MOCK */
.cert-mock {
  background: #FFFFFF;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.cert-mock::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  pointer-events: none;
}

.cert-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--primary);
  border-style: solid;
  opacity: 0.3;
}

.cert-corner.tl {
  top: 18px;
  left: 18px;
  border-width: 2px 0 0 2px;
}

.cert-corner.tr {
  top: 18px;
  right: 18px;
  border-width: 2px 2px 0 0;
}

.cert-corner.bl {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 2px 2px;
}

.cert-corner.br {
  bottom: 18px;
  right: 18px;
  border-width: 0 2px 2px 0;
}

.cert-logo-area {
  width: 110px;
  height: 110px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 9px;
  color: var(--primary);
  font-family: 'DM Mono', monospace;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  background: white;
}

.cert-issued {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.cert-title-big {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.cert-presented {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.cert-name-line {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.cert-course {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 20px;
}

.cert-sigs {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.cert-sig {
  text-align: center;
}

.cert-sig-line {
  width: 80px;
  height: 1px;
  background: rgba(139, 92, 246, 0.4);
  margin: 0 auto 6px;
}

.cert-sig-label {
  font-size: 10px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.cert-stamp {
  position: absolute;
  bottom: 30px;
  right: 36px;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(20, 184, 166, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-family: 'DM Mono', monospace;
  color: var(--orange);
  text-align: center;
  line-height: 1.4;
  opacity: 0.7;
}

/* Cert features */
.cert-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.cert-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.cert-feat:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.cert-feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cert-feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: #8B5CF6;
}

.cert-feat-icon svg.linkedin-svg {
  fill: #8B5CF6;
  stroke: none;
}

.cert-feat-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.cert-feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Official Certs Gallery */
.official-certs-section {
  margin-top: 60px;
}

.official-certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.official-cert-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.official-cert-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.occ-head {
  padding: 20px 24px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.occ-head i {
  color: var(--primary);
  font-size: 16px;
}

.occ-body {
  padding: 24px;
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 400px;
}

.occ-img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recognition-badges-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.rec-badge-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.rec-badge-item:hover {
  border-color: var(--primary);
  background: var(--purple-light);
}

.rbi-icon {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 4px;
}

.rbi-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--text);
}

.rbi-sub {
  font-size: 9px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .official-certs-grid {
    grid-template-columns: 1fr;
  }

  .recognition-badges-row {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 40px;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.review-card::before {
  display: none;
}

.review-quote-icon {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  color: rgba(20, 184, 166, 0.25);
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--card2);
  border: 1px solid var(--border);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.reviewer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.reviewer-role {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.reviews-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.rstat {
  flex: 1;
  min-width: 160px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.rstat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.rstat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--orange);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li {
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/* ===== ENROLL CTA ===== */
.enroll-section {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(160deg, #FDFCFE, #F3E8FF);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.enroll-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.enroll-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
  position: relative;
}

.enroll-section h2 span {
  color: var(--orange);
}

.enroll-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
  position: relative;
}

.enroll-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.enroll-pill {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--orange2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: rgba(20, 184, 166, 0.4);
}

.faq-item.faq-open {
  border-color: rgba(20, 184, 166, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  font-weight: 700;
  line-height: 1;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin: 0 22px;
  margin-bottom: 20px;
}

.faq-item.faq-open .faq-answer {
  display: block;
}

.faq-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.faq-still {
  margin-top: 60px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-still-text h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
}

.faq-still-text p {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 14px 16px 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-bg-text {
    font-size: 90px;
    opacity: 0.025;
    top: 0;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: 34px !important;
    line-height: 1.05;
    margin-bottom: 6px;
  }

  .hero-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #4B5563;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 10px;
    background: rgba(20, 184, 166, 0.06);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 10px;
    padding: 8px 4px;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(20, 184, 166, 0.15);
  }

  .stat-item:last-child {
    border-right: none;
  }

  .stat-num {
    font-size: 18px !important;
    display: block;
  }

  .stat-label {
    font-size: 9px;
    color: var(--muted);
  }

  .hero-card {
    display: none;
  }

  .offer-timer-mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(10, 150, 130, 0.06));
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 10px;
    padding: 9px 14px;
    margin-bottom: 10px;
  }

  .offer-timer-mobile .otm-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--orange);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
  }

  .offer-timer-mobile .otm-boxes {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .offer-timer-mobile .otm-box {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 6px;
    padding: 4px 6px;
    text-align: center;
    min-width: 38px;
  }

  .offer-timer-mobile .otm-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--orange);
    display: block;
    line-height: 1;
  }

  .offer-timer-mobile .otm-unit {
    font-family: 'DM Mono', monospace;
    font-size: 7.5px;
    color: #999;
    display: block;
    margin-top: 1px;
  }

  .offer-timer-mobile .otm-sep {
    font-weight: 800;
    color: rgba(20, 184, 166, 0.6);
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }

  .toc-section,
  .roadmap-section,
  .modules-section,
  .plugins-section,
  .compare-section,
  .tools-section,
  .cert-section,
  .reviews-section,
  .faq-section,
  .enroll-section,
  .footer {
    padding: 48px 20px;
  }

  .sec-title {
    font-size: 28px;
  }

  .module-cols {
    grid-template-columns: 1fr;
  }

  .module-name {
    font-size: 14px;
    line-height: 1.3;
  }

  .compare-inner,
  .tools-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-tbl,
  .tools-tbl {
    min-width: 520px;
  }

  .plugin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-mock {
    padding: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-still {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cert-bar {
    padding: 10px 16px;
  }

  .enroll-section .btn-primary {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    font-size: 17px;
    padding: 16px 24px;
  }

  .reviews-stat-row {
    gap: 10px;
  }

  .rstat {
    min-width: 140px;
  }
}

/* ===== HAMBURGER MOBILE NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--border);
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger:hover {
  background: rgba(139, 92, 246, 0.1);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 247, 250, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav a.mobile-enroll {
  background: var(--orange);
  color: white !important;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  text-align: center;
  margin-top: 20px;
  font-weight: 700;
}

.mobile-nav a.mobile-enroll:hover {
  background: var(--orange2);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .plugin-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat-num {
    font-size: 22px;
  }

  .rstat-num {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .company-certs {
    flex-direction: column;
  }

  .company-cert-badge {
    min-width: unset;
  }

  .module-num-block {
    width: 48px;
    min-height: 48px;
    font-size: 14px;
  }
}

/* ===== COUNTDOWN TIMER ===== */
.offer-timer {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(10, 150, 130, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.timer-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.timer-label .fa-fire {
  color: #ff4500;
  margin-right: 5px;
  animation: flicker 1.2s infinite alternate;
}

@keyframes flicker {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

.timer-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tbox {
  background: var(--dark);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tbox span:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}

.tunit {
  font-family: 'DM Mono', monospace;
  font-size: 9px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

.tsep {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ===== STICKY BOTTOM ENROLL BAR ===== */
.sticky-enroll {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #001412, #0f0f0f);
  border-top: 2px solid var(--orange);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(139, 92, 246, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-enroll.show {
  transform: translateY(0);
}

.sticky-enroll-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-enroll-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}

.sticky-enroll-price span {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.sticky-enroll-timer {
  font-size: 12px;
  color: #bbb;
  font-family: 'DM Mono', monospace;
}

.sticky-enroll-timer .fa-clock {
  color: var(--orange);
  margin-right: 4px;
}

.sticky-enroll-btn {
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  animation: pulse-enroll 2s infinite;
}

.sticky-enroll-btn:hover {
  background: var(--orange2);
  transform: scale(1.04);
  animation: none;
}

@keyframes pulse-enroll {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(20, 184, 166, 0);
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--card);
  color: var(--orange);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 90px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================================
   ENROLLMENT MODAL SECTION
   ============================================================ */

/* ============================================================
   ENROLLMENT MODAL SECTION (PROFESSIONAL REDESIGN)
   ============================================================ */

.enroll-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 6, 22, 0.9);
  /* Darker purple-tinted overlay */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px;
}

.enroll-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.enroll-section {
  background: #FFFFFF;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1040px;
  transform: translateY(40px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
  margin: auto;
}

.enroll-modal-overlay.active .enroll-section {
  transform: translateY(0) scale(1);
}

.enroll-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #F3F4F6;
  border: none;
  color: #6B7280;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 50;
}

.enroll-modal-close:hover {
  background: #E5E7EB;
  color: #111827;
}

.enroll-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
}

/* --- Left Column --- */
.enroll-left {
  padding: 24px 30px;
  background: #F9FAFB;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enroll-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.enroll-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 400px;
}

.enroll-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.ep-old {
  font-size: 18px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}

.ep-new {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #111827;
  letter-spacing: -0.01em;
}

.enroll-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.enroll-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  color: #374151;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.enroll-pill svg {
  color: var(--primary);
  stroke-width: 2.5;
}

.enroll-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.enroll-trust span {
  font-size: 11px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  white-space: nowrap;
}

/* --- Right Column: Form Card --- */
.enroll-form-card {
  background: #FFFFFF;
  border-left: 1px solid #E5E7EB;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.enroll-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 5;
}

.efc-header {
  margin-bottom: 16px;
  text-align: center;
  padding: 0;
  background: none;
  border: none;
}

.efc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #111827;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.efc-subtitle {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

#enrollForm {
  padding: 0;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.req {
  color: #EF4444;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 14px;
  color: #1F2937;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  outline: none;
}

.input-wrap input:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.input-wrap input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.input-prefix {
  position: static;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 14px 12px;
  color: #64748B;
  font-size: 14px;
  font-weight: 700;
}

.input-wrap:has(.input-prefix) input {
  border-radius: 0 12px 12px 0;
}

.btn-enroll-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
}

.btn-enroll-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -10px rgba(139, 92, 246, 0.5);
  filter: brightness(1.1);
}

.btn-enroll-submit:active:not(:disabled) {
  transform: translateY(0);
}

.form-note {
  font-size: 12px;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
}

.form-error-global {
  background: #FEF2F2;
  border: 1.5px solid #FEE2E2;
  color: #B91C1C;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Modal Responsive */
@media (max-width: 992px) {
  .enroll-inner {
    grid-template-columns: 1fr;
  }

  .enroll-left {
    display: none;
  }

  .enroll-form-card {
    border-left: none;
    padding: 50px 30px;
  }

  .enroll-section {
    max-width: 500px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .enroll-section {
    max-width: 100%;
    margin: 10px;
  }

  .enroll-form-card {
    padding: 40px 20px;
  }
}

/* --- Mobile Responsive --- */
@media (max-width: 920px) {
  .enroll-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .enroll-section::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .enroll-section {
    padding: 56px 20px;
  }

  .enroll-form-card {
    border-radius: 16px;
  }

  #enrollForm {
    padding: 20px 18px;
  }

  .efc-header {
    padding: 18px 18px 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ep-new {
    font-size: 36px;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }

  .hero-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 12px;
    padding: 12px 15px;
  }

  .navbar {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 40px 20px;
    text-align: left;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .stat-item {
    flex: 1;
    min-width: 40%;
  }

  .hero-card {
    padding: 30px 20px;
  }

  .toc-section {
    padding: 60px 20px;
  }

  .sec-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .roadmap-section {
    padding: 60px 20px;
  }

  .modules-section {
    padding: 60px 20px;
  }

  .module-cols {
    grid-template-columns: 1fr;
  }

  .dm-cert-grid,
  .da-cert-grid,
  .qa-cert-grid,
  .uiux-cert-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recog-section {
    padding: 60px 20px;
  }

  .recog-large-cards {
    grid-template-columns: 1fr;
  }

  .recog-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-stat-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .rstat {
    flex: 1;
    min-width: 40%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 60px 20px 100px;
  }

  .sticky-enroll {
    padding: 12px 20px;
    gap: 15px;
  }

  .sticky-enroll-price {
    font-size: 20px;
  }

  .sticky-enroll-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-provider-line {
    font-size: 12px;
  }

  .recog-badges-grid {
    grid-template-columns: 1fr;
  }

  .rstat {
    min-width: 100%;
  }

  .compare-tbl-wrap {
    overflow-x: auto;
  }
}

/* ── Extra-small mobile: comprehensive 480px additions ── */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 30px 16px; }
  .hero h1 { font-size: 26px !important; letter-spacing: -0.5px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { font-size: 14px; padding: 12px 18px; }
  .hero-stats { gap: 12px; }
  .stat-num-lg { font-size: 28px; }

  /* Section headings */
  .sec-title { font-size: 22px !important; margin-bottom: 18px; }

  /* Sections */
  .toc-section, .roadmap-section, .modules-section,
  .recog-section, .faq-section, .certification-section,
  .reviews-section { padding: 40px 16px; }

  /* Module blocks */
  .module-block { border-radius: 10px; }
  .module-head { padding: 14px 16px; font-size: 14px; }
  .module-body { padding: 0 16px 16px; }

  /* Cards */
  .review-card { padding: 20px; border-radius: 10px; }
  .faq-question { font-size: 15px; padding: 16px; }

  /* Sticky enroll bar */
  .sticky-enroll { padding: 10px 16px; gap: 8px; }
  .sticky-enroll-price { font-size: 18px; }
  .sticky-enroll-btn { padding: 10px 14px; font-size: 13px; }
  .sticky-enroll-timer { font-size: 11px; }

  /* Enroll modal */
  .enroll-modal-section { padding: 48px 16px 24px; }
  .enroll-modal-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 20px; }
  .enroll-form-title { font-size: 20px; }

  /* Footer */
  .footer { padding: 40px 16px 90px; }
  .footer-bottom { font-size: 11px; }

  /* Scroll-to-top — above WA button */
  .scroll-top-btn { bottom: 150px; right: 14px; }

  /* Top banner */
  .top-banner { font-size: 11px; padding: 10px 12px; }
}

/* ============================================================
   MOBILE COMPREHENSIVE FIX — GROWAI UIUX
   ============================================================ */

/* Promo banner: single line on mobile */
@media (max-width: 768px) {
  .top-banner {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 9px 16px !important;
    font-size: 12px !important;
    flex-wrap: nowrap !important;
  }
  .top-banner span {
    display: inline !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    flex-wrap: nowrap !important;
  }
  .top-banner a {
    display: none !important;
  }
}

/* Mobile nav: full-screen overlay */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* Hero fixes on small screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px !important;
    line-height: 1.1;
  }
  .hero-desc {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 15px;
  }
  .hero-provider-line {
    font-size: 11px;
  }
}

/* Enroll modal: bottom sheet on mobile */
@media (max-width: 600px) {
  .enroll-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .enroll-section {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .enroll-left {
    display: none;
  }
  .enroll-form-card {
    padding: 24px 20px 32px;
    border-left: none;
    border-radius: 20px 20px 0 0;
  }
}

/* Sticky enroll bar safe area */
@media (max-width: 768px) {
  .sticky-enroll {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

/* Reviews single column on small screens */
@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Disable hover transforms on mobile */
@media (max-width: 768px) {
  .roadmap-content:hover {
    transform: none;
  }
  .roadmap-content {
    padding: 16px 18px;
  }
  .roadmap-item {
    gap: 12px;
  }
}

/* ============================================================
   COMPACT ENROLLMENT FORM — mobile (submit visible w/o scroll)
   ============================================================ */
@media (max-width: 640px) {
  .efc-header {
    margin-bottom: 10px !important;
    padding: 14px 18px 8px !important;
  }
  .efc-title {
    font-size: 18px !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }
  .efc-subtitle {
    font-size: 11px !important;
  }
  #enrollForm {
    padding: 10px 16px 12px !important;
  }
  #enrollForm .form-group {
    margin-bottom: 8px !important;
  }
  #enrollForm .form-group label {
    margin-bottom: 3px !important;
    font-size: 11px !important;
  }
  #enrollForm .input-wrap input,
  #enrollForm .input-wrap select {
    padding: 9px 12px !important;
    font-size: 14px !important;
  }
  #enrollForm .btn-enroll-submit {
    padding: 12px !important;
    font-size: 15px !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
  }
}


/* ============================================================
   ENROLL MODAL — centered card on ALL screen sizes (like DA)
   ============================================================ */
@media (max-width: 960px) {
  .enroll-modal-overlay {
    padding: 20px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-y: auto !important;
  }
  .enroll-section {
    border-radius: 20px !important;
    max-height: none !important;
    width: 100% !important;
    max-width: 440px !important;
    overflow: visible !important;
    margin: auto !important;
  }
  .enroll-form-card {
    border-radius: 16px !important;
  }
  .efc-header {
    border-radius: 16px 16px 0 0 !important;
  }
}

/* Fix: tel input left padding overridden by mobile compact CSS */
@media (max-width: 640px) {
  #enrollForm .input-wrap input[type="tel"] {
    padding-left: 50px !important;
  }
  .input-prefix {
    left: 14px !important;
    font-size: 14px !important;
  }
}

/* ============================================================
   MARQUEE REVIEWS - infinite scroll, no photos, gradient names
   ============================================================ */
.reviews-marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.reviews-marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
  margin-bottom: 20px;
}
.reviews-marquee-row.row-1 { animation: marquee-left  38s linear infinite; }
.reviews-marquee-row.row-2 { animation: marquee-right 42s linear infinite; }
@keyframes marquee-left  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marquee-right { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.reviews-marquee-row:hover { animation-play-state: paused; }
.mrev-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 22px;
}
.mrev-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.mrev-text  { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.mrev-author { display: flex; align-items: center; gap: 12px; }
.mrev-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.mrev-name { font-size: 13px; font-weight: 700; }
.mrev-role { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }

/* ============================================================
   UIUX MOBILE FIXES - match N8N behaviour
   ============================================================ */
@media (max-width: 640px) {
  /* Hide description text on mobile */
  .hero-desc {
    display: none !important;
  }
  /* Sticky bar always visible on mobile */
  .sticky-enroll {
    transform: translateY(0) !important;
  }
  body {
    padding-bottom: 72px;
  }
  /* Fix sticky price color */
  .sticky-enroll-price [data-price],
  .sticky-enroll-price span[data-price] {
    color: #0D1B2A !important;
    font-weight: 800;
  }
  .sticky-enroll-price > span:not([data-price]) {
    color: #64748B !important;
  }
  /* Hero stars - ensure gold color */
  .hero-stars {
    color: #F5C518 !important;
    font-size: 16px !important;
  }
}

/* ============================================================
   MARQUEE REVIEWS — light theme override
   ============================================================ */
.mrev-card {
  background: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.mrev-text {
  color: #475569 !important;
}
.mrev-role {
  color: #94A3B8 !important;
}
.reviews-section {
  background: #F8FAFC;
}


/* === Mobile: prevent enroll button text wrapping === */
@media (max-width: 640px) {
  .btn-enroll-submit { font-size: 13px !important; white-space: nowrap !important; overflow: hidden !important; }
  #enrollBtnText { font-size: 13px !important; white-space: nowrap !important; }
}

/* ============================================================
   UIUX HERO — MOBILE REDESIGN (DA-style)
   ============================================================ */
@media (max-width: 768px) {

  /* Description: show cleanly (3 lines), remove hidden override */
  .hero-desc {
    display: block !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
    color: rgba(255,255,255,0.75) !important;
  }

  /* Rating row: single line, no wrap */
  .hero-rating-row {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
    overflow: hidden;
  }
  .hero-rating-count {
    font-size: 11px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255,255,255,0.6) !important;
  }

  /* Badge pills: 2×2 grid */
  .hero-badge-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
  }
  .badge-pill {
    justify-content: center !important;
    text-align: center !important;
    font-size: 11px !important;
    padding: 7px 10px !important;
    border-radius: 8px !important;
  }

  /* Meta row: 2-col grid, hide dots */
  .hero-meta-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 9px 14px !important;
    margin-bottom: 16px !important;
    font-size: 12px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
  }
  .hero-meta-sep { display: none !important; }
  .hero-meta-row span {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: rgba(255,255,255,0.8) !important;
  }

  /* Stat labels: readable */
  .hero-stats .stat-label {
    font-size: 11px !important;
    color: rgba(255,255,255,0.65) !important;
    font-weight: 500 !important;
  }
}

/* ============================================================
   UIUX STICKY ENROLL — always visible, dark, properly styled
   ============================================================ */
@media (max-width: 768px) {
  #stickyEnroll,
  .sticky-enroll {
    background: #1a0533 !important;
    border-top: 1px solid rgba(139,92,246,0.4) !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5) !important;
    transform: translateY(0) !important;
  }
  .sticky-enroll-price {
    color: #A78BFA !important;
    font-size: 20px !important;
  }
  .sticky-enroll-price > span { color: rgba(255,255,255,0.5) !important; }
  .sticky-enroll-timer { color: rgba(255,255,255,0.45) !important; }
  .sticky-enroll-btn {
    background: #7C3AED !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 10px 16px !important;
  }
  /* Hero enroll button — no text truncation */
  .hero-cta .btn-primary {
    white-space: nowrap !important;
    font-size: 14px !important;
    overflow: visible !important;
  }
}
  .hero-meta-row i { color: #60A5FA !important; }
