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

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: 'Outfit', sans-serif; background: #f0f2f5; color: #0d1b2a; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy:        #0d2d5e;
  --navy-deep:   #0d1b2a;
  --blue:        #1a6eb5;
  --blue-light:  #7eb8e8;
  --blue-pale:   #dce8f5;
  --bg:          #f0f2f5;
  --white:       #ffffff;
  --border:      #d4d9e0;
  --text:        #0d1b2a;
  --text-muted:  #5a6472;
  --text-soft:   #6a7480;
  --hero-text:   #e8edf4;
  --hero-dim:    rgba(232,237,244,0.6);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f0f2f5;
  border-bottom: 1px solid #d4d9e0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
/* ===== TOP BAR ===== */
.top-bar {
  background: #0d2d5e;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar-lang {
  font-size: 0.75rem;
  color: #7eb8e8;
  letter-spacing: 0.08em;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.top-bar-contact a {
  font-size: 0.75rem;
  color: rgba(232,237,244,0.65);
  font-weight: 300;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}
.top-bar-contact a:hover { color: #e8edf4; }
@media (max-width: 700px) {
  .top-bar-inner { padding: 0.5rem 1.25rem; gap: 0.5rem; }
  .top-bar-contact a:last-child { display: none; }
}

/* ===== NAV LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { display: block; height: 61px; width: auto; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a6472;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #1a6eb5; }
.nav-btn {
  background: #0d2d5e;
  color: #e8edf4;
  border: none;
  padding: 0.6rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.nav-btn:hover { background: #1a6eb5; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: #0d2d5e; display: block; transition: 0.2s; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.hero-left {
  background: #0d2d5e;
  padding: 5rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7eb8e8;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.06;
  color: #e8edf4;
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: #7eb8e8; }
.hero-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(232,237,244,0.65);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.hero-right {
  background: #f0f2f5;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #d4d9e0;
}
.hero-tag {
  display: inline-block;
  background: #dce8f5;
  color: #1a6eb5;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 1.25rem;
}
.hero-svc-list { display: flex; flex-direction: column; }
.hero-svc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #d4d9e0;
  font-size: 0.95rem;
  color: #3a4452;
  font-weight: 300;
  line-height: 1.4;
}
.hero-svc-item:last-child { border-bottom: none; }
.hero-svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7eb8e8;
  min-width: 1.5rem;
  opacity: 0.8;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-main {
  background: #7eb8e8;
  color: #0d2d5e;
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-main:hover { background: #e8edf4; }
.btn-ghost {
  background: transparent;
  color: rgba(232,237,244,0.7);
  border: 1px solid rgba(232,237,244,0.25);
  padding: 0.85rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(232,237,244,0.5); color: #e8edf4; }
.btn-dark {
  background: #0d2d5e;
  color: #e8edf4;
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: #1a6eb5; }
.btn-light {
  background: #7eb8e8;
  color: #0d2d5e;
  border: none;
  padding: 0.9rem 3rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-light:hover { background: #e8edf4; }
.btn-outline-light {
  background: transparent;
  color: #e8edf4;
  border: 1px solid rgba(232,237,244,0.35);
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline-light:hover { border-color: rgba(232,237,244,0.6); }

/* ===== STATS BAR ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1a6eb5;
}
.stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #b8d8f0;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-white { background: #fff; }
.section-bg { background: #f0f2f5; }
.section-navy { background: #0d2d5e; }

.section-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a6eb5;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-eyebrow-light {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7eb8e8;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d1b2a;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: #1a6eb5; }
.section-title-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #e8edf4;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.section-title-light em { font-style: italic; color: #7eb8e8; }
.section-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #5a6472;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 3rem;
}

/* ===== AUDIENCE CARDS ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.audience-card {
  border: 1px solid #d4d9e0;
  padding: 2.5rem;
  background: #fff;
  transition: border-color 0.25s;
}
.audience-card:hover { border-color: #7eb8e8; }
.audience-card-dark {
  background: #0d2d5e;
  border: 1px solid #0d2d5e;
  padding: 2.5rem;
}
.audience-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
}
.tag-blue { background: #dce8f5; color: #1a6eb5; }
.tag-light { background: rgba(126,184,232,0.15); color: #7eb8e8; }
.audience-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #0d1b2a;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}
.audience-card-dark h3 { color: #e8edf4; }
.audience-card p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #5a6472;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.audience-card-dark p { color: rgba(232,237,244,0.6); }
.audience-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.audience-list li {
  font-size: 0.93rem;
  color: #3a4452;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
}
.audience-card-dark .audience-list li { color: rgba(232,237,244,0.7); }
.audience-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #7eb8e8;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ===== SERVICE CARDS ===== */
.services-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid #d4d9e0;
}
.services-header-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a6eb5;
  font-weight: 500;
  white-space: nowrap;
}
.services-header-line { flex: 1; height: 1px; background: #d4d9e0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d4d9e0;
}
.service-card {
  background: #fff;
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: #f8fafc; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #dce8f5;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.service-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d1b2a;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 0.93rem;
  color: #6a7480;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.service-list li {
  font-size: 0.88rem;
  color: #8a9aaa;
  font-weight: 300;
  padding-left: 0.85rem;
  position: relative;
  line-height: 1.5;
}
.service-list li::before { content: '–'; position: absolute; left: 0; color: #7eb8e8; }

/* ===== JOURNEY / PROCESS ===== */
.journey-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #d4d9e0;
}
.journey-step {
  padding: 2rem 1.25rem;
  border-right: 1px solid #d4d9e0;
  text-align: center;
  background: #fff;
}
.journey-step:last-child { border-right: none; }
.journey-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #7eb8e8;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.journey-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.journey-desc {
  font-size: 0.86rem;
  color: #6a7480;
  line-height: 1.65;
  font-weight: 300;
}

/* Three-step process (inner pages) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d4d9e0;
}
.step-card { background: #fff; padding: 2rem 1.5rem; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: #d4d9e0;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-title { font-size: 0.88rem; font-weight: 500; color: #0d1b2a; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.8rem; color: #6a7480; line-height: 1.65; font-weight: 300; }

/* ===== COMMITMENT / INFO CARDS ===== */
.commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.commit-left { padding: 5rem 3.5rem; border-right: 1px solid #d4d9e0; }
.commit-left p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #5a6472;
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.commit-right { padding: 5rem 3.5rem; display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: #fff;
  border: 1px solid #d4d9e0;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: #7eb8e8; }
.info-card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.info-card-dot { width: 8px; height: 8px; background: #7eb8e8; flex-shrink: 0; }
.info-card-title { font-size: 0.97rem; font-weight: 500; color: #0d1b2a; }
.info-card-body { font-size: 0.9rem; color: #6a7480; line-height: 1.7; font-weight: 300; padding-left: 1.4rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #0d2d5e;
  padding: 5rem 2.5rem 4rem;
}
.page-hero-inner { max-width: 780px; }
.page-hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7eb8e8;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #e8edf4;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: #7eb8e8; }
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,237,244,0.6);
  font-weight: 300;
  max-width: 580px;
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d4d9e0;
  margin-top: 2.5rem;
}
.value-card { background: #fff; padding: 2.5rem 2rem; }
.value-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: #dce8f5;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.value-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: #0d1b2a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.value-desc { font-size: 0.93rem; color: #6a7480; line-height: 1.8; font-weight: 300; }

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-split-left {
  background: #0d2d5e;
  padding: 5rem 3.5rem;
}
.about-split-right {
  background: #f0f2f5;
  padding: 5rem 3.5rem;
  border-left: 1px solid #d4d9e0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-stat-block { border-left: 3px solid #7eb8e8; padding-left: 1.25rem; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d2d5e;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat-label {
  font-size: 0.9rem;
  color: #5a6472;
  font-weight: 300;
  line-height: 1.5;
}

/* ===== CTA ===== */
.cta {
  background: #0d2d5e;
  padding: 5rem 2.5rem;
  text-align: center;
}
.cta-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7eb8e8;
  margin-bottom: 1rem;
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #e8edf4;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta h2 em { font-style: italic; color: #7eb8e8; }
.cta p {
  font-size: 1rem;
  color: rgba(232,237,244,0.5);
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  margin-top: 1.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,237,244,0.2);
}

/* ===== CONTACT FORM ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a6472;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d4d9e0;
  padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  color: #0d1b2a;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: #7eb8e8; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #5a6472;
  pointer-events: none;
}

.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-block {
  padding: 2rem 0;
  border-bottom: 1px solid #d4d9e0;
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block:last-child { border-bottom: none; }
.contact-info-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a6eb5;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-info-val {
  font-size: 1rem;
  color: #0d1b2a;
  font-weight: 400;
  line-height: 1.5;
}
.contact-info-val a { color: #0d1b2a; transition: color 0.2s; }
.contact-info-val a:hover { color: #1a6eb5; }
.contact-info-note {
  font-size: 0.82rem;
  color: #5a6472;
  font-weight: 300;
  margin-top: 0.25rem;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d1b2a;
  padding: 3.5rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  margin-bottom: 0.85rem;
}
.footer-logo img { display: block; height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(232,237,244,0.4);
  font-weight: 300;
  line-height: 1.65;
  max-width: 260px;
}
.footer-heading {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,237,244,0.3);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(232,237,244,0.55);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: #7eb8e8; }
.footer-contact-item { margin-bottom: 0.85rem; }
.footer-contact-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,237,244,0.3);
  margin-bottom: 0.2rem;
}
.footer-contact-val {
  font-size: 0.92rem;
  color: rgba(232,237,244,0.6);
  font-weight: 300;
}
.footer-contact-val a { color: rgba(232,237,244,0.6); transition: color 0.2s; }
.footer-contact-val a:hover { color: #7eb8e8; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.72rem; color: rgba(232,237,244,0.2); }
.footer-badge {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,237,244,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-left { padding: 3.5rem 2rem 3rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .journey-wrap { grid-template-columns: repeat(3, 1fr); }
  .commit-grid { grid-template-columns: 1fr; }
  .commit-left { border-right: none; border-bottom: 1px solid #d4d9e0; padding: 3rem 2rem; }
  .commit-right { padding: 3rem 2rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-left { padding: 3.5rem 2rem; }
  .about-split-right { padding: 3.5rem 2rem; border-left: none; border-top: 1px solid #d4d9e0; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-btn { display: none; }
  .section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 3.5rem 1.5rem 3rem; }
  .cta { padding: 3.5rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 1rem 1.5rem; }
  .hero-h1 { font-size: 2.2rem; }
  .btn-row { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .journey-wrap { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta h2 { font-size: 1.9rem; }
}
