/* ============================================================
   ADAPTIO SOLUTIONS — Landing styles
   Tokens basados en colors_and_type.css del design system bundle
   ============================================================ */

/* ─── Roboto Variable (self-hosted) ──────────────────────── */
@font-face {
  font-family: 'Roboto';
  src: url('assets/fonts/Roboto-VariableFont_wdth_wght.ttf') format('truetype-variations'),
       url('assets/fonts/Roboto-VariableFont_wdth_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --navy-950: #060d17;
  --navy-900: #0D1B2A;
  --navy-800: #152236;
  --navy-700: #1e3248;
  --navy-600: #284560;
  --navy-300: #7a9cbe;
  --navy-50:  #edf3f8;

  --teal-700: #0a7070;
  --teal-600: #0e9090;
  --teal-500: #14B8B8;
  --teal-400: #2DD4D4;

  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #E5E5E3;
  --neutral-100: #F1F1EF;
  --neutral-50:  #F8F7F4;

  /* Semantic */
  --bg-base: var(--neutral-50);
  --bg-surface: #ffffff;
  --bg-brand: var(--navy-900);
  --bg-deep:  var(--navy-950);

  --fg-primary:   var(--neutral-900);
  --fg-secondary: var(--neutral-600);
  --fg-tertiary:  var(--neutral-400);
  --fg-inverse:   #ffffff;
  --fg-accent:    var(--teal-600);

  --border-default: var(--neutral-200);
  --border-subtle:  var(--neutral-100);
  --border-on-dark: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-display: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  /* Spacing */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-cta: 0 4px 20px rgba(20, 184, 184, 0.35);
  --shadow-cta-hover: 0 8px 28px rgba(20, 184, 184, 0.45);
  --shadow-cta-navy: 0 4px 20px rgba(13, 27, 42, 0.30);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 150ms;
  --dur: 250ms;
  --dur-slow: 600ms;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
  --nav-h: 72px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--fg-primary); background: var(--bg-base); }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--teal-500); color: #fff; }

/* ─── Utilities ─────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.text-accent { color: var(--teal-500); }
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--navy-900); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 200; transition: top var(--dur-fast); }
.skip-link:focus { top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ─── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neutral-500);
  margin-bottom: 14px;
}
.eyebrow--accent { color: var(--teal-500); }
.eyebrow--muted { color: rgba(255, 255, 255, 0.45); }
.eyebrow__sep {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow__muted {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--block { width: 100%; padding: 14px 28px; font-size: 16px; }

.btn--accent {
  background: var(--teal-500);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--accent:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: var(--shadow-cta-hover); }
.btn--accent:active { transform: translateY(0); }

.btn--primary {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}
.btn--primary:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-cta-navy); }

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.5); color: #fff; }

.btn .lucide,
.btn [data-lucide] { width: 16px; height: 16px; stroke-width: 2; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 33px;
}
.nav__logo {
  height: 33px;
  width: auto;
  transition: opacity var(--dur) var(--ease);
}
.nav__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.nav__logo--light { opacity: 1; }

.nav.is-scrolled {
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: rgba(229, 229, 227, 0.8);
}
.nav.is-scrolled .nav__logo--dark { opacity: 1; }
.nav.is-scrolled .nav__logo--light { opacity: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav__links a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav__links .btn--primary { color: #fff; margin-left: 6px; }

.nav.is-scrolled .nav__links a { color: var(--neutral-700); }
.nav.is-scrolled .nav__links a:hover { background: var(--neutral-100); color: var(--navy-900); }
.nav.is-scrolled .nav__links .btn--primary { color: #fff; background: var(--navy-900); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background var(--dur);
}
.nav.is-scrolled .nav__toggle span { background: var(--navy-900); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 18px;
  background: #fff;
  border-top: 1px solid var(--border-default);
}
.nav__mobile a {
  font-size: 15px;
  color: var(--neutral-700);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile .btn--primary {
  color: #fff;
  margin-top: 10px;
  padding: 12px 20px;
  text-align: center;
  border-bottom: 0;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-900);
  color: #fff;
  padding: calc(var(--nav-h) + 64px) 0 var(--space-24);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 760px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 8px 0 24px;
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero__stats > div { min-width: 0; }
.hero__stats dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}
.hero__stats dd {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}
.section--light { background: var(--bg-base); }
.section--dark { background: var(--navy-900); color: #fff; }

.section__pattern {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}
.section__pattern--right { right: 0; width: 600px; }
.section__pattern--left { left: -100px; bottom: -100px; top: auto; width: 600px; height: 600px; opacity: 0.03; }

.section__header { margin-bottom: 56px; max-width: 720px; position: relative; z-index: 2; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section__title--inverse { color: #fff; }

.section__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-secondary);
  max-width: 520px;
}
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }
.section__lead--inverse { color: rgba(255, 255, 255, 0.55); }

/* ─── Service cards grid ─────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  position: relative;
  z-index: 2;
}

.card {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--dur) var(--ease);
}
.card__icon [data-lucide], .card__icon svg { width: 20px; height: 20px; color: var(--navy-600); transition: color var(--dur) var(--ease); }
.card:hover .card__icon { background: var(--navy-900); }
.card:hover .card__icon [data-lucide], .card:hover .card__icon svg { color: var(--teal-500); }

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 8px;
}
.card__desc {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--neutral-100);
  color: var(--neutral-700);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ─── Industries strip ──────────────────────────────────── */
.industries {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-default);
  position: relative;
  z-index: 2;
}
.industries .eyebrow { margin-bottom: 24px; color: var(--neutral-500); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.industries__grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-900);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.industries__grid li:hover { border-color: var(--teal-400); background: #fff; }
.industries__grid [data-lucide], .industries__grid svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ─── Methodology steps ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  position: relative;
  z-index: 2;
}
.step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(20, 184, 184, 0.35); }

.step__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  transition: color var(--dur) var(--ease);
}
.step:hover .step__num { color: var(--teal-500); }

.step__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.step__icon [data-lucide], .step__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--dur) var(--ease);
}
.step:hover .step__icon { background: var(--teal-500); }
.step:hover .step__icon [data-lucide], .step:hover .step__icon svg { color: var(--navy-900); }

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.step__desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ─── About + Reasons ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__paragraph {
  font-size: 17px;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__paragraph:last-of-type { margin-bottom: 32px; }

.about__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.about__stats > div {
  border-left: 2px solid var(--teal-500);
  padding-left: 16px;
}
.about__stats dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy-900);
  line-height: 1;
}
.about__stats dd {
  font-size: 12px;
  color: var(--neutral-500);
  margin-top: 4px;
}

.reasons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reason:hover { border-color: var(--teal-400); box-shadow: 0 4px 20px rgba(20, 184, 184, 0.12); transform: translateY(-1px); }

.reason__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.reason__icon [data-lucide], .reason__icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy-600);
  transition: color var(--dur) var(--ease);
}
.reason:hover .reason__icon { background: var(--teal-500); }
.reason:hover .reason__icon [data-lucide], .reason:hover .reason__icon svg { color: #fff; }

.reason h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.reason p {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.55;
}

/* ─── Works ──────────────────────────────────────────────── */
.link-accent {
  color: var(--teal-600);
  font-weight: 600;
  border-bottom: 1px solid rgba(20, 184, 184, 0.3);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.link-accent:hover { color: var(--teal-500); border-bottom-color: var(--teal-500); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 184, 184, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-400);
}
.work-card:hover::before { opacity: 1; }

.work-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.work-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-500);
}
.work-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--neutral-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.work-card__arrow [data-lucide], .work-card__arrow svg {
  width: 16px;
  height: 16px;
  color: var(--navy-700);
  transition: color var(--dur) var(--ease);
}
.work-card:hover .work-card__arrow {
  background: var(--teal-500);
  transform: translate(2px, -2px);
}
.work-card:hover .work-card__arrow [data-lucide],
.work-card:hover .work-card__arrow svg { color: #fff; }

.work-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.1;
}
.work-card__desc {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.6;
}
.work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-600);
}
.work-card__cta [data-lucide], .work-card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}
.work-card:hover .work-card__cta [data-lucide],
.work-card:hover .work-card__cta svg { transform: translate(2px, -2px); }

/* ─── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact__intro .section__title { margin-bottom: 16px; }
.contact__intro .section__lead { margin-bottom: 36px; }

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact__perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(20, 184, 184, 0.12);
  border: 1px solid rgba(20, 184, 184, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__perk-icon [data-lucide], .contact__perk-icon svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
}
.contact__perks strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}
.contact__perks span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact__direct li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.contact__direct [data-lucide], .contact__direct svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  flex-shrink: 0;
}
.contact__direct a { transition: color var(--dur-fast); }
.contact__direct a:hover { color: var(--teal-400); }

/* ─── Form ──────────────────────────────────────────────── */
.contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 184, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field select option { background: var(--navy-900); color: #fff; }
.field textarea { resize: vertical; min-height: 110px; }

.contact__form-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  line-height: 1.5;
}
.contact__form-error {
  font-size: 13px;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}
.contact__form-error a { color: #fff; text-decoration: underline; }

#contact-submit.is-loading { opacity: 0.7; pointer-events: none; }

.contact__success {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 184, 184, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  align-self: start;
}
.contact__success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(20, 184, 184, 0.15);
  border: 2px solid var(--teal-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.contact__success-check [data-lucide], .contact__success-check svg {
  width: 28px;
  height: 28px;
  color: var(--teal-500);
}
.contact__success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}
.contact__success p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}
.contact__success a { color: var(--teal-400); text-decoration: underline; }
.contact__success .btn { display: inline-flex; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer__brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 320px;
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__col [data-lucide], .footer__col svg {
  width: 14px;
  height: 14px;
  color: var(--teal-500);
  flex-shrink: 0;
}
.footer__col a { transition: color var(--dur-fast); }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}
.footer__signoff { color: rgba(255, 255, 255, 0.4); }

/* ─── Reveal animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: var(--space-16) 0; }
  .hero { padding: calc(var(--nav-h) + 40px) 0 var(--space-16); min-height: auto; }
  .hero__content { padding-bottom: 24px; }
  .hero__stats { gap: 32px; margin-top: 48px; }
  .hero__stats dt { font-size: 28px; }

  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__mobile.is-open { display: flex; }

  .section__header { margin-bottom: 40px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas .btn { flex: 1 1 auto; }
}

@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 { opacity: 1; transform: none; }
}
