/* ═══════════════════════════════════════════════════
   TAURUS SURGICAL — style.css
   ═══════════════════════════════════════════════════ */

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

:root {
  --red:        #C41230;
  --red-dark:   #9B0E26;
  --navy:       #1B2A6B;
  --navy-light: #263890;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F1F3F5;
  --gray-200:   #E9ECEF;
  --gray-400:   #ADB5BD;
  --gray-600:   #6C757D;
  --gray-900:   #111827;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
  --transition: all .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── GRAYSCALE IMAGE EFFECT ─── */
.grayscale-img {
  filter: grayscale(100%) brightness(0.88);
  transition: filter 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  display: block;
  width: 100%;
}
.grayscale-img:hover {
  filter: grayscale(0%) brightness(1.04);
}

/* ─── UTILITY ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--gray-50); }
.bg-navy   { background: var(--navy); }
.text-red      { color: var(--red); }
.text-navy     { color: var(--navy); }
.text-white    { color: var(--white) !important; }
.text-white-60 { color: rgba(255,255,255,.62) !important; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.tag--light { color: rgba(255,255,255,.55); }

.section { padding: 100px 0; }

.section-header { margin-bottom: 4rem; }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--gray-900);
  margin-bottom: 1.1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 620px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 30px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}
.btn--primary {
  background: var(--red);
  color: white;
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,18,48,.35);
}
.btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}
.btn--full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* CHECK LISTS */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}
.check-list li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.check-list--bad li::before { content: '✕'; color: var(--red); }
.check-list--light li { color: rgba(255,255,255,.65); }
.check-list--light li::before { color: rgba(196,18,48,.85); }

/* FADE ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.09); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.2;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-logo-sub { color: rgba(255,255,255,.42) !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 9px 22px;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 1rem 2rem;
  gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color .2s;
}
.nav-mobile-link:hover { color: var(--red); }
.nav-mobile-cta {
  margin-top: .75rem;
  background: var(--red);
  color: white !important;
  padding: .85rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #0e1b4a 0%, #1B2A6B 50%, #0a1030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,18,48,.13) 0%, transparent 70%);
  right: -180px; top: 50%; transform: translateY(-50%);
}
.hero-bg-circle--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  left: 5%; bottom: 8%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding-top: 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(196,18,48,.14);
  border: 1px solid rgba(196,18,48,.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 2rem;
}
.hero-badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(1.4); }
}
.hero-badge span:last-child {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero images */
.hero-images {
  position: relative;
  z-index: 1;
  height: 500px;
}

.hero-img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 86%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.1);
  z-index: 1;
}
.hero-img-primary img {
  height: 340px;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.hero-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.65);
  border: 2px solid rgba(255,255,255,.14);
  z-index: 2;
}
.hero-img-secondary img {
  height: 230px;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  animation: bobble 2.2s ease-in-out infinite;
  text-decoration: none;
}
.hero-scroll-hint svg { width: 28px; height: 28px; }
@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   CHALLENGE
   ═══════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.stat-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.split-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.split-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--gray-100);
}
.split-icon { font-size: 1.3rem; }
.split-card-head h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); }

.callout {
  background: linear-gradient(135deg, #fff5f5, #f4f6ff);
  border: 1px solid rgba(196,18,48,.15);
  border-radius: var(--radius-md);
  padding: 2.25rem 2.5rem;
  text-align: center;
}
.callout p { font-size: 1.15rem; font-weight: 600; color: var(--gray-900); line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   SOLUTION
   ═══════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.syncra-spec-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-block {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.spec-block--last { border-bottom: none; }
.spec-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .55rem;
}
.spec-block p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

.badge-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.badge {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-900);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.pillar-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pillar-card--red   { background: #FFF5F7; border-color: rgba(196,18,48,.14); }
.pillar-card--navy  { background: #F0F4FF; border-color: rgba(27,42,107,.14); }
.pillar-card--green { background: #F0FFF5; border-color: rgba(22,163,74,.14); }

.pillar-num {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  opacity: .055;
  color: var(--gray-900);
  line-height: 1;
  user-select: none;
}

.pillar-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-icon-wrap svg { width: 28px; height: 28px; }
.pillar-icon-wrap--red   { background: rgba(196,18,48,.1); }
.pillar-icon-wrap--navy  { background: rgba(27,42,107,.1); }
.pillar-icon-wrap--green { background: rgba(22,163,74,.1); }

.pillar-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .75rem; }
.pillar-card p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   VISION
   ═══════════════════════════════════════════════════ */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.vision-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.vision-card:hover { background: rgba(255,255,255,.09); }

.vision-card-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.vision-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s ease;
}
.vision-card:hover .vision-card-img {
  filter: grayscale(0%) brightness(1.04);
}
.vision-card-label-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  pointer-events: none;
}

.vision-card-body { padding: 2rem; }
.vision-card h3 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: .75rem; }
.vision-card p  { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1.25rem; }

.vision-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.vision-feature { text-align: center; padding: 2rem 1.25rem; }
.vf-icon { font-size: 2.5rem; margin-bottom: .9rem; }
.vision-feature h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .5rem; }
.vision-feature p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   VALUE PROPOSITION
   ═══════════════════════════════════════════════════ */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.value-title { font-size: 1.05rem; font-weight: 700; color: var(--red); margin-bottom: .9rem; }

/* ═══════════════════════════════════════════════════
   TECHNOLOGY / FEASIBILITY
   ═══════════════════════════════════════════════════ */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Milestones */
.milestones { display: flex; flex-direction: column; }
.milestone  { display: flex; gap: 1.25rem; }
.ms-left    { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.ms-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(196,18,48,.15);
}
.ms-dot--last { box-shadow: 0 0 0 3px rgba(196,18,48,.15); }
.ms-line  { width: 2px; flex: 1; background: var(--gray-200); margin: 6px 0; min-height: 28px; }
.ms-body  { padding: 0 0 2.25rem; }
.ms-body h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.ms-body p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

/* Tech image column */
.tech-imgs-col { display: flex; flex-direction: column; gap: 1.25rem; }

.tech-img-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}
.tech-img-item img {
  height: 230px;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  width: 100%;
}
.tech-img-item:hover .grayscale-img {
  filter: grayscale(0%) brightness(1.04);
}

.tech-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.tech-img-label {
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: .2px;
}
.tech-img-desc {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════════
   REGULATORY
   ═══════════════════════════════════════════════════ */
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.reg-info { display: flex; flex-direction: column; gap: 1rem; }
.reg-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.reg-card-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.reg-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .8px; }
.reg-card p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

/* Timeline */
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1.5rem; }
.tl-step { display: flex; gap: 1.25rem; }
.tl-step--last .tl-line { display: none; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tl-circle--red { background: var(--red); }
.tl-line { width: 2px; flex: 1; background: var(--gray-200); margin: 4px 0; min-height: 24px; }
.tl-body { padding: 4px 0 2rem; }
.tl-year { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; }
.tl-year--red { color: var(--red); }
.tl-body h4 { font-size: 14.5px; font-weight: 700; color: var(--gray-900); margin: 3px 0; }
.tl-body p  { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   MARKET
   ═══════════════════════════════════════════════════ */
.market-numbers {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.market-num-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.market-num-card:hover { background: rgba(255,255,255,.1); }
.mn-number { font-size: 3.5rem; font-weight: 900; color: white; line-height: 1; margin-bottom: .6rem; }
.mn-number span { color: var(--red); }
.mn-label { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.55; }

.market-model {
  margin-top: 2.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.mm-inner { display: flex; align-items: flex-start; gap: 1.25rem; }
.mm-icon { font-size: 2.25rem; flex-shrink: 0; }
.market-model h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: .65rem; }
.market-model p  { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-info { padding-top: .5rem; }
.contact-points { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2.5rem; }
.contact-point { display: flex; align-items: flex-start; gap: 1rem; }
.cp-icon { font-size: 1.5rem; flex-shrink: 0; }
.cp-title { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.cp-sub   { font-size: 13px; color: var(--gray-600); margin-top: 2px; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--gray-900); }

input, textarea, select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color .2s, background .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  background: white;
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
textarea { height: 120px; resize: vertical; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer { background: var(--gray-900); padding: 3rem 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-nav a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,.42);
  transition: color .2s;
}
.footer-nav a:hover { color: white; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
}

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

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-images { display: none; }

  .stats-row      { grid-template-columns: 1fr; }
  .split-cards    { grid-template-columns: 1fr; }
  .pillars        { grid-template-columns: 1fr; }
  .vision-grid    { grid-template-columns: 1fr; }
  .vision-features { grid-template-columns: 1fr; }
  .value-grid     { grid-template-columns: 1fr; }
  .tech-grid      { grid-template-columns: 1fr; }
  .reg-grid       { grid-template-columns: 1fr; }
  .market-numbers { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 1.75rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .value-card { flex-direction: column; gap: .75rem; }
  .value-num { font-size: 2rem; }
}
