/* ==========================================================================
   COMPONENTS.CSS — Nav, Hero, Cards, Buttons, Footer
   ========================================================================== */

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  --nav-bg: rgba(245, 244, 240, 0.95);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .nav.scrolled {
  --nav-bg: rgba(10, 10, 12, 0.95);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Toggle Buttons */
.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  overflow: hidden;
  white-space: nowrap;
}

.toggle-btn .toggle-expand-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin 0.35s ease;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 0;
}

.toggle-btn:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.toggle-btn:hover .toggle-expand-label {
  max-width: 100px;
  opacity: 1;
  margin-left: 6px;
}

#lang-toggle .toggle-label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}

#theme-toggle .icon-sun { display: none; }
#theme-toggle .icon-moon { display: flex; }

[data-theme="dark"] #theme-toggle .icon-sun { display: flex; }
[data-theme="dark"] #theme-toggle .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.mobile-link:hover {
  color: var(--accent);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-lg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md) var(--space-xs) var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  padding-bottom: 0.1em;
}

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

.hero-title-sub {
  display: block;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-secondary);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.hero-tagline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease infinite;
}

/* ==================== BENTO GRID ==================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.bento-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-large {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.bento-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.bento-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== SERVICES ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--prism-purple);
}

.service-number {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: -10px;
  right: var(--space-lg);
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: var(--accent-glow);
}

.service-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  position: relative;
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  position: relative;
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-card.expanded .service-details {
  max-height: 600px;
  opacity: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--prism-blue);
  border-radius: 50%;
}

.service-flow {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.flow-step {
  flex: 1;
}

.flow-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--prism-blue);
  margin-bottom: var(--space-xs);
}

.flow-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.flow-arrow {
  color: var(--prism-purple);
  font-size: var(--text-xl);
  padding-top: 2px;
  flex-shrink: 0;
}

.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--prism-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid var(--prism-blue);
  border-radius: 100px;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-toggle::after {
  content: '+';
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.expanded .service-toggle::after {
  transform: rotate(45deg);
}

.service-toggle:hover {
  background: var(--prism-blue);
  color: #fff;
  box-shadow: 0 0 20px var(--prism-blue-glow);
}

.service-card.expanded .service-toggle {
  background: var(--prism-blue);
  color: #fff;
}

/* ==================== THE FORGE ==================== */
.forge-section {
  background: #0A0A0C;
  overflow: hidden;
  position: relative;
  color: #EDEDEF;
}

.forge-section .section-tag:not(.forge-tag) {
  color: #B8B8C0;
  border-color: rgba(255,255,255,0.18);
}

.forge-section .section-title,
.forge-section .forge-step-title {
  color: #F0F0F2;
}

.forge-section .forge-desc {
  color: #C0C0C8;
}

/* Forge Video Background */
.forge-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.forge-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.forge-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(10,10,12,0.7) 60%, rgba(10,10,12,0.95) 85%, #0A0A0C 100%);
  pointer-events: none;
}

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

.forge-section .forge-step {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.forge-section .forge-step:hover {
  border-color: var(--accent);
}


.forge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl) var(--space-3xl);
  align-items: center;
}

.forge-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--space-2xl);
}

.forge-title {
  margin-bottom: var(--space-lg);
}

.forge-title span:first-child {
  display: block;
  font-size: var(--text-4xl);
}

.forge-subtitle {
  display: block;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.forge-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.forge-timeline {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.forge-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--prism-blue);
  margin-top: 28px;
  opacity: 0.5;
}

.forge-arrow svg {
  width: 100%;
  height: 100%;
}

.forge-step {
  flex: 1;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.forge-step:hover {
  border-color: var(--accent);
}

.forge-day {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.forge-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-primary);
}

/* Forge Cardex — scrolling showcase */
.forge-cardex-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 0;
}

.forge-cardex-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.forge-cardex {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.forge-cardex-track {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  animation: cardex-scroll 60s linear infinite;
}

.forge-cardex-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Cardex icons */
.ci {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.forge-cardex-item:hover .ci {
  opacity: 0.8;
  stroke: var(--prism-blue);
}

.forge-cardex-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--prism-blue);
  color: #E8E8EA;
}

@keyframes cardex-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Forge extra content */
.forge-desc-secondary {
  margin-top: var(--space-md);
}

.forge-step-desc {
  font-size: var(--text-sm);
  color: #A8A8B2;
  margin-top: var(--space-sm);
  line-height: 1.6;
}

/* Forge Promises Strip */
.forge-promises {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.forge-promise {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.forge-promise:hover {
  border-color: var(--prism-blue);
}

.forge-promise strong {
  color: var(--accent);
  font-weight: 700;
  font-size: var(--text-base);
}

.forge-promise span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.forge-cta-btn {
  margin-left: auto;
}

/* ==================== METHODOLOGY ==================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.method-step {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.method-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.method-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.method-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.method-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== WAR ROOM + LAB ==================== */
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.split-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.split-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin: var(--space-md) 0;
  color: var(--text-primary);
}

.split-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== INDUSTRIES ==================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.industry-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: var(--accent-glow);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.industry-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.industry-detail {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ==================== CONTACT ==================== */
.contact-layout {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link svg {
  color: var(--accent);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
  transition: border-color 0.4s ease;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo-img {
  height: 24px;
  width: auto;
}

.footer-name {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ==================== PRISM ACCENTS ==================== */
.bento-icon {
  position: relative;
}

.bento-card:nth-child(2n) .bento-icon {
  background: var(--prism-blue-glow);
  color: var(--prism-blue);
}

.bento-card:nth-child(3n) .bento-icon {
  background: var(--prism-purple-glow);
  color: var(--prism-purple);
}

.method-number {
  background: linear-gradient(135deg, var(--accent), var(--prism-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-number {
  background: linear-gradient(135deg, var(--accent), var(--prism-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card:hover .service-number {
  background: linear-gradient(135deg, var(--accent-glow), var(--prism-purple-glow));
  -webkit-background-clip: text;
  background-clip: text;
}

.industry-card:nth-child(2n) .industry-icon {
  background: var(--prism-blue-glow);
  color: var(--prism-blue);
}

.industry-card:nth-child(3n) .industry-icon {
  background: var(--prism-purple-glow);
  color: var(--prism-purple);
}

.forge-day {
  background: linear-gradient(90deg, var(--accent), var(--prism-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== TEXT OOMPH ==================== */
.section-title {
  font-weight: 800;
}

.hero-tagline {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.65;
}

.section-desc {
  font-weight: 500;
}

.bento-title,
.service-title,
.split-title {
  font-weight: 800;
}

.stat-number {
  font-weight: 900;
  font-size: var(--text-3xl);
}

.forge-promise strong {
  font-weight: 700;
  font-size: var(--text-base);
}

/* Strong emphasis on key phrases in cards */
.bento-text strong,
.split-text strong,
.method-text strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-title-line:first-child {
  background: linear-gradient(135deg, var(--text-primary) 60%, var(--prism-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== SERVICE DETAILS CONSISTENT TEXT ==================== */
.service-details {
  padding-top: var(--space-md);
}

/* ==================== LAB STATS ==================== */
.lab-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.lab-stat {
  text-align: center;
}

.lab-stat .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.lab-stat .stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ==================== SECTION TAG PRISM COLORS ==================== */
.section-tag {
  border-color: var(--prism-blue);
  color: var(--prism-blue);
}

#nosotros .section-tag {
  border-color: var(--accent);
  color: var(--accent);
}

#servicios .section-tag {
  border-color: var(--prism-purple);
  color: var(--prism-purple);
}

#metodologia .section-tag {
  border-color: var(--prism-blue);
  color: var(--prism-blue);
}

/* ==================== LIGHT THEME ACCENT BOOSTS ==================== */
:root .nav-link:hover::after {
  background: linear-gradient(90deg, var(--accent), var(--prism-blue));
}

:root .bento-card:hover {
  border-color: var(--prism-blue);
}

:root .method-step:hover {
  border-color: var(--prism-purple);
}

:root .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--prism-blue));
}

:root .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--prism-blue));
  box-shadow: 0 0 30px var(--prism-blue-glow), 0 0 20px var(--accent-glow);
}
