:root {
  --bg: #f7f3eb;
  --surface: #ffffff;
  --surface-soft: #efe8dc;
  --text: #161616;
  --muted: #6f6a61;
  --line: rgba(22, 22, 22, 0.12);
  --accent: #275f9b;
  --accent-dark: #173d66;
  --dark: #111111;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.10);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(247, 243, 235, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 116px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }

.section { padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 96px); }
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 95, 155, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}
h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h3 { margin-bottom: 12px; font-size: 23px; letter-spacing: -0.025em; }
.lead { max-width: 690px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.btn.primary { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn.secondary { background: rgba(255,255,255,0.48); color: var(--text); }
.btn:hover { transform: translateY(-1px); }

.hero-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card img { width: min(320px, 80%); margin: 0 auto 28px; }
.hero-card p { margin: 0; color: var(--muted); font-size: 17px; }

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 7vw, 110px);
  background: var(--dark);
  color: #fff;
}
.split .eyebrow { color: #91b8df; }
.text-block { color: rgba(255,255,255,0.76); font-size: clamp(18px, 1.8vw, 22px); }
.text-block p:last-child { margin-bottom: 0; }

.section-head { margin-bottom: 42px; }
.centered { text-align: center; display: grid; justify-items: center; }
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.06);
}
.card span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.card p { color: var(--muted); margin-bottom: 0; }

.cases { background: var(--surface-soft); }
.case-list { display: grid; border-top: 1px solid var(--line); }
.case-list div {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.case-list strong { font-size: 20px; }
.case-list span { color: var(--muted); font-size: 18px; }

.clients { background: #fff; }
.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}
.logos img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.82;
}
.logos img:hover { filter: grayscale(0); opacity: 1; }

.contact {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}
.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-card a { color: #bcd8f2; }
.contact-card .note { color: rgba(255,255,255,0.68); margin-bottom: 0; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer img { width: 92px; }
.footer p { margin: 0; }

@media (max-width: 1020px) {
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { min-height: auto; }
}

@media (max-width: 720px) {
  .site-header { position: static; align-items: flex-start; }
  .brand img { width: 94px; }
  .nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; font-size: 13px; }
  .section { padding: 64px 18px; }
  .hero { padding-top: 48px; }
  .cards, .logos { grid-template-columns: 1fr; }
  .case-list div { grid-template-columns: 1fr; gap: 6px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
