:root {
  --batik-blue: #0d1a40;
  --navy: #0d1a40;
  --ink: #17202a;
  --muted: #65717d;
  --line: #d8dee3;
  --paper: #f7f6f2;
  --white: #ffffff;
  --gold: #7d5b1d;
  --cyan: #62b7d8;
  --mist: #eaf1f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--batik-blue);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
}

.brand img {
  display: block;
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.main-nav a:hover {
  border-color: var(--cyan);
}

.lang-link {
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 7px 10px !important;
}

.hero {
  background:
    linear-gradient(120deg, rgba(247, 246, 242, 0.94), rgba(255, 255, 255, 0.98) 48%, rgba(234, 241, 244, 0.86)),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.72fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(72px, 8vh, 96px) 0 clamp(70px, 8vh, 96px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(44px, 6.8vw, 82px);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4.1vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: #33414e;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-ja {
  margin-bottom: 34px;
  color: var(--batik-blue);
  font-size: 18px;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.button.primary {
  color: var(--white);
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
}

.button:hover {
  border-color: var(--gold);
}

.signal-panel {
  border-left: 5px solid var(--gold);
  background: var(--batik-blue);
  color: var(--white);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 54px rgba(16, 47, 78, 0.18);
}

.panel-label {
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.agent-counter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 18px 0;
}

.agent-counter span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.agent-counter strong {
  color: var(--white);
  font-size: clamp(54px, 7vw, 80px);
  line-height: 0.9;
}

.signal-panel p {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.type-grid {
  display: grid;
  gap: 12px;
}

.type-grid div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
}

.type-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
}

.type-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 19px;
}

.belief-band,
.method-section,
.insights-section {
  background: var(--paper);
}

.belief-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  padding: 34px 0;
}

.belief-inner p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

.belief-inner span {
  color: var(--muted);
  font-size: 17px;
}

.services,
.company-section {
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.service-grid,
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.snapshot-card {
  min-height: 250px;
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
}

.service-grid span,
.snapshot-card span,
.insight-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-grid p,
.snapshot-card p,
.method-copy p,
.contact-grid p {
  color: var(--muted);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(72px, 10vw, 110px) 0;
}

.method-copy p {
  font-size: 18px;
}

.snapshot-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
}

.snapshot-card {
  min-height: 220px;
}

.link-card {
  display: block;
}

.link-card:hover {
  background: var(--mist);
}

.snapshot-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.primary-card {
  background: var(--white);
  color: var(--ink);
}

.primary-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
}

.primary-card p {
  color: var(--muted);
  font-size: 18px;
}

.people-table {
  margin-top: 26px;
  border: 1px solid var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.55fr 0.65fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row span,
.table-row strong {
  display: block;
  background: var(--white);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 14px;
  min-width: 0;
}

.table-head span {
  color: var(--white);
  background: var(--batik-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-row strong {
  color: var(--navy);
}

.insights-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  padding: clamp(72px, 10vw, 106px) 0;
}

.insight-links {
  display: grid;
  gap: 12px;
}

.insight-links a {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 18px 20px;
}

.insight-links a:hover {
  border-color: var(--gold);
}

.insight-links strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.contact-section,
.site-footer {
  background: var(--batik-blue);
  color: var(--white);
}

.contact-grid h2 {
  color: var(--white);
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.light-button {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--batik-blue);
  background: var(--white);
}

.secondary-light {
  color: var(--white);
  background: transparent;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer img {
  width: 230px;
  height: auto;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-grid,
  .belief-inner,
  .method-grid,
  .insights-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .service-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .snapshot-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 184px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .table-row span,
  .table-row strong {
    padding: 12px 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
