/* ============================================
   PAGES.CSS — Page-specific Styles
   Design System: "Portal to the Future — Bioluminescent Dark"
   Karbon Ayak İzi
   ============================================ */

/* ============================================
   1. HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Scan-line overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.02) 2px,
    rgba(255,255,255,0.02) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  min-height: 100vh;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

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

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-overline);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon-green);
  background: rgba(0,255,136,0.05);
  border: 1px solid var(--neon-green);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.hero-title .line {
  display: block;
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.6s; }
.hero-title .line:nth-child(2) { animation-delay: 0.7s; }
.hero-title .line:nth-child(3) { animation-delay: 0.8s; }
.hero-title .line:nth-child(4) { animation-delay: 0.9s; }

.hero-title .neon {
  color: var(--neon-green);
  text-shadow: 0 0 30px rgba(0,255,136,0.3);
}

/* Cursor Blink */
.cursor-blink {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--neon-green);
  margin-left: 4px;
  vertical-align: middle;
  box-shadow: var(--glow-green-sm);
  animation: blink 1s step-end infinite;
}

/* Hero Description */
.hero-description {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}


/* ============================================
   2. 3D GLOBE
   ============================================ */
.globe-container {
  position: relative;
  width: clamp(280px, 30vw, 400px);
  height: clamp(280px, 30vw, 400px);
}

.globe {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(0,255,136,0.15),
    var(--bg-deep) 60%,
    rgba(0,0,0,0.8)
  );
  box-shadow:
    var(--glow-green-lg),
    inset 0 0 60px rgba(0,255,136,0.08),
    inset 0 0 120px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

/* Atmospheric conic-gradient layer */
.globe::before {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0,255,136,0.06) 45deg,
    transparent 90deg,
    rgba(0,212,255,0.04) 180deg,
    transparent 270deg,
    rgba(0,255,136,0.06) 315deg,
    transparent 360deg
  );
  animation: globeAtmosphere 30s linear infinite;
}

/* Meridian / latitude lines via pseudo */
.globe::after {
  content: '';
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 1px solid rgba(0,255,136,0.08);
  box-shadow: inset 0 0 0 30px transparent, inset 0 0 0 31px rgba(0,255,136,0.05);
}

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

/* Orbit Lines */
.orbit {
  position: absolute;
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.orbit-1 {
  width: 130%;
  height: 60%;
  margin-left: -65%;
  margin-top: -30%;
  transform: rotateX(70deg) rotateZ(0deg);
  animation: orbitSpin 20s linear infinite;
}

.orbit-2 {
  width: 150%;
  height: 50%;
  margin-left: -75%;
  margin-top: -25%;
  transform: rotateX(60deg) rotateZ(60deg);
  animation: orbitSpin 28s linear infinite reverse;
  border-color: rgba(0,212,255,0.07);
}

.orbit-3 {
  width: 170%;
  height: 45%;
  margin-left: -85%;
  margin-top: -22.5%;
  transform: rotateX(75deg) rotateZ(120deg);
  animation: orbitSpin 35s linear infinite;
  border-color: rgba(0,255,136,0.05);
}

@keyframes orbitSpin {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}

/* Data Points */
.data-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: var(--glow-green-sm);
  animation: dataPulse 3s ease-in-out infinite;
}

.data-point::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0,255,136,0.3);
  animation: pulseRing 2s ease-out infinite;
}

.data-point:nth-child(1) { top: 25%; left: 30%; animation-delay: 0s; }
.data-point:nth-child(2) { top: 40%; left: 65%; animation-delay: 0.5s; }
.data-point:nth-child(3) { top: 60%; left: 40%; animation-delay: 1s; }
.data-point:nth-child(4) { top: 35%; left: 50%; animation-delay: 1.5s; }
.data-point:nth-child(5) { top: 55%; left: 25%; animation-delay: 2s; }
.data-point:nth-child(6) { top: 70%; left: 55%; animation-delay: 0.7s; }

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

/* Globe Hover */
.globe-container:hover .globe {
  transform: scale(1.05);
  box-shadow:
    0 0 40px rgba(0,255,136,0.35),
    0 0 80px rgba(0,255,136,0.2),
    0 0 120px rgba(0,255,136,0.1),
    inset 0 0 60px rgba(0,255,136,0.12);
}


/* ============================================
   3. TRUST BAND
   ============================================ */
.trust-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  z-index: 10;
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  flex-wrap: wrap;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.trust-item {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.trust-item:hover {
  color: var(--text-secondary);
}


/* ============================================
   4. STATS SECTION
   ============================================ */
.stats-section {
  background: var(--bg-void);
  padding: var(--space-24) 0;
  position: relative;
}

.stats-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 var(--space-10);
  position: relative;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,255,136,0.3);
  margin-bottom: var(--space-2);
}

.stat-number .stat-suffix {
  font-size: 0.5em;
  color: var(--neon-green-dim);
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border-dim), transparent);
  flex-shrink: 0;
}

/* Count-up animation trigger */
.stat-number[data-count] {
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  text-shadow: 0 0 40px rgba(0,255,136,0.5);
}


/* ============================================
   5. SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--bg-deep);
  padding: var(--space-24) 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-neon-line);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-12);
}

.services-header-text {
  max-width: 600px;
}

.services-header-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--neon-green);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap 0.3s ease, color 0.3s ease;
}

.services-header-link:hover {
  gap: var(--space-3);
  color: var(--neon-green-bright);
}

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

.services-grid .service-card:nth-child(7) {
  grid-column: 2;
}

/* Service card neon-line color variations */
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--neon-green), var(--emerald)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--emerald-deep), var(--neon-green-dim)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green)); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, var(--emerald), var(--emerald-deep)); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, var(--neon-green-dim), var(--emerald)); }
.service-card:nth-child(7)::before { background: linear-gradient(90deg, var(--neon-cyan), var(--emerald)); }


/* ============================================
   6. SECTORS SECTION
   ============================================ */
.sectors-section {
  background: var(--bg-void);
  padding: var(--space-24) 0;
  position: relative;
}

.sectors-section .neon-divider {
  margin-bottom: var(--space-12);
}

.sectors-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

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

.sector-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-line);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sector-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--glow-green-sm);
  background: var(--bg-elevated);
}

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

.sector-icon {
  font-size: 36px;
  margin-bottom: var(--space-4);
  display: block;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-icon {
  transform: scale(1.15);
}

.sector-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.sector-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================
   7. PORTFOLIO / REPORTS SECTION
   ============================================ */
.reports-section {
  background: var(--bg-deep);
  padding: var(--space-24) 0;
  position: relative;
}

.reports-header {
  margin-bottom: var(--space-12);
}

.reports-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-card {
  display: flex;
  align-items: stretch;
  gap: var(--space-8);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.report-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-green), var(--emerald-deep));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.report-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-green-sm);
}

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

.report-card-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-3);
}

.report-card-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.report-card-meta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.report-meta-tag {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--neon-green-dim);
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.report-card-mockup {
  border-radius: var(--radius-md);
  min-height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-mockup-1 {
  background: linear-gradient(135deg, #0D3B1E 0%, #0A1628 100%);
}

.report-mockup-2 {
  background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, #0D1117 100%);
}

.report-mockup-3 {
  background: linear-gradient(135deg, #0A1628 0%, #0D3B1E 100%);
}

/* Geometric decorations for report mockups */
.report-card-mockup .geo-shape {
  position: absolute;
  border: 1px solid rgba(0,255,136,0.12);
  border-radius: 50%;
  z-index: 1;
}

.report-card-mockup .geo-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20px;
  right: 20px;
}

.report-card-mockup .geo-shape:nth-child(2) {
  width: 40px;
  height: 40px;
  bottom: 30px;
  left: 20px;
}

.report-card-mockup .mockup-label {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: rgba(0,255,136,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
}


/* ============================================
   8. CALCULATOR TEASER
   ============================================ */
.calculator-teaser {
  width: 100%;
  background:
    radial-gradient(ellipse at center, rgba(0,255,136,0.06) 0%, transparent 60%),
    var(--bg-void);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calculator-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-neon-line);
}

.calculator-teaser::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-neon-line);
}

.calc-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-8);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0,255,136,0.2);
  animation: pulseGlow 3s ease-in-out infinite;
}

.calc-icon-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0,255,136,0.08);
  animation: pulseRing 3s ease-out infinite;
}

.calc-icon svg,
.calc-icon .calc-icon-inner {
  width: 48px;
  height: 48px;
  color: var(--neon-green);
  stroke: var(--neon-green);
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.3));
  animation: calcPulse 3s ease-in-out infinite;
}

@keyframes calcPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0,255,136,0.3)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(0,255,136,0.5)); }
}

.calculator-teaser h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-4);
}

.calculator-teaser p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto var(--space-8);
  line-height: 1.8;
}

.calculator-teaser .btn {
  margin: 0 auto;
}


/* ============================================
   9. CALCULATOR PAGE
   ============================================ */
.calculator-section {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--bg-void);
  min-height: 100vh;
  position: relative;
}

/* Type Selection Grid */
.calc-type-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.calc-type-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  width: 320px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}

.calc-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.calc-type-card:hover::before {
  opacity: 1;
}

.calc-type-card.selected {
  border-color: var(--neon-green);
  background: rgba(0,255,136,0.06);
  box-shadow: var(--glow-green-lg);
}

.calc-type-card.selected::before {
  opacity: 1;
}

.calc-type-card .type-icon {
  font-size: 48px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.calc-type-card:hover .type-icon,
.calc-type-card.selected .type-icon {
  transform: scale(1.2);
}

.calc-type-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-bright);
  position: relative;
  z-index: 1;
}

.calc-type-card p {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* Progress Indicator */
.calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.calc-progress-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.calc-progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.4s ease;
  position: relative;
}

.calc-progress-dot.active {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--bg-void);
  box-shadow: var(--glow-green-md);
  animation: progressPulse 2s ease-in-out infinite;
}

.calc-progress-dot.completed {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--bg-void);
  box-shadow: var(--glow-green-sm);
}

.calc-progress-dot .calc-progress-label {
  position: absolute;
  top: 44px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.calc-progress-dot.active .calc-progress-label,
.calc-progress-dot.completed .calc-progress-label {
  color: var(--neon-green-dim);
}

.calc-progress-line {
  width: 60px;
  height: 2px;
  background: var(--border-dim);
  transition: background 0.4s ease;
}

.calc-progress-line.completed {
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(0,255,136,0.3);
}

@keyframes progressPulse {
  0%, 100% { box-shadow: var(--glow-green-md); }
  50% { box-shadow: var(--glow-green-lg); }
}

/* Calculator Form Card */
.calc-form-card {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.calc-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--gradient-neon-line);
  opacity: 0.5;
}

.calc-step {
  display: none;
  animation: heroFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-step.active {
  display: block;
}

.calc-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-2);
}

.calc-step > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--text-body);
}

.calc-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-8);
  gap: var(--space-4);
}

/* Calculator Result — "Mission Report" panel */
.calc-result {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg), var(--glow-green-sm);
  text-align: center;
  display: none;
  position: relative;
  overflow: hidden;
}

.calc-result.active {
  display: block;
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-green));
}

.calc-result-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-green);
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.result-total {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1;
  text-shadow: 0 0 40px rgba(0,255,136,0.4), 0 0 80px rgba(0,255,136,0.15);
  margin: var(--space-4) 0;
}

.result-unit {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.calc-result-chart {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-result-chart canvas {
  max-width: 100%;
}

.calc-result-insights {
  text-align: left;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.calc-result-insights .insight-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.calc-result-insights .insight-row:last-child {
  border-bottom: none;
}

.calc-result-insights .insight-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.calc-result-insights .insight-value {
  font-family: var(--font-mono);
  color: var(--neon-green);
  font-weight: 500;
}

/* Tree equivalent & comparison stats */
.calc-result-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.comparison-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}

.comparison-card .comp-icon {
  font-size: 28px;
  margin-bottom: var(--space-2);
}

.comparison-card .comp-value {
  font-family: var(--font-mono);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--neon-green);
  margin-bottom: var(--space-1);
}

.comparison-card .comp-label {
  font-size: var(--text-caption);
  color: var(--text-muted);
}

/* Email CTA in result */
.calc-result-email {
  display: flex;
  gap: var(--space-3);
  max-width: 450px;
  margin: 0 auto var(--space-6);
}

.calc-result-email input {
  flex: 1;
  background: var(--bg-deep);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.calc-result-email input::placeholder {
  color: var(--text-muted);
}

.calc-result-email input:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}

/* ---- Calculator: Missing class definitions ---- */

/* Type section container */
.calc-type-section {
  text-align: center;
}

.calc-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-3);
}

.calc-section-desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Icon class used in HTML (alias for .type-icon) */
.calc-type-icon {
  font-size: 48px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
  color: var(--neon-green);
  margin-bottom: var(--space-2);
}

.calc-type-card:hover .calc-type-icon,
.calc-type-card.selected .calc-type-icon {
  transform: scale(1.2);
}

.calc-type-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-bright);
  position: relative;
  z-index: 1;
}

.calc-type-desc {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* Step title & desc classes */
.calc-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-2);
}

.calc-step-desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--text-body);
}

/* Back to type button */
.calc-back-type {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: var(--space-2) 0;
  margin-bottom: var(--space-6);
  transition: color 0.3s ease;
}

.calc-back-type:hover {
  color: var(--neon-green);
}

/* Selected type label */
.calc-selected-type {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-green);
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

/* Navigation buttons (calc-nav replaces calc-buttons) */
.calc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  gap: var(--space-4);
}

.calc-next,
.calc-prev,
.calc-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* Form row for side-by-side fields */
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Form hint text */
.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* Result header */
.calc-result-header {
  margin-bottom: var(--space-6);
}

.calc-result-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-2);
}

.calc-result-subtitle {
  font-size: var(--text-body);
  color: var(--text-secondary);
}

/* Result summary (big number area) */
.calc-result-summary {
  margin: var(--space-6) 0 var(--space-8);
}

.calc-result-number {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1;
  text-shadow: 0 0 40px rgba(0,255,136,0.4), 0 0 80px rgba(0,255,136,0.15);
}

.calc-result-unit {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: var(--space-2);
}

/* Insight cards */
.calc-insight-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  text-align: left;
  padding: var(--space-4);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.calc-insight-card:last-child {
  margin-bottom: 0;
}

.calc-insight-icon {
  flex-shrink: 0;
  color: var(--neon-green);
}

.calc-insight-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-1);
}

.calc-insight-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Report section in results */
.calc-result-report {
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin: var(--space-8) 0;
  text-align: center;
}

.calc-result-report h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-2);
}

.calc-result-report p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.calc-report-form {
  display: flex;
  gap: var(--space-3);
  max-width: 450px;
  margin: 0 auto;
}

.calc-report-form .form-group {
  flex: 1;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .calc-report-form {
    flex-direction: column;
  }
}

/* CTA in results */
.calc-result-cta {
  background: var(--bg-deep);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin: var(--space-8) 0;
  text-align: center;
}

.calc-result-cta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-2);
}

.calc-result-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

/* Recalculate button area */
.calc-result-recalculate {
  margin-top: var(--space-6);
  text-align: center;
}


/* ============================================
   10. BLOG SECTION (Homepage Teaser)
   ============================================ */
.blog-section {
  background: var(--bg-void);
  padding: var(--space-24) 0;
  position: relative;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
}

.blog-header-text {
  max-width: 500px;
}

.blog-header-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--neon-green);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap 0.3s ease, color 0.3s ease;
}

.blog-header-link:hover {
  gap: var(--space-3);
  color: var(--neon-green-bright);
}

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

/* Blog card image placeholders with CSS gradients */
.blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-placeholder-1 {
  background: linear-gradient(135deg, #0D3B1E, #0A1628);
}

.blog-placeholder-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.blog-placeholder-2 {
  background: radial-gradient(circle at center, var(--emerald-deep), var(--bg-void));
}

.blog-placeholder-3 {
  background: conic-gradient(from 45deg, #0D3B1E, var(--bg-deep), #0D3B1E);
}

.blog-placeholder-label {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: rgba(0,255,136,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}


/* ============================================
   11. BLOG POST PAGE
   ============================================ */
.blog-post {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--bg-void);
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.blog-post-meta .meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

.blog-post-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-8);
  line-height: 1.1;
}

.blog-post-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-bright);
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.blog-post-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.blog-post-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.blog-post-content ul {
  list-style: none;
}

.blog-post-content ol {
  list-style: none;
  counter-reset: blog-counter;
}

.blog-post-content ol li {
  counter-increment: blog-counter;
}

.blog-post-content ol li::before {
  content: counter(blog-counter) ".";
  font-family: var(--font-mono);
  color: var(--neon-green);
  font-weight: 600;
  font-size: 13px;
  position: absolute;
  left: -24px;
  top: 3px;
}

.blog-post-content li {
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-2);
}

.blog-post-content ul li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 6px rgba(0,255,136,0.4);
}

.blog-post-content strong {
  color: var(--text-primary);
  font-weight: 500;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--neon-green);
  padding: var(--space-6) var(--space-8);
  background: rgba(0,255,136,0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-8) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.blog-post-content blockquote p {
  margin-bottom: 0;
}

.blog-post-content a {
  color: var(--neon-green);
  text-decoration: underline;
  text-decoration-color: rgba(0,255,136,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.blog-post-content a:hover {
  text-decoration-color: var(--neon-green);
}

.blog-post-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--neon-green-dim);
}

.blog-post-content pre {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  overflow-x: auto;
}

.blog-post-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: var(--text-primary);
}

/* Blog CTA at bottom */
.blog-cta {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  margin-top: var(--space-16);
  position: relative;
  overflow: hidden;
}

.blog-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-neon-line);
}

.blog-cta h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--text-bright);
  margin-bottom: var(--space-4);
}

.blog-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   12. FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-deep);
  padding: var(--space-24) 0;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-item.active,
.faq-item.open {
  border-color: var(--border-glow);
  box-shadow: var(--glow-green-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  cursor: pointer;
  gap: var(--space-4);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-question h4,
.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}

.faq-item.active .faq-question h4,
.faq-item.open .faq-question h4,
.faq-item.active .faq-question span:first-child,
.faq-item.open .faq-question span:first-child {
  color: var(--neon-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon,
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--neon-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner,
.faq-answer p {
  padding: 0 var(--space-6) var(--space-6) var(--space-6);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 20px;
  font-weight: 300;
}

.faq-item.open .faq-toggle,
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}


/* ============================================
   13. PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  max-height: 500px;
  background: var(--bg-void);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-12);
}

/* Floating orbs decoration */
.page-hero .orb-hero-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gradient-glow-orb);
  filter: blur(80px);
  opacity: 0.4;
  top: -50px;
  right: 10%;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

.page-hero .orb-hero-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
  bottom: 20%;
  left: 5%;
  pointer-events: none;
  animation: orbFloat 25s ease-in-out infinite;
  animation-delay: -8s;
}

/* Scan-line overlay for page hero */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Bottom gradient fade */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--bg-void));
  pointer-events: none;
  z-index: 1;
}

.page-hero .container {
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-4);
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-4);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.breadcrumb .breadcrumb-separator {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb .breadcrumb-current {
  color: var(--text-secondary);
}


/* ============================================
   14. ABOUT PAGE
   ============================================ */
.about-section {
  padding: var(--space-24) 0;
  background: var(--bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-12);
  align-items: start;
}

.about-story h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-6);
}

.about-story p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.about-story p strong {
  color: var(--text-primary);
  font-weight: 500;
}

.about-image-area {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(0,255,136,0.08), var(--bg-surface));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Values Grid */
.values-section {
  padding: var(--space-24) 0;
  background: var(--bg-void);
}

.values-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.value-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-line);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.value-card-icon {
  font-size: 32px;
  margin-bottom: var(--space-4);
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: var(--space-3);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Team Grid */
.team-section {
  padding: var(--space-24) 0;
  background: var(--bg-deep);
}

.team-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,255,136,0.15), rgba(0,212,255,0.1));
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: 0.05em;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
}

.team-card:hover .team-avatar {
  box-shadow: var(--glow-green-sm);
  border-color: var(--border-glow);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.team-card .team-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.team-card .team-bio {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin-top: var(--space-3);
  line-height: 1.6;
}

.team-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.team-tags span {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,255,136,0.08);
  color: var(--neon-green);
  border: 1px solid rgba(0,255,136,0.15);
}


/* ============================================
   15. CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--bg-void);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* Contact Form — glassmorphism panel */
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--gradient-neon-line);
  opacity: 0.5;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-8);
}

.contact-form .form-group {
  margin-bottom: var(--space-6);
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: var(--text-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.08);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.contact-form select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Contact Info */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon-green);
  font-size: 18px;
}

.contact-info-text h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.contact-info-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-text a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: var(--neon-green);
}

/* Map Placeholder */
.contact-map {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-4);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(92%) hue-rotate(180deg) brightness(0.8) contrast(1.1);
}

.contact-map-placeholder {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}


/* ============================================
   16. LEGAL PAGE (KVKK, Privacy, Terms)
   ============================================ */
.legal-section {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--bg-void);
}

.legal-panel {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  position: relative;
}

.legal-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-8);
  right: var(--space-8);
  height: 1px;
  background: var(--gradient-neon-line);
  opacity: 0.3;
}

.legal-panel h1 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--space-8);
}

.legal-panel h2 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--neon-green-dim);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.legal-panel h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-panel h3 {
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-panel ul,
.legal-panel ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
}

.legal-panel ul {
  list-style: none;
}

.legal-panel ol {
  list-style: none;
  counter-reset: legal-counter;
}

.legal-panel ol li {
  counter-increment: legal-counter;
}

.legal-panel ol li::before {
  content: counter(legal-counter) ".";
  font-family: var(--font-mono);
  color: var(--neon-green-dim);
  font-weight: 500;
  font-size: 13px;
  position: absolute;
  left: -24px;
  top: 2px;
}

.legal-panel li {
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-2);
}

.legal-panel ul li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-green-dim);
}

.legal-panel a {
  color: var(--neon-green);
  text-decoration: underline;
  text-decoration-color: rgba(0,255,136,0.3);
  text-underline-offset: 3px;
}

.legal-panel a:hover {
  text-decoration-color: var(--neon-green);
}

.legal-panel .legal-date {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.legal-panel table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-6);
}

.legal-panel table th,
.legal-panel table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--text-small);
}

.legal-panel table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.legal-panel table td {
  color: var(--text-secondary);
}


/* ============================================
   MISSING: PARTICLES
   ============================================ */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--neon-green);
  animation: twinkle 4s ease-in-out infinite;
  opacity: 0;
}

/* ============================================
   MISSING: BLOG CARD IMAGE GRADIENTS & TEXT
   ============================================ */
.blog-gradient-1 {
  background: linear-gradient(135deg, #0D3B1E, #0A1628) !important;
}

.blog-gradient-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.blog-gradient-2 {
  background: radial-gradient(circle at center, var(--emerald-deep), var(--bg-void)) !important;
}

.blog-gradient-3 {
  background: conic-gradient(from 45deg, #0D3B1E, var(--bg-deep), #0D3B1E) !important;
}

.blog-card-image-text {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: rgba(0,255,136,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  white-space: nowrap;
}

/* ============================================
   MISSING: VIEW-ALL LINKS
   ============================================ */
.blog-view-all,
.services-view-all {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--neon-green);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.blog-view-all:hover,
.services-view-all:hover {
  gap: var(--space-3);
  color: var(--neon-green-bright);
}

/* ============================================
   MISSING: NEON TEXT UTILITY
   ============================================ */
.neon-text {
  color: var(--neon-green);
  font-style: normal;
}

/* ============================================
   MISSING: REPORT CARD OLD-STYLE STRUCTURE
   ============================================ */
.reports-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-card .report-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
}

.report-card .report-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.report-card .report-details span {
  font-size: 14px;
  color: var(--text-secondary);
}

.report-card .report-details strong {
  color: var(--text-primary);
}

.report-card .report-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.report-mockup-bar {
  height: 3px;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0,255,136,0.4);
  position: relative;
  z-index: 1;
}

/* ============================================
   MISSING: MEGA MENU ICON & TAGS
   ============================================ */
.mega-icon {
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
}

.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mega-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.15);
  color: var(--neon-green-dim);
}

/* ============================================
   MISSING: TRUST LOGOS
   ============================================ */
.trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.trust-logos span:hover {
  color: var(--text-secondary);
}

/* ============================================
   MISSING: CALC TEASER CONTENT
   ============================================ */
.calc-teaser-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.calc-teaser-icon {
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-teaser-icon svg {
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.3));
}


/* ============================================
   RESPONSIVE: LARGE SCREENS (>= 1440px)
   ============================================ */
@media (min-width: 1440px) {
  .hero-grid {
    gap: 64px;
  }

  .globe-container {
    width: 420px;
    height: 420px;
  }
}


/* ============================================
   RESPONSIVE: TABLET (<= 1024px)
   ============================================ */
@media (max-width: 1024px) {
  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Globe */
  .globe-container {
    width: 280px;
    height: 280px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(7) {
    grid-column: auto;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reports */
  .report-card {
    flex-direction: column;
  }

  .report-card-mockup {
    min-height: 180px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* Calculator */
  .calc-type-grid {
    gap: 20px;
  }

  .calc-type-card {
    width: 260px;
    padding: 36px 24px;
  }

  /* Stats */
  .stat-item {
    padding: 0 var(--space-6);
  }
}


/* ============================================
   RESPONSIVE: MOBILE (<= 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hero */
  .hero-grid {
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Trust Band */
  .trust-band-inner {
    gap: 20px;
  }

  .trust-label {
    width: 100%;
    text-align: center;
  }

  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: var(--space-8);
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-dim), transparent);
  }

  .stat-item {
    padding: 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  /* Calculator */
  .calc-type-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .calc-type-card {
    width: 100%;
    max-width: 340px;
    padding: 32px 24px;
  }

  .calc-form-card {
    padding: 32px 24px;
  }

  .calc-result {
    padding: 32px 24px;
  }

  .result-total {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .calc-result-comparison {
    grid-template-columns: 1fr;
  }

  .calc-result-email {
    flex-direction: column;
  }

  .calc-progress-line {
    width: 30px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .team-card {
    padding: 24px 16px;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  /* Contact */
  .contact-form {
    padding: 32px 24px;
  }

  /* Page Hero */
  .page-hero {
    height: 40vh;
    min-height: 260px;
    padding-bottom: var(--space-8);
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  /* Legal */
  .legal-panel {
    padding: var(--space-8);
    border-radius: var(--radius-md);
  }

  /* Blog Post */
  .blog-post-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .blog-cta {
    padding: var(--space-8);
  }

  /* Report cards */
  .report-card {
    padding: var(--space-6);
  }
}


/* ============================================
   RESPONSIVE: SMALL MOBILE (<= 480px)
   ============================================ */
@media (max-width: 480px) {
  /* Globe */
  .globe-container {
    width: 220px;
    height: 220px;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stat-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Trust */
  .trust-band-inner {
    flex-direction: column;
    gap: var(--space-3);
  }

  .trust-item {
    font-size: 11px;
  }

  /* Blog post */
  .blog-post-meta {
    flex-direction: column;
    gap: var(--space-2);
  }

  .blog-post-meta .meta-divider {
    display: none;
  }

  /* Calculator progress */
  .calc-progress {
    transform: scale(0.85);
    transform-origin: center;
  }

  /* Report mockup hidden on very small */
  .report-card-mockup {
    display: none;
  }

  .report-card {
    flex-direction: column;
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-title .line,
  .hero-description,
  .hero-cta,
  .hero-visual,
  .hero-scroll-indicator,
  .trust-band {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .cursor-blink {
    animation: none;
    opacity: 1;
  }

  .globe::before {
    animation: none;
  }

  .orbit,
  .orbit-1,
  .orbit-2,
  .orbit-3 {
    animation: none;
  }

  .data-point {
    animation: none;
    opacity: 1;
  }

  .data-point::after {
    animation: none;
  }

  .calc-icon svg,
  .calc-icon .calc-icon-inner {
    animation: none;
  }

  .calc-icon-ring,
  .calc-icon-ring::before {
    animation: none;
  }

  .calc-progress-dot.active {
    animation: none;
  }

  .hero-scroll-indicator .scroll-line {
    animation: none;
    opacity: 0.5;
  }

  .page-hero .orb-hero-1,
  .page-hero .orb-hero-2 {
    animation: none;
  }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .hero-section,
  .trust-band,
  .hero-visual,
  .hero-scroll-indicator,
  .globe-container,
  .page-hero .orb-hero-1,
  .page-hero .orb-hero-2,
  .neon-divider {
    display: none;
  }

  .stats-section,
  .services-section,
  .sectors-section,
  .reports-section,
  .calculator-teaser,
  .blog-section,
  .faq-section,
  .about-section,
  .values-section,
  .team-section,
  .contact-section,
  .legal-section,
  .blog-post,
  .calculator-section {
    background: #fff;
    color: #000;
    padding: 20px 0;
  }

  .stat-number,
  .neon,
  .value-card h3,
  .blog-post-content ul li::before,
  .legal-panel h2 {
    color: #000;
    text-shadow: none;
  }

  .legal-panel,
  .contact-form,
  .calc-form-card,
  .calc-result,
  .faq-item,
  .sector-card,
  .report-card,
  .team-card,
  .value-card,
  .contact-info-card {
    border: 1px solid #ccc;
    box-shadow: none;
    background: #fff;
  }
}
