/* ============================================================
   TutorDesk v3 — Landing Page Extra Styles
   Supplementary CSS for classes used in landing/index.php
   but not defined in landing.css

   Color scheme: Emerald Green (#10B981) + Amber/Gold (#F59E0B)
   Uses CSS variables from style.css (--primary-*, --accent-*, etc.)
   ============================================================ */

/* ----------------------------------------------------------
   1. NAV INNER (wrapper inside .landing-nav)
   The HTML uses .nav-inner instead of .container
   ---------------------------------------------------------- */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----------------------------------------------------------
   2. HERO ENHANCED (modifier for hero section)
   ---------------------------------------------------------- */
.hero-enhanced {
  position: relative;
  padding-top: 6rem;
}

.hero-enhanced .hero-content {
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------------
   3. HERO ILLUSTRATIONS (CSS-only floating shapes)
   Pure CSS decorative icons with float animations
   ---------------------------------------------------------- */
.hero-illustrations {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}

/* --- CSS Book --- */
.css-book {
  position: absolute;
  top: 8%;
  left: 28%;
  width: 70px;
  height: 54px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px 12px 12px 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: cssFloat1 6s ease-in-out infinite;
}

.css-book::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px 0 0 2px;
}

.css-book::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 10px;
  width: 30px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  box-shadow: 0 8px 0 rgba(255,255,255,0.15), 0 16px 0 rgba(255,255,255,0.1);
}

/* --- CSS Graduation Cap --- */
.css-gradcap {
  position: absolute;
  top: 22%;
  right: 8%;
  width: 68px;
  height: 48px;
  animation: cssFloat2 7s ease-in-out infinite 1s;
}

.css-gradcap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 14px;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(245,158,11,0.12));
  border: 1.5px solid rgba(245,158,11,0.35);
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.css-gradcap::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 28px;
  background: linear-gradient(180deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
  border: 1.5px solid rgba(245,158,11,0.25);
  border-top: none;
  border-radius: 0 0 4px 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* --- CSS Pencil --- */
.css-pencil {
  position: absolute;
  bottom: 32%;
  left: 12%;
  width: 16px;
  height: 72px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 3px 3px 0 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: cssFloat3 5s ease-in-out infinite 0.5s;
  transform: rotate(-15deg);
}

.css-pencil::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid rgba(255,255,255,0.3);
}

.css-pencil::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 2px;
  right: 2px;
  height: 4px;
  background: rgba(16,185,129,0.35);
  border-radius: 1px;
}

/* --- CSS Light Bulb --- */
.css-bulb {
  position: absolute;
  bottom: 10%;
  right: 22%;
  width: 48px;
  height: 60px;
  animation: cssFloat4 8s ease-in-out infinite 2s;
}

.css-bulb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 40% 40%, rgba(251,191,36,0.45), rgba(251,191,36,0.1));
  border: 1.5px solid rgba(251,191,36,0.35);
  border-radius: 50% 50% 40% 40%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(251,191,36,0.2), 0 8px 32px rgba(0,0,0,0.08);
}

.css-bulb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 12px;
  background: rgba(251,191,36,0.2);
  border: 1.5px solid rgba(251,191,36,0.3);
  border-radius: 0 0 4px 4px;
}

/* Float animations for CSS illustrations */
@keyframes cssFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}

@keyframes cssFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes cssFloat3 {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50%      { transform: rotate(-12deg) translateY(-10px); }
}

@keyframes cssFloat4 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-14px) scale(1.03); }
}

/* ----------------------------------------------------------
   4. GRADIENT WORD (gradient text for non-heading contexts)
   ---------------------------------------------------------- */
.gradient-word {
  background: linear-gradient(135deg, #fcd34d, #f59e0b, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .gradient-word {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------------------------
   5. HERO BADGE DOT (animated dot indicator inside badge)
   ---------------------------------------------------------- */
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

/* ----------------------------------------------------------
   6. SECTION WITH OVERLAY
   ---------------------------------------------------------- */
.section-with-overlay {
  position: relative;
}

.section-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(16,185,129,0.03) 0%,
    rgba(245,158,11,0.02) 50%,
    rgba(16,185,129,0.03) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.section-with-overlay .section-header,
.section-with-overlay .features-grid,
.section-with-overlay .who-for-grid,
.section-with-overlay .testimonials-grid {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   7. GROWTH SECTION
   ---------------------------------------------------------- */
.growth-section {
  background: #f8fafc;
}

.growth-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ----------------------------------------------------------
   8. GROWTH CHART CONTAINER
   ---------------------------------------------------------- */
.growth-chart-container {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.growth-chart-container:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: rgba(16,185,129,0.2);
}

.growth-chart-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* ----------------------------------------------------------
   9. CSS BAR CHART (horizontal bar chart)
   ---------------------------------------------------------- */
.css-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

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

.bar-track {
  width: 100%;
  height: 28px;
  background: var(--neutral-100);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  width: var(--bar-width, 0%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shimmer animation on bars */
.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: barShimmer 2.5s ease-in-out infinite;
}

@keyframes barShimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.bar-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16,185,129,0.25);
}

.bar-accent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245,158,11,0.25);
}

.bar-value {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   10. GROWTH INDICATORS
   ---------------------------------------------------------- */
.growth-indicators {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.growth-indicators:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: rgba(16,185,129,0.2);
}

.indicator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.indicator-card {
  background: rgba(248,250,252,0.8);
  border: 1px solid rgba(226,232,240,0.6);
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.indicator-card:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.indicator-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,0.1);
  color: var(--primary-600);
  margin-bottom: 0.75rem;
}

.indicator-card:nth-child(even) .indicator-icon {
  background: rgba(245,158,11,0.1);
  color: var(--accent-600);
}

.indicator-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.indicator-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.indicator-bar-track {
  width: 100%;
  height: 6px;
  background: var(--neutral-100);
  border-radius: 100px;
  overflow: hidden;
}

.indicator-bar-fill {
  height: 100%;
  width: var(--bar-width, 0%);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-accent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.indicator-primary {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* ----------------------------------------------------------
   11. TESTIMONIALS SECTION
   ---------------------------------------------------------- */
.testimonials-section {
  position: relative;
  background: #f8fafc;
}

.testimonial-overlay {
  background: linear-gradient(180deg,
    rgba(16,185,129,0.04) 0%,
    rgba(245,158,11,0.03) 50%,
    rgba(16,185,129,0.04) 100%
  ) !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ----------------------------------------------------------
   12. TESTIMONIAL CARD
   ---------------------------------------------------------- */
.testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(16,185,129,0.2);
}

.testimonial-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #10b981, #059669);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-accent {
  opacity: 1;
}

.testimonial-accent-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  font-style: italic;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

/* ----------------------------------------------------------
   13. PRICING BTN (default style, without -outline or -primary)
   ---------------------------------------------------------- */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  background: transparent;
  color: var(--primary-600);
  border: 1.5px solid var(--primary-300);
}

.pricing-btn:hover {
  background: var(--primary-50);
  border-color: var(--primary-500);
  text-decoration: none;
  color: var(--primary-700);
}

/* ----------------------------------------------------------
   14. CHECK ICON (in pricing features list)
   ---------------------------------------------------------- */
.pricing-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
}

.pricing-features li.disabled .check {
  background: var(--neutral-200);
  color: var(--neutral-400);
}

/* ----------------------------------------------------------
   15. ANIMATE ON SCROLL
   ---------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

/* 1024px and below — Tablet landscape */
@media (max-width: 1024px) {
  .hero-illustrations {
    width: 300px;
    height: 300px;
    right: 2%;
  }

  .growth-charts {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .css-book { width: 56px; height: 42px; }
  .css-gradcap { width: 54px; height: 38px; }
  .css-pencil { height: 56px; width: 14px; }
  .css-bulb { width: 38px; height: 48px; }
}

/* 768px and below — Tablet */
@media (max-width: 768px) {
  .hero-illustrations {
    display: none;
  }

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

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

  .growth-charts {
    grid-template-columns: 1fr;
  }
}

/* 480px and below — Mobile */
@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .growth-chart-container,
  .growth-indicators {
    padding: 1.25rem;
  }
}

/* ==========================================================
   DARK MODE — Landing Extra Styles
   Activated via html.dark class
   ========================================================== */

/* Growth Section - Dark */
html.dark .growth-section {
  background: #0f172a;
}

html.dark .growth-chart-container {
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(12px);
  border-color: rgba(51,65,85,0.6);
}

html.dark .growth-chart-container:hover {
  background: rgba(30,41,59,0.8);
  border-color: rgba(52,211,153,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

html.dark .growth-chart-title {
  color: #f1f5f9;
}

html.dark .bar-track {
  background: #334155;
}

html.dark .bar-primary {
  background: linear-gradient(135deg, #34d399, #059669);
}

html.dark .bar-accent {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

html.dark .bar-label {
  color: #94a3b8;
}

html.dark .bar-value {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* Growth Indicators - Dark */
html.dark .growth-indicators {
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(12px);
  border-color: rgba(51,65,85,0.6);
}

html.dark .growth-indicators:hover {
  background: rgba(30,41,59,0.8);
  border-color: rgba(52,211,153,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

html.dark .indicator-card {
  background: rgba(15,23,42,0.6);
  border-color: #334155;
}

html.dark .indicator-card:hover {
  background: rgba(30,41,59,0.9);
  border-color: rgba(52,211,153,0.2);
}

html.dark .indicator-icon {
  background: rgba(16,185,129,0.15);
  color: #6ee7b7;
}

html.dark .indicator-card:nth-child(even) .indicator-icon {
  background: rgba(245,158,11,0.15);
  color: #fcd34d;
}

html.dark .indicator-value {
  color: #f1f5f9;
}

html.dark .indicator-label {
  color: #64748b;
}

html.dark .indicator-bar-track {
  background: #334155;
}

/* Section with overlay - Dark */
html.dark .section-with-overlay {
  background: #0f172a;
}

html.dark .section-gradient-overlay {
  background: linear-gradient(180deg,
    rgba(16,185,129,0.04) 0%,
    rgba(245,158,11,0.02) 50%,
    rgba(16,185,129,0.04) 100%
  );
}

/* Gradient word - Dark */
html.dark .gradient-word {
  background: linear-gradient(135deg, #fcd34d, #f59e0b, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.dark .section-title .gradient-word {
  background: linear-gradient(135deg, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonials - Dark */
html.dark .testimonials-section {
  background: #0f172a;
}

html.dark .testimonial-overlay {
  background: linear-gradient(180deg,
    rgba(16,185,129,0.05) 0%,
    rgba(245,158,11,0.03) 50%,
    rgba(16,185,129,0.05) 100%
  ) !important;
}

html.dark .testimonial-card {
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(12px);
  border-color: rgba(51,65,85,0.6);
}

html.dark .testimonial-card:hover {
  background: rgba(30,41,59,0.8);
  border-color: rgba(52,211,153,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

html.dark .testimonial-accent {
  background: linear-gradient(135deg, #34d399, #059669);
}

html.dark .testimonial-accent-amber {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

html.dark .testimonial-quote {
  color: #94a3b8;
}

html.dark .testimonial-name {
  color: #f1f5f9;
}

html.dark .testimonial-role {
  color: #64748b;
}

html.dark .testimonial-avatar {
  background: linear-gradient(135deg, #10b981, #059669);
}

html.dark .testimonial-avatar-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Pricing default btn - Dark */
html.dark .pricing-btn {
  color: #6ee7b7;
  border-color: var(--primary-700);
}

html.dark .pricing-btn:hover {
  background: rgba(16,185,129,0.1);
  border-color: var(--primary-500);
  color: #34d399;
}

/* Check icon - Dark */
html.dark .pricing-features li .check {
  background: rgba(16,185,129,0.15);
  color: #6ee7b7;
}

html.dark .pricing-features li.disabled .check {
  background: #334155;
  color: #475569;
}

/* Hero illustrations - Dark */
html.dark .css-book {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.12);
}

html.dark .css-book::before {
  background: rgba(255,255,255,0.15);
}

html.dark .css-book::after {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 8px 0 rgba(255,255,255,0.07), 0 16px 0 rgba(255,255,255,0.05);
}

html.dark .css-gradcap::before {
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.06));
  border-color: rgba(245,158,11,0.2);
}

html.dark .css-gradcap::after {
  background: linear-gradient(180deg, rgba(245,158,11,0.12), rgba(245,158,11,0.03));
  border-color: rgba(245,158,11,0.15);
}

html.dark .css-pencil {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.12);
}

html.dark .css-pencil::before {
  border-top-color: rgba(255,255,255,0.18);
}

html.dark .css-pencil::after {
  background: rgba(52,211,153,0.25);
}

html.dark .css-bulb::before {
  background: radial-gradient(circle at 40% 40%, rgba(251,191,36,0.3), rgba(251,191,36,0.06));
  border-color: rgba(251,191,36,0.2);
  box-shadow: 0 0 20px rgba(251,191,36,0.12), 0 8px 32px rgba(0,0,0,0.15);
}

html.dark .css-bulb::after {
  background: rgba(251,191,36,0.12);
  border-color: rgba(251,191,36,0.2);
}

/* Hero badge dot - Dark */
html.dark .hero-badge .dot {
  background: #6ee7b7;
}

/* Animate on scroll - Dark (same behavior, just ensuring no overrides) */
html.dark .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.dark .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
