@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/hanken-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #001D51;
  --green: #84BD5F;
  --bg: #F4F4F1;
  --white: #FFFFFF;
  --line: rgba(0,29,81,0.12);
  --muted: rgba(0,29,81,0.66);
  --label: rgba(0,29,81,0.5);
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: Aptos, 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--green); }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--green); color: var(--navy); }
h1, h2, h3 { margin: 0; }
p { margin: 0; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.h2 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; text-wrap: balance; }
.lead { font-size: 18px; line-height: 1.55; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  background: var(--navy); color: #fff;
  padding: 16px 28px; border-radius: 2px;
  border: none; cursor: pointer; font-family: inherit;
}
.btn:hover { color: #fff; opacity: 0.92; }
.btn-green { background: var(--green); color: var(--navy); }
.btn-green:hover { color: var(--navy); }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,244,241,0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(0,29,81,0.1);
}
.header-inner {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: space-between; gap: 12px 24px;
  padding: 16px 32px; max-width: 1240px; margin: 0 auto;
}
.header-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.header-logo img { height: 40px; width: auto; }
header nav { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 30px; font-size: 15px; font-weight: 500; }
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-btn {
  cursor: pointer; font-family: inherit; font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; color: var(--navy); background: transparent;
  border: 1px solid rgba(0,29,81,0.28); border-radius: 2px; padding: 8px 12px;
}
.header-cta { font-weight: 700; font-size: 14px; background: var(--navy); color: #fff; padding: 11px 20px; border-radius: 2px; }
.header-cta:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); align-items: stretch; min-height: min(76vh, 720px); max-width: 1240px; margin: 0 auto; }
.hero-copy { padding: 88px 40px 88px 32px; display: flex; flex-direction: column; justify-content: center; }
.hero-copy .btn { align-self: flex-start; }
.hero-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow span { width: 28px; height: 2px; background: var(--green); display: inline-block; }
.hero-eyebrow em { font-style: normal; }
.hero-title { font-size: clamp(34px, 4.6vw, 60px); font-weight: 800; line-height: 1.03; letter-spacing: -0.025em; margin-bottom: 24px; text-wrap: balance; }
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--muted); max-width: 48ch; margin-bottom: 36px; }
.hero-img { position: relative; background: #E6E6E1; border-left: 1px solid rgba(0,29,81,0.08); min-height: 320px; overflow: hidden; }
.hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Credibility ---------- */
.cred { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cred-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 44px; padding: 34px 32px; max-width: 1240px; margin: 0 auto; }
.cred-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { font-weight: 700; font-size: 15px; color: var(--navy); border: 1px solid rgba(0,29,81,0.18); padding: 8px 16px; border-radius: 2px; }
.cred-div { height: 22px; width: 1px; background: rgba(0,29,81,0.15); }
.inds { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.inds span.txt { font-size: 14px; color: rgba(0,29,81,0.72); }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; padding: 64px 32px; max-width: 1240px; margin: 0 auto; }
.stat-num { font-size: clamp(40px, 4.4vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-label { margin-top: 12px; font-size: 15px; line-height: 1.4; color: rgba(255,255,255,0.62); }

/* ---------- Services ---------- */
.head-block { max-width: 720px; margin-bottom: 56px; }
.head-block .eyebrow { color: var(--green); }
.head-block .lead { margin-top: 18px; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: rgba(0,29,81,0.12); border: 1px solid rgba(0,29,81,0.12); }
.svc-card { background: #fff; padding: 36px 32px; display: flex; flex-direction: column; min-height: 240px; }
.svc-no { font-family: var(--mono); font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 22px; }
.svc-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 14px; }
.svc-card p { font-size: 16px; line-height: 1.55; color: var(--muted); }

/* ---------- Differentiator ---------- */
.diff { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 64px; align-items: start; }
.diff-statement { font-size: clamp(20px, 1.9vw, 24px); line-height: 1.55; color: rgba(0,29,81,0.78); border-left: 3px solid var(--green); padding-left: 20px; margin-top: 24px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px 32px; }
.pillar .bar { width: 32px; height: 3px; background: var(--green); margin-bottom: 16px; }
.pillar h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 10px; }
.pillar p { font-size: 17px; line-height: 1.55; color: rgba(0,29,81,0.7); }

/* ---------- Methodology ---------- */
.phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.phase { border-top: 2px solid var(--navy); padding-top: 22px; }
.phase .no { font-family: var(--mono); font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 14px; }
.phase h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.phase p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- Cases ---------- */
.cases { background: var(--white); border-top: 1px solid var(--line); }
.cases-note { font-size: 15px; line-height: 1.5; color: rgba(0,29,81,0.55); margin-top: 12px; }
.case-list { display: flex; flex-direction: column; gap: 28px; }
.case { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border: 1px solid rgba(0,29,81,0.14); overflow: hidden; }
.case-img { position: relative; background: #E6E6E1; min-height: 260px; overflow: hidden; }
.case-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-badge { position: absolute; left: 22px; bottom: 22px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: rgba(244,244,241,0.92); padding: 8px 12px; border-radius: 2px; }
.case-body { padding: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px 36px; align-content: center; }
.case-field .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label); margin-bottom: 10px; }
.case-field p { font-size: 16px; line-height: 1.5; color: rgba(0,29,81,0.82); }
.case-result { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 22px; }
.case-result .k { color: var(--green); }
.case-result p { font-size: 21px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; color: var(--navy); }

/* ---------- Banner ---------- */
.banner { background: var(--navy); color: #fff; }
.banner-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 36px; padding: 88px 32px; max-width: 1240px; margin: 0 auto; }
.banner h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; max-width: 20ch; text-wrap: balance; }
.banner .btn { flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--white); border-bottom: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 72px; align-items: start; }
.contact-lead { margin: 20px 0 40px; max-width: 42ch; }
.email-block { border-top: 1px solid rgba(0,29,81,0.14); padding-top: 24px; }
.email-block .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label); margin-bottom: 8px; }
.email-block a { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
form.jlk { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
form.jlk label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: rgba(0,29,81,0.75); }
form.jlk .full { grid-column: 1 / -1; }
form.jlk input, form.jlk textarea {
  font-family: inherit; font-size: 16px; color: var(--navy);
  background: var(--bg); border: 1px solid rgba(0,29,81,0.18);
  border-radius: 2px; padding: 13px 14px;
}
form.jlk textarea { resize: vertical; }
form.jlk input:focus, form.jlk textarea:focus { outline: none; border-color: var(--green); background: #fff; }
form.jlk button { grid-column: 1 / -1; justify-self: start; }
.form-sent { border: 1px solid var(--green); background: rgba(132,189,95,0.08); padding: 48px 40px; text-align: center; }
.form-sent .check { font-size: 40px; line-height: 1; color: var(--green); margin-bottom: 18px; }
.form-sent p { font-size: 19px; font-weight: 600; color: var(--navy); }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: #fff; }
.footer-inner { padding: 64px 32px 40px; max-width: 1240px; margin: 0 auto; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 16px; }
.footer-brand span { color: var(--green); }
.footer-tag { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.6); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
