:root {
  color-scheme: light;
  --ink: #102231;
  --muted: #607483;
  --blue: #0a79b6;
  --deep: #063f5d;
  --cyan: #28aee8;
  --teal: #0f6f78;
  --sand: #f2f6f7;
  --white: #ffffff;
  --line: #d7e5eb;
  --amber: #d8a24b;
  --shadow: 0 18px 48px rgba(6, 63, 93, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(178px, auto);
  gap: 20px;
  align-items: center;
  padding: 12px 34px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand, nav, .header-actions, .hero-actions, .hero-proof, .quick-actions, .panel-actions, .proof-links, .mobile-bar { display: flex; align-items: center; }
.brand { gap: 11px; min-width: 0; }
.brand img { width: 132px; height: auto; }
.brand span { min-width: 0; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; line-height: 1.1; }
.brand small { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
nav { justify-content: center; gap: 6px; }
nav a, .lang-toggle, .header-call {
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}
nav a:hover, .lang-toggle:hover, .header-call:hover { color: var(--deep); border-color: var(--line); }
.header-actions { justify-content: flex-end; gap: 8px; }
.lang-toggle, .header-call { background: var(--sand); cursor: pointer; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
  gap: 36px;
  min-height: 720px;
  padding: 86px 42px 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,63,93,.98), rgba(6,63,93,.82) 46%, rgba(6,63,93,.26)),
    url("images/official-hero.jpg") center/cover no-repeat;
}
.hero-copy, .hero-card { position: relative; z-index: 1; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; max-width: 780px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: 0; }
h1 { max-width: 820px; font-size: clamp(42px, 4.6rem, 74px); }
h2 { font-size: clamp(30px, 3.1rem, 48px); }
h3 { font-size: 25px; }
.hero-copy > p:not(.eyebrow) { max-width: 690px; margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  transition: transform .18s ease, background-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.primary { color: var(--white); background: var(--blue); border-color: var(--blue); }
.secondary { color: var(--white); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.ghost { color: var(--deep); background: var(--white); border-color: var(--white); }
.hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-proof span { min-width: 138px; padding: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.11); }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { font-size: 25px; }
.hero-proof small { color: rgba(255,255,255,.76); font-size: 12px; }
.hero-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; min-height: 300px; object-fit: contain; object-position: bottom center; background: #eef6f9; }
.hero-card div { padding: 22px; color: var(--ink); }
.hero-card strong, .hero-card span { display: block; }
.hero-card span { margin-top: 8px; color: var(--muted); }

.quick-actions {
  position: relative;
  z-index: 2;
  gap: 10px;
  max-width: 1180px;
  margin: -36px auto 0;
  padding: 0 22px;
}
.quick-actions a {
  flex: 1;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.quick-actions span, .service span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.quick-actions strong, .quick-actions small { display: block; }
.quick-actions strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.quick-actions small { color: var(--muted); font-size: 13px; }

.section { max-width: 1180px; margin: 0 auto; padding: 88px 22px 0; }
.section-head { max-width: 820px; margin-bottom: 28px; }
.section-head p:not(.eyebrow), .proof-copy p { color: var(--muted); font-size: 17px; }
.path-layout, .proof, .contact {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}
.path-list { display: grid; gap: 10px; }
.path, .path-panel, .service, .trust-card, .contact-info, .request-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.path {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.path span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep);
  background: #dff3fb;
  border-radius: 8px;
  font-weight: 900;
}
.path strong, .path small { display: block; }
.path small { color: var(--muted); }
.path.active { color: var(--white); background: var(--deep); border-color: var(--deep); }
.path.active span { color: var(--white); background: var(--cyan); }
.path.active small { color: rgba(255,255,255,.74); }
.path-panel {
  padding: 30px;
  background: linear-gradient(135deg, #fff, #eaf7fb);
}
.panel-kicker { margin: 0 0 10px; color: var(--blue); font-weight: 900; }
.path-panel p { color: var(--muted); }
.panel-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin: 22px 0; }
.panel-grid span { padding: 12px; border-left: 4px solid var(--amber); border-radius: 8px; background: rgba(255,255,255,.78); font-size: 14px; }
.panel-actions { flex-wrap: wrap; gap: 10px; }

.proof { align-items: center; }
.proof-copy { max-width: 500px; }
.proof-links { flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.proof-links a { padding: 11px 14px; border-radius: 8px; color: var(--white); background: var(--deep); font-weight: 900; }
.case-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.compare {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7ea;
}
.compare img { width: 100%; height: 100%; object-fit: cover; }
.compare-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--white);
}
.compare-before img { width: 100%; max-width: none; }
.label {
  position: absolute;
  top: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6,63,93,.86);
  font-size: 12px;
  font-weight: 900;
}
.label.before { left: 12px; }
.label.after { right: 12px; }
.case-box input { width: 100%; margin-top: 14px; accent-color: var(--blue); }

.media-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  max-width: 1180px;
  margin: 88px auto 0;
  padding: 0 22px;
}
.media-band img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.service { min-height: 190px; padding: 20px; }
.service:nth-child(2n) span { background: var(--teal); }
.service:nth-child(3n) span { background: var(--amber); }
.service strong, .service small { display: block; }
.service strong { font-size: 21px; line-height: 1.15; }
.service small { margin-top: 12px; color: var(--muted); font-size: 14px; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-card { min-height: 190px; padding: 20px; }
.trust-card strong, .trust-card span, .trust-card a { display: block; }
.trust-card span { margin-top: 10px; color: var(--muted); }
.trust-card a { margin-top: 16px; color: var(--blue); font-weight: 900; }

.contact { padding-bottom: 88px; }
.contact-info, .request-card { padding: 26px; }
dl { display: grid; gap: 16px; margin: 24px 0 0; }
dt { color: var(--muted); font-size: 13px; font-weight: 900; }
dd { margin: 3px 0 0; font-weight: 760; }
.request-card { display: grid; gap: 14px; }
label span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 13px; font-weight: 900; }
select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--sand);
  font: inherit;
}
textarea { resize: vertical; }
.request-card small { color: var(--muted); }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 28px 34px 92px;
  color: rgba(255,255,255,.72);
  background: var(--deep);
}
.site-footer a { color: var(--white); font-weight: 900; }
.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(6,63,93,.96);
  box-shadow: var(--shadow);
}
.mobile-bar a { flex: 1; padding: 12px 8px; border-radius: 8px; color: var(--white); background: var(--blue); text-align: center; font-weight: 900; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 11px 16px; }
  nav { display: none; }
  .hero, .path-layout, .proof, .contact { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: 56px 18px 42px; }
  h1 { font-size: clamp(38px, 3.5rem, 58px); }
  h2 { font-size: clamp(28px, 2.5rem, 38px); }
  .quick-actions { display: grid; margin-top: 0; padding-top: 16px; }
  .panel-grid { grid-template-columns: 1fr; }
  .media-band { grid-template-columns: 1fr; }
  .media-band img { height: 230px; }
  .service-grid, .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { padding-bottom: 68px; }
  .brand img { width: 108px; }
  .brand small, .header-call { display: none; }
  .hero { padding-top: 38px; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions, .panel-actions { display: grid; }
  .button { width: 100%; }
  .hero-card img { min-height: 210px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-proof span { min-width: 0; padding: 11px; }
  .hero-proof strong { font-size: 20px; }
  .section { padding-top: 62px; }
  .path-panel, .contact-info, .request-card { padding: 20px; }
  .service-grid, .trust { grid-template-columns: 1fr; }
  .service, .trust-card { min-height: 0; }
  .site-footer { display: grid; padding: 26px 18px 94px; }
  .mobile-bar { display: flex; }
}
