:root {
  --blue: #0b3b92;
  --blue-2: #1454c4;
  --blue-light: #eef5ff;
  --ink: #111827;
  --text: #343c49;
  --muted: #6e7785;
  --line: #e4e8ee;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 9px 28px rgba(17, 24, 39, .08);
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }
.wide-container { width: min(1240px, calc(100% - 56px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 116px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1240px, calc(100% - 44px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 106px;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand-logo {
  width: 104px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-left: auto; }
.desktop-nav a { font-size: 14px; font-weight: 500; color: #272e3a; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-link { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.phone-link svg { width: 17px; height: 17px; color: var(--blue); fill: currentColor; stroke: none; }
.btn {
  border: 0;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(90deg, #0f4bc0, #083783); box-shadow: 0 5px 15px rgba(7,58,154,.18); }
.header-cta { height: 42px; padding: 0 18px; font-size: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; width: 24px; margin: 5px auto; background: var(--ink); transition: .2s; }
.mobile-nav { display: none; position: absolute; top: 94px; left: 0; right: 0; padding: 14px 24px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.mobile-nav a { display: block; padding: 13px 0; font-size: 16px; font-weight: 550; border-bottom: 1px solid #f0f2f5; }
.mobile-nav.open { display: block; }

.section { padding: 72px 0 78px; scroll-margin-top: 94px; }
.first-section { padding-top: 60px; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #f9fbfe 50%, #fff 100%); }
.section-heading.centered { text-align: center; margin-bottom: 38px; }
.section-heading h1, .section-heading h2, .zone-copy h2, .contact-copy h2 {
  color: #0a0d12;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.035em;
}
.section-heading h1 { font-size: clamp(38px, 4vw, 52px); }
.section-heading h2 { font-size: clamp(34px, 3.4vw, 46px); }
.section-heading p { font-size: 17px; line-height: 1.6; margin: 12px 0 0; color: #515968; }
.eyebrow-line { display: block; width: 34px; height: 3px; background: var(--blue); margin: 0 auto 13px; border-radius: 99px; }
.left-line { margin: 0 0 14px; }

.experience-badge {
  width: fit-content;
  margin: 20px auto 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid #d8e3f8;
  border-radius: 999px;
  background: var(--blue-light);
  color: #29466f;
  font-size: 14px;
}
.experience-badge strong { color: var(--blue); font-size: 17px; }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  min-height: 260px;
  padding: 34px 24px 25px;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-icon { width: 64px; height: 64px; color: var(--blue-2); stroke-width: 1.7; margin-bottom: 20px; }
.service-card h2 { color: #111319; font-size: 18px; margin: 0 0 12px; font-weight: 700; }
.service-card p { margin: 0; font-size: 14.5px; color: #56606e; line-height: 1.6; }
.card-line { margin-top: auto; width: 32px; height: 3px; background: var(--blue); border-radius: 99px; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(26,34,49,.09);
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,34,49,.13); }
.project-image { height: 270px; overflow: hidden; background: #eceff2; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-copy { padding: 20px 20px 22px; }
.project-copy h3 { color: #151820; margin: 0 0 7px; font-size: 18px; font-weight: 700; }
.project-copy p { margin: 0 0 18px; font-size: 14px; color: var(--muted); }
.location { display: flex; align-items: center; gap: 7px; color: #667181; font-size: 13px; }
.location svg { width: 16px; height: 16px; color: var(--blue-2); }
.center-action { display: flex; justify-content: center; margin-top: 28px; }
.btn-outline { min-height: 44px; padding: 0 22px; font-size: 14px; color: var(--blue); background: #fff; border: 1px solid var(--blue-2); }

.reviews-section { padding-top: 62px; padding-bottom: 70px; }
.compact-heading { margin-bottom: 30px !important; }
.reviews-container { width: min(1050px, calc(100% - 56px)); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { min-height: 235px; padding: 26px 25px 22px; background: #fff; border: 1px solid #e7ebf0; border-radius: 10px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.stars { color: #ffad00; letter-spacing: 3px; font-size: 21px; line-height: 1; }
.review-card > p { margin: 19px 0 20px; font-size: 15px; line-height: 1.65; color: #303641; }
.review-footer { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; }
.review-footer div { display: flex; flex-direction: column; }
.review-footer strong { font-size: 15px; color: #1d222b; }
.review-footer div span { margin-top: 4px; font-size: 13px; color: #8b94a1; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #063c6b; color: #fff; font-size: 14px; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.review-dots span { width: 7px; height: 7px; background: #d8dde5; border-radius: 50%; }
.review-dots .active { width: 18px; border-radius: 10px; background: var(--blue); }

.zone-section { padding-top: 70px; padding-bottom: 72px; }
.zone-grid { display: grid; grid-template-columns: 38% 62%; align-items: center; gap: 34px; }
.zone-copy h2, .contact-copy h2 { font-size: clamp(32px, 3vw, 42px); }
.zone-copy > p, .contact-copy > p { margin: 13px 0 24px; font-size: 16px; color: #4d5561; line-height: 1.65; }
.zone-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.zone-list span { font-size: 14px; display: flex; gap: 9px; align-items: center; }
.zone-list .zone-label { display: inline; font-size: inherit; }
.zone-list i { width: 22px; height: 22px; border: 1px solid var(--blue-2); border-radius: 50%; display: grid; place-items: center; color: var(--blue-2); font-size: 12px; font-style: normal; flex: 0 0 auto; }
.map-card { height: 390px; overflow: hidden; border-radius: 12px; background: #f7f9fb; border: 1px solid #e2e7ee; box-shadow: 0 8px 24px rgba(17,24,39,.08); }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-section { padding-top: 72px; padding-bottom: 72px; }
.contact-grid { display: grid; grid-template-columns: 34% 66%; gap: 50px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details a, .contact-details span { display: flex; align-items: center; gap: 11px; font-size: 15px; color: #212733; }
.contact-details svg { width: 20px; height: 20px; color: var(--blue-2); flex: none; }
.contact-form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }
.contact-form label { display: block; }
.contact-form label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #d7dde6;
  border-radius: 7px;
  background: #fff;
  color: #222832;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input { height: 50px; padding: 0 15px; font-size: 15px; }
.contact-form textarea { min-height: 135px; padding: 14px 15px; resize: vertical; font-size: 15px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #94b3ec; box-shadow: 0 0 0 4px rgba(13,71,187,.08); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #939ca9; }
.form-submit { width: 100%; min-height: 50px; margin-top: 10px; font-size: 15px; }
.form-status { min-height: 20px; margin: 9px 0 0; font-size: 13px; color: var(--blue); text-align: center; }

.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { min-height: 86px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; font-size: 13px; color: #525b68; }
.footer-contact, .footer-links { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.footer-links { justify-self: end; }
.sep { display: inline-block; width: 1px; height: 15px; background: #cfd4dc; }
.site-footer a:hover { color: var(--blue); }


.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 5px;
  border: 1px solid #dce2eb;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(17,24,39,.05);
  white-space: nowrap;
}
.language-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 16px;
  border-right: 1px solid #e5e9ef;
  padding-right: 4px;
}
.language-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.language-btn:hover { background: #f2f6fc; transform: translateY(-1px); }
.language-btn.active { border-color: #9eb8e9; background: #edf4ff; box-shadow: inset 0 0 0 1px rgba(11,59,146,.08); }
.language-btn:focus-visible { outline: 3px solid rgba(20,84,196,.2); outline-offset: 2px; }

@media (max-width: 1160px) {
  .brand-logo { width: 96px; height: 104px; }
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 13px; }
  .phone-link span { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(4), .service-card:nth-child(5) { min-height: 235px; }
}

@media (max-width: 920px) {
  .site-header { height: 94px; }
  .brand-logo { width: 76px; height: 86px; }
  .desktop-nav, .header-cta, .phone-link { display: none; }
  .menu-toggle { display: block; }
  .header-inner { width: calc(100% - 28px); }
  .mobile-nav { top: 94px; }
  .section { scroll-margin-top: 94px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid .project-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-container { width: min(680px, calc(100% - 48px)); }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .zone-copy, .contact-copy { max-width: 690px; }
  .map-card { height: 420px; }
  .footer-inner { grid-template-columns: 1fr; gap: 13px; padding: 22px 0; text-align: center; justify-items: center; }
  .footer-links { justify-self: center; }
}

@media (max-width: 640px) {
  .container, .wide-container, .reviews-container { width: min(100% - 30px, 600px); }
  .site-header { height: 86px; }
  .brand { min-width: 68px; }
  .brand-logo { width: 66px; height: 75px; }
  .language-switcher { gap: 2px; padding: 3px; }
  .language-icon { display: none; }
  .language-btn { width: 30px; height: 30px; font-size: 18px; }
  .menu-toggle { width: 40px; height: 40px; padding: 7px; }
  .header-actions { gap: 4px; }
  .mobile-nav { top: 86px; }
  .section { padding: 50px 0 54px; scroll-margin-top: 86px; }
  .first-section { padding-top: 44px; }
  .section-heading.centered { margin-bottom: 30px; }
  .section-heading h1 { font-size: 37px; }
  .section-heading h2 { font-size: 33px; }
  .section-heading p { font-size: 16px; }
  .desktop-only { display: none; }
  .experience-badge { flex-direction: column; align-items: center; gap: 2px; text-align: center; font-size: 13px; }
  .experience-badge strong { font-size: 17px; }

  .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child, .projects-grid .project-card:last-child { grid-column: auto; width: auto; }
  .service-card { min-height: 220px; padding: 30px 28px 24px; }
  .service-icon { width: 58px; height: 58px; }
  .service-card h2 { font-size: 20px; }
  .service-card p { font-size: 16px; max-width: 310px; }
  .project-image { height: min(72vw, 320px); }
  .project-copy { padding: 18px; }
  .project-copy h3 { font-size: 19px; }
  .project-copy p { font-size: 15px; }
  .location { font-size: 14px; }
  .btn-outline { min-height: 48px; font-size: 15px; }

  .review-card { min-height: 0; padding: 23px 21px; }
  .review-card > p { font-size: 16px; }
  .review-footer strong { font-size: 16px; }
  .review-footer div span { font-size: 14px; }
  .stars { font-size: 22px; }

  .zone-copy h2, .contact-copy h2 { font-size: 34px; }
  .zone-copy > p, .contact-copy > p { font-size: 16px; }
  .zone-list { grid-template-columns: 1fr; gap: 12px; }
  .zone-list span { font-size: 15px; }
  .map-card { height: 330px; }

  .contact-grid { gap: 34px; }
  .contact-details a, .contact-details span { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .contact-form input { height: 52px; font-size: 16px; }
  .contact-form textarea { min-height: 130px; font-size: 16px; }
  .form-submit { min-height: 52px; font-size: 16px; }

  .footer-contact, .footer-links { flex-wrap: wrap; justify-content: center; white-space: normal; }
  .footer-inner { font-size: 13px; }
}

@media (max-width: 390px) {
  .brand-logo { width: 60px; height: 68px; }
  .language-btn { width: 27px; height: 27px; font-size: 17px; }
  .header-inner { width: calc(100% - 18px); }
  .section-heading h1 { font-size: 33px; }
  .section-heading h2, .zone-copy h2, .contact-copy h2 { font-size: 30px; }
  .map-card { height: 290px; }
}
