:root {
  --navy: #062c61;
  --navy-dark: #031f44;
  --charcoal: #4a4d52;
  --ink: #18212b;
  --muted: #68727d;
  --line: #dde3e9;
  --soft: #f6f8fa;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--navy); letter-spacing: .08em; font-size: 18px; }
.brand small { color: var(--charcoal); letter-spacing: .28em; font-size: 8px; margin-top: 6px; }
nav { display: flex; align-items: center; gap: 26px; }
nav a { text-decoration: none; font-size: 14px; font-weight: 700; color: #2b3540; }
nav a:hover { color: var(--navy); }
.nav-button { color: white !important; background: var(--navy); border-radius: 999px; padding: 10px 17px; }

.hero {
  padding: 78px 0 70px;
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 68px;
  align-items: center;
}
.kicker {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .22em;
}
.hero h1,
.section-head h2,
.about h2,
.contact h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(46px, 6vw, 72px); max-width: 780px; }
.hero-text { margin: 24px 0 0; max-width: 720px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); }
.primary { background: var(--navy); color: white; }
.primary:hover { background: var(--navy-dark); }
.secondary { border: 1px solid #cfd6de; background: white; color: var(--ink); }
.secondary:hover { border-color: #aeb8c3; }
.hero-logo-wrap {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  padding: 42px;
  box-shadow: 0 18px 50px rgba(6,44,97,.08);
  text-align: center;
}
.hero-logo-wrap img { width: 100%; max-width: 390px; margin: 0 auto; }
.hero-logo-wrap p { margin: 22px 0 0; color: var(--navy); font-size: 12px; font-weight: 850; letter-spacing: .2em; }
.hero-logo-wrap p span { color: #a0a8b1; margin: 0 9px; }

.clarity-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.clarity-grid { display: grid; grid-template-columns: 1fr 1fr; }
.clarity-grid > div { padding: 28px 36px; }
.clarity-grid > div + div { border-left: 1px solid var(--line); }
.clarity-grid strong { display: block; color: var(--navy); font-size: 18px; }
.clarity-grid span { display: block; color: var(--muted); margin-top: 4px; }

.section { padding: 90px 0; }
.section-head { max-width: 820px; margin-bottom: 40px; }
.section-head h2,
.about h2,
.contact h2 { font-size: clamp(38px, 5vw, 58px); }
.section-head > p:last-child { color: var(--muted); font-size: 18px; margin: 18px 0 0; max-width: 740px; }
.compact { margin-bottom: 34px; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: white;
}
.service-card h3 { margin: 16px 0 22px; font-size: 28px; line-height: 1.18; color: var(--navy); }
.card-label { display: inline-block; color: var(--navy); background: #edf3f9; border-radius: 999px; padding: 7px 11px; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.services-card { background: var(--navy); border-color: var(--navy); color: white; }
.services-card .card-label { background: rgba(255,255,255,.12); color: white; }
.services-card h3 { color: white; }
ul { margin: 0; padding: 0; list-style: none; }
li { position: relative; padding: 11px 0 11px 24px; border-top: 1px solid var(--line); color: #4f5a65; }
li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); }
.services-card li { color: #d7e2ee; border-color: rgba(255,255,255,.16); }
.services-card li::before { background: white; }

.process { background: var(--soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: white; }
.steps article { padding: 30px 26px; border-right: 1px solid var(--line); }
.steps article:last-child { border-right: 0; }
.steps span { width: 34px; height: 34px; border-radius: 50%; background: #eaf1f8; color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.steps h3 { margin: 28px 0 8px; color: var(--navy); font-size: 20px; line-height: 1.2; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-copy p { color: var(--muted); font-size: 18px; margin-top: 0; }
.location-line { color: var(--navy) !important; font-size: 14px !important; font-weight: 800; letter-spacing: .03em; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 24px !important; }

.contact { background: var(--navy); color: white; padding: 78px 0; }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 64px; align-items: start; }
.kicker.light { color: #afc7e4; }
.contact-copy > p:not(.kicker) { color: #c7d5e5; font-size: 18px; margin: 20px 0 0; max-width: 540px; }
.contact-lines { margin-top: 32px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-lines > a,
.contact-lines > div { display: block; text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-lines span { display: block; color: #a9bfd8; font-size: 10px; letter-spacing: .18em; font-weight: 850; text-transform: uppercase; }
.contact-lines strong { display: block; margin-top: 3px; color: white; font-size: 17px; }

.quote-form {
  background: white;
  color: var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.form-row { display: block; margin-bottom: 18px; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label > span { display: block; margin-bottom: 7px; color: #35404b; font-size: 12px; font-weight: 800; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.quote-form textarea { resize: vertical; min-height: 130px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6,44,97,.1);
}
.form-button { width: 100%; background: var(--navy); color: white; }
.form-button:hover { background: var(--navy-dark); }
.form-help { margin: 10px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.site-footer { background: #f8fafc; border-top: 1px solid var(--line); }
.footer-main { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.footer-identity { display: flex; align-items: center; gap: 12px; }
.footer-identity img { width: 54px; height: 54px; object-fit: contain; }
.footer-identity div { display: flex; flex-direction: column; }
.footer-identity strong { color: var(--navy); font-size: 16px; }
.footer-identity span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; margin-top: 3px; }
.footer-contact { display: flex; align-items: center; gap: 24px; color: #5f6974; font-size: 14px; }
.footer-contact a { color: var(--navy); font-weight: 750; text-decoration: none; }
.footer-bottom { min-height: 54px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #77808a; font-size: 12px; }

@media (max-width: 900px) {
  nav a:not(.nav-button) { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .two-column { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps article:nth-child(2) { border-right: 0; }
  .steps article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .clarity-grid { grid-template-columns: 1fr; }
  .clarity-grid > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .contact-grid { gap: 40px; }
  .footer-main { align-items: flex-start; flex-direction: column; padding: 28px 0; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 5px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-row { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 16px; }
  .nav-button { padding: 9px 14px; }
  .hero { padding: 54px 0 52px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-logo-wrap { padding: 24px; border-radius: 22px; }
  .clarity-grid > div { padding: 24px 4px; }
  .section { padding: 68px 0; }
  .service-card { padding: 25px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps article:last-child { border-bottom: 0; }
  .contact { padding: 58px 0; }
  .two-fields { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 22px; border-radius: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; padding: 14px 0; }
}
