:root {
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18, 18, 18, 0.72);
  --line: rgba(18, 18, 18, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --black: #0a0a0a;
  
  /* Border EDC Brand Colors */
  --coral: #D85A30;      /* Juárez - Industrial warmth */
  --gold: #BA7517;       /* Accent */
  --blue: #378ADD;       /* El Paso - Decision hub */
  --teal: #1D9E75;       /* Las Cruces - Innovation */
  --navy: #1E3A5F;       /* Primary dark */
  
  --bg-soft: #f6f3ee;
  --bg-warm: #f2ede7;
  --container: min(1600px, calc(100vw - 24px));
  --content: min(1320px, calc(100vw - 48px));
  --header-height: 82px;
  --marquee-height: 58px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.12);
  --blur-card: blur(18px);
  --ease: 260ms cubic-bezier(.2,.7,.2,1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 8vw, 140px) 0;
}

.section-kicker {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1;
  color: var(--muted);
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 400;
}

h1 {
  font-size: clamp(60px, 10vw, 180px);
}

h2 {
  font-size: clamp(42px, 6vw, 88px);
}

h3 {
  font-size: clamp(28px, 3vw, 50px);
}

h4 {
  font-size: clamp(22px, 2vw, 32px);
}

p {
  margin: 0;
}

/* ===== TOP MARQUEE ===== */
.top-marquee {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 120;
  pointer-events: none;
}

.top-marquee__track {
  width: calc(100vw - 24px);
  margin-inline: auto;
  min-height: var(--marquee-height);
  padding-inline: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2.8rem;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.top-marquee__track span {
  flex: 0 0 auto;
  animation: marquee 30s linear infinite;
  font-size: 0.95rem;
  font-weight: 500;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-200%); }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: calc(var(--marquee-height) + 18px);
  left: 0;
  right: 0;
  z-index: 110;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease), top var(--ease);
}

.site-header.is-solid {
  top: 0;
  background: rgba(30, 58, 95, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

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

.brand {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

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

.nav a {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.site-footer__links a:hover,
.text-link:hover,
.price-card__link:hover {
  opacity: 0.75;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.hero__media,
.metrics__bg {
  position: absolute;
  inset: 0;
}

.hero__bg,
.metrics__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.04);
}

.hero__bg--gradient {
  background: 
    linear-gradient(135deg, var(--navy) 0%, #0f1f2f 40%, #1a3040 70%, var(--navy) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(216, 90, 48, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(55, 138, 221, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 30%, rgba(29, 158, 117, 0.2) 0%, transparent 40%);
}

.metrics__bg-gradient {
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, var(--navy) 0%, #0a1520 50%, var(--navy) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(55, 138, 221, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(29, 158, 117, 0.25) 0%, transparent 50%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.6) 100%);
}

/* ===== HERO STATISTICS BAR ===== */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.hero-stats__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}

.hero-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.hero-stats__value {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stats__value--orange { color: var(--coral); }
.hero-stats__value--blue { color: var(--blue); }
.hero-stats__value--teal { color: var(--teal); }

.hero-stats__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .hero-stats__inner {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stats__item {
    flex: 1 1 40%;
  }
}

.metrics__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding-top: clamp(150px, 18vw, 220px);
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content--centered {
  justify-content: center;
  align-items: flex-start;
  padding-inline: 28px;
}

.hero__kicker {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title-wrap {
  padding-inline: 0;
}

.hero__title {
  max-width: 18ch;
  text-wrap: balance;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  max-width: 640px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--ease);
  cursor: pointer;
}

.hero__btn--primary {
  background: var(--blue);
  color: #fff;
}

.hero__btn--primary:hover {
  background: #2a75c4;
}

.hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.hero__btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hero__bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(160px, 190px) minmax(320px, 430px) 34px;
  align-items: stretch;
  gap: 0;
}

.hero__bottom > * {
  min-height: 150px;
}

.hero-card,
.hero__eyebrow,
.hero__lead,
.hero__scroll {
  border-left: 1px solid rgba(255,255,255,0.14);
}

.hero-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px 24px 18px 24px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.55));
  backdrop-filter: blur(18px);
  border-top-right-radius: 16px;
  box-shadow: var(--shadow-md);
}

.hero-card__thumb {
  width: 120px;
  height: 108px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-card__thumb--map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card__thumb--map svg {
  width: 100%;
  height: 100%;
}

.hero-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.hero-card__text {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.2;
}

.hero-card__button {
  width: max-content;
  min-height: 52px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--ease);
}

.hero-card__button:hover {
  background: var(--teal);
}

.hero-card__button-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.82rem;
}

.hero__eyebrow,
.hero__lead,
.hero__scroll {
  display: flex;
  align-items: center;
  padding: 20px 28px;
}

.hero__eyebrow,
.hero__scroll {
  justify-content: center;
  font-size: clamp(22px, 1.6vw, 30px);
}

.hero__eyebrow {
  color: var(--blue);
  font-weight: 500;
}

.hero__lead {
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.2;
  max-width: 20ch;
}

.hero__scroll {
  font-size: 1.6rem;
  transition: transform var(--ease);
}

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

/* ===== ABOUT ===== */
.about {
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 50px;
  padding-inline: 18px;
}

.about__headline h2 {
  max-width: 14ch;
  color: var(--navy);
}

.about__copy {
  display: grid;
  align-content: start;
  gap: 22px;
  max-width: 48ch;
}

.about__copy p {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.text-link,
.price-card__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
}

/* ===== SERVICES INTRO ===== */
.services-intro {
  padding-top: 40px;
  padding-bottom: 30px;
}

.services-intro__title {
  padding-inline: 18px;
  font-size: clamp(54px, 7vw, 96px);
  color: var(--navy);
}

/* ===== SERVICES RAIL (Three Cities) ===== */
.services-rail {
  position: relative;
  height: 310vh;
  background: #fff;
}

.services-rail__sticky {
  position: sticky;
  top: max(20px, calc(var(--marquee-height) + var(--header-height) + 20px));
  height: calc(100vh - (var(--marquee-height) + var(--header-height) + 40px));
  overflow: hidden;
}

.services-rail__track {
  height: 100%;
  display: flex;
  gap: 18px;
  padding-inline: 18px;
  width: max-content;
  will-change: transform;
}

.service-panel {
  flex: 0 0 calc(100vw - 36px);
  max-width: calc(100vw - 36px);
  min-height: 100%;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.service-panel--coral {
  background: linear-gradient(135deg, #2a1a15 0%, #3d2a22 100%);
  color: #fff;
}

.service-panel--blue {
  background: linear-gradient(135deg, #1a2535 0%, #1f3045 100%);
  color: #fff;
}

.service-panel--teal {
  background: linear-gradient(135deg, #0f2520 0%, #1a3530 100%);
  color: #fff;
}

.service-panel__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(400px, 0.75fr);
  align-items: stretch;
}

.service-panel__copy {
  padding: 66px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.service-panel__number {
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.service-panel--coral .service-panel__number {
  color: var(--coral);
}

.service-panel--blue .service-panel__number {
  color: var(--blue);
}

.service-panel--teal .service-panel__number {
  color: var(--teal);
}

.service-panel__copy h3 {
  max-width: 12ch;
  margin-top: -10px;
}

.service-panel__copy p {
  max-width: 38ch;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.service-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.service-panel__list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}

.service-panel__list li::before {
  content: "→";
  position: absolute;
  left: 0;
}

.service-panel--coral .service-panel__list li::before {
  color: var(--coral);
}

.service-panel--blue .service-panel__list li::before {
  color: var(--blue);
}

.service-panel--teal .service-panel__list li::before {
  color: var(--teal);
}

.service-panel__visual {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-visual {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.city-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== STRATEGY (Sectors) ===== */
.strategy {
  background: var(--navy);
  color: #fff;
}

.strategy__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-inline: 18px;
}

.strategy__headline h2 {
  max-width: 14ch;
}

.strategy__subcopy {
  margin-top: 24px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.strategy__media {
  min-height: 400px;
}

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

.sector-item {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: background var(--ease), transform var(--ease);
}

.sector-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.sector-icon {
  width: 48px;
  height: 48px;
}

.sector-icon--blue { color: var(--blue); }
.sector-icon--teal { color: var(--teal); }
.sector-icon--coral { color: var(--coral); }
.sector-icon--gold { color: var(--gold); }

.sector-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.strategy__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-inline: 18px;
  margin-top: 80px;
}

.strategy-point {
  padding: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.strategy-point h4 {
  margin-bottom: 16px;
  color: var(--blue);
}

.strategy-point p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

/* ===== METRICS ===== */
.metrics {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  color: #fff;
  overflow: hidden;
}

.metrics__content {
  position: relative;
  z-index: 2;
  padding-inline: 18px;
}

.metrics__title {
  margin-top: 16px;
  margin-bottom: 60px;
}

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

.metric-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.metric-card__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: auto;
  width: fit-content;
}

.metric-card__body {
  margin-top: 20px;
}

.metric-card__body strong {
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-card__body p {
  margin-top: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

/* ===== TESTIMONIALS (Value Props) ===== */
.testimonials {
  background: var(--bg-soft);
}

.testimonials__heading {
  text-align: center;
  margin-bottom: 50px;
  padding-inline: 18px;
}

.testimonials__heading h2 {
  margin-top: 12px;
  color: var(--navy);
}

.testimonial-slider {
  position: relative;
  padding-inline: 18px;
}

.testimonial-card {
  display: none;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-card.is-active {
  display: grid;
}

.testimonial-card__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -0.06em;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.testimonial-card[data-accent="blue"] .testimonial-card__glyph {
  background: linear-gradient(135deg, rgba(55, 138, 221, 0.15), rgba(55, 138, 221, 0.05));
  color: var(--blue);
}

.testimonial-card[data-accent="coral"] .testimonial-card__glyph {
  background: linear-gradient(135deg, rgba(216, 90, 48, 0.15), rgba(216, 90, 48, 0.05));
  color: var(--coral);
}

.testimonial-card[data-accent="teal"] .testimonial-card__glyph {
  background: linear-gradient(135deg, rgba(29, 158, 117, 0.15), rgba(29, 158, 117, 0.05));
  color: var(--teal);
}

.testimonial-card__main {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.testimonial-card__icon {
  width: 64px;
  height: 64px;
}

.testimonial-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

blockquote {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 36ch;
  color: var(--navy);
}

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

.testimonial-card__meta strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.testimonial-card__meta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--ease), border-color var(--ease);
}

.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--ease), transform var(--ease);
}

.slider-dots button.is-active {
  background: var(--blue);
  transform: scale(1.2);
}

/* ===== PRICING (Programs) ===== */
.pricing {
  background: #fff;
}

.pricing__heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding-inline: 18px;
}

.pricing__heading h2 {
  margin-top: 12px;
  color: var(--navy);
}

.pricing__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding-inline: 18px;
}

.partner-logo {
  padding: 12px 24px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-inline: 18px;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.price-card--featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.price-card__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.price-card h3 {
  color: var(--navy);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.price-card--featured h3 {
  color: #fff;
}

.price-card__copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.price-card--featured .price-card__copy {
  color: rgba(255,255,255,0.75);
}

.price-card__amount span {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.price-card--featured .price-card__amount span {
  color: var(--teal);
}

.price-card__link {
  color: var(--blue);
}

.price-card--featured .price-card__link {
  color: var(--teal);
}

.price-card__divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.price-card--featured .price-card__divider {
  background: rgba(255,255,255,0.15);
}

.price-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-card li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.price-card--featured li {
  color: rgba(255,255,255,0.75);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-warm);
}

.contact__cta {
  position: relative;
  min-height: 360px;
  padding: 60px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact__pill-button {
  display: inline-block;
  padding: 16px 32px;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: transform var(--ease);
}

.contact__pill-button:hover {
  transform: scale(1.05);
}

.contact__cta h2 {
  position: relative;
  z-index: 2;
  max-width: 14ch;
  font-size: clamp(36px, 5vw, 64px);
}

.contact__floating {
  position: absolute;
  font-size: clamp(24px, 2.1vw, 40px);
  letter-spacing: -0.05em;
  opacity: 0.4;
  animation: floatWords 12s ease-in-out infinite;
  pointer-events: none;
}

.contact__floating--one { top: 10%; right: 18%; }
.contact__floating--two { top: 28%; left: 36%; animation-delay: -2s; }
.contact__floating--three { bottom: 18%; left: 14%; animation-delay: -4s; }
.contact__floating--four { bottom: 12%; right: 12%; animation-delay: -6s; }

@keyframes floatWords {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(12px, -10px, 0) scale(1.02); }
  50% { transform: translate3d(-8px, 8px, 0) scale(0.98); }
  75% { transform: translate3d(10px, 6px, 0) scale(1.01); }
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding-inline: 18px;
  margin-top: 60px;
}

.contact__copy {
  max-width: 34ch;
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact__copy h3 {
  color: var(--navy);
}

.contact__copy p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.contact-form {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
  color: var(--text);
  outline: 0;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(55, 138, 221, 0.1);
}

.form-submit {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--ease);
}

.form-submit:hover {
  background: var(--blue);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 32px 0 40px;
  color: #fff;
}

.site-footer__inner {
  padding-inline: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color var(--ease);
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero__bottom {
    grid-template-columns: 1.1fr .45fr 1fr 34px;
  }

  .service-panel__copy {
    padding: 48px 40px;
  }

  .strategy__top,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .strategy__headline h2,
  .about__headline h2,
  .pricing__heading h2 {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    top: calc(var(--marquee-height) + 10px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 12px;
    width: min(320px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 24px;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    display: grid;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__content {
    padding-top: 170px;
  }

  .hero__bottom {
    grid-template-columns: 1fr 180px 1fr 34px;
  }

  .metrics__grid,
  .strategy__points,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

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

  .pricing__grid {
    gap: 18px;
  }

  .price-card {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 22px;
  }
}

@media (max-width: 860px) {
  .top-marquee {
    top: 8px;
  }

  .top-marquee__track {
    width: calc(100vw - 16px);
    min-height: 48px;
    gap: 2rem;
    padding-inline: 18px;
  }

  .site-header__inner {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 18px;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__bottom > * {
    min-height: auto;
  }

  .hero-card,
  .hero__eyebrow,
  .hero__lead,
  .hero__scroll {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
  }

  .hero-card {
    border-top-right-radius: 0;
    border-radius: 18px 18px 0 0;
    grid-template-columns: 96px 1fr;
    padding: 18px;
  }

  .hero-card__thumb {
    width: 96px;
    height: 88px;
  }

  .hero-card__text,
  .hero__eyebrow,
  .hero__lead {
    font-size: 1.15rem;
  }

  .hero__eyebrow,
  .hero__lead,
  .hero__scroll {
    justify-content: flex-start;
    padding: 18px;
  }

  .hero__scroll {
    min-height: 64px;
  }

  .services-rail {
    height: auto;
    padding: 0 0 20px;
  }

  .services-rail__sticky {
    position: static;
    height: auto;
    overflow: visible;
  }

  .services-rail__track {
    width: auto;
    display: grid;
    gap: 14px;
    transform: none !important;
  }

  .service-panel {
    max-width: none;
    min-height: auto;
    flex-basis: auto;
    border-radius: 20px;
  }

  .service-panel__inner {
    grid-template-columns: 1fr;
  }

  .service-panel__copy {
    padding: 28px 22px 22px;
  }

  .service-panel__number {
    font-size: 72px;
  }

  .service-panel__copy h3 {
    max-width: none;
  }

  .service-panel__copy p {
    max-width: none;
    font-size: 1rem;
  }

  .service-panel__visual {
    padding: 0 22px 22px;
  }

  .city-visual {
    height: 300px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sector-item {
    padding: 16px;
  }

  .strategy__media {
    min-height: auto;
  }

  .metric-card__body {
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonial-card__glyph {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .testimonial-card__main {
    padding: 24px;
  }

  blockquote {
    max-width: none;
  }

  .contact__cta {
    min-height: 280px;
    padding: 40px 24px;
  }

  .contact__floating {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 12px);
  }

  .section {
    padding: 72px 0;
  }

  .about__grid,
  .strategy__top,
  .strategy__points,
  .metrics__grid,
  .contact__grid,
  .pricing__logos {
    gap: 20px;
  }

  .pricing__logos {
    gap: 16px;
  }

  .partner-logo {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .metric-card {
    min-height: auto;
    padding: 24px;
  }

  .hero-card__button {
    min-height: 46px;
    padding-left: 16px;
    gap: 12px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== FORM ENHANCEMENTS ===== */
.required {
  color: var(--coral);
  margin-left: 2px;
}

.form-status {
  padding: 0;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
}

.form-status--success {
  padding: 16px;
  background: rgba(29, 158, 117, 0.15);
  border: 1px solid var(--teal);
  color: var(--teal);
}

.form-status--error {
  padding: 16px;
  background: rgba(216, 90, 48, 0.15);
  border: 1px solid var(--coral);
  color: var(--coral);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.recaptcha-notice {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: var(--blue);
  text-decoration: underline;
}

/* Hide reCAPTCHA badge (we have notice instead) */
.grecaptcha-badge {
  visibility: hidden;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 12px;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-switch:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Mobile nav language switch */
@media (max-width: 768px) {
  .lang-switch {
    margin-left: 0;
    margin-top: 16px;
    width: fit-content;
  }
}

/* Smooth text transitions for i18n */
[data-i18n] {
  transition: opacity 0.15s ease;
}

/* ===== FOOTER CREDIT ===== */
.footer-credit {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ai-badge {
  background: linear-gradient(135deg, #378ADD, #1D9E75);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== VIDEO HERO BACKGROUND ===== */
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg--gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(30, 58, 95, 0.75) 50%,
    rgba(15, 31, 47, 0.9) 100%
  );
  z-index: 1;
}

/* Ensure content is above video */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__overlay {
  z-index: 1;
}

/* Mobile: reduce video opacity for better text readability */
@media (max-width: 768px) {
  .hero__video {
    opacity: 0.6;
  }
  
  .hero__bg--gradient {
    background: linear-gradient(135deg, 
      rgba(10, 22, 40, 0.9) 0%, 
      rgba(30, 58, 95, 0.75) 50%, 
      rgba(15, 31, 47, 0.9) 100%
    );
  }
}
