/* ============================================
   CERTIFENCE - Dark Cybersecurity Theme
   ============================================ */

/* CSS Variables */
:root {
  --primary: #E8611A;
  --primary-dark: #C94E10;
  --primary-glow: rgba(232, 97, 26, 0.15);
  --primary-glow-strong: rgba(232, 97, 26, 0.3);
  --secondary: #F5A623;
  --secondary-glow: rgba(245, 166, 35, 0.15);
  --neon-green: #F5A623;
  --neon-green-glow: rgba(245, 166, 35, 0.15);
  --dark-900: #020202;
  --dark-800: #0a0806;
  --dark-700: #121010;
  --dark-600: #1a1614;
  --dark-500: #231e1b;
  --dark-400: #2d2622;
  --dark-300: #3a312b;
  --card-bg: rgba(18, 14, 12, 0.75);
  --card-border: rgba(232, 97, 26, 0.1);
  --card-hover-border: rgba(232, 97, 26, 0.35);
  --white: #ffffff;
  --gray-100: #f5f0eb;
  --gray-200: #e6ddd5;
  --gray-300: #cfc3b8;
  --gray-400: #9e8e82;
  --gray-500: #6b5d54;
  --text-primary: #f0e8e0;
  --text-secondary: #9e8e82;
  --text-muted: #6b5d54;
  --accent-green: #F5A623;
  --accent-red: #ff3355;
  --accent-orange: #E8611A;
  --shadow-glow: 0 0 20px rgba(232, 97, 26, 0.1);
  --shadow-glow-strong: 0 0 40px rgba(232, 97, 26, 0.18);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--dark-900);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--primary);
  color: var(--dark-900);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 97, 26, 0.08);
  transition: var(--transition);
  height: 88px;
  overflow: visible;
}

.header.scrolled {
  background: rgba(3, 7, 18, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 1px rgba(232, 97, 26, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo .logo-icon {
  width: auto;
  height: 132px;
  background: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: none;
  animation: none;
}

.logo .logo-icon img {
  height: 132px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 97, 26, 0.3); }
  50% { box-shadow: 0 0 30px rgba(232, 97, 26, 0.5), 0 0 60px rgba(232, 97, 26, 0.2); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 1px rgba(232, 97, 26, 0.2);
  border: 1px solid rgba(232, 97, 26, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.dropdown a:hover {
  background: var(--primary-glow);
  color: var(--primary);
  padding-left: 22px;
}

.dropdown a:hover::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--primary);
}

/* Report Cybercrime Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent-red), #cc0033);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255, 51, 85, 0.2);
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(255, 51, 85, 0.4);
  transform: translateY(-1px);
  color: var(--white);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   CYBER BACKGROUND CANVAS
   ============================================ */
#cyberCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  padding: 160px 0 100px;
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 97, 26, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 97, 26, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(232, 97, 26, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 97, 26, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(232, 97, 26, 0); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual .shield-graphic {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(232, 97, 26, 0.3), 0 0 120px rgba(232, 97, 26, 0.1);
  animation: shieldFloat 6s ease-in-out infinite;
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-visual .shield-graphic::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.hero-visual .shield-graphic::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-visual .shield-graphic i {
  font-size: 6rem;
  color: white;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Scanning line effect for hero */
.hero .scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scanMove 4s linear infinite;
  opacity: 0.4;
  z-index: 2;
}

@keyframes scanMove {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Floating particles in hero */
.cyber-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--primary);
  animation: particleFloat linear infinite;
  opacity: 0;
  z-index: 1;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 140px 0 70px;
  background: var(--dark-800);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 97, 26, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232, 97, 26, 0.05) 0%, transparent 60%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.page-hero .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 97, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 97, 26, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  position: relative;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(232, 97, 26, 0.4), 0 8px 25px rgba(0, 0, 0, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(232, 97, 26, 0.3);
}

.btn-outline:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.15);
}

.btn-white {
  background: var(--white);
  color: var(--dark-900);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background: var(--dark-800);
}

.section-dark {
  background: var(--dark-700);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CARDS — Glassmorphism Cyber Style
   ============================================ */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--card-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 97, 26, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 97, 26, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-glow);
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.4rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.2);
  border-color: rgba(232, 97, 26, 0.3);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(232, 97, 26, 0.15), rgba(232, 97, 26, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   STATS — Animated Counters
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  color: var(--accent-orange);
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(232, 97, 26, 0.2);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--dark-700);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 97, 26, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(232, 97, 26, 0.08) 0%, transparent 50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.2;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: rgba(10, 15, 30, 0.8);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow), 0 0 20px rgba(232, 97, 26, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-900);
  color: var(--text-secondary);
  padding: 70px 0 0;
  border-top: 1px solid rgba(232, 97, 26, 0.08);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .tagline {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(232, 97, 26, 0.08);
  border: 1px solid rgba(232, 97, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark-900);
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.3);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--card-hover-border);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FEATURE LISTS
   ============================================ */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--neon-green);
  margin-top: 3px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.3));
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
}

.process-step .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.2);
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CERTIFICATION CARDS
   ============================================ */
.cert-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--card-border);
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-strong);
}

.cert-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cert-card .full-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================
   CAREER CARDS
   ============================================ */
.job-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.job-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.job-badge.remote {
  background: var(--neon-green-glow);
  color: var(--neon-green);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.job-badge.internship {
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(232, 97, 26, 0.2);
}

.job-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.job-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.service-detail-grid p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Service icon orbs */
.service-detail-grid .icon-orb {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-detail-grid .icon-orb::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(232, 97, 26, 0.1);
  border-radius: var(--radius-xl);
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 1; }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 97, 26, 0.05);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 7, 18, 0.8) 100%);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body .date {
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(232, 97, 26, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(232, 97, 26, 0.5);
}

/* ============================================
   ANIMATIONS — Fade In on Scroll
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card animations */
.grid-3 .card:nth-child(2) .fade-in,
.grid-3 .fade-in:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .card:nth-child(3) .fade-in,
.grid-3 .fade-in:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .fade-in:nth-child(2) { transition-delay: 0.1s; }
.grid-4 .fade-in:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Typing cursor effect */
.typing-cursor::after {
  content: '|';
  color: var(--primary);
  animation: blink 1s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Glitch text effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--primary);
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch::after {
  color: var(--secondary);
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 95% { transform: translateX(0); }
  96% { transform: translateX(-3px); }
  97% { transform: translateX(3px); }
  98% { transform: translateX(-1px); }
  99% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}

@keyframes glitch-2 {
  0%, 95% { transform: translateX(0); }
  96% { transform: translateX(3px); }
  97% { transform: translateX(-3px); }
  98% { transform: translateX(2px); }
  99% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--card-hover-border);
}

.contact-info-card i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(232, 97, 26, 0.2);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-form-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

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

/* ============================================
   ICON BOX — Service Pages
   ============================================ */
.icon-box {
  width: 70px;
  height: 70px;
  background: var(--primary-glow);
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.card:hover .icon-box {
  box-shadow: 0 0 25px rgba(232, 97, 26, 0.2);
  border-color: rgba(232, 97, 26, 0.3);
}

.highlight-box {
  background: var(--primary-glow);
  border-left: 3px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}

.highlight-box p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
}

/* ============================================
   BADGE used inside service-detail pages
   ============================================ */
.badge,
.service-detail-grid .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(232, 97, 26, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   OVERLAY (mobile menu)
   ============================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual .shield-graphic { width: 250px; height: 250px; }
  .hero-visual .shield-graphic i { font-size: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--dark-800);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 24px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1001;
    border-left: 1px solid rgba(232, 97, 26, 0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 12px 0; color: var(--text-secondary); }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
  }

  .nav-item.open .dropdown { display: block; }

  .nav-cta { width: 100%; justify-content: center; margin-top: 16px; }

  .hero h1 { font-size: 2rem; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .page-hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.7rem; }
  .section { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .stats-row { grid-template-columns: 1fr; }
}

/* ============================================
   ATS Resume Checker
   ============================================ */
.ats-upload-area {
  max-width: 600px;
  margin: 0 auto 40px;
}

.ats-dropzone {
  border: 2px dashed rgba(232, 97, 26, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ats-dropzone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232,97,26,0.03) 0%, transparent 70%);
  transition: var(--transition);
}

.ats-dropzone:hover,
.ats-dropzone.dragover {
  border-color: var(--primary);
  background: rgba(232, 97, 26, 0.05);
  box-shadow: var(--shadow-glow);
}

.ats-dropzone.dragover::before {
  background: radial-gradient(circle at center, rgba(232,97,26,0.08) 0%, transparent 70%);
}

.ats-dropzone.processing {
  pointer-events: none;
  opacity: 0.7;
}

.ats-dropzone-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
}

.ats-dropzone h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 6px;
  position: relative;
}

.ats-dropzone p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
}

.ats-file-types {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(232,97,26,0.06);
  padding: 4px 14px;
  border-radius: 20px;
  position: relative;
}

.ats-status {
  text-align: center;
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 24px;
  transition: var(--transition);
}

.ats-status.loading { color: var(--primary); }
.ats-status.success { color: var(--neon-green); }
.ats-status.error { color: var(--accent-red); }

/* Results */
.ats-results-header {
  text-align: center;
  margin-bottom: 32px;
}

.ats-results-header h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.ats-results-header h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.ats-results-header p {
  color: var(--text-secondary);
}

/* General Score */
.ats-general-score {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.ats-score-circle {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  position: relative;
}

.ats-score-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ats-score-ring-bg {
  fill: none;
  stroke: rgba(232, 97, 26, 0.08);
  stroke-width: 6;
}

.ats-score-ring-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease, stroke 0.3s ease;
}

.ats-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ats-score-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.ats-score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ats-general-info {
  flex: 1;
}

.ats-general-info h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.ats-verdict {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.ats-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ats-bar-item {
  width: 100%;
}

.ats-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.ats-bar-track {
  height: 6px;
  background: rgba(232, 97, 26, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.ats-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

/* Jobs Grid */
.ats-jobs-title {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ats-jobs-title i {
  color: var(--primary);
  margin-right: 8px;
}

.ats-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ats-job-score-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.ats-job-score-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.ats-job-header {
  margin-bottom: 16px;
}

.ats-job-header i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.ats-job-header h5 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.ats-small-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
}

.ats-small-circle .ats-score-number {
  font-size: 1.6rem;
}

.ats-small-circle .ats-score-label {
  font-size: 0.7rem;
}

.ats-mini-breakdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 10px 0 12px;
}

.ats-mini-breakdown i {
  color: var(--primary);
  margin-right: 4px;
}

.ats-detail-toggle {
  background: none;
  border: 1px solid rgba(232,97,26,0.15);
  color: var(--primary);
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.ats-detail-toggle:hover {
  background: rgba(232,97,26,0.08);
}

.ats-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 0;
  text-align: left;
}

.ats-detail-panel.open {
  max-height: 500px;
  margin-top: 16px;
}

.ats-matched-keywords {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.ats-keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.ats-tag {
  display: inline-block;
  background: rgba(232, 97, 26, 0.08);
  border: 1px solid rgba(232, 97, 26, 0.15);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Tips */
.ats-tips {
  background: var(--card-bg);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
}

.ats-tips h4 {
  color: var(--neon-green);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.ats-tips ul {
  list-style: none;
  padding: 0;
}

.ats-tips li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0 6px 22px;
  position: relative;
}

.ats-tips li::before {
  content: '\f0eb';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--neon-green);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ATS Responsive */
@media (max-width: 1024px) {
  .ats-jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ats-general-score { flex-direction: column; text-align: center; gap: 24px; }
  .ats-jobs-grid { grid-template-columns: 1fr 1fr; }
  .ats-dropzone { padding: 32px 20px; }
}

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

/* ============================================
   ATS CTA Banner (Homepage & Training Pages)
   ============================================ */
.ats-cta-banner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.ats-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.ats-cta-content {
  flex: 1;
}

.ats-cta-content h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin: 12px 0 10px;
}

.ats-cta-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.ats-cta-visual {
  flex-shrink: 0;
}

.ats-cta-icon {
  width: 140px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ats-cta-icon > i {
  font-size: 4.5rem;
  color: var(--primary);
  opacity: 0.15;
}

.ats-cta-score {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: var(--primary);
  color: var(--dark-900);
  border-radius: 12px;
  padding: 6px 14px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(232, 97, 26, 0.3);
}

.ats-cta-score span {
  font-size: 1.6rem;
  line-height: 1;
}

.ats-cta-score small {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .ats-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 24px;
  }
  .ats-cta-icon { width: 100px; height: 120px; }
  .ats-cta-icon > i { font-size: 3.5rem; }
}

/* ============================================
   Phishing Awareness Quiz
   ============================================ */

/* Start Screen */
.pq-start {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pq-start-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.pq-start h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pq-start p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pq-start-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.pq-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  backdrop-filter: blur(10px);
}

.pq-stat-box i {
  color: var(--primary);
  font-size: 1.3rem;
}

.pq-stat-box span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.pq-start-btn {
  font-size: 1rem;
  padding: 14px 36px;
}

/* Name Input */
.pq-name-input {
  width: 100%;
  max-width: 460px;
  margin: 28px auto 24px;
  text-align: left;
  background: rgba(201,168,76,0.06);
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.pq-name-input label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pq-name-input label i {
  font-size: 0.9rem;
}
.pq-name-input label span {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
}
.pq-name-input .pq-input-wrap {
  position: relative;
}
.pq-name-input .pq-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(201,168,76,0.5);
  font-size: 0.9rem;
  pointer-events: none;
}
.pq-name-input input {
  width: 100%;
  padding: 13px 16px 13px 40px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}
.pq-name-input input:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.pq-name-input input.pq-input-error {
  border-color: #ff3355;
  box-shadow: 0 0 0 3px rgba(255,51,85,0.12);
}
.pq-name-input input::placeholder {
  color: rgba(240,232,224,0.3);
}
.pq-name-error {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: #ff3355;
  font-weight: 500;
}
.pq-name-error.visible {
  display: flex;
}

/* Certificate Section */
.pq-certificate-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(232,97,26,0.08));
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.pq-cert-badge {
  font-size: 2.4rem;
  color: #C9A84C;
  margin-bottom: 10px;
}
.pq-certificate-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pq-certificate-section p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.pq-cert-btn {
  padding: 12px 30px;
  font-size: 0.95rem;
}

/* Certificate Locked */
.pq-certificate-locked {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.pq-certificate-locked i {
  font-size: 1.3rem;
  color: rgba(240,232,224,0.3);
  flex-shrink: 0;
}

/* Progress Bar */
.pq-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(232, 97, 26, 0.1);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.pq-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Header */
.pq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pq-counter {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.pq-difficulty {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pq-score {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Email Card */
.pq-email-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.pq-email-type {
  background: rgba(232, 97, 26, 0.06);
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--card-border);
}

.pq-email-type i {
  margin-right: 6px;
}

.pq-email-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(232, 97, 26, 0.06);
}

.pq-email-from {
  margin-bottom: 6px;
}

.pq-email-from strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.pq-email-address {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-left: 8px;
  font-family: monospace;
}

.pq-email-subject {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.pq-email-body {
  padding: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  white-space: pre-line;
}

.pq-email-body a {
  color: var(--primary);
  text-decoration: underline;
  pointer-events: none;
}

/* Choices */
.pq-question {
  text-align: center;
}

.pq-question h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.pq-choices {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.pq-choice-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid;
}

.pq-choice-btn.legitimate {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
  color: #F5A623;
}

.pq-choice-btn.legitimate:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: #F5A623;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

.pq-choice-btn.phishing {
  background: rgba(255, 51, 85, 0.08);
  border-color: rgba(255, 51, 85, 0.3);
  color: #ff3355;
}

.pq-choice-btn.phishing:hover {
  background: rgba(255, 51, 85, 0.15);
  border-color: #ff3355;
  box-shadow: 0 0 20px rgba(255, 51, 85, 0.15);
}

/* Feedback */
.pq-feedback {
  text-align: center;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.pq-feedback.correct {
  border-color: rgba(245, 166, 35, 0.3);
}

.pq-feedback.wrong {
  border-color: rgba(255, 51, 85, 0.3);
}

.pq-feedback-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.pq-feedback.correct .pq-feedback-icon { color: #F5A623; }
.pq-feedback.wrong .pq-feedback-icon { color: #ff3355; }

.pq-feedback h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pq-feedback.correct h4 { color: #F5A623; }
.pq-feedback.wrong h4 { color: #ff3355; }

.pq-feedback-verdict {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pq-hints {
  text-align: left;
  background: rgba(232, 97, 26, 0.04);
  border: 1px solid rgba(232, 97, 26, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.pq-hints h5 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.pq-hints h5 i {
  margin-right: 6px;
}

.pq-hints ul {
  list-style: none;
  padding: 0;
}

.pq-hints li {
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.6;
}

.pq-hints li::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 8px;
  opacity: 0.7;
}

.pq-next-btn {
  padding: 12px 28px;
  font-size: 0.95rem;
}

/* Results */
.pq-results-header {
  text-align: center;
  margin-bottom: 28px;
}

.pq-results-header h3 {
  color: var(--text-primary);
  font-size: 1.6rem;
}

.pq-results-header h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.pq-score-display {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.pq-score-circle {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.pq-score-circle .ats-score-number {
  font-size: 2rem;
}

.pq-score-info {
  flex: 1;
}

.pq-grade {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.pq-score-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pq-score-breakdown {
  display: flex;
  gap: 20px;
}

.pq-breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pq-breakdown-item span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.pq-breakdown-item strong {
  color: var(--text-primary);
  font-size: 1rem;
}

/* Answer Review */
.pq-answers-review {
  margin-bottom: 28px;
}

.pq-answers-review h4 {
  color: var(--text-primary);
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.pq-answers-review h4 i {
  color: var(--primary);
  margin-right: 8px;
}

.pq-review-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
}

.pq-review-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 97, 26, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pq-review-content {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.pq-review-content strong {
  color: var(--text-primary);
}

.pq-review-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pq-review-tag.phishing {
  background: rgba(255, 51, 85, 0.1);
  color: #ff3355;
}

.pq-review-tag.legit {
  background: rgba(245, 166, 35, 0.1);
  color: #F5A623;
}

.pq-review-result {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.pq-review-item.correct .pq-review-result { color: #F5A623; }
.pq-review-item.wrong .pq-review-result { color: #ff3355; }

.pq-results-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

/* Tips */
.pq-tips {
  background: var(--card-bg);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
}

.pq-tips h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.pq-tips ul {
  list-style: none;
  padding: 0;
}

.pq-tips li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.6;
}

.pq-tips li::before {
  content: '\f3ed';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Phishing Quiz Responsive */
@media (max-width: 768px) {
  .pq-start-stats { flex-direction: column; gap: 12px; }
  .pq-choices { flex-direction: column; }
  .pq-choice-btn { justify-content: center; }
  .pq-score-display { flex-direction: column; text-align: center; }
  .pq-score-breakdown { justify-content: center; }
  .pq-results-actions { flex-direction: column; }
  .pq-review-item { flex-wrap: wrap; }
  .pq-email-address { display: block; margin-left: 0; margin-top: 2px; }
}

@media (max-width: 480px) {
  .pq-feedback { padding: 20px 16px; }
  .pq-hints { padding: 16px; }
}

/* ============================================
   GRC WEBINAR PAGE
   ============================================ */

/* Event Info Bar */
.webinar-bar {
  background: var(--dark-700);
  border-top: 1px solid rgba(232,97,26,0.12);
  border-bottom: 1px solid rgba(232,97,26,0.12);
  padding: 20px 0;
}
.webinar-bar-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.webinar-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.webinar-bar-item:last-child { border-right: none; }
.webinar-bar-item i {
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}
.webinar-bar-item div {
  display: flex;
  flex-direction: column;
}
.webinar-bar-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.webinar-bar-item strong {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Intro Grid */
.webinar-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Highlights checklist */
.webinar-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 8px;
}
.webinar-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.webinar-highlight-item i { color: #4ade80; font-size: 0.85rem; flex-shrink: 0; }

/* Who Should Attend Card */
.webinar-who-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.webinar-who-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.webinar-who-card h3 i { color: var(--primary); }
.webinar-who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.webinar-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.webinar-who-list li i { color: var(--primary); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

/* 5-Day Schedule */
.webinar-schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.webinar-day-card {
  display: flex;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.webinar-day-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}
.webinar-day-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  flex-shrink: 0;
}
.webinar-day-body {
  padding: 20px 24px;
  flex: 1;
}
.webinar-day-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.webinar-day-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}
.webinar-day-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.webinar-day-topics span {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(232,97,26,0.1);
  color: var(--primary);
  border: 1px solid rgba(232,97,26,0.2);
  border-radius: 20px;
  padding: 3px 10px;
}

/* Registration Section */
.webinar-reg-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

/* Sidebar */
.webinar-reg-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.webinar-reg-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.webinar-reg-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.webinar-reg-perk i {
  font-size: 1rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.webinar-reg-perk div { display: flex; flex-direction: column; gap: 2px; }
.webinar-reg-perk strong { font-size: 0.88rem; color: var(--text-primary); font-weight: 600; }
.webinar-reg-perk span { font-size: 0.8rem; color: var(--text-muted); }
.webinar-reg-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 20px 0;
}

/* Form Card */
.webinar-reg-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* Day checkboxes */
.webinar-days-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.webinar-day-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}
.webinar-day-check:hover {
  border-color: rgba(232,97,26,0.3);
  background: rgba(232,97,26,0.04);
}
.webinar-day-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.webinar-day-check input[type="checkbox"]:checked + span {
  color: var(--text-primary);
  font-weight: 500;
}

/* Field errors */
.webinar-field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--accent-red);
  margin-top: 5px;
}
.form-control-error {
  border-color: var(--accent-red) !important;
  box-shadow: 0 0 0 3px rgba(255,51,85,0.1) !important;
}

/* Form-level error */
.webinar-form-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,51,85,0.08);
  border: 1px solid rgba(255,51,85,0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #ff6b84;
  margin-bottom: 16px;
}
.webinar-form-error i { flex-shrink: 0; }

/* Submit button */
.webinar-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px;
  margin-top: 8px;
}

/* Privacy note */
.webinar-privacy-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.webinar-privacy-note i { font-size: 0.75rem; }

/* Success state */
.webinar-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}
.webinar-success-icon {
  font-size: 3.5rem;
  color: #4ade80;
  margin-bottom: 8px;
}
.webinar-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}
.webinar-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 460px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .webinar-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .webinar-reg-wrapper { grid-template-columns: 1fr; }
  .webinar-reg-sidebar { position: static; }
}
@media (max-width: 768px) {
  .webinar-bar-item { padding: 10px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .webinar-bar-item:last-child { border-bottom: none; }
  .webinar-bar-grid { flex-direction: column; }
  .webinar-highlights { grid-template-columns: 1fr; }
  .webinar-day-card { flex-direction: column; }
  .webinar-day-num { writing-mode: horizontal-tb; transform: none; padding: 10px 20px; min-width: unset; }
  .webinar-reg-form-card { padding: 24px 20px; }
}
