/* =============================================
   VEROSTRIVE S.L. — Main Stylesheet
   ============================================= */

:root {
  --bg-primary: #070b14;
  --bg-secondary: #0c1220;
  --bg-card: #111827;
  --bg-card-hover: #161f33;
  --accent-teal: #00d4aa;
  --accent-teal-dim: rgba(0, 212, 170, 0.12);
  --accent-coral: #ff6b4a;
  --accent-coral-dim: rgba(255, 107, 74, 0.12);
  --text-primary: #f0f4fc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --gradient-teal: linear-gradient(135deg, #00d4aa 0%, #00a888 100%);
  --gradient-hero: linear-gradient(180deg, rgba(7, 11, 20, 0.4) 0%, rgba(7, 11, 20, 0.85) 60%, #070b14 100%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --header-h: 112px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

.section--dark {
  background: var(--bg-secondary);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 560px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

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

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

.btn--ghost:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* =============================================
   Header
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 100%;
  overflow-x: clip;
}

.header__aura {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 160px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.14) 0%, rgba(255, 107, 74, 0.06) 40%, transparent 72%);
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.header.is-scrolled .header__aura {
  opacity: 0.35;
}

.header.is-scrolled .header__ribbon {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.header.is-scrolled .header__body {
  background: rgba(7, 11, 20, 0.94);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Ribbon */
.header__ribbon {
  position: relative;
  max-height: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 18, 32, 1) 0%, rgba(10, 15, 26, 1) 100%);
  border-bottom: 1px solid var(--border);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, border-color 0.4s ease;
  opacity: 1;
}

.header__ribbon-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header__ribbon-left,
.header__ribbon-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__ribbon-right {
  justify-content: flex-end;
}

.header__ribbon-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 10px var(--accent-teal);
  animation: ribbon-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ribbon-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent-teal); }
  50% { opacity: 0.45; transform: scale(0.75); box-shadow: 0 0 4px var(--accent-teal); }
}

.header__ribbon-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 4px 10px;
  border: 1px solid rgba(0, 212, 170, 0.22);
  background: rgba(0, 212, 170, 0.06);
  border-radius: 4px;
}

.header__ribbon-line {
  position: relative;
  width: 140px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.header__ribbon-line-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent-teal), var(--accent-coral), transparent);
  animation: ribbon-scan 4s linear infinite;
}

@keyframes ribbon-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.header__ribbon-loc {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header__ribbon-mail {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--accent-teal);
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.header__ribbon-mail:hover {
  opacity: 1;
}

/* Body */
.header__body {
  position: relative;
  background: rgba(7, 11, 20, 0.78);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.header__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 212, 170, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 82% 50%, rgba(255, 107, 74, 0.05) 0%, transparent 38%);
  pointer-events: none;
}

.header__beam {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 170, 0.15) 20%, rgba(0, 212, 170, 0.5) 50%, rgba(255, 107, 74, 0.35) 80%, transparent 100%);
  opacity: 0.6;
}

.header__beam::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
  filter: blur(1px);
  animation: beam-travel 6s ease-in-out infinite;
}

@keyframes beam-travel {
  0% { left: -80px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% + 80px); opacity: 0; }
}

.header__body-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

body.is-loading {
  overflow: hidden;
}

/* =============================================
   Preloader
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #070b14;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  overflow: hidden;
}

.preloader__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.preloader__ambient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 55% at 50% -8%, rgba(0, 212, 170, 0.05) 0%, transparent 52%),
    linear-gradient(180deg, #0a101c 0%, #070b14 38%, #060912 100%);
}

.preloader__ambient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 82% 78% at 50% 44%, transparent 28%, rgba(2, 4, 8, 0.72) 100%);
}

.preloader__ambient-spotlight {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(560px, 78vw);
  height: min(420px, 52vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(0, 212, 170, 0.055) 0%, transparent 72%);
}

.preloader__ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 72% at 50% 42%, black 8%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 85% 72% at 50% 42%, black 8%, transparent 68%);
  opacity: 0.45;
}

.preloader__stage-light {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, 78vw);
  height: min(480px, 78vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(7, 11, 20, 0.96) 0%, rgba(7, 11, 20, 0.72) 38%, rgba(7, 11, 20, 0.18) 58%, transparent 72%);
  z-index: 2;
  pointer-events: none;
}

.preloader__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  opacity: 0.42;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 44%, black 15%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 44%, black 15%, transparent 78%);
}

/* Hero — favicon centerpiece */
.preloader__hero {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 220px;
  pointer-events: none;
  perspective: 800px;
}

.preloader__hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -58%);
}

.preloader__hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
}

.preloader__hero-ring--1 {
  border-color: rgba(0, 212, 170, 0.35);
  animation: preloader-ring 4s linear infinite;
}

.preloader__hero-ring--2 {
  inset: 14px;
  border-color: rgba(0, 212, 170, 0.15);
  border-style: dashed;
  animation: preloader-ring 6s linear infinite reverse;
}

.preloader__hero-ring--3 {
  inset: 28px;
  border-color: rgba(255, 255, 255, 0.08);
  animation: preloader-ring 8s linear infinite;
}

.preloader__hero-ring--1::after,
.preloader__hero-ring--2::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 14px var(--accent-teal);
}

.preloader__hero-ring--2::after {
  background: #8af0dc;
  box-shadow: 0 0 14px rgba(138, 240, 216, 0.6);
}

@keyframes preloader-ring {
  to { transform: rotate(360deg); }
}

.preloader__hero-card {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(16, 24, 40, 0.95), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(0, 212, 170, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(0, 212, 170, 0.15);
  animation: preloader-card-float 3.2s ease-in-out infinite;
  overflow: hidden;
}

@keyframes preloader-card-float {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(4deg) rotateY(-6deg); }
}

.preloader__hero-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.25) 0%, transparent 65%);
  animation: preloader-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes preloader-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.preloader__hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  animation: preloader-shine 2.8s ease-in-out infinite;
}

@keyframes preloader-shine {
  0% { transform: translateX(-120%) skewX(-15deg); }
  100% { transform: translateX(120%) skewX(-15deg); }
}

.preloader__hero-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 212, 170, 0.45));
}

.preloader__hero-tags {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.preloader__hero-tags li {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  animation: preloader-tag 2s ease-in-out infinite;
}

.preloader__hero-tags li:nth-child(1) { animation-delay: 0s; }
.preloader__hero-tags li:nth-child(2) { animation-delay: 0.25s; color: var(--accent-teal); border-color: rgba(0, 212, 170, 0.25); }
.preloader__hero-tags li:nth-child(3) { animation-delay: 0.5s; }

@keyframes preloader-tag {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__hero-card,
  .preloader__hero-ring,
  .preloader__hero-shine,
  .preloader__hero-glow,
  .preloader__hero-tags li {
    animation: none !important;
  }
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.preloader__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(0, 212, 170, 0.22);
  border-style: solid;
  opacity: 0.55;
}

.preloader__corner--tl {
  top: 28px;
  left: 28px;
  border-width: 1px 0 0 1px;
}

.preloader__corner--tr {
  top: 28px;
  right: 28px;
  border-width: 1px 1px 0 0;
}

.preloader__corner--bl {
  bottom: 28px;
  left: 28px;
  border-width: 0 0 1px 1px;
}

.preloader__corner--br {
  bottom: 28px;
  right: 28px;
  border-width: 0 1px 1px 0;
}

.preloader__hud {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(380px, 88vw);
  text-align: center;
}

.preloader__hud-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}

.preloader__hud-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-teal);
}

.preloader__hud-value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.35);
}

.preloader__segments {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

.preloader__segments span {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.preloader__segments span.is-active {
  background: linear-gradient(90deg, var(--accent-teal), #8af0dc);
  box-shadow: 0 0 10px rgba(0, 212, 170, 0.45);
}

.preloader__segments span.is-active:nth-child(8),
.preloader__segments span.is-active:nth-child(9),
.preloader__segments span.is-active:nth-child(10) {
  background: linear-gradient(90deg, #8af0dc, var(--accent-coral));
  box-shadow: 0 0 10px rgba(255, 107, 74, 0.35);
}

.preloader__status {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  min-height: 1em;
}

.preloader__brand {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(240, 244, 252, 0.35);
}

.preloader__brand em {
  font-style: normal;
  color: rgba(240, 244, 252, 0.2);
  font-weight: 500;
}

@media (max-width: 768px) {
  .preloader__hud {
    bottom: 32px;
  }

  .preloader__corner {
    width: 32px;
    height: 32px;
  }

  .preloader__corner--tl,
  .preloader__corner--bl {
    left: 16px;
  }

  .preloader__corner--tr,
  .preloader__corner--br {
    right: 16px;
  }

  .preloader__corner--tl,
  .preloader__corner--tr {
    top: 16px;
  }

  .preloader__corner--bl,
  .preloader__corner--br {
    bottom: 16px;
  }
}

/* =============================================
   Logo Hover Animation
   ============================================= */
.logo-hover {
  perspective: 600px;
}

.logo-hover__frame {
  position: relative;
  display: block;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-hover__glow {
  position: absolute;
  inset: -12px -8px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.28) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-radius: 8px;
}

.logo-hover__ring {
  position: absolute;
  inset: -6px -4px;
  border: 1px solid rgba(0, 212, 170, 0);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
  pointer-events: none;
}

.logo-hover__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(0, 212, 170, 0.25) 52%,
    transparent 65%
  );
  transform: translateX(-120%) skewX(-12deg);
  opacity: 0;
  pointer-events: none;
  border-radius: 6px;
}

.logo-hover__img {
  position: relative;
  z-index: 1;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
  transform-origin: center center;
}

.logo-hover:hover .logo-hover__frame,
.logo-hover:focus-visible .logo-hover__frame {
  transform: rotateY(-10deg) rotateX(5deg) scale(1.05);
}

.logo-hover:hover .logo-hover__glow,
.logo-hover:focus-visible .logo-hover__glow {
  opacity: 1;
  transform: scale(1);
}

.logo-hover:hover .logo-hover__ring,
.logo-hover:focus-visible .logo-hover__ring {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 212, 170, 0.35);
  animation: logo-ring-pulse 1.6s ease-in-out infinite;
}

.logo-hover:hover .logo-hover__shine,
.logo-hover:focus-visible .logo-hover__shine {
  opacity: 1;
  animation: logo-shine 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-hover:hover .logo-hover__img,
.logo-hover:focus-visible .logo-hover__img {
  filter: drop-shadow(0 0 14px rgba(0, 212, 170, 0.45));
}

@keyframes logo-shine {
  from { transform: translateX(-120%) skewX(-12deg); }
  to { transform: translateX(120%) skewX(-12deg); }
}

@keyframes logo-ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.2); }
  50% { box-shadow: 0 0 20px 2px rgba(0, 212, 170, 0.15); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-hover:hover .logo-hover__frame,
  .logo-hover:focus-visible .logo-hover__frame {
    transform: scale(1.03);
  }

  .logo-hover__shine {
    display: none;
  }
}

/* Logo */
.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 32px;
  margin-right: 32px;
  height: 48px;
  flex-shrink: 0;
  z-index: 1002;
}

.header__logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.35), rgba(255, 107, 74, 0.25), transparent);
}

.header__logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
}

/* Navigation */
.header__mobile-head {
  display: none;
}

.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.header__menu-shell {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

.header__menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.header__menu li {
  position: relative;
}

.header__link {
  position: relative;
  display: block;
  padding: 10px 16px;
  border-radius: 7px;
  overflow: hidden;
  white-space: nowrap;
}

.header__link-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.14) 0%, rgba(255, 107, 74, 0.06) 100%);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__link::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__link:hover::before,
.header__link.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.header__link:hover .header__link-text,
.header__link.is-active .header__link-text {
  color: var(--text-primary);
}

.header__link.is-active .header__link-text {
  color: var(--accent-teal);
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.35);
}

.header__link.is-active::after,
.header__link:hover::after {
  transform: translateX(-50%) scale(1);
}

/* Services dropdown — desktop only */
.header__link-chevron {
  display: none;
}

.header__dropdown-menu {
  display: none;
}

@media (min-width: 961px) {
  .header__body {
    overflow: visible;
  }

  .header__menu-shell {
    overflow: visible;
  }

  .header__dropdown {
    position: relative;
  }

  /* Invisible hover bridge between trigger and panel */
  .header__dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 18px;
  }

  .header__link--dropdown::after {
    display: none;
  }

  .header__link--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .header__link-chevron {
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .header__dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 268px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(12, 18, 32, 0.98);
    border: 1px solid rgba(0, 212, 170, 0.18);
    border-radius: 12px;
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
  }

  .header__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
  }

  .header__dropdown:hover .header__dropdown-menu,
  .header__dropdown.is-dropdown-open .header__dropdown-menu,
  .header__dropdown:focus-within .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }

  .header__dropdown:not(:hover):not(.is-dropdown-open):not(:focus-within) .header__dropdown-menu {
    transition-delay: 0.12s;
  }

  .header__dropdown:hover .header__link-chevron,
  .header__dropdown.is-dropdown-open .header__link-chevron,
  .header__dropdown:focus-within .header__link-chevron,
  .header__link--dropdown.is-active .header__link-chevron {
    color: var(--accent-teal);
  }

  .header__dropdown:hover .header__link-chevron,
  .header__dropdown.is-dropdown-open .header__link-chevron,
  .header__dropdown:focus-within .header__link-chevron {
    transform: rotate(180deg);
  }

  .header__dropdown-link {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
  }

  .header__dropdown-link:hover {
    color: var(--text-primary);
    background: rgba(0, 212, 170, 0.08);
  }

  .header__dropdown-link.is-active {
    color: var(--accent-teal);
    background: rgba(0, 212, 170, 0.1);
  }

  .header__dropdown-link--all {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--accent-teal);
  }

  .header__dropdown-link--all:hover {
    background: rgba(0, 212, 170, 0.12);
  }
}

/* Indicator — lives inside .header__menu, aligned to link bottom edge */
.header__indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-teal), #8af0dc);
  pointer-events: none;
  opacity: 0;
  transition:
    left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  z-index: 3;
}

.header__indicator.is-visible,
.header__indicator.is-pinned {
  opacity: 1;
}

/* CTA */
.header__cta {
  position: relative;
  flex-shrink: 0;
  padding: 1px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.7) 0%, rgba(255, 107, 74, 0.5) 100%);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.header__cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.header__cta:hover .header__cta-shine {
  transform: translateX(120%);
}

.header__cta-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: linear-gradient(135deg, rgba(10, 16, 28, 0.95) 0%, rgba(14, 22, 38, 0.92) 100%);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: background 0.35s ease, color 0.35s ease, gap 0.35s ease;
}

.header__cta svg {
  width: 14px;
  height: 14px;
  color: var(--accent-teal);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 212, 170, 0.22);
}

.header__cta:hover .header__cta-inner {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(14, 22, 38, 0.95) 100%);
  color: var(--accent-teal);
  gap: 14px;
}

.header__cta:hover svg {
  transform: translate(3px, -3px);
}

.header__cta.is-active .header__cta-inner {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.18) 0%, rgba(14, 22, 38, 0.95) 100%);
  color: var(--accent-teal);
}

/* Mobile toggle */
.header__toggle {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1002;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header__toggle:hover {
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.1);
}

.header__toggle-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(255, 107, 74, 0.08));
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__toggle-icon span {
  position: absolute;
  width: 13px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s ease;
}

.header__toggle-icon span:nth-child(1) {
  transform: translateY(-3.5px);
}

.header__toggle-icon span:nth-child(2) {
  transform: translateY(3.5px);
}

.header__toggle.is-active .header__toggle-icon span:nth-child(1) {
  transform: rotate(45deg);
  width: 15px;
}

.header__toggle.is-active .header__toggle-icon span:nth-child(2) {
  transform: rotate(-45deg);
  width: 15px;
}

.header__toggle-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.header__toggle:hover .header__toggle-label,
.header__toggle.is-active .header__toggle-label {
  color: var(--accent-teal);
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px 120px;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

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

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #5eecc8 50%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-teal);
}

.hero__stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-teal);
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   About
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.about__list svg {
  width: 20px;
  height: 20px;
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__visual-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent-teal-dim);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* =============================================
   Company Spotlight
   ============================================= */
.company__shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 420px;
}

.company__nav {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid var(--border);
  gap: 4px;
}

.company__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  color: var(--text-muted);
  font-family: var(--font-heading);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.company__tab:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border-color: var(--border);
}

.company__tab.is-active {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 212, 170, 0.04) 100%);
  border-color: rgba(0, 212, 170, 0.2);
  color: var(--accent-teal);
  box-shadow: inset 3px 0 0 var(--accent-teal);
}

.company__tab-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  opacity: 0.5;
  min-width: 20px;
}

.company__tab.is-active .company__tab-num {
  opacity: 1;
  color: var(--accent-teal);
}

.company__tab-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.company__panels {
  position: relative;
  padding: 40px 44px 48px;
  min-height: 400px;
}

.company__panel {
  position: absolute;
  top: 40px;
  left: 44px;
  right: 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.45s;
  z-index: 0;
}

.company__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

.company__panel:not(.is-active) {
  pointer-events: none;
}

.company__panel-head {
  margin-bottom: 20px;
}

.company__panel-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.company__panel-head h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.company__panel > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 620px;
}

.company__panel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.company__panel-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.company__panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

.company__panel-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.company__panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company__meta-chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-coral);
  background: var(--accent-coral-dim);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 107, 74, 0.15);
}

.company__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.company__progress-bar {
  display: block;
  height: 100%;
  width: 16.666%;
  background: linear-gradient(90deg, var(--accent-teal), #8af0dc);
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.5);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(0);
}

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

.company__tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.company__tile:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.company__tile-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-teal-dim);
  border-radius: var(--radius-sm);
  color: var(--accent-teal);
  margin-bottom: 4px;
}

.company__tile-icon svg {
  width: 20px;
  height: 20px;
}

.company__tile-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.company__tile-value {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* =============================================
   Approach
   ============================================= */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approach__visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.approach__visual-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.approach__floating-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(7, 11, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  animation: float 4s ease-in-out infinite;
}

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

.approach__floating-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.approach__floating-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent-teal);
}

.approach__steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach__step {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.approach__step:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border);
}

.approach__step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-teal);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
}

.approach__step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.approach__step p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* =============================================
   Capabilities
   ============================================= */
.capabilities__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.capabilities__visual img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

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

.capability-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.capability-item:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-2px);
}

.capability-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

/* =============================================
   Pillars
   ============================================= */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  transition: all var(--transition);
  text-align: center;
}

.pillar:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-teal-dim);
  border-radius: 50%;
  color: var(--accent-teal);
}

.pillar__icon svg {
  width: 26px;
  height: 26px;
}

.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* =============================================
   CTA
   ============================================= */
.cta__box {
  position: relative;
  text-align: center;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  overflow-x: clip;
  max-width: 100%;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  min-width: 0;
}

.footer__brand,
.footer__contact,
.footer__hours {
  min-width: 0;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
}

.footer__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer__address p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 14px;
  line-height: 1.6;
  word-break: break-word;
}

.footer__address a {
  overflow-wrap: anywhere;
}

.footer__address svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-teal);
}

.footer__address a:hover {
  color: var(--accent-teal);
}

.footer__schedule li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.footer__schedule li:last-child {
  border-bottom: none;
}

.footer__schedule li span:last-child {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__schedule li span:first-child {
  min-width: 0;
}

.footer__timezone {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--accent-teal);
}

.footer__legal a[aria-current="page"] {
  color: var(--accent-teal);
}

.footer__legal-sep {
  color: var(--text-muted);
  opacity: 0.45;
  user-select: none;
}

/* =============================================
   Scroll to Top
   ============================================= */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9400;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 12px;
  background: rgba(12, 18, 32, 0.92);
  color: var(--accent-teal);
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s,
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top__glow {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.scroll-top__icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top:hover {
  border-color: rgba(0, 212, 170, 0.5);
  color: #8af0dc;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(0, 212, 170, 0.2);
}

.scroll-top:hover .scroll-top__glow {
  opacity: 1;
}

.scroll-top:hover .scroll-top__icon {
  transform: translateY(-2px);
}

.scroll-top:active .scroll-top__icon {
  transform: translateY(0);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .scroll-top__icon {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: opacity 0.2s ease, visibility 0.2s;
  }

  .scroll-top__icon {
    transition: none;
  }
}

/* =============================================
   Legal Pages
   ============================================= */
.legal-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 56px;
}

.legal-hero .section-header {
  margin-bottom: 0;
}

.legal-hero .section-desc {
  max-width: 680px;
}

.legal {
  padding-top: 32px;
  padding-bottom: 100px;
}

.legal__content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

/* Legal body text must be visible on load — no scroll reveal */
.legal__content,
.legal__content .legal__section,
.legal-hero .section-header.reveal {
  opacity: 1;
  transform: none;
  visibility: visible;
}

section.legal.section {
  overflow: visible;
}

.legal__section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

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

.legal__section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.legal__section h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text-primary);
}

.legal__section p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

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

.legal__section ul,
.legal__section ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}

.legal__section li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.legal__section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.legal__section ol {
  counter-reset: legalitem;
}

.legal__section ol li {
  counter-increment: legalitem;
  padding-left: 28px;
}

.legal__section ol li::before {
  content: counter(legalitem) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-teal);
}

.legal__section a {
  color: var(--accent-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__section a:hover {
  color: #8af0dc;
}

.legal__section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal__note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.14);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .legal-hero {
    padding-top: calc(var(--header-h) + 56px);
    padding-bottom: 40px;
  }

  .legal {
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .legal__content {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .legal__section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
}

/* =============================================
   FAQ Page
   ============================================= */
.faq {
  padding-top: 32px;
  padding-bottom: 100px;
}

.faq__layout {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.faq__category {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  padding: 24px 28px 0;
}

.faq__list {
  padding: 16px 12px 12px;
}

.faq__item {
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.faq__item.is-open {
  background: rgba(255, 255, 255, 0.02);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--accent-teal);
}

.faq__question:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-teal);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner p {
  padding: 0 16px 16px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq__answer-inner a {
  color: var(--accent-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__answer-inner a:hover {
  color: #8af0dc;
}

.faq__cta {
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.faq__cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .faq {
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .faq__layout {
    gap: 28px;
  }

  .faq__category {
    padding: 20px 20px 0;
  }

  .faq__list {
    padding: 12px 8px 8px;
  }

  .faq__question {
    padding: 14px;
    font-size: 0.875rem;
  }

  .faq__answer-inner p {
    padding: 0 14px 14px;
    font-size: 0.875rem;
  }

  .faq__cta {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer,
  .faq__icon {
    transition: none;
  }

  .faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
  }
}

/* =============================================
   About Page
   ============================================= */
.aboutpg-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
}

.aboutpg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aboutpg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.aboutpg-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.55) 0%, rgba(7, 11, 20, 0.92) 75%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
}

.aboutpg-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black 10%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, black 10%, transparent 90%);
  pointer-events: none;
}

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

.aboutpg-hero__content {
  max-width: 720px;
}

.aboutpg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.aboutpg-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-teal), #8af0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aboutpg-hero__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
}

.aboutpg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aboutpg-hero__chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.aboutpg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.aboutpg-split--reverse .aboutpg-split__visual {
  order: -1;
}

.aboutpg-split__text .section-desc {
  margin-bottom: 18px;
}

.aboutpg-split__text .section-desc:last-of-type {
  margin-bottom: 0;
}

.aboutpg-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.aboutpg-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.aboutpg-visual__glow {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--accent-teal-dim);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

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

.aboutpg-pillar {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.aboutpg-pillar:hover {
  border-color: rgba(0, 212, 170, 0.25);
  transform: translateY(-4px);
}

.aboutpg-pillar__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.aboutpg-pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.aboutpg-pillar p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.aboutpg-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.aboutpg-metric {
  padding: 28px 24px;
  background: var(--bg-card);
  text-align: center;
}

.aboutpg-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--accent-teal);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.aboutpg-metric span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.aboutpg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: aboutstep;
}

.aboutpg-step {
  position: relative;
  padding: 24px 20px 24px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  counter-increment: aboutstep;
}

.aboutpg-step::before {
  content: counter(aboutstep, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-teal);
  margin-bottom: 14px;
}

.aboutpg-step h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.aboutpg-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.aboutpg-fit__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.aboutpg-fit__item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.aboutpg-fit__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.18);
  color: var(--accent-teal);
}

.aboutpg-fit__icon svg {
  width: 20px;
  height: 20px;
}

.aboutpg-fit__item h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.aboutpg-fit__item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.aboutpg-cta {
  text-align: center;
  padding: 56px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.aboutpg-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.aboutpg-cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 24px;
}

.aboutpg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .aboutpg-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aboutpg-split--reverse .aboutpg-split__visual {
    order: -1;
  }

  .aboutpg-pillars {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .aboutpg-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }

  .aboutpg-metrics {
    grid-template-columns: 1fr;
  }

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

  .aboutpg-cta {
    padding: 40px 24px;
  }

  .aboutpg-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aboutpg-cta__actions .btn {
    width: 100%;
  }
}

/* =============================================
   Approach Page
   ============================================= */
.approachpg-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
}

.approachpg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.approachpg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.approachpg-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.5) 0%, rgba(7, 11, 20, 0.94) 80%),
    radial-gradient(ellipse 50% 40% at 20% 40%, rgba(0, 212, 170, 0.1) 0%, transparent 65%);
}

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

.approachpg-hero__content {
  max-width: 680px;
}

.approachpg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.approachpg-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-teal), #8af0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approachpg-hero__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 560px;
}

.approachpg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approachpg-split--reverse .approachpg-split__visual {
  order: -1;
}

.approachpg-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.approachpg-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.approachpg-visual__glow {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 107, 74, 0.08);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.approachpg-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.approachpg-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-teal), rgba(0, 212, 170, 0.1));
}

.approachpg-phase {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
}

.approachpg-phase__marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 170, 0.25);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-teal);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.1);
}

.approachpg-phase__body {
  padding: 8px 24px 8px 0;
  border-bottom: 1px solid var(--border);
}

.approachpg-phase:last-child .approachpg-phase__body {
  border-bottom: none;
}

.approachpg-phase h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.approachpg-phase p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.approachpg-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.approachpg-principle {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent-teal);
}

.approachpg-principle h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.approachpg-principle p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.approachpg-rhythm__item {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.approachpg-rhythm__freq {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.approachpg-rhythm__item h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.approachpg-rhythm__item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.approachpg-loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.approachpg-loop__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.approachpg-loop__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.approachpg-loop__point::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

.approachpg-cta {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(10, 15, 26, 0.98));
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
}

.approachpg-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.approachpg-cta p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.approachpg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .approachpg-split,
  .approachpg-loop {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .approachpg-split--reverse .approachpg-split__visual {
    order: -1;
  }

  .approachpg-principles {
    grid-template-columns: 1fr;
  }

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

  .approachpg-loop {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .approachpg-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }

  .approachpg-timeline::before {
    left: 23px;
  }

  .approachpg-phase {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .approachpg-phase__marker {
    width: 48px;
    height: 48px;
    font-size: 0.6875rem;
  }

  .approachpg-rhythm {
    grid-template-columns: 1fr;
  }

  .approachpg-cta {
    padding: 40px 24px;
  }

  .approachpg-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .approachpg-cta__actions .btn {
    width: 100%;
  }
}

/* =============================================
   Capabilities Page
   ============================================= */
.capspg-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
}

.capspg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.capspg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.capspg-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.5) 0%, rgba(7, 11, 20, 0.94) 80%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255, 107, 74, 0.08) 0%, transparent 65%);
}

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

.capspg-hero__content {
  max-width: 680px;
}

.capspg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.capspg-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-teal), #8af0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.capspg-hero__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 560px;
}

.capspg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.capspg-split--reverse .capspg-split__visual {
  order: -1;
}

.capspg-split__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.capspg-scope__note {
  margin-top: 20px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  background: rgba(0, 212, 170, 0.05);
  border-left: 3px solid var(--accent-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.capspg-scope__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.capspg-scope__stat {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.capspg-scope__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent-teal);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.capspg-scope__stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.capspg-domains__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.capspg-domain {
  padding: 28px 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease;
}

.capspg-domain:hover {
  border-color: rgba(0, 212, 170, 0.25);
}

.capspg-domain__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.capspg-domain__code {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--accent-teal);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 10px;
}

.capspg-domain h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.capspg-domain > p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.capspg-domain__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.capspg-domain__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.capspg-domain__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-teal);
  opacity: 0.7;
}

.capspg-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.capspg-tier {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.capspg-tier--featured {
  border-color: rgba(0, 212, 170, 0.35);
  background: linear-gradient(160deg, rgba(0, 212, 170, 0.06) 0%, rgba(17, 24, 39, 0.95) 60%);
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.08);
}

.capspg-tier__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent-teal);
  border-radius: 999px;
}

.capspg-tier__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--accent-teal);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.capspg-tier h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.capspg-tier__summary {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.capspg-tier__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.capspg-tier__features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.capspg-tier__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-size: 0.75rem;
}

.capspg-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.capspg-checklist li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.capspg-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

.capspg-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.capspg-philosophy__item {
  padding: 28px 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.capspg-philosophy__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-coral);
  margin-bottom: 14px;
}

.capspg-philosophy__item h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.capspg-philosophy__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.capspg-orchestration {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.capspg-orchestration__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.capspg-orchestration__channel {
  flex-shrink: 0;
  min-width: 88px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-teal);
}

.capspg-orchestration__arrow {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.capspg-orchestration__role {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.capspg-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.capspg-deliverable {
  padding: 28px 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.capspg-deliverable svg {
  width: 32px;
  height: 32px;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.capspg-deliverable h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.capspg-deliverable p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.capspg-cta {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(10, 15, 26, 0.98));
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
}

.capspg-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.capspg-cta p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.capspg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .capspg-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .capspg-split--reverse .capspg-split__visual {
    order: -1;
  }

  .capspg-domains__grid {
    grid-template-columns: 1fr;
  }

  .capspg-tiers__grid {
    grid-template-columns: 1fr;
  }

  .capspg-philosophy__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .capspg-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }

  .capspg-deliverables__grid {
    grid-template-columns: 1fr;
  }

  .capspg-cta {
    padding: 40px 24px;
  }

  .capspg-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .capspg-cta__actions .btn {
    width: 100%;
  }
}

/* =============================================
   Services Page
   ============================================= */
.svcpg-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
}

.svcpg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svcpg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.svcpg-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.45) 0%, rgba(7, 11, 20, 0.95) 82%),
    radial-gradient(ellipse 55% 45% at 70% 35%, rgba(0, 212, 170, 0.1) 0%, transparent 65%);
}

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

.svcpg-hero__content {
  max-width: 680px;
}

.svcpg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.svcpg-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-teal), #8af0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svcpg-hero__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 560px;
}

.svcpg-intro__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.svcpg-intro__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svcpg-intro__point {
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.svcpg-intro__point strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 6px;
}

.svcpg-intro__point span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.svcpg-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svcpg-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.svcpg-card:hover {
  border-color: rgba(0, 212, 170, 0.28);
  transform: translateY(-3px);
}

.svcpg-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.svcpg-card:hover .svcpg-card__media img {
  transform: scale(1.04);
}

.svcpg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}

.svcpg-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--accent-coral);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.svcpg-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.svcpg-card p {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.svcpg-card__btn {
  align-self: flex-start;
  font-size: 0.8125rem;
  padding: 10px 18px;
}

.svcpg-flow__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.svcpg-flow__step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.svcpg-flow__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-teal);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.22);
  border-radius: 50%;
}

.svcpg-flow__step h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.svcpg-flow__step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.svcpg-flow__connector {
  flex-shrink: 0;
  align-self: center;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.5), rgba(0, 212, 170, 0.15));
}

.svcpg-models__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.svcpg-model {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.svcpg-model__type {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.18);
  border-radius: 999px;
}

.svcpg-model h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.svcpg-model p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.svcpg-cta {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(10, 15, 26, 0.98));
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
}

.svcpg-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.svcpg-cta p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.svcpg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .svcpg-intro__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .svcpg-flow__track {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .svcpg-flow__connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.5), rgba(0, 212, 170, 0.15));
  }

  .svcpg-models__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .svcpg-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }

  .svcpg-services__grid {
    grid-template-columns: 1fr;
  }

  .svcpg-cta {
    padding: 40px 24px;
  }

  .svcpg-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .svcpg-cta__actions .btn {
    width: 100%;
  }
}

/* =============================================
   Service Detail Pages
   ============================================= */
.svcdtl-hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
}

.svcdtl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
}

.svcdtl-breadcrumb a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.svcdtl-breadcrumb a:hover {
  opacity: 0.8;
}

.svcdtl-breadcrumb span[aria-hidden="true"] {
  color: var(--text-muted);
}

.svcdtl-breadcrumb span[aria-current="page"] {
  color: var(--text-muted);
}

.svcdtl-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 720px;
}

.svcdtl-hero__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 620px;
}

.svcdtl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.svcdtl-split__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.svcdtl-split__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.svcdtl-split__text .section-desc {
  margin-bottom: 16px;
}

.svcdtl-split__text .section-desc:last-of-type {
  margin-bottom: 0;
}

.svcdtl-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.svcdtl-include {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.svcdtl-include h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

.svcdtl-include p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.svcdtl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.svcdtl-step {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.svcdtl-step__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-coral);
  margin-bottom: 14px;
}

.svcdtl-step h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.svcdtl-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.svcdtl-audience {
  max-width: 720px;
}

.svcdtl-audience__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.svcdtl-audience__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.svcdtl-audience__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.45);
}

.svcdtl-related {
  margin-bottom: 40px;
}

.svcdtl-related__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.svcdtl-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.svcdtl-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.svcdtl-related__link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
}

.svcdtl-related__link:hover {
  border-color: rgba(0, 212, 170, 0.3);
  color: var(--text-primary);
}

.svcdtl-cta {
  text-align: center;
  padding: 48px 36px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(10, 15, 26, 0.98));
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: var(--radius-xl);
}

.svcdtl-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.svcdtl-cta p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 22px;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.svcdtl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .svcdtl-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svcdtl-includes {
    grid-template-columns: 1fr;
  }

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

  .svcdtl-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .svcdtl-hero {
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 48px;
  }

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

  .svcdtl-cta {
    padding: 36px 24px;
  }

  .svcdtl-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .svcdtl-cta__actions .btn {
    width: 100%;
  }
}

/* =============================================
   Contact Page
   ============================================= */
.contactpg-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 72px;
  overflow: hidden;
}

.contactpg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contactpg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.contactpg-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.4) 0%, rgba(7, 11, 20, 0.94) 85%),
    radial-gradient(ellipse 50% 45% at 30% 40%, rgba(0, 212, 170, 0.12) 0%, transparent 65%);
}

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

.contactpg-hero__content {
  max-width: 620px;
}

.contactpg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.contactpg-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-teal), #8af0dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contactpg-hero__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 520px;
}

.contactpg-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.contactpg-form-wrap {
  padding: 32px 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contactpg-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contactpg-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contactpg-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.contactpg-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contactpg-field label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contactpg-field input,
.contactpg-field select,
.contactpg-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contactpg-field input::placeholder,
.contactpg-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contactpg-field input:focus,
.contactpg-field select:focus,
.contactpg-field textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 170, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.contactpg-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b95a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Chrome renders native option list with a light background on Windows */
.contactpg-field select option {
  color: #111827;
  background-color: #ffffff;
}

.contactpg-field select option:checked {
  color: #ffffff;
  background-color: #0d9488;
}

.contactpg-field textarea {
  min-height: 140px;
  resize: vertical;
}

.contactpg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contactpg-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contactpg-consent input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-teal);
}

.contactpg-consent label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
}

.contactpg-consent a {
  color: var(--accent-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contactpg-submit {
  margin-top: 4px;
}

.contactpg-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Modals */
body.is-modal-open {
  overflow: hidden;
}

.contactpg-modal[hidden] {
  display: none;
}

.contactpg-modal {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contactpg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contactpg-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 36px 32px 32px;
  text-align: center;
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.98), rgba(10, 15, 26, 0.99));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  animation: contactModalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contactpg-modal__panel--success {
  border-color: rgba(0, 212, 170, 0.28);
}

.contactpg-modal__panel--error {
  border-color: rgba(255, 107, 74, 0.28);
}

@keyframes contactModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contactpg-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contactpg-modal__close svg {
  width: 16px;
  height: 16px;
}

.contactpg-modal__close:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.contactpg-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contactpg-modal__icon svg {
  width: 28px;
  height: 28px;
}

.contactpg-modal__icon--success {
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-teal);
  border: 1px solid rgba(0, 212, 170, 0.25);
}

.contactpg-modal__icon--error {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent-coral);
  border: 1px solid rgba(255, 107, 74, 0.22);
}

.contactpg-modal__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contactpg-modal__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.contactpg-modal__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.contactpg-modal__hint a {
  color: var(--accent-teal);
}

.contactpg-modal__errors {
  text-align: left;
  margin: 0 0 24px;
  padding: 14px 16px 14px 32px;
  background: rgba(255, 107, 74, 0.06);
  border: 1px solid rgba(255, 107, 74, 0.18);
  border-radius: var(--radius-md);
  list-style: disc;
}

.contactpg-modal__errors[hidden] {
  display: none;
}

.contactpg-modal__errors li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 4px;
}

.contactpg-modal__errors li:last-child {
  margin-bottom: 0;
}

.contactpg-modal__action {
  min-width: 140px;
}

/* Map */
.contactpg-map__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.contactpg-map__frame {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contactpg-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

.contactpg-map__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contactpg-map__address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contactpg-map__address strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contactpg-map__btn {
  align-self: flex-start;
}

.contactpg-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactpg-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contactpg-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.18);
  color: var(--accent-teal);
}

.contactpg-card__icon svg {
  width: 20px;
  height: 20px;
}

.contactpg-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contactpg-card p,
.contactpg-card address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contactpg-card a {
  color: var(--accent-teal);
  transition: opacity 0.2s ease;
}

.contactpg-card a:hover {
  opacity: 0.85;
}

.contactpg-card__note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contactpg-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.contactpg-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contactpg-hours span:last-child {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.contactpg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.contactpg-step {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contactpg-step__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-coral);
  margin-bottom: 12px;
}

.contactpg-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contactpg-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

  .contactpg-map__layout {
    grid-template-columns: 1fr;
  }

  .contactpg-map__frame {
    min-height: 320px;
  }

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

@media (max-width: 768px) {
  .contactpg-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
  }

  .contactpg-form-wrap {
    padding: 24px 20px 28px;
  }

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

  .contactpg-modal {
    padding: 16px;
  }

  .contactpg-modal__panel {
    padding: 32px 24px 28px;
  }
}

/* =============================================
   Cookie Banner
   ============================================= */
.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;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 9500;
  padding: 10px 12px;
  pointer-events: none;
  transform: translateY(calc(100% + 16px));
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(480px, 70vw);
  height: 64px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.1) 0%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.cookie-banner__panel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 14px;
  background: rgba(12, 18, 32, 0.94);
  border: 1px solid rgba(0, 212, 170, 0.14);
  border-radius: var(--radius-md);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 12px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-banner__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-banner__lead {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.18);
  color: var(--accent-teal);
}

.cookie-banner__icon svg {
  width: 16px;
  height: 16px;
}

.cookie-banner__copy {
  min-width: 0;
}

.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}

.cookie-banner__desc {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
}

.cookie-banner__actions .btn {
  padding: 7px 12px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.cookie-banner__reject {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding: 7px 8px;
  transition: color var(--transition);
  white-space: nowrap;
}

.cookie-banner__reject:hover {
  color: var(--text-primary);
}

.cookie-banner__prefs {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 6px;
}

.cookie-banner__pref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.cookie-banner__pref-info {
  min-width: 0;
}

.cookie-banner__pref-info h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.cookie-banner__pref-info p {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.cookie-banner__toggle {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-teal);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.16);
}

.cookie-banner__switch {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 22px;
  cursor: pointer;
}

.cookie-banner__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-banner__switch-ui {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cookie-banner__switch-ui::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.cookie-banner__switch input:checked + .cookie-banner__switch-ui {
  background: rgba(0, 212, 170, 0.18);
  border-color: rgba(0, 212, 170, 0.4);
}

.cookie-banner__switch input:checked + .cookie-banner__switch-ui::after {
  transform: translateX(16px);
  background: var(--accent-teal);
}

.cookie-banner__switch input:focus-visible + .cookie-banner__switch-ui {
  outline: 2px solid var(--accent-teal);
  outline-offset: 2px;
}

.cookie-banner__prefs-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.cookie-banner__prefs-actions .btn {
  padding: 7px 14px;
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 8px 10px;
  }

  .cookie-banner__panel {
    padding: 10px 12px;
  }

  .cookie-banner__main {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cookie-banner__lead {
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    min-width: 0;
  }

  .cookie-banner__reject {
    flex: 0 0 auto;
  }

  .cookie-banner__pref {
    gap: 10px;
  }

  .cookie-banner__prefs-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: opacity 0.2s ease;
  }
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .company__shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-direction: unset;
    overflow: visible;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px;
    gap: 8px;
  }

  .company__tab {
    width: auto;
    flex-shrink: unset;
    padding: 12px 14px;
    min-height: 44px;
    min-width: 0;
  }

  .company__tab.is-active {
    box-shadow: inset 3px 0 0 var(--accent-teal);
  }

  .company__tab-num {
    display: inline;
    font-size: 0.5625rem;
  }

  .company__tab-label {
    font-size: 0.75rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .company__panels {
    padding: 24px 20px 28px;
    min-height: 0;
  }

  .company__panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
  }

  .company__panel.is-active {
    display: block;
    pointer-events: auto;
  }

  .company__progress {
    display: none;
  }

  .company__tiles {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .about__grid,
  .approach__grid,
  .capabilities__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach__visual {
    order: -1;
  }
}

@media (max-width: 1100px) {
  .header__link {
    padding: 10px 12px;
  }

  .header__ribbon-mail {
    display: none;
  }
}

.header__nav-close {
  display: none;
}

@media (max-width: 960px) {
  :root {
    --header-h: 76px;
    --page-top-gap: 64px;
  }

  main > section:first-child {
    padding-top: calc(var(--header-h) + var(--page-top-gap));
  }

  .header__aura {
    width: 100%;
    top: -40px;
  }

  .header__ribbon {
    display: none;
  }

  .header__body-inner {
    grid-template-columns: 1fr auto;
    height: 76px;
    padding: 0 20px;
  }

  .header__logo {
    padding-right: 0;
    margin-right: 0;
    height: 44px;
  }

  .header__logo::after {
    display: none;
  }

  .header__logo-img {
    height: 36px;
    max-width: 155px;
  }

  .header__nav:not(.is-open) {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(ellipse 70% 50% at 80% 10%, rgba(255, 107, 74, 0.12) 0%, transparent 55%),
      radial-gradient(ellipse 60% 40% at 10% 20%, rgba(0, 212, 170, 0.14) 0%, transparent 50%),
      rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }

  body.is-nav-open .header.is-scrolled .header__body,
  body.is-nav-open .header__body {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  body.is-nav-open .header {
    overflow: visible;
    z-index: 1002;
  }

  body > .header__nav {
    z-index: 1001;
  }

  .header__nav-close {
    display: none;
  }

  .header__nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    justify-content: flex-start;
    padding-top: var(--header-h);
  }

  .header__nav.is-open::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(0, 212, 170, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 212, 170, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, black 20%, transparent 85%);
    -webkit-mask-image: linear-gradient(180deg, black 20%, transparent 85%);
    pointer-events: none;
  }

  .header__mobile-head {
    display: block;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 16px 28px 20px;
  }

  .header__mobile-eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-teal);
    margin-bottom: 12px;
  }

  .header__mobile-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }

  .header__mobile-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-teal), #8af0dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .header__nav.is-open .header__mobile-head {
    animation: navFadeDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  @keyframes navFadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  body.is-nav-open .scroll-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header__menu-shell {
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    margin: 0 20px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  }

  .header__menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    counter-reset: navitem;
  }

  .header__menu li {
    counter-increment: navitem;
  }

  .header__link {
    display: grid;
    grid-template-columns: 1fr 28px;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border-radius: 10px;
  }

  .header__link::before {
    opacity: 0.04;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.04);
  }

  .header__link::after {
    top: auto;
    left: auto;
    right: 16px;
    bottom: auto;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    content: '↗';
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .header__link .header__link-text::before {
    content: counter(navitem, decimal-leading-zero);
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 4px;
  }

  .header__link-text {
    font-size: 1.0625rem;
    letter-spacing: 0.1em;
  }

  .header__link:hover::before,
  .header__link.is-active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(255, 107, 74, 0.05) 100%);
  }

  .header__link:hover::after {
    color: var(--accent-teal);
    transform: translate(2px, -2px);
  }

  .header__nav.is-open .header__menu li {
    animation: navSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .header__nav.is-open .header__menu li:nth-child(1) { animation-delay: 0.06s; }
  .header__nav.is-open .header__menu li:nth-child(2) { animation-delay: 0.1s; }
  .header__nav.is-open .header__menu li:nth-child(3) { animation-delay: 0.14s; }
  .header__nav.is-open .header__menu li:nth-child(4) { animation-delay: 0.18s; }
  .header__nav.is-open .header__menu li:nth-child(5) { animation-delay: 0.22s; }
  .header__nav.is-open .header__menu li:nth-child(6) { animation-delay: 0.26s; }

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

  .header__indicator {
    display: none;
  }

  .header__nav.is-open .header__cta {
    animation: navSlideUp 0.5s 0.28s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .header__cta {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: block;
    margin: 12px 20px max(28px, env(safe-area-inset-bottom));
    padding: 1px;
    border-radius: 12px;
  }

  .header__cta-inner {
    width: 100%;
    justify-content: space-between;
    padding: 20px 22px;
    font-size: 0.8125rem;
    border-radius: 11px;
  }

  .header__cta svg {
    width: 18px;
    height: 18px;
  }

  .header__toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero__content {
    padding: 60px 24px 100px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
  }

  .hero__stat-divider {
    width: 100%;
    height: 1px;
  }

  .hero__scroll {
    display: none;
  }

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

  .company__nav {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 6px;
  }

  .company__tab {
    padding: 12px 16px;
  }

  .company__panels {
    padding: 20px 16px 24px;
  }

  .company__panel-head h3 {
    font-size: 1.125rem;
  }

  .company__panel > p {
    font-size: 0.9375rem;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer__brand,
  .footer__contact,
  .footer__hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer__desc {
    max-width: 100%;
  }

  .footer__logo {
    display: inline-flex;
    justify-content: center;
  }

  .footer__logo-img {
    object-position: center;
    margin-inline: auto;
  }

  .footer__address {
    width: 100%;
    max-width: 320px;
  }

  .footer__address p {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .footer__address svg {
    margin-top: 0;
  }

  .footer__schedule {
    width: 100%;
    max-width: 320px;
  }

  .footer__schedule li {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .footer__schedule li span:last-child {
    white-space: normal;
  }

  .footer__timezone {
    text-align: center;
  }

  .cta__box {
    padding: 48px 24px;
  }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__title {
    font-size: 2.25rem;
  }
}
