.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus { left: 8px; }
/* === VARIABLES === */
:root {
  --navy: #1d5580;
  --navy-dark: #163f60;
  --navy-deeper: #0f2d45;
  --orange: #f0932b;
  --orange-dark: #d97a1a;
  --white: #ffffff;
  --light: #f4f6f9;
  --gray: #8a9bb0;
  --text: #1a2740;
  --text-light: #4a5e78;
  --border: rgba(29,85,128,0.1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 24px rgba(29,85,128,0.08);
  --shadow-lg: 0 8px 48px rgba(29,85,128,0.14);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(240,147,43,0.85); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header-light .section-title { color: var(--white); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { color: var(--orange); font-style: italic; }
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(240,147,43,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 20px rgba(240,147,43,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 13px;
  padding: 9px 18px;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(29,85,128,0.1); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.01em;
}
.amp { color: var(--orange); }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { margin-left: 8px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  gap: 80px;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(29,85,128,0.06);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(29,85,128,0.12);
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-heading em { color: var(--orange); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-geo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-geo::before { display: none; }
.geo-svg { width: 100%; height: 100%; }
.hero-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}
.callout-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.callout-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* === ABOUT === */
.about-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.about-accent-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-top: 12px;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}
.about-heading em { color: var(--orange); font-style: italic; }
.about-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-creds {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}
.cred-icon { color: var(--orange); font-size: 10px; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), color var(--transition);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.service-card:hover::after { transform: translateY(0); }
.service-card:hover .service-num { color: rgba(240,147,43,0.3); }
.service-card:hover .service-icon svg { stroke: var(--orange); }
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--white); }
.service-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(29,85,128,0.06);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}
.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--navy);
  transition: stroke var(--transition);
}
.service-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 24px;
  transition: background var(--transition);
  text-align: center;
}
.why-card:hover { background: rgba(255,255,255,0.08); }
.why-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--orange);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* === FOCUS === */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.focus-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.focus-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(29,85,128,0.05);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.focus-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.focus-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
}
.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s var(--transition);
}
.focus-card:hover::before { height: 100%; }

/* === PROCESS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--orange) 0%, rgba(240,147,43,0.3) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 0 8px var(--light);
}
.step-circle span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonial-placeholder {
  text-align: center;
  padding: 64px 32px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  max-width: 580px;
  margin: 0 auto;
}
.placeholder-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.5;
}
.testimonial-placeholder p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* === FAQ === */
.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-header .section-title { text-align: left; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--navy); }
.faq-q[aria-expanded="true"] { color: var(--navy); }
.faq-arrow {
  font-size: 18px;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
  display: inline-block;
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-a.open { max-height: 400px; }

/* === CONTACT === */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-heading em { color: var(--orange); font-style: italic; }
.contact-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: opacity var(--transition);
}
.contact-detail:hover { opacity: 0.85; }
.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.detail-icon svg { width: 18px; height: 18px; }
.detail-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.detail-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}
.contact-form-wrap { padding: 16px 0; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 12px 0;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: 0;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--orange); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(138,155,176,0.6); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  background: var(--navy-deeper);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-mark { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--white); }
.footer-logo .logo-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 12px;
}
.footer-about-short {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-col a:not(.btn-outline-light) {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-contact-col a:not(.btn-outline-light):hover { color: var(--white); }
.footer-contact-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-cta-btn { margin-top: 16px; display: inline-flex; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* === ANIMATIONS === */
.fade-in, .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible, .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { align-items: center; }
  .hero-sub { margin: 0 auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-label-col { display: flex; align-items: center; gap: 16px; }
  .about-accent-line { margin-top: 0; }
  .focus-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-header .section-title { text-align: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 24px; }
  .step-circle { margin-bottom: 0; flex-shrink: 0; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(29,85,128,0.1);
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
