﻿:root {
  /* ===== COLOR SYSTEM (Selenium Green Theme) ===== */
  --primary: #00A350;
  /* Testleaf Green */
  --primary-hover: #008740;
  /* Deeper Green */
  --orange: #00A350;
  /* Reused for consistency with old triggers */
  --orange2: #008740;
  --dark: #062F1D;
  /* Deep Forest Green */
  --dark-accent: #0A4D2B;
  /* Lighter Jungle Green */
  --card: #FFFFFF;
  --card2: #F9FAFB;
  --border: #E5E7EB;
  --text: #111827;
  /* Slate Gray/Black */
  --muted: #6B7280;
  /* Neutral Gray */
  --green: #00A350;
  --gold: #FFD700;
  /* For ratings */
  --navy: #062F1D;
  /* Dark Footer/Nav */

  /* ===== TYPOGRAPHY ===== */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Syne', sans-serif;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ===== TOP ANNOUNCEMENT BANNER ===== */
.top-banner {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  position: relative;
  z-index: 1001;
}

.top-banner a {
  color: white;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
  transition: color 0.2s;
}

.top-banner a:hover {
  color: var(--gold);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* ===== 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;
}


::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

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

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

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

.logo-box {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', 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%;
}

/* PLACE FOR COMPANY LOGO */
.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(16, 185, 129, 0.08);
}

.brand-name {
  font-family: 'Raleway', 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: 'Source Code Pro', 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: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.nav-links a:hover {
  color: var(--orange);
  background: rgba(16, 185, 129, 0.07);
}

.nav-enroll {
  background: var(--orange) !important;
  color: white !important;
  font-weight: 700 !important;
  border-radius: 4px !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;
}

/* Fade edges */
.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: 'Source Code Pro', 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(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  font-family: 'Source Code Pro', monospace;
  flex-shrink: 0;
}

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

/* ===== HERO ===== */
.hero {
  padding: 10px 40px 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0D1B2A 0%, #162231 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-bg-text {
  position: absolute;
  right: -20px;
  top: 20px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 180px;
  color: rgba(16, 185, 129, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  font-family: 'Source Code Pro', monospace;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

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

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.hero-desc {
  font-size: 15px;
  color: #94A3B8;
  max-width: 500px;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

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

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

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

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

.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: var(--orange2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 11px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.06);
}

/* Hero card */
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.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 {
  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;
}

.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: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111827;
}

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

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

.toc-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 16px 20px;
  text-decoration: none;
  color: #1F1F1F;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.toc-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.toc-num {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  color: #FFFFFF;
  background: var(--orange);
  width: 32px;
  height: 32px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.toc-text {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
}

/* ===== WHAT YOU'LL LEARN ===== */
.learn-section {
  padding: 80px 40px;
  background: #F9FAFB;
  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: 30px 0;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #4B5563;
  line-height: 1.5;
}

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

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

.skill-tag {
  padding: 6px 16px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4B5563;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* ===== 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(16, 185, 129, 0.1) 40%, var(--orange) 80%, rgba(16, 185, 129, 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: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  transition: border-color 0.2s;
}

.roadmap-content:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

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

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

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

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

.rtag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--orange);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-family: 'Source Code Pro', monospace;
}

/* ===== MODULES ===== */
.modules-section {
  padding: 80px 40px;
  background: #F3F4F6;
  border-top: 1px solid #E5E7EB;
}

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

.module-block {
  margin-bottom: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  overflow: hidden;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.module-block:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
}

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

.module-num-block {
  background: var(--orange);
  color: white;
  font-family: 'Raleway', 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: 'Source Code Pro', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #111827;
}

.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: 'Source Code Pro', monospace;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.topics-ul li {
  font-size: 14px;
  color: #374151;
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid #F3F4F6;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

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

.topics-ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 13px;
  top: 9px;
  font-weight: 700;
}

.tools-panel {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #E5E7EB;
}

/* ===== PROJECT CARD (Gradient Banner Style) ===== */
.project-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s, transform 0.25s;
  margin-top: 8px;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  transform: translateY(-3px);
}

/* Short project image strip */
.project-img-strip {
  width: 100%;
  height: 90px;
  overflow: hidden;
  background: #eef2ff;
  border-bottom: 1px solid var(--border);
}

.project-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img-strip img {
  transform: scale(1.06);
}

/* Gradient banner header */
.project-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 16px;
  position: relative;
}

.project-banner-icon {
  font-size: 40px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

/* Banner color themes */
.banner-teal {
  background: linear-gradient(135deg, #00897B, #26A69A);
}

.banner-green {
  background: linear-gradient(135deg, #2E7D32, #43A047);
}

.banner-blue {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
}

.banner-orange {
  background: linear-gradient(135deg, #E65100, #F4511E);
}

.banner-purple {
  background: linear-gradient(135deg, #4527A0, #7B1FA2);
}

/* Badge on banner */
.project-banner .project-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Source Code Pro', monospace;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
}

/* Card body */
.project-body {
  padding: 16px 18px;
  background: #FFFFFF;
}

.project-card-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  margin-bottom: 8px;
}

.project-card-desc {
  font-size: 12px;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ptool {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.07);
  color: var(--orange);
  border: 1px solid rgba(16, 185, 129, 0.18);
  font-family: 'Source Code Pro', monospace;
}



.project-icon {
  font-size: 28px;
  line-height: 1;
}

.project-badges {
  display: flex;
  gap: 6px;
  align-items: center;
}

.project-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'Source Code Pro', monospace;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-beginner {
  background: rgba(0, 137, 123, 0.12);
  color: #00897B;
  border: 1px solid rgba(0, 137, 123, 0.25);
}

.badge-intermediate {
  background: rgba(245, 166, 35, 0.12);
  color: #D48000;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.badge-advanced {
  background: rgba(106, 13, 173, 0.1);
  color: #6A0DAD;
  border: 1px solid rgba(106, 13, 173, 0.2);
}

.badge-time {
  background: rgba(16, 185, 129, 0.08);
  color: var(--orange);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.project-card-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1F1F1F;
  padding: 12px 16px 4px;
}

.project-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 16px 12px;
  font-family: 'DM Sans', sans-serif;
}

.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  background: rgba(16, 185, 129, 0.02);
}

.ptool {
  font-family: 'Source Code Pro', monospace;
  font-size: 10px;
  background: #F3F4F6;
  color: #4B5563;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

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

.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: var(--muted);
  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(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 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 ===== */
.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(16, 185, 129, 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 var(--border);
  font-size: 13px;
  color: var(--muted);
}

.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: 'Raleway', 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: #96BF48;
}

.compare-tbl th:nth-child(3) {
  color: #7F54B3;
}

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

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

.compare-tbl tr:hover td {
  background: rgba(16, 185, 129, 0.03);
}

.compare-tbl td:first-child {
  color: #1e293b;
  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: 'Raleway', 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: #64748b;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

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

.tools-tbl tr:hover td {
  background: rgba(16, 185, 129, 0.03);
}

.tools-tbl td:first-child {
  color: #1e293b;
  font-weight: 600;
}

/* ===== CERTIFICATION ===== */
.cert-section {
  padding: 80px 40px;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
}

.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: linear-gradient(135deg, #1a1000 0%, #0f0f0f 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cert-mock::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 10px;
  pointer-events: none;
}

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

.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: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
}

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

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

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

.cert-name-line {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111827;
  border-bottom: 1px solid rgba(245, 197, 24, 0.3);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.cert-course {
  font-size: 13px;
  color: var(--muted);
  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(245, 197, 24, 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(16, 185, 129, 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: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.cert-feat:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

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

.cert-feat-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: #1F1F1F;
}

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

/* Company certs row */
.company-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.company-cert-badge {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  transition: border-color 0.2s;
}

.company-cert-badge:hover {
  border-color: var(--orange);
}

.ccb-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.ccb-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
  margin-bottom: 2px;
}

.ccb-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Source Code Pro', monospace;
}

/* ===== 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 #E5E7EB;
  border-radius: 8px;
  padding: 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.1);
}

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

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

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

.review-text {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.35);
}

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

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

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

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

.rstat {
  flex: 1;
  min-width: 160px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.rstat-label {
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* ===== FOOTER ===== */
.footer {
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  padding: 60px 40px 40px;
  color: #4B5563;
}

.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: #6B7280;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  color: #111827;
}

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

.footer-links ul li {
  font-size: 13px;
  color: #999;
}

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

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

/* ===== ENROLL CTA ===== */
.enroll-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--orange);
  border-top: none;
  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(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.enroll-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
  position: relative;
  color: #FFFFFF;
}

.enroll-section h2 span {
  color: rgba(255, 255, 255, 0.85);
}

.enroll-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 36px;
  position: relative;
  font-family: 'DM Sans', sans-serif;
}

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

.enroll-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 40px;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
}

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

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

.faq-item {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.faq-item.faq-open {
  border-color: var(--orange);
}

.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: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  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: 13.5px;
  color: #4B5563;
  line-height: 1.75;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
  margin: 0 22px;
  margin-bottom: 16px;
}

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

.faq-tag {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.faq-still {
  margin-top: 48px;
  background: linear-gradient(135deg, #F3F4F6, #F9FAFB);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.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;
  }

  /* Tight, bold headline */
  .hero h1 {
    font-size: 34px !important;
    line-height: 1.05;
    margin-bottom: 6px;
  }

  /* Clamp description to 2 lines */
  .hero-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #94A3B8;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Stats: compact horizontal strip */
  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 10px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    padding: 8px 4px;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(16, 185, 129, 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);
  }

  /* Hide desktop hero card */
  .hero-card {
    display: none;
  }

  /* Premium compact timer */
  .offer-timer-mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 9px 14px;
    margin-bottom: 10px;
  }

  .offer-timer-mobile .otm-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #4B5563;
    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: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 4px 6px;
    text-align: center;
    min-width: 38px;
  }

  .offer-timer-mobile .otm-num {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #00A350;
    display: block;
    line-height: 1;
  }

  .offer-timer-mobile .otm-unit {
    font-family: 'Source Code Pro', monospace;
    font-size: 7.5px;
    color: #6B7280;
    display: block;
    margin-top: 1px;
  }

  .offer-timer-mobile .otm-sep {
    font-weight: 800;
    color: #00A350;
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* Side-by-side or stacked CTA buttons */
  .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%;
  }



  /* Sections */
  .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 titles */
  .sec-title {
    font-size: 28px;
    color: #111827;
  }

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

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

  /* Make tables horizontally scrollable */
  .compare-inner,
  .tools-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  /* Plugin grid 2 columns */
  .plugin-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cert-mock {
    padding: 24px;
  }

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

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

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

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

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

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

  /* Reviews stats */
  .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(16, 185, 129, 0.1);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 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: 'Raleway', 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: 4px;
  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: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.timer-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  color: #4B5563;
  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: #FFFFFF;
  border: 1px solid #D1D5DB;
  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: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #00A350;
  line-height: 1;
}

.tunit {
  font-family: 'Source Code Pro', monospace;
  font-size: 9px !important;
  color: #6B7280 !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

.tsep {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #00A350;
  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, var(--card), var(--card2));
  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(16, 185, 129, 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: 'Raleway', 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: 'Source Code Pro', 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: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 4px;
  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(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 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(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 90px;
    /* Above the sticky enroll bar */
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

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

.enroll-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

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

.enroll-modal-section {
  background: #FFFFFF !important;
  border: 1px solid #E0E0E0 !important;
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 40px 100px -12px rgba(0, 0, 0, 0.15) !important;
  margin: auto;
}

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

@media (max-width: 768px) {
  .enroll-left {
    display: none;
  }

  .enroll-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}


.enroll-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #111827;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.enroll-modal-close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.enroll-modal-section::before {
  content: 'ENROLL';
  position: absolute;
  right: -40px;
  top: 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: 140px;
  color: rgba(0, 0, 0, 0.03) !important;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.enroll-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}

/* --- Left Side --- */
.enroll-left {
  padding-top: 8px;
}

.enroll-title {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
  color: #111827;
}

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

.enroll-desc {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 600;
}

.enroll-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

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

.ep-new {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}

.ep-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  font-family: 'DM Mono', monospace;
}

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

.enroll-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: #1F2937;
  font-weight: 700;
}

.enroll-pill .fa-solid {
  color: var(--orange);
  font-size: 11px;
}

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

.enroll-trust span {
  font-size: 13px;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.enroll-trust .fa-solid {
  color: var(--green);
  font-size: 12px;
}

/* --- Right: Form Card --- */
.enroll-form-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.efc-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid #E5E7EB;
  background: #FFFFFF;
}

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

.efc-subtitle {
  font-size: 14px;
  color: #4B5563;
  font-weight: 600;
}

/* Form inside card */
#enrollForm {
  padding: 24px 28px 20px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #374151;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.req {
  color: var(--orange);
}

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

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  font-size: 13px;
  pointer-events: none;
  z-index: 1;
}

.input-prefix {
  position: absolute;
  left: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  z-index: 1;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  background: #FFFFFF;
  border: 2px solid #D1D5DB;
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  color: #111827;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-wrap input[type="tel"] {
  padding-left: 44px;
  /* room for +91 prefix */
}

.input-wrap select {
  padding-left: 40px;
  padding-right: 36px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.input-wrap:has(select)::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #888;
  pointer-events: none;
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.input-wrap input::placeholder {
  color: #9CA3AF;
  font-weight: 500;
}

.field-error {
  display: none;
  font-size: 11px;
  color: #ff4040;
  margin-top: 5px;
}

/* Two-col row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Submit button */
.btn-enroll-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
}

.btn-enroll-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(16, 185, 129, 0.5);
}

.btn-enroll-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#enrollBtnText,
#enrollBtnLoader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-bottom: 6px;
  font-weight: 700;
}

.form-note .fa-solid {
  color: var(--green);
}

/* Global error */
.form-error-global {
  margin: 0 28px 20px;
  background: rgba(255, 64, 64, 0.08);
  border: 1px solid rgba(255, 64, 64, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ff6060;
}

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

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

@media (max-width: 600px) {
  .enroll-modal-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;
  }
}

/* NEW ROADMAP CSS */
.roadmap-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sec-title-rm {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #333;
}

.roadmap-timeline-new {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 0;
}

.roadmap-timeline-new::before {
  content: '';
  position: absolute;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #d8d8fc, #d8d8fc 5px, transparent 5px, transparent 10px);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.roadmap-item-new {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.roadmap-item-new.left {
  left: 0;
  justify-content: flex-end;
}

.roadmap-item-new.right {
  left: 50%;
  justify-content: flex-start;
}

.roadmap-icon-new {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}

.roadmap-item-new.left .roadmap-icon-new {
  right: -30px;
}

.roadmap-item-new.right .roadmap-icon-new {
  left: -30px;
}

.roadmap-line-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #d8d8fc;
  border-radius: 50%;
  z-index: 5;
  /* this is the small half circle effect seen in image on the dotted line */
}

.roadmap-item-new.left .roadmap-line-dot {
  right: -7px;
}

.roadmap-item-new.right .roadmap-line-dot {
  left: -7px;
}

.roadmap-card-new {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.roadmap-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.roadmap-tool-logo {
  position: absolute;
  top: -15px;
  right: 15px;
  background: white;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #444;
}

.roadmap-tool-logo svg,
.roadmap-tool-logo i {
  font-size: 16px;
}

.r-icon-1 {
  background: #4b4b8f;
}

/* Dark purple */
.r-icon-2 {
  background: #f27b50;
}

/* Orange */
.r-icon-3 {
  background: #e89eb2;
}

/* Pink */
.r-icon-4 {
  background: #a261a8;
}

/* Light purple */
.r-icon-5 {
  background: #6455b8;
}

/* Blueish-purple */
.r-icon-6 {
  background: #60c5ba;
}

/* Teal */
.r-icon-7 {
  background: #e89eb2;
}

/* Pink */

/* Responsive: move line to left on mobile */
@media screen and (max-width: 768px) {
  .roadmap-timeline-new::before {
    left: 31px;
  }

  .roadmap-item-new {
    width: 100%;
    padding-left: 80px;
    padding-right: 25px;
  }

  .roadmap-item-new.left,
  .roadmap-item-new.right {
    left: 0;
    justify-content: flex-start;
  }

  .roadmap-item-new.left .roadmap-icon-new,
  .roadmap-item-new.right .roadmap-icon-new {
    left: 2px;
    right: auto;
  }

  .roadmap-item-new.left .roadmap-line-dot,
  .roadmap-item-new.right .roadmap-line-dot {
    left: 24px;
    right: auto;
  }
}

/* ===== DATA ANALYSIS STYLE ROADMAP (GREEN VER) ===== */
.da-roadmap-section {
  padding: 80px 20px;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
}

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

.da-roadmap-timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.da-roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom,
      transparent,
      transparent 10px,
      var(--orange) 10px,
      var(--orange) 20px);
  background-size: 100% 40px;
  animation: roadMove 1s linear infinite;
}

@keyframes roadMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 40px;
  }
}

.da-roadmap-item {
  position: relative;
  margin-bottom: 30px;
}

.da-roadmap-item:last-child {
  margin-bottom: 0;
}

.da-roadmap-dot-container {
  position: absolute;
  left: -42px;
  /* Center circle on the line */
  top: 10px;
  /* Align with top of card */
  background: #FFFFFF;
  padding: 4px;
}

.da-roadmap-dot {
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--orange);
}

.da-roadmap-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin-left: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.da-roadmap-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
}

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

.da-roadmap-title {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.da-roadmap-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 16px;
}

.da-roadmap-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.da-roadmap-tag {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
}

/* ===== DATA ANALYSIS STYLE CERTIFICATE (GREEN VER) ===== */
/* ===== PREMIUM CERTIFICATES ===== */
.cert-section {
  padding: 80px 40px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}

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

.da-cert-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

.da-cert-mockup {
  flex: 0 0 400px;
  max-width: 400px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.da-cert-border {
  border: 1px solid #E5E7EB;
  padding: 24px;
  height: 100%;
  position: relative;
}

.da-cert-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--orange);
  border-style: solid;
  pointer-events: none;
}

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

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

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

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

.da-cert-issued {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.da-cert-title-big {
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.da-cert-presented {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 12px;
}

.da-cert-name-line {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  border-bottom: 1px solid #E5E7EB;
  display: inline-block;
  padding: 0 24px 10px;
  margin-bottom: 16px;
}

.da-cert-course {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.da-cert-features {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.da-cert-feature-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.da-cert-feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.da-cert-icon {
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(10, 77, 43, 0.1);
  /* Adjusted for green theme */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.da-cert-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
}

.da-cert-icon svg[fill="currentColor"] {
  fill: var(--orange);
  stroke: none;
}

.da-cert-feat-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.da-cert-feat-desc {
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.6;
}

/* ===== VIDEO PREVIEW THUMBNAIL ===== */
.video-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
}

.video-thumb-img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.video-thumb-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s ease;
  border-radius: 8px;
}

.video-thumb:hover .video-thumb-hover {
  background: rgba(0, 0, 0, 0.2);
}

/* ===== VIDEO MODAL ===== */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.video-modal-content video {
  display: block;
  width: 100%;
  max-height: 85vh;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== 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 {
    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; }
}

/* ============================================================
   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; }

/* ============================================================
   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; }
}

/* === QA Mobile modal overflow fix === */
@media (max-width: 640px) {
  .enroll-modal-overlay {
    align-items: center !important;
    padding: 16px !important;
    overflow-y: auto !important;
  }
  .enroll-modal-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    overflow-x: hidden !important;
  }
  .enroll-inner {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .enroll-form-card, #enrollForm {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .razorpay-note {
    flex-wrap: wrap !important;
    font-size: 11px !important;
  }
}

/* ============================================================
   QA MOBILE HERO — DA-style professional layout
   ============================================================ */
@media (max-width: 768px) {

  /* Description: 3-line clamp on mobile */
  .hero-desc {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }

  /* Rating row: single line */
  .hero-rating-row {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin: 10px 0 12px !important;
    overflow: hidden;
  }
  .hero-rating-row > span:last-child {
    font-size: 11px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  /* Meta info: 2-col grid card */
  .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);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 14px !important;
  }
  .hero-meta-full { grid-column: 1 / -1; }
  .hero-meta-row > span {
    display: flex !important;
    align-items: center !important;
    gap: 5px;
    color: rgba(255,255,255,0.8) !important;
  }

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

/* Sticky enroll — always visible on mobile (QA green theme) */
@media (max-width: 768px) {
  #stickyEnroll,
  .sticky-enroll {
    transform: translateY(0) !important;
    background: #001a08 !important;
    border-top: 1px solid rgba(0,163,80,0.4) !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5) !important;
  }
  .sticky-enroll-price,
  .sticky-enroll-price span[data-price],
  .sticky-enroll-price [data-price] { color: #00A350 !important; font-weight: 800 !important; }
  .sticky-enroll-price > span:not([data-price]) { color: rgba(255,255,255,0.75) !important; }
  .sticky-enroll-timer { color: rgba(255,255,255,0.8) !important; }
  .sticky-enroll-btn {
    background: var(--green, #00A350) !important;
    white-space: nowrap !important;
    font-size: 13px !important;
  }
  .footer { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important; }
}
  .hero-meta-row i { color: #60A5FA !important; }
