﻿:root {
  --orange: #FF6B2B;
  --orange2: #FF8C5A;
  --dark: #0A0A0A;
  --card: #131313;
  --card2: #1C1C1C;
  --border: #2e2e2e;
  --text: #FFFFFF;
  --muted: #AAAAAA;
  --green: #00D084;
  --blue: #3B9EFF;
  --gold: #F5C518;
  --purple: #A855F7;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 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: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  position: relative;
  overflow: hidden;
}

.logo-box::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* 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(255, 107, 43, 0.08);
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
}

.brand-name span {
  color: var(--orange);
}

.brand-tagline {
  font-size: 10px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
  background: rgba(255, 107, 43, 0.08);
}

.nav-enroll {
  background: var(--orange) !important;
  color: white !important;
  font-weight: 700 !important;
}

.nav-enroll:hover {
  background: var(--orange2) !important;
}

/* ===== CERTIFICATIONS BAR ===== */
.cert-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* 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: 'DM Mono', monospace;
  z-index: 3;
  background: var(--card);
  padding-right: 8px;
}

.cert-bar-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.cert-bar-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



.cert-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange2);
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
}

.cert-item .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0D0500 0%, #0A0A0A 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  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(255, 107, 43, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 .line2 {
  color: var(--orange);
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: #ddd;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Hero card */
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}

.price-display {
  text-align: center;
  margin-bottom: 24px;
}

.price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.price-new {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.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: #ddd;
  padding: 7px 0;
  border-bottom: 1px solid #1e1e1e;
}

.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: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 36px;
}

.sec-title span {
  color: var(--orange);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.toc-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.toc-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  background: rgba(255, 107, 43, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
}

.toc-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

/* ===== 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(255, 107, 43, 0.1) 40%, var(--orange) 80%, rgba(255, 107, 43, 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(255, 107, 43, 0.4);
}

.roadmap-week {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

.roadmap-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

.roadmap-desc {
  font-size: 13px;
  color: #bbb;
  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, 107, 43, 0.1);
  color: var(--orange2);
  border: 1px solid rgba(255, 107, 43, 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, 107, 43, 0.35);
}

.module-head {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  user-select: none;
}

.module-num-block {
  background: var(--orange);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  width: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-info {
  flex: 1;
  padding: 18px 24px;
}

.module-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  gap: 12px;
}

.module-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.module-toggle {
  padding: 0 24px;
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.3s;
}

.module-block.open .module-toggle {
  transform: rotate(180deg);
  color: var(--orange);
}

.module-body {
  display: none;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.module-block.open .module-body {
  display: block;
}

.module-cols {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
}

.topics-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.topics-ul {
  list-style: none;
}

.topics-ul li {
  font-size: 13.5px;
  color: #ddd;
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
  line-height: 1.5;
}

.topics-ul li:last-child {
  border-bottom: none;
}

.topics-ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  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 #222;
}

.tool-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tool-type {
  font-size: 10px;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.t-ai {
  background: rgba(59, 158, 255, 0.15);
  color: var(--blue);
}

.t-free {
  background: rgba(0, 208, 132, 0.15);
  color: var(--green);
}

.t-paid {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
}

.tool-name {
  font-size: 13px;
  color: #ddd;
  font-weight: 500;
}

.tool-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Part sections inside module */
.part-block {
  margin-bottom: 24px;
}

.part-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 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(255, 107, 43, 0.3);
}

.plugin-card-head {
  padding: 14px 18px;
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plugin-rows {
  padding: 4px 0;
}

.plugin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  border-bottom: 1px solid #181818;
  font-size: 13px;
  color: #ddd;
}

.plugin-row:last-child {
  border-bottom: none;
}

.badge-free {
  background: rgba(0, 208, 132, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge-paid {
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== COMPARISON ===== */
.compare-section {
  padding: 80px 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.compare-inner {
  max-width: 900px;
  margin: 0 auto;
}

.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.compare-tbl th {
  padding: 18px 22px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: var(--card2);
  border-bottom: 2px solid var(--orange);
  text-align: left;
}

.compare-tbl th:nth-child(2) {
  color: #96BF48;
}

.compare-tbl th:nth-child(3) {
  color: #7F54B3;
}

.compare-tbl td {
  padding: 14px 22px;
  font-size: 13px;
  color: #ddd;
  border-bottom: 1px solid #1e1e1e;
  background: var(--dark);
}

.compare-tbl tr:last-child td {
  border-bottom: none;
}

.compare-tbl tr:hover td {
  background: rgba(255, 107, 43, 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: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: var(--card2);
  border-bottom: 2px solid var(--orange);
  text-align: left;
}

.tools-tbl th:nth-child(2) {
  color: var(--blue);
}

.tools-tbl th:nth-child(3) {
  color: var(--green);
}

.tools-tbl th:nth-child(4) {
  color: var(--gold);
}

.tools-tbl td {
  padding: 11px 20px;
  font-size: 13px;
  color: #ddd;
  border-bottom: 1px solid #191919;
  background: var(--dark);
}

.tools-tbl tr:last-child td {
  border-bottom: none;
}

.tools-tbl tr:hover td {
  background: rgba(255, 107, 43, 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: 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: 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: 'DM Mono', monospace;
  text-align: center;
  line-height: 1.3;
  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: 'Syne', 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: 'Syne', 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: #ddd;
  margin-bottom: 20px;
}

.cert-sigs {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.cert-sig {
  text-align: center;
}

.cert-sig-line {
  width: 80px;
  height: 1px;
  background: rgba(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(255, 107, 43, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-family: 'DM Mono', monospace;
  color: var(--orange);
  text-align: center;
  line-height: 1.4;
  opacity: 0.7;
}

/* Cert features */
.cert-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.cert-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.cert-feat:hover {
  border-color: rgba(255, 107, 43, 0.3);
}

.cert-feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 107, 43, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cert-feat-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.cert-feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* 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(--orange);
}

.ccb-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.ccb-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.ccb-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', 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: 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, 107, 43, 0.3);
}

.review-card::before {
  display: none;
}

.review-quote-icon {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  color: rgba(255, 107, 43, 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: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 43, 0.4);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.reviewer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.reviewer-role {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.reviews-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.rstat {
  flex: 1;
  min-width: 160px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.rstat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.rstat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--orange);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li {
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/* ===== ENROLL CTA ===== */
.enroll-section {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(160deg, #150800, 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, 107, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.enroll-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
  position: relative;
}

.enroll-section h2 span {
  color: var(--orange);
}

.enroll-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
  position: relative;
}

.enroll-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.enroll-pill {
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 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, 107, 43, 0.4);
}

.faq-item.faq-open {
  border-color: rgba(255, 107, 43, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  font-weight: 700;
  line-height: 1;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 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: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.faq-still {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.08), rgba(255, 107, 43, 0.04));
  border: 1px solid rgba(255, 107, 43, 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: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
}

.faq-still-text p {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 14px 16px 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-bg-text {
    font-size: 90px;
    opacity: 0.025;
    top: 0;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  /* 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: #ccc;
    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, 107, 43, 0.06);
    border: 1px solid rgba(255, 107, 43, 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, 107, 43, 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, 107, 43, 0.12), rgba(255, 50, 0, 0.06));
    border: 1px solid rgba(255, 107, 43, 0.4);
    border-radius: 10px;
    padding: 9px 14px;
    margin-bottom: 10px;
  }

  .offer-timer-mobile .otm-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--orange);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
  }

  .offer-timer-mobile .otm-boxes {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .offer-timer-mobile .otm-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 107, 43, 0.25);
    border-radius: 6px;
    padding: 4px 6px;
    text-align: center;
    min-width: 38px;
  }

  .offer-timer-mobile .otm-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--orange);
    display: block;
    line-height: 1;
  }

  .offer-timer-mobile .otm-unit {
    font-family: 'DM Mono', monospace;
    font-size: 7.5px;
    color: #999;
    display: block;
    margin-top: 1px;
  }

  .offer-timer-mobile .otm-sep {
    font-weight: 800;
    color: rgba(255, 107, 43, 0.6);
    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, 107, 43, 0.1);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav a.mobile-enroll {
  background: var(--orange);
  color: white !important;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  text-align: center;
  margin-top: 20px;
  font-weight: 700;
}

.mobile-nav a.mobile-enroll:hover {
  background: var(--orange2);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .plugin-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat-num {
    font-size: 22px;
  }

  .rstat-num {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .company-certs {
    flex-direction: column;
  }

  .company-cert-badge {
    min-width: unset;
  }

  .module-num-block {
    width: 48px;
    min-height: 48px;
    font-size: 14px;
  }
}

/* ===== COUNTDOWN TIMER ===== */
.offer-timer {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.15), rgba(255, 77, 0, 0.08));
  border: 1px solid rgba(255, 107, 43, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.timer-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.timer-label .fa-fire {
  color: #ff4500;
  margin-right: 5px;
  animation: flicker 1.2s infinite alternate;
}

@keyframes flicker {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

.timer-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tbox {
  background: var(--dark);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tbox span:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}

.tunit {
  font-family: 'DM Mono', monospace;
  font-size: 9px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

.tsep {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ===== STICKY BOTTOM ENROLL BAR ===== */
.sticky-enroll {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1a0a00, #0f0f0f);
  border-top: 2px solid var(--orange);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(255, 107, 43, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-enroll.show {
  transform: translateY(0);
}

.sticky-enroll-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-enroll-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}

.sticky-enroll-price span {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.sticky-enroll-timer {
  font-size: 12px;
  color: #bbb;
  font-family: 'DM Mono', monospace;
}

.sticky-enroll-timer .fa-clock {
  color: var(--orange);
  margin-right: 4px;
}

.sticky-enroll-btn {
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  animation: pulse-enroll 2s infinite;
}

.sticky-enroll-btn:hover {
  background: var(--orange2);
  transform: scale(1.04);
  animation: none;
}

@keyframes pulse-enroll {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 43, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 43, 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(255, 107, 43, 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-section {
  background: linear-gradient(160deg, #0a0500 0%, #0a0a0a 60%);
  border: 1px solid #2e2e2e;
  border-radius: 24px;
  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 25px 50px -12px rgba(0, 0, 0, 0.5);
  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: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  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-section::before {
  content: 'ENROLL';
  position: absolute;
  right: -40px;
  top: 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 140px;
  color: rgba(255, 107, 43, 0.03);
  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: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.enroll-title span {
  color: var(--orange);
}

.enroll-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.enroll-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.ep-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}

.ep-new {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}

.ep-badge {
  background: rgba(255, 107, 43, 0.15);
  border: 1px solid rgba(255, 107, 43, 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: rgba(255, 255, 255, 0.04);
  border: 1px solid #2e2e2e;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}

.enroll-pill .fa-solid {
  color: var(--orange);
  font-size: 11px;
}

.enroll-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.enroll-trust span {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-trust .fa-solid {
  color: var(--green);
  font-size: 12px;
}

/* --- Right: Form Card --- */
.enroll-form-card {
  background: #131313;
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.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 #1e1e1e;
  background: rgba(255, 107, 43, 0.04);
}

.efc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 4px;
}

.efc-subtitle {
  font-size: 13px;
  color: var(--muted);
}

/* 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: #ccc;
  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: #0a0a0a;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 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(255, 107, 43, 0.12);
}

.input-wrap input::placeholder {
  color: #555;
}

.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), #e55a00);
  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(255, 107, 43, 0.35);
}

.btn-enroll-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 107, 43, 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: 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;
}

/* --- Mobile Responsive --- */
@media (max-width: 920px) {
  .enroll-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .enroll-section::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .enroll-section {
    padding: 56px 20px;
  }

  .enroll-form-card {
    border-radius: 16px;
  }

  #enrollForm {
    padding: 20px 18px;
  }

  .efc-header {
    padding: 18px 18px 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ep-new {
    font-size: 36px;
  }
}