:root {
  /* ===== PREMIUM DARK AI RED SYSTEM (DM STYLE) ===== */
  --primary: #FF3B3B;
  /* AI Red 🔴 */
  --primary-dark: #D32F2F;
  /* Deep AI Red */
  --accent: #FF6B6B;
  /* Soft AI Red */

  --dark: #0D0D0D;
  /* Obsidian Black */
  --card: #1A1A1A;
  /* Deep Surface */
  --card2: #1F1F1F;
  /* Alt Surface */
  --border: #2A2A2A;
  /* Stealth Border */

  --text: #FFFFFF;
  /* Crisp White */
  --muted: #A0A0A0;
  /* Muted Silver */

  --green: #22C55E;
  --blue: #3B82F6;
  --gold: #F5C518;

  --glass: rgba(13, 13, 13, 0.85);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ===== CUSTOM SCROLLBAR (DM STYLE) ===== */
::-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(--primary);
}



/* ===== 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(--primary);
  font-size: 14px;
}

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

/* Roadmap title icons */
.roadmap-title .fa-solid,
.roadmap-title .fa-brands {
  color: var(--primary);
  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(--primary);
  margin-right: 6px;
  font-size: 15px;
}

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

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

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

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

.footer-bottom .fa-solid,
.footer-bottom .fa-brands {
  font-size: 12px;
  color: var(--primary);
  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(--primary);
}

/* ===== TOP PROMO BANNER ===== */
.top-promo-banner {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.top-promo-banner a {
  color: #fff !important;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 800;
}

/* Adjust Navbar since Banner is sticky */
.navbar {
  top: 38px;
}

@media (max-width: 768px) {
  .navbar {
    top: 54px;
  }
}

/* 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(--primary);
  font-size: 24px;
}

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


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

::-webkit-scrollbar-track {
  background: #0A1420;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d0d0d !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all 0.3s ease;
}

.logo-area a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 59, 59, 0.2));
}

/* .brand-name removed as per user request */
.brand-tagline {
  font-size: 10px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 10px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

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

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

.nav-links a:hover {
  color: var(--primary);
  background: rgba(255, 59, 59, 0.07);
}

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

.nav-enroll:hover {
  background: var(--primary-dark) !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: 'Inter', sans-serif;
  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(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange2);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

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

/* ===== HERO ===== */
/* ===== HERO SECTION (DM DARK STYLE) ===== */
.hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
}

/* removed hero::before wavy */

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 40px;
}

/* removed hero-bg-text */

.hero-provider-line {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-provider-line strong {
  color: #60A5FA;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}

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

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero .hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.hero .hero-title span {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Hero Rating & Badges */
.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.hero-rating-val {
  font-size: 20px;
  font-weight: 800;
  color: #FACC15;
}

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

.hero-rating-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

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

.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.h-pill i {
  color: var(--accent);
}

.h-pill.bestseller {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #FDE68A;
}

.h-pill.bestseller i {
  color: #FBBF24;
}

/* Hero Meta Row */
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hm-item i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.hm-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* HERO STATS (DA STYLE) */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* CTA Buttons (DM Style) */
.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 59, 59, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 59, 59, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 18px 36px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* FLOATING PRICING CARD (DM STYLE) */
.hero-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

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

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

.price-new {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.price-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

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

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

.feature-list li .icon {
  color: var(--primary);
  width: 16px;
  display: flex;
  justify-content: center;
  margin-top: 3px;
}

/* ===== TOC (DM DARK STYLE) ===== */
.toc-section {
  padding: 100px 40px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

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

.sec-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}

.sec-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 48px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

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

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

.toc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.toc-item:hover {
  border-color: var(--primary);
  background: rgba(255, 59, 59, 0.05);
  transform: translateY(-4px);
}

.toc-num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--primary);
  background: rgba(255, 59, 59, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.toc-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== ROADMAP (DM DARK STYLE) ===== */
.roadmap-section {
  padding: 100px 40px;
  background: var(--dark);
  overflow: hidden;
}

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

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

@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: 4px;
  background: linear-gradient(to bottom, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
  background-size: 100% 200%;
  animation: moveLine 6s linear infinite;
  border-radius: 4px;
  opacity: 0.6;
}

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

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

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

.roadmap-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 30px;
  flex: 1;
  transition: all 0.3s;
}

.roadmap-content:hover {
  border-color: var(--primary);
  transform: translateX(10px);
}

.roadmap-week {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.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(255, 59, 59, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 59, 59, 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: var(--dark);
  transition: border-color 0.3s;
}

.module-block:hover {
  border-color: rgba(255, 59, 59, 0.35);
}

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

.module-num-block {
  background: var(--primary);
  color: white;
  font-family: 'Outfit', 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: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  gap: 12px;
}

.module-name {
  font-family: 'Outfit', 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(--primary);
}

.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: 'Inter', sans-serif;
  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: 13.5px;
  color: var(--text);
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

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

.topics-ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 10px;
  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: 'Inter', sans-serif;
  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(--text);
  font-weight: 600;
}

.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(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.25);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  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: var(--primary);
}

.plugin-card-head {
  padding: 14px 18px;
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  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(--text);
}

.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: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: var(--card2);
  border-bottom: 2px solid var(--primary);
  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: var(--text);
  border-bottom: 1px solid var(--border);
  background: var(--card2);
}

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

.compare-tbl tr:hover td {
  background: rgba(255, 59, 59, 0.03);
}

.compare-tbl td:first-child {
  color: white;
  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: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: var(--card2);
  border-bottom: 2px solid var(--primary);
  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: var(--card2);
}

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

.tools-tbl tr:hover td {
  background: rgba(255, 59, 59, 0.03);
}

.tools-tbl td:first-child {
  color: white;
  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: #111111;
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cert-mock h3,
.cert-mock p,
.cert-mock .cert-id {
  color: rgba(255, 255, 255, 0.9);
}

.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: 110px;
  height: 110px;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 9px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
}

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

.cert-title-big {
  font-family: 'Outfit', 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: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  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: 'Inter', sans-serif;
}

.cert-stamp {
  position: absolute;
  bottom: 30px;
  right: 36px;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 59, 59, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  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(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.2s ease;
}

.cert-feat:hover {
  border-color: rgba(255, 59, 59, 0.3);
}

.cert-feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 59, 59, 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: var(--primary);
  stroke-width: 2;
  fill: none;
}

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

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

.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: var(--dark);
  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(--primary);
}

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

.ccb-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.ccb-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* Redesigned Recognition Styles */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.recognition-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.recognition-tag {
  font-size: 12px;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recognition-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: contain;
}

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

.badge-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  border-color: #f97316;
}

.badge-icon-circle {
  width: 52px;
  height: 52px;
  background: rgba(249, 115, 22, 0.1);
  /* Subtle dark orange-tinted background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.badge-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: #f97316;
  /* Solid orange icon */
}

.badge-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  /* Bright white */
  margin-bottom: 2px;
}

.badge-subtitle {
  font-size: 11.5px;
  color: #8c96a7;
  /* Subtle grayish blue for better clarity */
  line-height: 1.4;
  font-weight: 500;
}

.badge-item:hover .badge-icon-circle {
  background: rgba(249, 115, 22, 0.2);
  transform: scale(1.05);
}

/* Responsive adjustment for badges */
@media (max-width: 992px) {
  .recognition-badges-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .recognition-badges-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-grid {
    grid-template-columns: 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: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 59, 59, 0.3);
}

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

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

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

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

.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;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 59, 59, 0.4);
}

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

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

.reviewer-role {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.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: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--primary);
  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: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--primary);
}

.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(--primary);
  text-decoration: none;
}

/* ===== ENROLL CTA ===== */
.enroll-section {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(160deg, #0f0020, var(--dark));
  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(255, 59, 59, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.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(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 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(255, 59, 59, 0.4);
}

.faq-item.faq-open {
  border-color: rgba(255, 59, 59, 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: 'Outfit', 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(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  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(--primary);
  color: white;
}

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

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

.faq-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.faq-still {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.08), rgba(255, 59, 59, 0.04));
  border: 1px solid rgba(255, 59, 59, 0.25);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-still-text h4 {
  font-family: 'Outfit', 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;
    padding: 0 !important;
  }

  .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: #4B5563;
    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(255, 59, 59, 0.05);
    border: 1px solid rgba(255, 59, 59, 0.15);
    border-radius: 10px;
    padding: 8px 4px;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(255, 59, 59, 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: linear-gradient(135deg, rgba(255, 59, 59, 0.08), rgba(211, 47, 47, 0.04));
    border: 1px solid rgba(255, 59, 59, 0.3);
    border-radius: 10px;
    padding: 9px 14px;
    margin-bottom: 10px;
  }

  .offer-timer-mobile .otm-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--primary);
    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(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 6px;
    padding: 4px 6px;
    text-align: center;
    min-width: 38px;
  }

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

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

  .offer-timer-mobile .otm-sep {
    font-weight: 800;
    color: rgba(255, 59, 59, 0.5);
    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;
  }

  /* 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(255, 59, 59, 0.1);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  max-height: 0;
  background: var(--dark);
  z-index: 999;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
  max-height: 600px;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Outfit', 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(--primary);
}

.mobile-nav a.mobile-enroll {
  background: var(--primary);
  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: rgba(255, 59, 59, 0.05);
  border: 1px solid rgba(255, 59, 59, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.timer-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--primary);
  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: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 59, 59, 0.15);
  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: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
}

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

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

/* ===== STICKY BOTTOM ENROLL BAR ===== */
.sticky-enroll {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  border-top: 2px solid var(--primary);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  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: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  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: 'Inter', sans-serif;
}

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

.sticky-enroll-btn {
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', 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(255, 59, 59, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 59, 59, 0);
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--card);
  color: var(--primary);
  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(--primary);
  color: white;
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.3);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 90px;
    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-section {
  background: #F4F7FA;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 0;
  /* Removing padding to allow inner grid to handle it */
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1050px;
  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 -20px rgba(0, 0, 0, 0.25);
  margin: auto;
}

.enroll-modal-overlay.active .enroll-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: 16px;
  right: 16px;
  background: #E5E7EB;
  border: none;
  color: #6B7280;
  font-size: 20px;
  width: 32px;
  height: 32px;
  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: #D1D5DB;
  color: #374151;
}

.enroll-section::before {
  content: 'ENROLL';
  position: absolute;
  right: -40px;
  top: 40px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 140px;
  color: rgba(255, 59, 59, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.enroll-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 0;
  align-items: stretch;
}

/* --- Left Side --- */
.enroll-left {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enroll-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  margin: 16px 0 20px;
  color: #111827;
  letter-spacing: -0.02em;
}

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

.enroll-desc {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
}

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

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

.ep-new {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--primary);
  line-height: 1;
}

.ep-badge {
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.4);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
}

.enroll-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.enroll-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EDF2F7;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: #4A5568;
  font-weight: 600;
  transition: all 0.2s;
}

.enroll-pill svg {
  color: #718096;
}

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

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

/* --- Right: Form Card --- */
.enroll-form-card {
  background: #FFFFFF;
  border-left: 1px solid #E5E7EB;
  padding: 50px 40px;
  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: linear-gradient(90deg, #1D4ED8, #3B82F6);
  z-index: 5;
}

.efc-header {
  margin-bottom: 32px;
  text-align: center;
}

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

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

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

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

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

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

.input-wrap input:focus {
  background: #fff;
  border-color: #3B82F6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.input-prefix {
  position: absolute;
  left: 18px;
  color: #64748B;
  font-size: 15px;
  font-weight: 600;
  pointer-events: none;
}

.input-wrap input[type="tel"] {
  padding-left: 54px;
}

.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: 18px;
  background: linear-gradient(135deg, #FF4B2B, #FF416C);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255, 65, 108, 0.3);
}

.btn-enroll-submit:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 40px rgba(255, 65, 108, 0.4);
}

.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: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-bottom: 6px;
}

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

.spinner {
  animation: rotate 2s linear infinite;
}

.spinner circle {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 5;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* --- Mobile Responsive --- */
@media (max-width: 960px) {
  .enroll-section {
    margin: 20px;
    border-radius: 20px;
  }

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

  .enroll-left {
    display: none;
  }

  .enroll-form-card {
    padding: 32px 28px;
    border-left: none;
    border-top: none;
    border-radius: 20px;
  }
}

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

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

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

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

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

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

  .rstat {
    min-width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }
}

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

  /* 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 N8N
   ============================================================ */

/* Fix mobile-nav top offset: accounts for sticky promo banner (54px) + navbar (72px) */
@media (max-width: 768px) {
  .mobile-nav {
    top: 126px;
  }
  /* Add inner padding so nav links aren't edge-to-edge */
  .mobile-nav a {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-nav a.mobile-enroll {
    margin: 12px 20px 8px;
  }
}

/* Hero gift banner — reduce font on small screens */
@media (max-width: 480px) {
  .gift-banner-title {
    font-size: 15px !important;
  }
}

/* Disable roadmap hover translateX on mobile to prevent horizontal overflow */
@media (max-width: 768px) {
  .roadmap-content:hover {
    transform: none;
  }
  .roadmap-content {
    padding: 18px 20px;
  }
  .roadmap-item {
    gap: 14px;
  }
  .roadmap-dot {
    width: 40px;
  }
  /* Module body padding on mobile */
  .module-body {
    padding: 16px;
  }
  /* Plugin grid single col on mobile */
  .plugin-grid {
    grid-template-columns: 1fr;
  }
}

/* Fix hero on very small phones (375px and below) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 24px !important;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    font-size: 14px;
    padding: 12px 16px;
  }
  /* Tighten up rating row */
  .hero-provider-line {
    display: none;
  }
}

/* Enroll modal — full screen 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-form-card {
    padding: 24px 20px 32px;
  }
  .efc-header {
    padding: 20px 20px 14px;
  }
  .btn-enroll-submit {
    font-size: 15px;
    padding: 14px 20px;
  }
  .ep-new {
    font-size: 30px;
  }
}

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

/* Reviews — single column on narrow screens */
@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 18px 16px;
  }
}

/* Cert mock on mobile — reduce font sizes */
@media (max-width: 480px) {
  .cert-mock {
    padding: 20px 16px;
  }
  .cert-title-big {
    font-size: 22px;
  }
  .cert-name-line {
    font-size: 16px;
  }
}

/* Promo banner — single line on mobile to keep height predictable */
@media (max-width: 640px) {
  .top-promo-banner {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 16px;
  }
  .top-promo-banner a {
    display: none;
  }
  /* Adjust navbar offset since promo banner is now single-line (~38px) */
  .navbar {
    top: 38px;
  }
  /* Mobile nav adjusts accordingly: 38px promo + 72px navbar */
  .mobile-nav {
    top: 110px;
  }
}

/* Gift banner — compact on mobile */
@media (max-width: 640px) {
  .gift-banner-title {
    font-size: 15px !important;
  }
  /* Shrink the gift banner container */
  .hero-content > div[style*="rgba(255, 59, 59, 0.1)"] {
    padding: 10px 12px !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }
  /* Shrink emoji */
  .hero-content > div[style*="rgba(255, 59, 59, 0.1)"] > div:first-child {
    font-size: 22px !important;
  }
}

/* Rating row and badge pills spacing on mobile */
@media (max-width: 480px) {
  /* Hero rating row */
  .hero-content > div[style*="display:flex"][style*="4.8"] {
    gap: 6px;
    flex-wrap: wrap;
  }
  /* Compact hero stats */
  .hero-stats {
    padding: 6px 4px;
  }
  /* Offer timer mobile */
  .offer-timer-mobile {
    padding: 7px 12px;
  }
}

/* Gift banner class-based mobile fix (replaces attribute selector) */
@media (max-width: 640px) {
  .hero-gift-banner {
    padding: 10px 12px !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }
  .hero-gift-emoji {
    font-size: 22px !important;
  }
}

/* Enroll modal: centered card on tablet, bottom sheet on phone */
@media (max-width: 960px) {
  .enroll-modal-overlay {
    padding: 20px;
    align-items: center;
  }
  .enroll-section {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 520px) {
  .enroll-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .enroll-section {
    max-width: 100%;
    border-radius: 20px 20px 0 0 !important;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .enroll-form-card {
    border-radius: 0 !important;
    padding: 24px 20px 32px !important;
  }
  .efc-header {
    border-radius: 20px 20px 0 0;
  }
}

/* ============================================================
   N8N MOBILE HERO COMPACT + STICKY BAR ALWAYS VISIBLE
   ============================================================ */

/* Hide gift banner on mobile — too large, already shown in hero */
@media (max-width: 640px) {
  .hero-gift-banner {
    display: none !important;
  }

  /* Compact hero padding */
  .hero {
    padding: 10px 16px 8px !important;
  }

  /* Reduce hero title size - compact for mobile */
  .hero h1, .hero .hero-title {
    font-size: 22px !important;
    line-height: 1.12 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.3px !important;
  }
  .hero .hero-title span {
    display: inline !important;
  }
  .hero-provider-line { display: none !important; }

  /* Show description (was clamped to 2 lines, give it 3) */
  .hero-desc {
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    margin-bottom: 12px !important;
  }

  /* Compact badge pills */
  .hero-content > div[style*="flex-wrap:wrap"][style*="gap:8px"] {
    gap: 6px !important;
    margin-bottom: 10px !important;
  }

  /* Compact meta row */
  .hero-content > div[style*="flex-wrap:wrap"][style*="gap:12px"] {
    gap: 8px !important;
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }

  /* Compact hero CTA */
  .hero-cta {
    margin-top: 4px !important;
  }

  /* Show sticky bar IMMEDIATELY on mobile — always visible */
  .sticky-enroll {
    transform: translateY(0) !important;
  }

  /* Add bottom padding so page content not hidden behind sticky bar */
  body {
    padding-bottom: 72px;
  }
}

/* Make sticky bar slightly taller and easier to tap on phones */
@media (max-width: 480px) {
  .sticky-enroll {
    padding: 10px 16px;
    gap: 10px;
  }
  .sticky-enroll-price {
    font-size: 20px;
  }
  .sticky-enroll-btn {
    padding: 11px 20px;
    font-size: 14px;
  }
  /* Hide timer on mobile to save space */
  .sticky-enroll-timer {
    display: none;
  }
}

/* ============================================================
   N8N DESKTOP / LAPTOP HERO FIT — viewport-aware spacing
   ============================================================ */

/* Laptop screens (1024px–1440px) — reduce padding so CTA is above fold */
@media (min-width: 769px) {
  .hero {
    padding: 60px 0 50px;
  }
  .hero .hero-title {
    font-size: 52px;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .hero-grid {
    gap: 40px;
  }
  /* Compact hero-card */
  .hero-card {
    padding: 28px 32px;
  }
  .price-new {
    font-size: 42px;
  }
  .offer-timer {
    padding: 14px 16px;
    margin-bottom: 16px;
  }
  .feature-list li {
    padding: 8px 0;
    font-size: 13px;
  }
}

/* Smaller laptops (1024px–1280px) */
@media (min-width: 769px) and (max-width: 1300px) {
  .hero {
    padding: 40px 0 40px;
  }
  .hero .hero-title {
    font-size: 44px;
  }
  .hero-stats {
    margin-top: 16px;
    padding-top: 16px;
  }
  .stat-num {
    font-size: 22px !important;
  }
  /* Tighter gift banner on laptop */
  .hero-gift-banner {
    padding: 10px 14px !important;
    margin-bottom: 16px !important;
  }
}

/* Height-based query: short laptop screens (height < 800px) */
@media (min-width: 769px) and (max-height: 800px) {
  .hero {
    padding: 30px 0 30px;
  }
  .hero .hero-title {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .hero-desc {
    margin-bottom: 16px;
    font-size: 15px;
  }
  .hero-stats {
    margin-top: 12px;
    padding-top: 12px;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero-card {
    padding: 20px 24px;
  }
  .offer-timer {
    padding: 10px 14px;
    margin-bottom: 12px;
  }
  .feature-list li {
    padding: 6px 0;
    font-size: 13px;
  }
  .price-display {
    margin-bottom: 16px;
  }
  .price-new {
    font-size: 38px;
  }
}

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

/* ============================================================
   STICKY BAR PRICE — force visible dark color on white bg
   ============================================================ */
.sticky-enroll-price [data-price],
.sticky-enroll-price span[data-price] {
  color: #0D1B2A !important;
  font-size: 18px;
  font-weight: 800;
}
.sticky-enroll-price > span:not([data-price]) {
  color: #64748B !important;
  font-size: 12px;
}

/* ============================================================
   MOBILE — hide hero description text (3 lines)
   ============================================================ */
@media (max-width: 640px) {
  .hero-desc {
    display: none !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; }

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

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

  /* Hide gift banner on mobile to save space */
  .hero-gift-banner { display: none !important; }

  /* Description: 3-line clamp */
  .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;
    color: rgba(255,255,255,0.75) !important;
  }

  /* Rating row: single line */
  .hero-rating-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 10px 0 12px !important;
    overflow: hidden;
  }
  .hero-rating-row > span:nth-child(1) {
    flex-shrink: 0 !important;
  }
  .hero-rating-row > span:nth-child(2) {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
  }
  .hero-rating-row > span:nth-child(2) i {
    font-size: 11px !important;
  }
  .hero-rating-row > span:last-child {
    font-size: 11px !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
  }

  /* 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) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;

  }
  .hero-meta-row > span {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    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;
  }

  /* Hero stats: clean horizontal strip (no card box) */
  .hero-stats {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 0 !important;
    background: none !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 0 !important;
    padding: 14px 0 0 !important;
    margin-top: 14px !important;
  }
  .stat-item {
    flex: 1 !important;
    text-align: center !important;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
    padding: 0 4px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
  }
  .stat-item:last-child { border-right: none !important; }
  .stat-num { font-size: 18px !important; font-weight: 800 !important; color: #fff !important; display: block !important; line-height: 1 !important; }
  .stat-label { font-size: 10px !important; color: rgba(255,255,255,0.55) !important; font-weight: 500 !important; }
}

/* Sticky enroll — always visible on mobile (N8N red theme) */
@media (max-width: 768px) {
  #stickyEnroll,
  .sticky-enroll {
    transform: translateY(0) !important;
    background: #1a0000 !important;
    border-top: 1px solid rgba(255,59,59,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: #FF3B3B !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(--primary, #FF3B3B) !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; }
