:root {
  --dark: #000D04;
  --accent: #FFC517;
  --light: #FFFFFF;
  --surface: #F3F7F1;
  --surface-2: #EEF4EC;
  --grid-size: 64px;
  --grid-light: rgba(0,13,4,.075);
  --grid-dark: rgba(255,255,255,.075);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
  --header-height: 92px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(0,13,4,.84), rgba(0,13,4,.35));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  max-height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-size: .96rem;
  font-weight: 300;
  letter-spacing: .02em;
  padding: 10px 0;
  color: rgba(255,255,255,.92);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.hero-cta,
.skip-intro-btn,
.services-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  letter-spacing: .02em;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease, opacity .28s ease, color .28s ease;
}

.header-cta,
.hero-cta {
  font-weight: 700;
}

.header-cta {
  padding: 14px 22px;
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(255,197,23,.22);
}

.header-cta:hover,
.hero-cta:hover,
.skip-intro-btn:hover,
.services-btn-outline:hover {
  transform: translateY(-2px);
}

.mobile-toggle,
.mobile-nav { display: none; }

.mobile-toggle {
  background: transparent;
  border: 0;
  color: var(--light);
  font-size: 1.3rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.16), rgba(0,13,4,.72) 62%, rgba(0,13,4,.92)),
    linear-gradient(180deg, rgba(0,13,4,.36), rgba(0,13,4,.82));
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.2));
}

.hero-sticky {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  z-index: 2;
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  gap: 30px;
  text-align: center;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 42px;
}

.scroll-indicator {
  display: grid;
  justify-items: center;
  gap: 12px;
  opacity: .9;
  user-select: none;
  pointer-events: none;
}

.scroll-indicator-label {
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.scroll-indicator-icon {
  position: relative;
  width: 28px;
  height: 48px;
  border: 1.6px solid rgba(255,255,255,.8);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.scroll-indicator-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

.scroll-indicator-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.72);
  border-bottom: 2px solid rgba(255,255,255,.72);
  transform: translateX(-50%) rotate(45deg);
  opacity: .9;
}

@keyframes scrollWheel {
  0% { opacity: 0; transform: translateX(-50%) translateY(0); }
  20% { opacity: 1; }
  80% { opacity: 1; transform: translateX(-50%) translateY(12px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.hero-copy-wrap {
  position: relative;
  width: min(1180px, 92vw);
  min-height: clamp(220px, 26vw, 340px);
  margin: 0 auto;
  padding: 0 24px;
}

.phrase-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrase-stage.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.phrase-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.phrase-svg-mobile {
  display: none;
}

.phrase-svg text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 82px);
  letter-spacing: .02em;
  fill: rgba(255,255,255,.04);
  stroke: var(--light);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke fill;
  stroke-dasharray: var(--dash, 1);
  stroke-dashoffset: var(--offset, 1);
  transition: fill .3s ease, opacity .3s ease;
  text-anchor: middle;
  dominant-baseline: middle;
}

.phrase-svg tspan { x: 50%; }

.phrase-stage.is-complete .phrase-svg text {
  fill: rgba(255,255,255,.98);
}

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

.trust-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.5;
  letter-spacing: .01em;
}

.hero-trust-line {
  margin-top: -10px;
  padding: 0 16px;
  text-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.flag-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 18px;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
}

.flag-us {
  background: repeating-linear-gradient(to bottom, #b22234 0, #b22234 1.4px, #fff 1.4px, #fff 2.8px);
}

.flag-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 10px;
  background: #3c3b6e;
}

.flag-co {
  background: linear-gradient(to bottom, #002868 0 33%, #fff 33% 66%, #002868 66% 100%);
}

.flag-co::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 9px;
  height: 9px;
  border: 3px solid #bf0a30;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.flag-co::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffd700;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #002868 0 32%, #fff 32% 68%, #002868 68% 100%);
  color: #bf0a30;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 8px 16px rgba(0,0,0,.16);
}

.location-flag {
  display: inline-block;
  flex: 0 0 auto;
  width: 32px;
  height: 22px;
  max-width: 32px;
  min-width: 32px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 8px 16px rgba(0,0,0,.16);
}

.hero-cta {
  padding: 18px 34px;
  min-width: 280px;
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,197,23,.55);
}

.pulse-btn {
  animation: pulseGlow 2.2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,197,23,.38), 0 12px 34px rgba(255,197,23,.16); }
  70% { box-shadow: 0 0 0 18px rgba(255,197,23,0), 0 18px 38px rgba(255,197,23,.24); }
  100% { box-shadow: 0 0 0 0 rgba(255,197,23,0), 0 12px 34px rgba(255,197,23,.16); }
}

.skip-intro-btn {
  position: absolute;
  right: 0;
  top: 15%;
  transform: translateY(-50%);
  padding: 14px 18px;
  color: var(--light);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  font-weight: 300;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.skip-intro-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,197,23,.5);
}

.skip-intro-btn i,
.skip-intro-btn svg {
  font-size: .95rem;
}

.services-section {
  position: relative;
  z-index: 3;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,197,23,.16), rgba(255,197,23,0) 26%),
    radial-gradient(circle at 88% 82%, rgba(0,13,4,.06), rgba(0,13,4,0) 28%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  color: #09140d;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,13,4,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,13,4,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .35;
  pointer-events: none;
}

.services-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  align-items: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(9,20,13,.72);
}

.services-title {
  margin: 0 0 20px;
 font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 700;
  max-width: 16ch;
}

.services-description {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.06rem, 1.5vw, 1.45rem);
  line-height: 1.7;
  color: rgba(9,20,13,.72);
}

.services-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.services-btn-outline {
  padding: 16px 24px;
  border: 1px solid rgba(9,20,13,.16);
  background: rgba(255,255,255,.78);
  color: #09140d;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(8,24,14,.08);
}

.services-btn-outline:hover {
  border-color: rgba(255,197,23,.95);
  box-shadow: 0 18px 38px rgba(8,24,14,.12);
}

.services-note {
  position: relative;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(6,18,11,.98), rgba(11,27,17,.98));
  color: #fff;
  box-shadow: 0 24px 60px rgba(6,18,11,.18);
}

.services-note-bar {
  display: block;
  width: 4px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(255,197,23,.45));
}

.services-note p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.84);
}

.services-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.services-visual-grid {
  position: absolute;
  inset: 7% 9%;
  border-radius: 32px;
  background-image:
    linear-gradient(var(--grid-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-light) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: .55;
}

.services-visual-card {
  position: relative;
  width: min(100%, 560px);
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(243,247,241,.86), rgba(238,244,236,.96));
  border: 1px solid rgba(9,20,13,.1);
  box-shadow: 0 32px 80px rgba(8,24,14,.14);
  backdrop-filter: blur(12px);
  animation: floatingCard 6s ease-in-out infinite;
  z-index: 2;
}

.services-visual-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,197,23,.95), rgba(255,255,255,.38), rgba(9,20,13,.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.services-visual-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: #08160e;
}

.services-visual-orbit {
  position: absolute;
  border: 1px dashed rgba(9,20,13,.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-1 {
  width: 540px;
  height: 540px;
  animation: rotateRing 24s linear infinite;
}

.orbit-2 {
  width: 680px;
  height: 680px;
  animation: rotateRingReverse 30s linear infinite;
}

.services-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #09140d;
  font-size: .92rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(8,24,14,.12);
  border: 1px solid rgba(9,20,13,.08);
  z-index: 3;
}

.services-chip i {
  color: var(--accent);
}

.chip-top {
  top: 12%;
  left: 4%;
}

.chip-bottom {
  right: 0;
  bottom: 12%;
}

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

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateRingReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-up.delay-1 { transition-delay: .08s; }
.reveal-up.delay-2 { transition-delay: .16s; }
.reveal-up.delay-3 { transition-delay: .24s; }
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.placeholder-section {
  position: relative;
  z-index: 3;
  min-height: 40vh;
  display: grid;
  place-items: center;
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.placeholder-section.alt {
  background: #02140A;
}

.placeholder-section p {
  margin: 0;
  color: rgba(255,255,255,.7);
}

@media (max-width: 1180px) {
  .skip-intro-btn {
    position: static;
    transform: none;
    margin-top: 6px;
  }

  .hero-content {
    gap: 24px;
  }

  .services-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-title {
    max-width: 100%;
  }

  .services-visual {
    min-height: 560px;
  }
}

@media (max-width: 1080px) {
  .main-nav,
  .header-inner > .header-cta { display: none; }

  .mobile-toggle { display: block; }

  .mobile-nav {
    display: none;
    padding: 0 0 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 10px 0; }
  .mobile-cta { width: fit-content; }

  .hero-copy-wrap {
    width: min(100%, 96vw);
    min-height: 260px;
    padding: 0 14px;
  }

  .phrase-svg text {
    font-size: clamp(38px, 6vw, 58px);
  }

  .scroll-indicator {
    gap: 10px;
  }

  .services-section {
    padding: 100px 0;
  }

  .services-visual {
    min-height: 500px;
  }

  .orbit-1 { width: 460px; height: 460px; }
  .orbit-2 { width: 580px; height: 580px; }
}

@media (max-width: 720px) {
  :root { --header-height: 84px; }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    max-height: 34px;
  }

  .hero-content {
    width: min(100%, calc(100% - 28px));
    padding-top: 10px;
    padding-bottom: 28px;
    gap: 18px;
  }

  .scroll-indicator-label {
    font-size: .72rem;
    letter-spacing: .22em;
  }

  .scroll-indicator-icon {
    width: 26px;
    height: 44px;
  }

  .hero-copy-wrap {
    width: 100%;
    min-height: 170px;
    padding: 0 4px;
  }

  .phrase-stage {
    align-items: center;
    justify-content: center;
  }

  .phrase-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .phrase-svg text {
    font-size: clamp(56px, 10vw, 74px);
    stroke-width: 1.05;
    letter-spacing: 0;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-trust-line {
    width: min(100%, 320px);
    flex-wrap: wrap;
    margin-top: -4px;
    font-size: .84rem;
  }

  .hero-cta,
  .skip-intro-btn {
    min-width: auto;
    width: 100%;
    padding: 16px 20px;
  }

  .services-section {
    padding: 84px 0;
  }

  .services-title {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
    line-height: .96;
  }

  .services-description {
    font-size: 1rem;
  }

  .services-actions {
    margin-top: 24px;
  }

  .services-btn-outline {
    width: 100%;
    padding: 15px 18px;
  }

  .services-note {
    padding: 20px;
    gap: 12px;
  }

  .services-note p {
    font-size: .96rem;
    line-height: 1.65;
  }

  .services-visual {
    min-height: 360px;
  }

  .services-visual-card {
    padding: 12px;
    border-radius: 26px;
  }

  .services-visual-card img {
    border-radius: 18px;
  }

  .orbit-1 { width: 300px; height: 300px; }
  .orbit-2 { width: 380px; height: 380px; }

  .services-chip {
    font-size: .78rem;
    padding: 10px 12px;
  }

  .chip-top {
    top: 0;
    left: 0;
  }

  .chip-bottom {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero-copy-wrap {
    min-height: 150px;
  }

  .phrase-svg text {
    font-size: clamp(44px, 12vw, 58px);
    stroke-width: .95;
  }

  .hero-cta,
  .skip-intro-btn {
    font-size: .96rem;
    padding: 15px 18px;
  }
}

/* ===== New content sections ===== */
.content-section {
  position: relative;
  z-index: 3;
  padding: 118px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--light);
}

.section-light {
  background: var(--surface);
  color: #09140d;
}

.section-heading {
  margin-bottom: 42px;
}

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

.section-kicker-light {
  color: rgba(255,255,255,.72);
}

.block-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 700;
}

.block-title-light {
  color: #fff;
}

.section-outcomes {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.section-outcomes::before,
.section-timeline::before,
.site-footer::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: .22;
  pointer-events: none;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.outcome-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 60px rgba(0,0,0,.22);
  overflow: hidden;
}

.outcome-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -55% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,197,23,.14) 0%, rgba(255,197,23,0) 72%);
}

.outcome-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
}

.outcome-icon-pulse,
.outcome-icon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.outcome-icon-pulse {
  background: rgba(255,197,23,.16);
  animation: outcomePulse 2.2s ease-in-out infinite;
}

.outcome-icon {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,197,23,.98), rgba(255,197,23,.75));
  color: #09140d;
  font-size: 1.35rem;
  box-shadow: 0 20px 36px rgba(255,197,23,.2);
}

.outcome-content h3,
.core-service-body h3,
.timeline-card h3,
.fit-card-body h3,
.page-hero-copy h1,
.contact-info h2,
.footer-col h4 {
  margin: 0;
  font-weight: 700;
}

.outcome-content h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.outcome-content p,
.core-service-body p,
.timeline-card p,
.fit-list li span,
.review-card p,
.contact-info p,
.page-hero-copy p,
.footer-brand p,
.footer-bottom p,
.contact-highlights span {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
}

@keyframes outcomePulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.18); opacity: .22; }
}

.section-core-services {
  border-top: 1px solid rgba(9,20,13,.08);
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.core-service-card,
.fit-card,
.review-card,
.contact-form-card,
.contact-info,
.page-hero-panel,
.timeline-card {
  border-radius: 30px;
  overflow: hidden;
}

.core-service-card,
.fit-card {
  background: rgba(243,247,241,.94);
  border: 1px solid rgba(9,20,13,.08);
  box-shadow: 0 24px 60px rgba(8,24,14,.1);
}

.core-service-media,
.fit-card-media {
  position: relative;
  overflow: hidden;
}

.services-visual-card::after,
.core-service-media::after,
.fit-card-media::after,
.review-parallax::after,
.page-hero-panel::after,
.about-hero-media::after,
.about-approach-media::after,
.about-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: .42;
  mix-blend-mode: screen;
}

.services-visual-card::after {
  inset: 18px;
  border-radius: 24px;
}

.core-service-media img,
.fit-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
}

.core-service-icon,
.fit-card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,197,23,.98), rgba(255,197,23,.82));
  color: #09140d;
  box-shadow: 0 16px 34px rgba(255,197,23,.25);
}

.core-service-icon {
  position: absolute;
  left: 22px;
  bottom: 22px;
}

.core-service-body,
.fit-card-body {
  padding: 26px 24px 28px;
}

.core-service-body h3,
.fit-card-body h3,
.timeline-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.core-service-card:hover img,
.fit-card:hover img,
.page-hero-panel:hover img {
  transform: scale(1.05);
  transition: transform .8s ease;
}

.section-timeline {
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 18px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.12);
}

.timeline-line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFC517 0%, rgba(255,197,23,.25) 100%);
  transform-origin: top center;
  transform: scaleY(0);
}

.timeline-item {
  position: relative;
  display: flex;
  width: 50%;
  margin-bottom: 44px;
}

.timeline-left {
  justify-content: flex-end;
  padding-right: 62px;
}

.timeline-right {
  margin-left: 50%;
  padding-left: 62px;
}

.timeline-dot {
  position: absolute;
  top: 18px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #FFC517;
  color: #09140d;
  font-weight: 700;
  box-shadow: 0 0 0 0 rgba(255,197,23,.55);
  animation: timelinePulse 2s ease-in-out infinite;
  z-index: 2;
}

.timeline-left .timeline-dot {
  right: -28px;
}

.timeline-right .timeline-dot {
  left: -28px;
}

.timeline-card {
  width: 100%;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 50px rgba(0,0,0,.16);
}

.timeline-card p {
  color: rgba(255,255,255,.78);
}

@keyframes timelinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,197,23,.52); }
  70% { box-shadow: 0 0 0 15px rgba(255,197,23,0); }
}

.section-fit {
  border-top: 1px solid rgba(9,20,13,.08);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.fit-card-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fit-list i {
  color: #FFC517;
  margin-top: 6px;
}

.section-review-callout {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.review-parallax,
.review-overlay {
  position: absolute;
  inset: -8% 0;
}

.review-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .26;
}

.review-overlay {
  background: linear-gradient(180deg, rgba(0,13,4,.5), rgba(0,13,4,.78));
}

.review-card {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.review-card p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.82);
}

.review-btn {
  margin-top: 28px;
}

.site-footer {
  position: relative;
  z-index: 3;
  padding: 48px 0 16px;
  background: #000D04;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr) minmax(220px, .7fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 30px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255,255,255,.72);
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.footer-col ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}

.footer-col li,
.footer-col a,
.footer-bottom p {
  color: rgba(255,255,255,.72);
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
}

.footer-location .location-flag {
  width: 28px;
  height: 18px;
  max-width: 28px;
  min-width: 28px;
}

.social-links {
  list-style: none !important;
  padding-left: 0 !important;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links i {
  font-size: 1.4rem;
}

.footer-bottom {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.page-shell {
  background: var(--dark);
}

.contact-main {
  padding-top: 92px;
}

.page-hero {
  position: relative;
  padding: 82px 0 70px;
  overflow: hidden;
}

.page-hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: .96;
  margin: 0 0 18px;
}

.page-hero-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
}

.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.84);
}

.contact-highlights a {
  color: inherit;
}

.contact-highlights i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,197,23,.12);
  color: #FFC517;
}

.contact-flag-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,197,23,.12);
  box-shadow: inset 0 0 0 1px rgba(255,197,23,.12);
}

.contact-flag-icon .location-flag {
  width: 30px;
  height: 20px;
  max-width: 30px;
  min-width: 30px;
}

.page-hero-panel,
.contact-info,
.contact-form-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.page-hero-panel {
  min-height: 440px;
  overflow: hidden;
}

.page-hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-panel-glow {
  position: absolute;
  inset: auto -10% -25% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,197,23,.22) 0%, rgba(255,197,23,0) 72%);
  z-index: 1;
}

.contact-form-section {
  border-top: 1px solid rgba(9,20,13,.08);
}

.contact-info,
.contact-form-card {
  padding: 32px;
}

.contact-list {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-group label {
  font-size: .94rem;
  color: rgba(9,20,13,.72);
  font-weight: 600;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(9,20,13,.12);
  background: #F9FBF8;
  color: #09140d;
  font: inherit;
}

.field-group textarea {
  resize: vertical;
}

.contact-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: .98rem;
}

.form-alert-success {
  background: rgba(92,255,156,.12);
  color: #1c6c3d;
}

.form-alert-error {
  background: rgba(255,124,124,.12);
  color: #922c2c;
}

.form-note {
  margin: 10px 0 0;
  color: rgba(0, 13, 4, .68);
  font-size: .9rem;
  line-height: 1.55;
}

.form-note.form-alert-error {
  padding: 12px 14px;
  border-radius: 14px;
}

.cf-turnstile {
  margin: 16px 0 4px;
}

@media (max-width: 1180px) {
  .core-services-grid,
  .fit-grid,
  .footer-grid,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .content-section,
  .page-hero {
    padding: 84px 0;
  }

  .outcomes-grid,
  .core-services-grid,
  .fit-grid,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    left: 26px;
    transform: none;
  }

  .timeline-item,
  .timeline-right,
  .timeline-left {
    width: 100%;
    margin-left: 0;
    padding-left: 78px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: -2px;
    right: auto;
  }

  .review-card,
  .contact-info,
  .contact-form-card,
  .outcome-card,
  .timeline-card {
    padding: 26px 22px;
  }

  .page-hero-panel {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .outcome-card {
    grid-template-columns: 1fr;
  }

  .outcome-icon-wrap {
    width: 68px;
    height: 68px;
  }

  .footer-col h4 {
    font-size: 1.5rem;
  }

  .social-links {
    gap: 12px;
  }
}


/* ===== round 2 adjustments ===== */
.hero-content {
  justify-content: center;
}

.hero-copy-wrap {
  min-height: clamp(180px, 24vw, 260px);
}

.phrase-stage {
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
  transform: translateY(18px);
}

.phrase-stage.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.phrase-stage text {
  stroke-dasharray: var(--dash, 1000);
  stroke-dashoffset: var(--offset, 1000);
  transition: stroke-dashoffset 1.15s ease, opacity .35s ease;
}

.footer-brand img {
  width: 90px;
  height: 90px;
}

.export-control-group {
  gap: 12px;
}

.export-control-copy {
  margin: 0;
  font-size: .98rem;
  line-height: 1.7;
  color: rgba(9,20,13,.72);
}

.toggle-pills {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toggle-pill {
  min-width: 88px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(9,20,13,.12);
  background: #F9FBF8;
  color: #09140d;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.toggle-pill:hover {
  transform: translateY(-1px);
}

.toggle-pill.is-active {
  background: #FFC517;
  color: #09140d;
  border-color: rgba(255,197,23,.9);
  box-shadow: 0 14px 30px rgba(255,197,23,.22);
}

.upload-row.is-hidden {
  display: none;
}

/* ===== requested refinements: global subtle grid, larger footer logo, About page ===== */
.content-section::before,
.section-light::before,
.section-dark::before,
.contact-form-section::before,
.page-hero::before,
.project-review-section::before,
.site-footer::before,
.about-hero-section::before,
.about-background-section::before,
.about-tools-section::before,
.about-approach-section::before,
.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-light) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

.section-dark::before,
.project-review-section::before,
.site-footer::before,
.about-approach-section::before {
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  opacity: .38;
}

.content-section > .container,
.section-light > .container,
.section-dark > .container,
.contact-form-section > .container,
.page-hero > .container,
.project-review-section > .container,
.site-footer > .container,
.about-hero-section > .container,
.about-background-section > .container,
.about-tools-section > .container,
.about-approach-section > .container,
.about-cta-section > .container {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 120px;
  height: 120px;
}

.about-main {
  padding-top: 92px;
  background: var(--surface);
  color: #09140d;
}

.about-hero-section,
.about-background-section,
.about-tools-section,
.about-approach-section,
.about-cta-section {
  position: relative;
  overflow: hidden;
}

.about-hero-section {
  min-height: 520px;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,197,23,.13), rgba(255,197,23,0) 28%),
    linear-gradient(180deg, #000D04 0%, #02140A 100%);
  color: var(--light);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 56px;
  min-height: 520px;
}

.about-copy {
  padding: 74px 0;
}

.about-copy h1,
.about-background-title h2,
.about-approach-copy h2,
.about-cta-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 700;
}

.about-copy p,
.about-background-text p,
.about-approach-copy p,
.about-cta-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(9,20,13,.76);
}

.about-hero-section .about-copy h1 {
  color: var(--light);
}

.about-hero-section .section-kicker,
.about-approach-section .section-kicker {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255,197,23,.18);
}

.about-hero-section .about-copy p {
  color: rgba(255,255,255,.76);
}

.about-copy p + p,
.about-background-text p + p,
.about-approach-copy p + p {
  margin-top: 22px;
}

.about-title-line {
  display: block;
  width: 52px;
  height: 3px;
  margin: 26px 0 30px;
  background: var(--accent);
}

.about-title-line-center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.about-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin-right: calc((100vw - min(100vw - 40px, var(--container))) / -2);
}

.about-hero-media::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 32%;
  background: linear-gradient(90deg, #000D04 0%, rgba(0,13,4,.84) 35%, rgba(0,13,4,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-hero-media img,
.about-approach-media img,
.about-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-background-section {
  padding: 70px 0;
  background: var(--surface);
  border-top: 1px solid rgba(9,20,13,.08);
  border-bottom: 1px solid rgba(9,20,13,.08);
}

.about-background-grid {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  gap: 56px;
  align-items: center;
}

.about-background-title {
  border-right: 1px solid rgba(9,20,13,.12);
  padding-right: 42px;
}

.about-background-title h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.about-tools-section {
  padding: 74px 0 80px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.about-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.about-tool-card {
  padding: 0 34px;
  text-align: center;
  border-right: 1px solid rgba(9,20,13,.1);
}

.about-tool-card:last-child {
  border-right: 0;
}

.about-tool-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  color: #0057A8;
  font-size: 2.1rem;
}

.about-tool-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}

.about-tool-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(9,20,13,.7);
}

.about-tools-note {
  margin: 34px 0 0;
  text-align: center;
  color: rgba(9,20,13,.78);
  font-size: 1.04rem;
}

.about-approach-section {
  min-height: 470px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,197,23,.11), rgba(255,197,23,0) 26%),
    linear-gradient(180deg, #000D04 0%, #02140A 100%);
}

.about-approach-media {
  position: absolute;
  inset: 0 0 0 48%;
  opacity: .92;
}

.about-approach-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000D04 0%, rgba(0,13,4,.88) 20%, rgba(0,13,4,.08) 64%);
  z-index: 1;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
}

.about-approach-copy {
  padding: 72px 0;
  color: #fff;
}

.about-approach-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.about-approach-copy p {
  color: rgba(255,255,255,.86);
}

.about-approach-list {
  margin: 24px 0 28px;
}

.about-approach-list li {
  color: rgba(255,255,255,.88);
}

.about-approach-list i {
  color: var(--accent);
}

.about-cta-section {
  min-height: 0;
  padding: 96px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,197,23,.13), rgba(255,197,23,0) 30%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
}

.about-cta-grid {
  display: block;
  min-height: 0;
}

.about-cta-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.about-cta-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.about-cta-button {
  margin-top: 26px;
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 18px 38px rgba(255,197,23,.2);
}

.about-cta-media {
  align-self: stretch;
  min-height: 330px;
}

@media (max-width: 1180px) {
  .about-hero-grid,
  .about-background-grid,
  .about-approach-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    margin-right: 0;
    min-height: 360px;
  }

  .about-background-title {
    border-right: 0;
    border-bottom: 1px solid rgba(9,20,13,.12);
    padding-right: 0;
    padding-bottom: 26px;
  }

  .about-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .about-tool-card:nth-child(2n) {
    border-right: 0;
  }

  .about-approach-media {
    position: relative;
    inset: auto;
    min-height: 360px;
  }

  .about-approach-media::before {
    background: linear-gradient(180deg, rgba(0,13,4,.05), #000D04);
  }

  .about-approach-copy {
    padding-bottom: 54px;
  }
}

@media (max-width: 640px) {
  .about-copy,
  .about-approach-copy,
  .about-cta-copy {
    padding: 48px 0;
  }

  .about-tools-grid {
    grid-template-columns: 1fr;
  }

  .about-tool-card,
  .about-tool-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(9,20,13,.1);
    padding: 0 0 28px;
  }

  .about-tool-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer-brand img {
    width: 104px;
    height: 104px;
  }
}

/* Mobile hero animation fit fix */
@media (max-width: 1080px) {
  .hero-copy-wrap {
    min-height: 230px;
  }

  .phrase-svg-desktop {
    display: none !important;
  }

  .phrase-svg-mobile {
    display: block;
    width: min(100%, 480px);
    height: 100%;
  }

  .phrase-svg-mobile text {
    font-size: 58px;
    stroke-width: 1.08;
    letter-spacing: 0;
  }
}

@media (max-width: 480px) {
  .hero-copy-wrap {
    min-height: 215px;
  }

  .phrase-svg-mobile {
    width: 100%;
  }

  .phrase-svg-mobile text {
    font-size: 54px;
    stroke-width: 1.02;
  }
}
