/* ============================================
   LABORATORIO VAUCRION — MAIN STYLESHEET
   Neon Terminal Design System
   ============================================ */


:root {
  --bg-primary: #0d0f0e;
  --bg-secondary: #111614;
  --bg-card: #161c19;
  --bg-card-hover: #1a2420;
  --neon-green: #39ff8f;
  --neon-cyan: #00e5cc;
  --neon-magenta: #ff3fa4;
  --text-primary: #e8ede9;
  --text-secondary: #8fa896;
  --text-muted: #556860;
  --border: #1e2b24;
  --border-bright: #2a3d32;
  --font-mono: 'Courier New', 'Lucida Console', monospace;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(57,255,143,0.04);
  --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(57,255,143,0.08);
  --shadow-glow-green: 0 0 20px rgba(57,255,143,0.25), 0 0 40px rgba(57,255,143,0.1);
  --shadow-glow-cyan: 0 0 20px rgba(0,229,204,0.25), 0 0 40px rgba(0,229,204,0.1);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


main { max-width: none; margin: 0; padding: 0; }
section { padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); color: var(--text-primary); line-height: 1.2; }
p { color: var(--text-secondary); line-height: 1.75; }
a { color: var(--neon-green); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--neon-cyan); }
img { max-width: 100%; height: auto; display: block; }
input, textarea, select { font-family: var(--font-sans); }

/* ============================================
   LAYOUT
   ============================================ */

.Container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.SectionLabel {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-green);
  display: block;
  margin-bottom: 1rem;
}

.SectionLabel--light {
  color: rgba(57,255,143,0.7);
}

.SectionHeading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.SectionSubheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.SectionBody {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.TextAccent {
  color: var(--neon-green);
}

.TextLink {
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.TextLink:hover {
  color: var(--neon-cyan);
  gap: 0.75rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.SiteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
  padding: 0 var(--space-md);
}

.SiteHeader.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(57,255,143,0.05);
}

.SiteHeader-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.SiteHeader-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.SiteHeader-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.SiteHeader-navCta {
  background: transparent !important;
  border: 1px solid var(--neon-green) !important;
  color: var(--neon-green) !important;
  padding: 0.4rem 1rem !important;
  border-radius: var(--radius-sm) !important;
  transition: background 0.2s ease, box-shadow 0.2s ease !important;
}

.SiteHeader-navCta:hover {
  background: rgba(57,255,143,0.08) !important;
  box-shadow: var(--shadow-glow-green) !important;
}

.SiteHeader-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

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

.SiteHeader-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.SiteHeader-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.SiteHeader-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU — CURTAIN DROP
   ============================================ */

.MobileMenu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  border-bottom: 2px solid var(--neon-green);
}

.MobileMenu.is-open {
  transform: translateY(0);
}

.MobileMenu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: var(--space-lg) var(--space-md);
  gap: var(--space-md);
}

.MobileMenu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.MobileMenu-link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.6rem 1rem;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateY(-20px);
  opacity: 0;
  width: 100%;
}

.MobileMenu.is-open .MobileMenu-link {
  transform: translateY(0);
  opacity: 1;
}

.MobileMenu.is-open .MobileMenu-link:nth-child(1) { transition-delay: 0.1s; transition: transform 0.35s ease 0.1s, opacity 0.35s ease 0.1s, color 0.2s ease; }
.MobileMenu.is-open .MobileMenu-link:nth-child(2) { transition-delay: 0.15s; transition: transform 0.35s ease 0.15s, opacity 0.35s ease 0.15s, color 0.2s ease; }
.MobileMenu.is-open .MobileMenu-link:nth-child(3) { transition-delay: 0.2s; transition: transform 0.35s ease 0.2s, opacity 0.35s ease 0.2s, color 0.2s ease; }
.MobileMenu.is-open .MobileMenu-link:nth-child(4) { transition-delay: 0.25s; transition: transform 0.35s ease 0.25s, opacity 0.35s ease 0.25s, color 0.2s ease; }
.MobileMenu.is-open .MobileMenu-link:nth-child(5) { transition-delay: 0.3s; transition: transform 0.35s ease 0.3s, opacity 0.35s ease 0.3s, color 0.2s ease; }

.MobileMenu-link:hover { color: var(--neon-green); }

.MobileMenu-close {
  background: none;
  border: 1px solid var(--border-bright);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-top: var(--space-md);
}

.MobileMenu-close:hover {
  color: var(--neon-green);
  border-color: var(--neon-green);
}

/* ============================================
   BUTTONS
   ============================================ */

.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}

.Btn--primary {
  background: var(--neon-green);
  color: #0a1410;
  box-shadow: 0 0 0 rgba(57,255,143,0);
}

.Btn--primary:hover {
  background: #4dffa0;
  color: #0a1410;
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-1px);
}

.Btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
}

.Btn--secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(57,255,143,0.05);
}

.Btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.9375rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.PageHero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.PageHero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #0a1a12 0%, #0d0f0e 70%);
}

.PageHero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,143,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,143,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.PageHero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.PageHero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: var(--space-lg) var(--space-md);
  width: 100%;
}

.PageHero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57,255,143,0.06);
  border: 1px solid rgba(57,255,143,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.75rem;
}

.PageHero-tagDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse 2s ease-in-out infinite;
}

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

.PageHero-tagText {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-green);
  letter-spacing: 0.08em;
}

.PageHero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.PageHero-accent {
  color: var(--neon-green);
  text-shadow: 0 0 30px rgba(57,255,143,0.4);
}

.PageHero-cursor {
  color: var(--neon-green);
  animation: blink 1.1s step-end infinite;
  font-family: var(--font-mono);
}

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

.PageHero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.PageHero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ============================================
   HERO ATROPOS CARD
   ============================================ */

.PageHero-atroposWrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.HeroAtropos {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
}

.HeroAtropos-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-card), 0 0 40px rgba(57,255,143,0.06);
  aspect-ratio: 16/9;
}

.HeroAtropos-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.HeroAtropos-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(13,15,14,0.85);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(57,255,143,0.2);
}

.HeroAtropos-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(13,15,14,0.8);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  letter-spacing: 0.08em;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.IntroSection {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.IntroSection-text h2 {
  margin-bottom: 1.25rem;
}

.IntroSection-text .SectionBody + .SectionBody {
  margin-top: 0.75rem;
}

.IntroSection-text .TextLink {
  margin-top: 1.5rem;
}

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

.MiniCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.MiniCard:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.MiniCard-icon {
  width: 36px;
  height: 36px;
  background: rgba(57,255,143,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.MiniCard-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.MiniCard-body {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FEATURE GRID
   ============================================ */

.FeatureGrid {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

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

.FeatureGrid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.FeatureCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-card);
}

.FeatureCard:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.FeatureCard--large {
  grid-row: 1 / 3;
}

.FeatureCard-imgWrap {
  overflow: hidden;
}

.FeatureCard--large .FeatureCard-imgWrap {
  height: 280px;
}

.FeatureCard--small .FeatureCard-imgWrap {
  height: 160px;
}

.FeatureCard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.FeatureCard:hover .FeatureCard-img {
  transform: scale(1.04);
}

.FeatureCard-body {
  padding: 1.5rem;
}

.FeatureCard-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 0.5rem;
}

.FeatureCard-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.FeatureCard--large .FeatureCard-title {
  font-size: 1.375rem;
}

.FeatureCard-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   ANCHOR SECTION — VISUAL CLIMAX
   ============================================ */

.AnchorSection {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.AnchorSection-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071410 0%, #0a1a0f 40%, #071410 100%);
  border-top: 1px solid rgba(57,255,143,0.15);
  border-bottom: 1px solid rgba(57,255,143,0.15);
}

.AnchorSection-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,143,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,143,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.AnchorSection-container {
  position: relative;
  z-index: 2;
}

.AnchorSection-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.AnchorSection-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.AnchorSection-accent {
  color: var(--neon-green);
  text-shadow: 0 0 40px rgba(57,255,143,0.5);
}

.AnchorSection-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.AnchorSection-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.AnchorImg {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AnchorImg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-green);
}

.AnchorImg-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.AnchorImg:hover .AnchorImg-img {
  transform: scale(1.06);
}

.AnchorImg-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(7,20,16,0.9));
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 1.5rem 0.75rem 0.6rem;
  text-align: center;
}

.AnchorSection-cta {
  display: flex;
  justify-content: center;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.ProcessSection {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.ProcessSection-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ProcessSection-header .SectionSubheading {
  margin: 0 auto;
}

.ProcessSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.ProcessStep {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ProcessStep:hover {
  border-color: rgba(57,255,143,0.3);
  box-shadow: 0 0 20px rgba(57,255,143,0.06), var(--shadow-card);
  transform: translateY(-3px);
}

.ProcessStep-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(57,255,143,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.ProcessStep-icon {
  width: 40px;
  height: 40px;
  background: rgba(57,255,143,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.ProcessStep-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.ProcessStep-body {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ProcessStep-line {
  display: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.HowItWorks {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

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

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

.HowCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-card);
}

.HowCard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

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

.HowCard-step {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(57,255,143,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.HowCard-iconWrap {
  width: 48px;
  height: 48px;
  background: rgba(57,255,143,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.HowCard:hover .HowCard-iconWrap {
  background: rgba(57,255,143,0.12);
  box-shadow: 0 0 16px rgba(57,255,143,0.2);
}

.HowCard-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.HowCard-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   INNER PAGE HERO
   ============================================ */

.InnerPage {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.InnerHero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.InnerHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,143,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,143,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.InnerHero .Container {
  position: relative;
  z-index: 2;
}

.InnerHero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.InnerHero-sub {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   STORY PAGE
   ============================================ */

.StorySection {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

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

.StorySection-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.StorySection-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.StorySection-imgWrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.StorySection-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.StorySection-imgWrap:hover .StorySection-img {
  transform: scale(1.03);
}

.PhilosophySection {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.PhilosophySection-inner {
  max-width: 960px;
  margin: 0 auto;
}

.PhilosophySection-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: 2rem;
}

.PhilosophySection-col p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.MaterialiSection {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

.MaterialiGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.MaterialCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}

.MaterialCard:hover {
  border-color: rgba(0,229,204,0.3);
  box-shadow: 0 0 20px rgba(0,229,204,0.06), var(--shadow-card);
  transform: translateY(-2px);
}

.MaterialCard-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,229,204,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.MaterialCard-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.MaterialCard-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   WORK PROCESS PAGE
   ============================================ */

.WorkSection {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

.WorkSection-intro {
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.WorkSection-intro p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.WorkPhases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.WorkPhase {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.WorkPhase:last-child {
  border-bottom: none;
}

.WorkPhase-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.WorkPhase-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(57,255,143,0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.WorkPhase-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.WorkPhase-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.WorkPhase-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.WorkPhase--alt .WorkPhase-body {
  direction: rtl;
}

.WorkPhase--alt .WorkPhase-text,
.WorkPhase--alt .WorkPhase-img {
  direction: ltr;
}

.WorkPhase-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.WorkPhase-text p:last-child {
  margin-bottom: 0;
}

.WorkPhase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.WorkPhase-imgEl {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.WorkPhase-img:hover .WorkPhase-imgEl {
  transform: scale(1.03);
}

/* ============================================
   FAQ PAGE
   ============================================ */

.FaqSection {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

.FaqSection-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 860px;
  margin: 0 auto;
}

.FaqGroup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.FaqGroup-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--neon-green);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(57,255,143,0.03);
}

.FaqItem {
  border-bottom: 1px solid var(--border);
}

.FaqItem:last-child {
  border-bottom: none;
}

.FaqItem-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 56px;
}

.FaqItem-question:hover {
  color: var(--neon-green);
  background: rgba(57,255,143,0.03);
}

.FaqItem-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s ease;
}

.FaqItem-question[aria-expanded="true"] .FaqItem-icon {
  transform: rotate(180deg);
  color: var(--neon-green);
}

.FaqItem-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.FaqItem-answer.is-open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.FaqItem-answer p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.75;
  padding: 0 1.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.ContactSection {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}

.ContactSection-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.ContactSection-infoTitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.ContactInfo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.ContactInfo-item i {
  color: var(--neon-green);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
}

.ContactInfo-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.ContactInfo-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.ContactInfo-item a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.ContactMap {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ============================================
   CHAT FORM
   ============================================ */

.ChatForm {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ChatForm-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.ChatForm-headerDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse 2s ease-in-out infinite;
}

.ChatForm-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ChatBubble {
  max-width: 85%;
}

.ChatBubble--company {
  align-self: flex-start;
}

.ChatBubble--company p {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.ChatBubble--company p a {
  color: var(--neon-cyan);
}

.ChatBubble--user {
  align-self: flex-end;
  width: 100%;
  max-width: 90%;
}

.ChatBubble--user input,
.ChatBubble--user textarea {
  width: 100%;
  background: rgba(57,255,143,0.05);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.ChatBubble--user input:focus,
.ChatBubble--user textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(57,255,143,0.1);
}

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

.ChatBubble--privacy {
  max-width: 100%;
}

.PrivacyCheck {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  background: rgba(57,255,143,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  transition: border-color 0.2s ease;
}

.PrivacyCheck:hover {
  border-color: var(--border-bright);
}

.PrivacyCheck input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--neon-green);
  cursor: pointer;
  margin-top: 2px;
}

.PrivacyCheck span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ChatForm-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

.ChatForm-send {
  background: var(--neon-green);
  color: #0a1410;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ChatForm-send:hover {
  background: #4dffa0;
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-1px);
}

/* ============================================
   CONTACT CTA
   ============================================ */

.ContactCta {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.ContactCta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ContactCta-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ContactCta-body {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ============================================
   THANKS PAGE
   ============================================ */

.ThanksPage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  min-height: calc(100vh - 68px - 60px);
}

.ThanksPage-inner {
  text-align: center;
  max-width: 480px;
}

.ThanksPage-icon {
  font-size: 4rem;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
  text-shadow: var(--shadow-glow-green);
  animation: pulse 2.5s ease-in-out infinite;
}

.ThanksPage-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ThanksPage-body {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.LegalPage {
  flex: 1;
}

.LegalPage-header {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.LegalPage-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.LegalPage-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 700px;
}

.LegalPage-body {
  padding: var(--space-lg) 0 var(--space-xl);
}

.LegalSection {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.LegalSection:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.LegalSection-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--neon-green);
  margin-bottom: 0.875rem;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.LegalSection p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.SiteFooter {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 1.25rem var(--space-md);
}

.SiteFooter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.SiteFooter-logo img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.SiteFooter-logo:hover img {
  opacity: 1;
}

.SiteFooter-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.SiteFooter-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

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

.SiteFooter-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============================================
   COOKIE CONSENT — RIGHT PANEL
   ============================================ */

.CookieConsent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.CookieConsent-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.CookieConsent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: var(--bg-card);
  border-left: 1px solid var(--border-bright);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5), -1px 0 0 rgba(57,255,143,0.08);
}

.CookieConsent.is-visible {
  transform: translateX(0);
}

.CookieConsent-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.CookieConsent-shield {
  width: 36px;
  height: 36px;
  background: rgba(57,255,143,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.CookieConsent-headerText h3 {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.CookieConsent-headerText p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.CookieConsent-body {
  flex: 1;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
}

.CookieConsent-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.CookieConsent-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.CookieCategory {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.CookieCategory-info h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.CookieCategory-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.CookieToggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.CookieToggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.CookieToggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.CookieToggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.CookieToggle input:checked + .CookieToggle-slider {
  background: rgba(57,255,143,0.3);
}

.CookieToggle input:checked + .CookieToggle-slider::before {
  transform: translateX(16px);
  background: var(--neon-green);
}

.CookieToggle input:disabled + .CookieToggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.CookieConsent-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.CookieConsent-accept {
  background: var(--neon-green);
  color: #0a1410;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  min-height: 44px;
}

.CookieConsent-accept:hover {
  background: #4dffa0;
  box-shadow: var(--shadow-glow-green);
}

.CookieConsent-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  min-height: 40px;
}

.CookieConsent-reject:hover {
  color: var(--text-secondary);
  border-color: var(--border-bright);
}

.CookieConsent-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-top: 0.25rem;
}

.CookieConsent-links a {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: color 0.2s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .IntroSection-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .FeatureGrid-layout { grid-template-columns: 1fr 1fr; }
  .FeatureCard--large { grid-column: 1 / -1; grid-row: auto; }
  .ProcessSteps { grid-template-columns: repeat(2, 1fr); }
  .HowItWorks-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .AnchorSection-images { grid-template-columns: 1fr 1fr; }
  .AnchorImg--3 { display: none; }
  .StorySection-grid { grid-template-columns: 1fr; }
  .PhilosophySection-columns { grid-template-columns: 1fr; gap: var(--space-md); }
  .MaterialiGrid { grid-template-columns: 1fr 1fr; }
  .WorkPhase-body { grid-template-columns: 1fr; }
  .WorkPhase--alt .WorkPhase-body { direction: ltr; }
  .ContactSection-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .SiteHeader-nav { display: none; }
  .SiteHeader-hamburger { display: flex; }

  .FeatureGrid-layout { grid-template-columns: 1fr; }
  .ProcessSteps { grid-template-columns: 1fr; }
  .AnchorSection-images { grid-template-columns: 1fr; }
  .AnchorImg--2, .AnchorImg--3 { display: none; }
  .IntroSection-cards { grid-template-columns: 1fr; }
  .MaterialiGrid { grid-template-columns: 1fr; }

  .WorkPhase-header { flex-direction: column; gap: 0.5rem; }
  .WorkPhase-num { font-size: 2rem; min-width: auto; }

  .SiteFooter-inner { flex-direction: column; text-align: center; gap: 1rem; }

  .CookieConsent { width: 100%; }

  .PageHero-heading { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
  .Container { padding: 0 1rem; }
  .PageHero-ctas { flex-direction: column; align-items: center; }
  .Btn { width: 100%; max-width: 280px; justify-content: center; }
  .SiteHeader { padding: 0 1rem; }
}