/* ============================================================
   FTH Advisory - Complete Stylesheet
   Green Theme + Multi-Page Site
   ============================================================ */

/* --- Google Fonts: loaded via <link> in HTML for performance --- */

/* --- Root Variables (Green Theme) --- */
:root {
  --green: #166534;
  --green-deep: #14532d;
  --green-accent: #22c55e;
  --black: #09090b;
  --g900: #18181b;
  --g800: #27272a;
  --g700: #3f3f46;
  --g600: #52525b;
  --g500: #71717a;
  --g400: #a1a1aa;
  --g300: #d4d4d8;
  --g200: #e4e4e7;
  --g100: #f4f4f5;
  --g50: #fafafa;
  --white: #fff;
  --r: 16px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Aliases for convenience */
  --accent: var(--green-accent);
  --accent-deep: var(--green);
  --accent-deepest: var(--green-deep);
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --container: 1180px;
  --section-pad: 7rem;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 3px rgba(0, 0, 0, .03);
  --shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .05);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, .04), 0 16px 48px rgba(0, 0, 0, .08);
  --transition: .3s var(--ease);
}


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

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--g800);
  background: var(--white);
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}


/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-accent));
  z-index: 10001;
  pointer-events: none;
  transition: width .1s linear;
}


/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, .06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity .4s var(--ease);
  opacity: 0;
}

.cursor-glow.visible {
  opacity: 1;
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: .12s; }
.stagger-children > *:nth-child(3) { transition-delay: .24s; }
.stagger-children > *:nth-child(4) { transition-delay: .36s; }
.stagger-children > *:nth-child(5) { transition-delay: .48s; }
.stagger-children > *:nth-child(6) { transition-delay: .6s; }
.stagger-children > *:nth-child(7) { transition-delay: .72s; }
.stagger-children > *:nth-child(8) { transition-delay: .84s; }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .24s; }
.stagger > *:nth-child(4) { transition-delay: .36s; }
.stagger > *:nth-child(5) { transition-delay: .48s; }
.stagger > *:nth-child(6) { transition-delay: .6s; }
.stagger > *:nth-child(7) { transition-delay: .72s; }
.stagger > *:nth-child(8) { transition-delay: .84s; }


/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -15px) scale(1.03); }
  50% { transform: translate(-10px, 20px) scale(.97); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, .4); }
  50% { box-shadow: 0 0 35px rgba(34, 197, 94, .7); }
}

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

@keyframes heroScale {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

/* Hero entrance choreography */
.hero h1 {
  animation: heroFadeUp .9s var(--ease-out) .3s both;
}

.hero-desc {
  animation: heroFadeUp .9s var(--ease-out) .5s both;
}

.hero-actions {
  animation: heroFadeUp .9s var(--ease-out) .7s both;
}

/* Shimmer effect on hero h1 em */
.hero h1 em {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-accent) 30%, var(--green) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear 2s infinite;
}

/* Service cards: staggered entrance with spring */
.service-card.visible {
  animation: heroScale .6s var(--ease-spring) both;
}

/* Sys cards: count up glow */
.sys-num[data-count] {
  transition: text-shadow .5s var(--ease);
}

.sys-card:hover .sys-num[data-count] {
  text-shadow: 0 0 30px rgba(22, 101, 52, .3);
}

/* Process step number: pulse on visible */
.pcard.visible .pcard-num {
  animation: heroScale .5s var(--ease-spring) both;
}

.pcard:nth-child(1).visible .pcard-num { animation-delay: .1s; }
.pcard:nth-child(2).visible .pcard-num { animation-delay: .25s; }
.pcard:nth-child(3).visible .pcard-num { animation-delay: .4s; }
.pcard:nth-child(4).visible .pcard-num { animation-delay: .55s; }

/* Section overline: line grows in */
.visible .section-overline::before {
  animation: lineGrow .6s var(--ease-out) .2s both;
  transform-origin: left;
}

/* Deliverable cards: badge entrance */
.dlv.visible .dlv-num {
  animation: heroScale .5s var(--ease-spring) .2s both;
}

/* Scroll indicator at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--g300), transparent);
  animation: float 2s ease-in-out infinite;
  opacity: .5;
}


/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity .6s var(--ease-out), visibility .6s var(--ease-out);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 120px;
  height: auto;
  opacity: 0;
  animation: loaderLogoIn .6s var(--ease-out) .1s both;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--g200);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: loaderLogoIn .4s var(--ease-out) .3s both;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-accent));
  border-radius: 2px;
  animation: loaderSlide 1.2s cubic-bezier(.4, 0, .2, 1) infinite;
}

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


/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
[data-lang="ua"] {
  display: none;
}

body.lang-ua [data-lang="en"] {
  display: none;
}

body.lang-ua [data-lang="ua"] {
  display: block;
}

[data-i="ua"] {
  display: none;
}

body.lang-ua [data-i="en"] {
  display: none;
}

body.lang-ua [data-i="ua"] {
  display: inline;
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10002;
  padding: .75rem 1.5rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: top .3s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.serif {
  font-family: var(--font-serif);
  font-style: italic;
}

.gold {
  color: var(--green-accent);
}

.gold-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green-accent);
  border-radius: 2px;
}

.section-overline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.section-overline::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--green);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--g900);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--g500);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}


/* ============================================================
   SURFACES & SECTIONS
   ============================================================ */
.bg-surface {
  background: var(--g50);
}

section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--g50);
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--green);
  padding: var(--section-pad) 0;
  position: relative;
  color: var(--white);
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
  pointer-events: none;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .35s var(--ease);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  padding: .6rem 0;
}

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

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


/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--g700);
  text-decoration: none;
  position: relative;
  padding: .25rem 0;
  transition: color .3s var(--ease);
}

.navbar:not(.scrolled) .nav-menu a {
  color: var(--g700);
}

.navbar:not(.scrolled) .nav-menu a:hover {
  color: var(--green);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  border-radius: 1px;
  transition: width .3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

.navbar:not(.scrolled) .nav-menu a:hover {
  color: var(--green);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switch */
.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.navbar.scrolled .lang-switch {
  background: var(--g100);
}

.lang-btn {
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--g500);
  transition: all .3s var(--ease);
  letter-spacing: .5px;
}

.navbar:not(.scrolled) .lang-btn {
  color: var(--g500);
}

.lang-btn.active {
  background: var(--white);
  color: var(--g900);
  box-shadow: var(--shadow-sm);
}

.navbar:not(.scrolled) .lang-btn.active {
  background: var(--white);
  color: var(--g900);
}

/* Nav CTA (green pill) */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.3rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s var(--ease);
}

.nav-cta:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 101, 52, .2);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--g900);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.navbar:not(.scrolled) .mobile-toggle span {
  background: var(--g900);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.85rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn-green,
.btn-gold {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-green:hover,
.btn-gold:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22, 101, 52, .2);
}

.btn-outline {
  background: transparent;
  color: var(--g900);
  border-color: var(--g300);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--g900);
}

.btn-white:hover {
  background: var(--g100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost,
.btn-ghost-gold {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}

.btn-ghost:hover,
.btn-ghost-gold:hover {
  border-color: var(--green-accent);
  background: rgba(34, 197, 94, .1);
  color: var(--green-accent);
  transform: translateY(-2px);
}


/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  overflow: hidden;
  padding: 6rem 2rem 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero .mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .07;
  animation: meshFloat 20s ease-in-out infinite;
  will-change: transform;
}

.hero .mesh-orb:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--green);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero .mesh-orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--green-deep);
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.hero .mesh-orb:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--green-accent);
  top: 50%;
  left: 30%;
  opacity: .15;
  animation-delay: -10s;
}

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

.hero-inner {
  text-align: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--g900);
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -.025em;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--green);
}

.hero-desc {
  font-size: 1rem;
  color: var(--g500);
  max-width: clamp(300px, 50vw, 600px);
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  color: var(--g700);
  border-color: var(--g300);
}

.hero-actions .btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}


/* ============================================================
   HERO SPLIT LAYOUT (text + widget)
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.hero-split .hero-inner {
  text-align: left;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

/* Hero Widget */
.hero-widget {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--g200);
}

.hw-badge {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--green);
}

.hw-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.hw-metric {
  text-align: center;
  padding: .6rem .4rem;
  background: var(--g50);
  border-radius: 10px;
}

.hw-metric strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: .15rem;
}

.hw-metric span {
  font-size: .68rem;
  color: var(--g500);
}

.hw-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.hw-checklist li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--g700);
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-split .hero-inner { text-align: center; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-widget { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-split { gap: 2rem; }
  .hw-metrics { grid-template-columns: 1fr; gap: .5rem; }
}


/* ============================================================
   APPROACH LIST
   ============================================================ */
.approach-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--g700);
  line-height: 1.6;
}

.approach-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}


/* ============================================================
   WHY FTH SECTION
   ============================================================ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.why-list li:hover {
  border-color: rgba(22, 101, 52, .18);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.why-list li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.why-list li strong {
  font-size: .92rem;
  font-weight: 600;
  color: var(--g800);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ============================================================
   EXPERTS SECTION
   ============================================================ */
.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.expert-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}

.expert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.expert-main {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.expert-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(22, 101, 52, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  border: 2px solid rgba(22, 101, 52, .15);
}

.expert-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: .15rem;
}

.expert-role {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green);
  margin-bottom: .75rem;
}

.expert-info p {
  font-size: .88rem;
  color: var(--g500);
  line-height: 1.65;
  margin-bottom: .75rem;
}

.expert-certs {
  display: flex;
  gap: .4rem;
}

.expert-certs span {
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border: 1px solid var(--g200);
  border-radius: var(--radius-pill);
  color: var(--green);
  letter-spacing: .05em;
}

.expert-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.expert-desc {
  font-size: .88rem;
  color: var(--g500);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.expert-advisors {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.advisor strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: .25rem;
}

.advisor span {
  font-size: .82rem;
  color: var(--g500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .experts-grid { grid-template-columns: 1fr; }
  .expert-main { flex-direction: column; align-items: center; text-align: center; }
}


/* ============================================================
   PROCESS CARD RESULT
   ============================================================ */
.pcard-result {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  margin-top: .75rem;
  padding-top: .5rem;
  border-top: 1px solid var(--g200);
}


/* ============================================================
   DELIVERABLE ACCENT CARD
   ============================================================ */
.dlv-accent {
  background: rgba(22, 101, 52, .03);
  border-color: rgba(22, 101, 52, .15);
}


/* ============================================================
   FOOTER SOCIAL
   ============================================================ */
.footer-social {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g500);
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}


/* ============================================================
   STATS (dark section)
   ============================================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem 2rem;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1.2;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .25rem;
}


/* ============================================================
   SERVICES (Original Horizontal Scroll / Grid)
   ============================================================ */
.services-scroll-wrapper {
  overflow: visible;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  text-decoration: none;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
  transform-origin: left;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(22, 101, 52, .2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(22, 101, 52, .08);
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(22, 101, 52, .06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  color: var(--green);
}

.service-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
}

.service-card .card-number {
  font-size: .7rem;
  font-weight: 600;
  color: var(--g400);
  letter-spacing: .12em;
  margin-bottom: .75rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  color: var(--g900);
  line-height: 1.35;
}

.service-card p {
  font-size: .9rem;
  color: var(--g500);
  line-height: 1.65;
  margin-bottom: 0;
}

.card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}


/* ============================================================
   SERVICES GRID (Multi-Page - 3 Column)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}


/* ============================================================
   CARDS (Generic)
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 2rem;
  transition: all .3s var(--ease);
}

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

.card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--g100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--g900);
}

.card p {
  font-size: .92rem;
  color: var(--g700);
  line-height: 1.65;
}


/* ============================================================
   SYSTEM DARK SECTION
   ============================================================ */
.system-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.system-text {
  color: var(--g900);
}

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

.sys-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
}

.sys-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 101, 52, .18);
}

.sys-card strong {
  color: var(--g900);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: .25rem;
}

.sys-card span {
  color: var(--g700);
  font-size: .88rem;
  line-height: 1.6;
}

.sys-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .6rem;
  line-height: 1;
  font-family: var(--font-serif);
}


/* ============================================================
   DELIVERABLES
   ============================================================ */
.deliverables-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.deliverables-grid .dlv {
  flex: 0 1 calc(33.333% - 1rem);
}

.dlv {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--g800);
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-sm);
}

.dlv:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 101, 52, .18);
}

.dlv-num {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin: 0 auto .85rem;
  letter-spacing: .02em;
}

.dlv h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--g900);
}


/* ============================================================
   PROCESS (Original 4-Column)
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: var(--g200);
  z-index: 0;
}

.pcard {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pcard-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 auto 1.25rem;
  transition: all .3s var(--ease);
}

.pcard:hover .pcard-num {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(22, 101, 52, .2);
}

.pcard h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
  color: var(--g900);
}

.pcard p {
  font-size: .85rem;
  color: var(--g500);
  line-height: 1.65;
}


/* ============================================================
   FEATURES ROW
   ============================================================ */
.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.features-row.reverse {
  direction: rtl;
}

.features-row.reverse > * {
  direction: ltr;
}

.feature-visual {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--g100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--g700);
  line-height: 1.6;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.feature-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: .25rem;
}

.feature-item p {
  font-size: .9rem;
  color: var(--g500);
  line-height: 1.6;
}

.feature-check,
.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, .12);
  color: var(--green);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 2px;
}

.icon-xl {
  font-size: 4rem;
  line-height: 1;
}




/* ============================================================
   CTA SECTION (Original Green BG)
   ============================================================ */
.section-cta {
  background: var(--g50);
  padding: 6rem 0;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  display: none;
}

.section-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--g900);
  margin-bottom: 1rem;
}

.section-cta p {
  color: var(--g500);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

.section-cta .btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.section-cta .btn-outline {
  color: var(--g700);
  border-color: var(--g300);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   CTA SECTION (Dark - Multi-Page)
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--green);
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .2;
  animation: orbFloat 16s ease-in-out infinite;
}

.cta-bg .orb:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: -30%;
  right: -5%;
}

.cta-bg .orb:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--green-deep);
  bottom: -30%;
  left: -5%;
  animation-delay: -7s;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content .section-overline {
  color: var(--green-accent);
}

.cta-content .section-overline::before {
  background: var(--green-accent);
}

.cta-content h2,
.cta-content .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p,
.cta-content .section-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 2rem;
  line-height: 1.8;
}


/* ============================================================
   CONTACT (Original 2-Column Layout)
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.cd {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.cd h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.cd p {
  font-size: .88rem;
  color: var(--g500);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: .4rem;
}

.contact-form input,
.contact-form textarea,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.15rem;
  border: 1px solid var(--g200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--g900);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, .1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--g500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, .12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  margin-bottom: 1.5rem;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371717a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}


/* ============================================================
   CONTACT GRID (Multi-Page)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ci-card {
  background: var(--g50);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-card h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .15rem;
  color: var(--g900);
}

.ci-card p {
  font-size: .88rem;
  color: var(--g500);
  line-height: 1.5;
}

.ci-card p a {
  color: var(--green);
  transition: color .3s var(--ease);
}

.ci-card p a:hover {
  color: var(--green-accent);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--g200);
  border-radius: var(--r);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .3s var(--ease);
}

.faq-item.active,
.faq-item.open {
  border-color: var(--green-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--g900);
  transition: color .3s var(--ease);
}

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

.faq-icon {
  font-size: 1.2rem;
  color: var(--g500);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--g500);
  line-height: 1.7;
}


/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  position: relative;
  background: var(--white);
  padding: 10rem 0 5rem;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--g200);
}

.page-header .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.page-header .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
  animation: orbFloat 18s ease-in-out infinite;
}

.page-header .orb-gold {
  width: 450px;
  height: 450px;
  background: var(--green);
  top: -20%;
  right: -10%;
}

.page-header .orb-blue {
  width: 350px;
  height: 350px;
  background: var(--green-deep);
  bottom: -20%;
  left: -5%;
  animation-delay: -8s;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .04;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 30px 30px;
}

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

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--g900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--g500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header .section-desc {
  color: var(--g500);
  margin: 0 auto;
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--g400);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--g500);
  transition: color .3s var(--ease);
}

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

.breadcrumb .sep {
  opacity: .4;
}


/* ============================================================
   LOCATIONS
   ============================================================ */

/* Map Visual */
.map-visual {
  position: relative;
  background: var(--green-deep);
  border-radius: var(--r);
  padding: 4rem 3rem;
  min-height: 360px;
  overflow: hidden;
}

.map-dots {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.map-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}

.map-dot .pin {
  width: 14px;
  height: 14px;
  background: var(--green-accent);
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, .3);
  box-shadow: 0 0 20px rgba(34, 197, 94, .4);
  position: relative;
}

.map-dot .pin::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, .2);
  animation: pinPulse 2s ease-in-out infinite;
}

.map-dot .pin-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(9, 9, 11, .8);
  padding: .2rem .6rem;
  border-radius: 4px;
}

/* Locations Grid */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.location-card {
  display: flex;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 2.5rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--green-accent);
  transition: height .5s ease;
}

.location-card:hover::before {
  height: 100%;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.location-card.hq {
  border-color: rgba(34, 197, 94, .3);
  background: linear-gradient(135deg, rgba(34, 197, 94, .02), transparent);
}

.location-card.hq::before {
  height: 100%;
  background: linear-gradient(180deg, var(--green-accent), rgba(34, 197, 94, .3));
}

.location-card.hq:hover {
  border-color: var(--green-accent);
  box-shadow: var(--shadow-lg);
}

.loc-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.loc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.loc-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--g900);
  margin-bottom: .6rem;
}

.loc-info > p {
  font-size: .9rem;
  color: var(--g500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.loc-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, .12);
  color: var(--green);
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.loc-detail {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--g500);
}

.loc-detail strong {
  color: var(--g900);
  min-width: 65px;
  display: inline-block;
}


/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.coverage-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  transition: all .3s var(--ease);
}

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

.coverage-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.coverage-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.coverage-card p {
  font-size: .85rem;
  color: var(--g500);
  line-height: 1.6;
}


/* ============================================================
   PROCESS STEPS (Multi-Page Version)
   ============================================================ */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pstep {
  text-align: center;
  padding: 1.5rem 1rem;
}

.pstep-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g100);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 auto 1.25rem;
  transition: all .3s var(--ease);
}

.pstep:hover .pstep-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.pstep h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.pstep p {
  font-size: .88rem;
  color: var(--g500);
  line-height: 1.6;
}


/* ============================================================
   AWARDS
   ============================================================ */
.awards-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.award {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r);
  transition: all .3s var(--ease);
}

.award:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-accent);
}

.award-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.award h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.award p {
  font-size: .85rem;
  color: var(--g500);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--g50);
  color: var(--g500);
  padding: 4.5rem 0 0;
  border-top: 1px solid var(--g200);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--g200);
}

.footer-logo-img {
  height: 28px;
  margin-bottom: 0;
}

/* Footer Brand */
.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--g500);
  margin-bottom: 1.25rem;
  max-width: 280px;
}

/* Footer Certs */
.footer-certs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* Footer Columns */
.footer-col h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g800);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col ul a,
.footer-col ul .footer-info {
  font-size: .87rem;
  color: var(--g500);
  transition: color .3s var(--ease);
  line-height: 1.5;
}

.footer-col ul a:hover {
  color: var(--green);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  font-size: .82rem;
  color: var(--g400);
}

.footer-bottom a {
  color: var(--g400);
  transition: color .3s var(--ease);
}

.footer-bottom a:hover {
  color: var(--green);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}


/* ============================================================
   PARALLAX
   ============================================================ */
[data-parallax] {
  will-change: transform;
  transition: transform .1s linear;
}


/* ============================================================
   RESPONSIVE - 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-track {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .system-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .deliverables-grid .dlv {
    flex: 0 1 calc(50% - 1rem);
  }

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

  .process-steps::before {
    display: none;
  }

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

  .features-row {
    gap: 2.5rem;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}


/* ============================================================
   RESPONSIVE - 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 4.5rem;
  }

  /* Mobile Nav */
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 1.2rem;
    color: var(--g900) !important;
  }

  .nav-right .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }

  /* Grids to single column */
  .services-track {
    grid-template-columns: 1fr;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .services-track .service-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

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

  .system-cards {
    grid-template-columns: 1fr;
  }

  .deliverables-grid .dlv {
    flex: 0 1 calc(50% - 1rem);
  }

  .process-steps,
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-steps::before {
    display: none;
  }

  .features-row,
  .features-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Page Header */
  .page-header {
    padding: 8rem 0 3.5rem;
  }

  /* Stats */
  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-bottom .footer-links {
    justify-content: center;
  }

  /* Awards */
  .awards-row {
    flex-direction: column;
    align-items: center;
  }

  .award {
    max-width: 100%;
  }

  /* Locations */
  .map-visual {
    padding: 3rem 2rem;
    min-height: 260px;
  }

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

  .location-card {
    flex-direction: column;
    gap: 1rem;
  }

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


/* ============================================================
   RESPONSIVE - 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --section-pad: 3.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .btn {
    padding: .75rem 1.5rem;
    font-size: .88rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .deliverables-grid .dlv {
    flex: 0 1 100%;
  }

  .process-steps,
  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

}


/* ============================================================
   MICRO-INTERACTION POLISH (UX Audit)
   ============================================================ */

/* --- Reveal animations: smoother easing & slightly longer duration --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition-duration: .8s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

/* --- Service card icon: color transition on hover --- */
.service-card .card-icon {
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.service-card:hover .card-icon {
  background: rgba(22, 101, 52, .1);
  transform: scale(1.05);
}

.service-card .card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  transition: stroke .3s var(--ease);
}

.service-card:hover .card-icon svg {
  stroke: var(--green-deep);
}

/* --- Service card number: accent on hover --- */
.service-card:hover .card-number {
  color: var(--green);
  transition: color .3s var(--ease);
}

/* --- Button active / pressed state --- */
.btn:active {
  transform: translateY(0) scale(.97);
  transition-duration: .1s;
}

/* --- Button arrow nudge on hover --- */
.btn svg {
  transition: transform .3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* --- Outline button: subtle background fill on hover --- */
.btn-outline:hover {
  background: rgba(22, 101, 52, .04);
}

/* --- Nav CTA active --- */
.nav-cta:active {
  transform: translateY(0) scale(.96);
  transition-duration: .1s;
}

/* --- Navbar: subtle border when scrolled (shadow already handles this) --- */



/* --- Deliverable cards: subtitle and icon --- */
.dlv-sub {
  display: block;
  font-size: .75rem;
  color: var(--g400);
  margin-top: .35rem;
  font-weight: 400;
}
.dlv-icon {
  display: block;
  margin: .5rem auto;
  color: var(--green);
}

/* --- Deliverable cards: number badge pulse on hover --- */
.dlv-num {
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.dlv:hover .dlv-num {
  background: var(--green-deep);
  transform: scale(1.05);
}

/* --- Deliverable cards: text color shift --- */
.dlv > span:last-child {
  font-size: .9rem;
  color: var(--g700);
  transition: color .3s var(--ease);
}

.dlv:hover > span:last-child {
  color: var(--g900);
}

/* --- Process cards: whole card subtle lift --- */
.pcard {
  transition: transform .3s var(--ease);
}

.pcard:hover {
  transform: translateY(-4px);
}

/* --- Process card: step number ring pulse --- */
.pcard-num {
  transition: all .35s var(--ease-spring);
}

.pcard:hover .pcard-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(22, 101, 52, .12);
}

/* --- CTA section inner: spacing --- */
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: .75rem;
  color: var(--g900);
}

.cta-inner p {
  color: var(--g500);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* --- Footer link hover: slide underline --- */
.footer-bottom-links a {
  position: relative;
  display: inline-block;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-accent);
  transition: width .3s var(--ease);
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* --- Footer cert badges: hover effect --- */
.footer-certs span {
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border: 1px solid var(--g200);
  border-radius: var(--radius-pill);
  color: var(--green);
  transition: border-color .3s var(--ease), color .3s var(--ease);
  cursor: default;
  letter-spacing: .06em;
}

.footer-certs span:hover {
  border-color: var(--green);
  color: var(--green);
}

/* --- Footer bottom email: hover --- */
.footer-bottom span:last-child {
  transition: color .3s var(--ease);
  cursor: default;
}

/* --- Contact details: subtle left accent on hover --- */
.cd {
  padding: .85rem 0 .85rem 1rem;
  border-left: 2px solid var(--g200);
  transition: border-color .3s var(--ease), padding-left .3s var(--ease);
}

.cd strong {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g400);
  display: block;
  margin-bottom: .15rem;
}

.cd span {
  font-size: .95rem;
  color: var(--g800);
}

.cd:hover {
  border-color: var(--green);
  padding-left: 1.15rem;
}

/* --- Selection color --- */
::selection {
  background: rgba(22, 101, 52, .15);
  color: var(--green-deep);
}

/* --- Smooth focus-visible for keyboard nav --- */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-menu a:focus-visible,
.lang-btn:focus-visible,
.faq-question:focus-visible,
.blog-card-link:focus-visible,
.article-back:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Section overline: line grows in --- */
.section-overline::before {
  transition: width .5s var(--ease);
  width: 0;
}

.visible .section-overline::before,
.reveal.visible .section-overline::before {
  width: 24px;
}



.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--g900);
  letter-spacing: -.02em;
  line-height: 1.2;
}


/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.legal-content {
  padding: 4rem 0 6rem;
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--g900);
  margin: 2.5rem 0 1rem;
  letter-spacing: -.01em;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--g800);
  margin: 1.5rem 0 .75rem;
}

.legal-body p {
  color: var(--g600, #52525b);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.legal-body ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--g600, #52525b);
  line-height: 1.8;
  margin-bottom: .35rem;
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.legal-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover {
  color: var(--green-deep);
}

.legal-date {
  font-size: .85rem;
  color: var(--g400);
  margin-bottom: 2rem;
}


/* ============================================================
   404 ERROR PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.error-content {
  max-width: 500px;
  margin: 0 auto;
}

.error-code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 400;
  color: var(--g200);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--g900);
  margin-bottom: .75rem;
}

.error-page p {
  color: var(--g500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

.error-ua {
  font-size: .9rem !important;
  color: var(--g400) !important;
  margin-bottom: 2rem !important;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   BLOG
   ============================================================ */

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 2rem;
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 101, 52, .18);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-card-date {
  font-size: .8rem;
  color: var(--g400);
}

.blog-card-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  background: rgba(22, 101, 52, .06);
  color: var(--green);
  border-radius: var(--radius-pill);
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--g900);
  margin-bottom: .75rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: .9rem;
  color: var(--g500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .3s var(--ease);
}

.blog-card-link:hover {
  gap: .6rem;
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
}

/* Article page */
.article-header {
  padding: 8rem 0 3rem;
  background: var(--white);
  text-align: center;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--g900);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.25;
}

.article-read-time {
  font-size: .82rem;
  color: var(--g400);
}

.article-content {
  padding: 3rem 0 5rem;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-cta {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--g50);
  border-radius: 16px;
  text-align: center;
}

.article-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--g900);
  margin-bottom: .5rem;
}

.article-cta p {
  color: var(--g500);
  margin-bottom: 1.5rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2rem;
}

.article-back:hover {
  gap: .6rem;
}

/* Responsive blog */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Submit button full-width --- */
.contact-form .btn[type="submit"] {
  width: 100%;
  justify-content: center;
}

/* TRUST BAR */
.trust-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--g200);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .35rem;
}
.trust-item span {
  font-size: .8rem;
  color: var(--g500);
  letter-spacing: .02em;
}
@media (max-width: 768px) {
  .trust-items { gap: 2.5rem; }
  .trust-item strong { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .trust-items { gap: 1.5rem; }
  .trust-item { flex: 0 0 calc(50% - 1rem); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero h1, .hero-desc, .hero-actions, .hero-widget {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cursor-glow, .hero::after { display: none; }
}

/* --- Print styles --- */
@media print {
  .page-loader, .cursor-glow, .navbar, .footer, .nav-cta, .mobile-toggle, .article-cta { display: none !important; }
  body { background: white; color: black; font-size: 12pt; }
  .container { max-width: 100%; padding: 0; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-bg, .mesh-orb { display: none; }
  a { color: black; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .section-dark { background: white !important; color: black !important; }
  .btn { border: 1px solid #333; background: white !important; color: black !important; }
}
