@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Barlow:wght@300;400;500&display=swap');

:root {
  --navy: #004996;
  --navy-deep: #001f56;
  --navy-mid: #003070;
  --red: #B22030;
  --red-bright: #FF1D25;
  --red-dark: #630e1e;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --text: #333333;
  --text-muted: #666666;
  --border: rgba(0,73,150,0.1);
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* FOOTER */
footer { overflow: hidden; }

/* NAV */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: #142864;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

body > nav.scrolled {
  background: #142864;
  padding: 12px 48px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo .logo-dark {
  height: 76px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.nav-logo .logo-light {
  height: 76px;
  width: auto;
  display: none;
  flex-shrink: 0;
}

/* logo always white — no swap on scroll */

.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  flex-shrink: 0;
}


.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

body > nav.scrolled .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--red); }

.nav-cta {
  padding: 10px 24px;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* HAMBURGER MENU */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

body > nav.scrolled .nav-hamburger span { background: var(--white); }

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: block; }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    padding: 100px 48px 48px;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 100;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 18px;
  }

  .nav-links a:hover { color: var(--red) !important; }

  .nav-hamburger.active span { background: var(--white); }
}

/* HERO ISOTIPO WATERMARK */
.hero-isotipo {
  position: absolute;
  left: 65%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: isotipoFadeIn 2s ease 1s both;
}

.hero-isotipo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(0.5) brightness(0.4);
  animation: isotipoFloat 8s ease-in-out infinite;
}

@keyframes isotipoFadeIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to { opacity: 0.14; transform: translate(-50%, -50%) scale(1); }
}

@keyframes isotipoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  35% { transform: translateY(-16px) rotate(1deg); }
  70% { transform: translateY(-8px) rotate(-0.6deg); }
}

@media (max-width: 1024px) {
  .hero-isotipo { display: none; }
}

/* HERO BLUEPRINT */
.hero-blueprint {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.8s both;
  z-index: 2;
}

.blueprint-svg {
  width: 100%;
  height: 100%;
  opacity: 0.12;
}

.blueprint-pulse {
  animation: bpulse 3s ease-in-out infinite;
}

.blueprint-rotate {
  transform-origin: 420px 280px;
  animation: brotate 20s linear infinite;
}

.blueprint-dash {
  stroke-dasharray: 6 12;
  animation: bdash 4s linear infinite;
}

.blueprint-signal-1 { animation: bsignal 2.5s ease-out infinite; }
.blueprint-signal-2 { animation: bsignal 2.5s ease-out 0.8s infinite; }
.blueprint-signal-3 { animation: bsignal 2.5s ease-out 1.6s infinite; }

@keyframes bpulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

@keyframes bdash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -72; }
}

@keyframes bsignal {
  0% { opacity: 1; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* HERO PARALLAX */

@media (max-width: 1024px) {
  .hero-blueprint { display: none; }
  .hero-content { max-width: 100%; }
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001f56 0%, #004996 60%, #001f56 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-accent {
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(178,32,48,0.2);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.hero-accent::after {
  content: '';
  position: absolute;
  top: 60px; left: 60px; right: 60px; bottom: 60px;
  border: 1px solid rgba(178,32,48,0.1);
  border-radius: 50%;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  will-change: transform;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--transition) 0.2s both;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  animation: fadeUp 0.8s var(--transition) 0.35s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--red);
  font-weight: 600;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
  animation: fadeUp 0.8s var(--transition) 0.5s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s var(--transition) 0.65s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 0.8s var(--transition) 1s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* SECTIONS */
section { padding: 120px 48px; }

.container { max-width: 1200px; margin: 0 auto; }

/* STATEMENT */
.statement { background: var(--white); border-bottom: 1px solid var(--border); }

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

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.statement-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.statement-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* TECH VERTICALS STRIP */
.verticals-strip {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
}

.verticals-inner {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.verticals-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.verticals-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
  gap: 0;
  flex: 1;
  justify-content: space-evenly;
}

.verticals-list::-webkit-scrollbar { display: none; }

.vertical-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  padding: 24px 0;
  transition: color 0.2s;
  position: relative;
}

.vertical-item + .vertical-item::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.08);
}

.vertical-item svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.vertical-item:hover {
  color: rgba(255,255,255,0.85);
}

.vertical-item:hover svg {
  opacity: 1;
  color: var(--red);
}

.vertical-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .verticals-strip { padding: 0 24px; }
  .verticals-label { display: none; }
  .verticals-list { padding: 0; }
  .vertical-item { padding: 18px 14px; font-size: 13px; }
}

/* SERVICES */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height 0.5s var(--transition);
}

.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-4px); }

.service-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,73,150,0.05);
  position: absolute;
  top: 16px; right: 28px;
  line-height: 1;
}

.service-icon { width: 40px; height: 40px; margin-bottom: 24px; color: var(--navy); }

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover { gap: 14px; }

/* NUMBERS */
.numbers { background: var(--navy-deep); color: var(--white); padding: 110px 48px; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
}

.number-item {
  background: transparent;
  padding: 60px 44px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 0.4s;
}

.number-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--red);
}

.number-item:hover { background: rgba(255,255,255,0.03); }

.number-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 9vw, 120px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.number-value span { color: var(--red); }

.number-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* CTA FINAL */
.cta-final { background: var(--off-white); text-align: center; padding: 140px 48px; }

.cta-final-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-final-body {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: #142864;
  color: rgba(255,255,255,0.55);
}

/* Footer Row 1 — Main */
.footer-main {
  padding: 40px 48px;
  border-bottom: 1px solid #B41428;
}

.footer-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  height: 96px;
  width: auto;
  max-width: 320px;
  display: block;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
}

.footer-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B41428;
  margin: 0 0 8px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: #B41428; }

/* Footer Row 2 — Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 48px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

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

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

/* INNER PAGES */
.page-hero {
  min-height: 60vh;
  background: var(--navy-deep);
  display: flex;
  align-items: flex-end;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001f56 0%, #004996 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.page-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.75;
}

/* CONTENT SECTIONS */
.content-section { padding: 100px 48px; }
.content-section.alt { background: var(--off-white); }

.content-inner { max-width: 1200px; margin: 0 auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.content-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.content-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.steps-list { counter-reset: steps; margin-top: 56px; }

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step::before {
  content: '0' counter(steps);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(0,73,150,0.1);
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content {
  min-width: 0;
  width: 100%;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }

.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-info-value { font-size: 16px; font-weight: 300; color: var(--navy); }

.contact-info-value a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--red); }

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus { border-bottom-color: var(--navy); }
.form-input::placeholder { color: rgba(0,73,150,0.2); }
textarea.form-input { min-height: 120px; resize: vertical; }

.form-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 16px;
}

.form-btn:hover { background: var(--navy-deep); transform: translateY(-1px); }

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

/* NAV INTERMEDIATE */
@media (max-width: 1160px) {
  body > nav { padding: 20px 32px; }
  body > nav.scrolled { padding: 12px 32px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 13px; }
}

@media (max-width: 980px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .nav-cta { padding: 8px 14px !important; }
}

/* TABLET */
@media (max-width: 1024px) {
  .two-col { gap: 60px; }
  .service-card { padding: 44px 36px; }
  .service-number { font-size: 60px; right: 20px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
}

/* BLUEPRINT HERO OVERLAY */
.page-hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-blueprint svg {
  width: 100%;
  height: 100%;
  opacity: 0.08;
}


/* GEO IMAGE */
.geo-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #e0dbd4;
}
.geo-image-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.geo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 100, 0.45);
  z-index: 1;
}
.geo-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

/* TEAM IMAGE */
.team-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
}
.team-image-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,100,0.7) 0%, rgba(20,40,100,0.2) 50%, transparent 100%);
  z-index: 1;
}
.team-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
  body > nav { padding: 16px 24px; }
  body > nav.scrolled { padding: 12px 24px; }
  section { padding: 72px 24px; }
  .hero { padding: 100px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-number { display: none; }
  .numbers-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { padding: 48px 24px; }
  .footer-main-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { padding: 14px 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .page-hero { padding: 120px 24px 60px; }
  .content-section { padding: 64px 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .inline-2col { grid-template-columns: 1fr !important; }
  .inline-3col { grid-template-columns: 1fr !important; }
}
