@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --soft: #f6f8fb;
  --soft-2: #eef2f7;
  --ink: #101828;
  --muted: #667085;
  --blue: #17365d;
  --blue-2: #244b7a;
  --gold: #b58a3c;
  --line: #e4e7ec;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(181, 138, 60, 0.62);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 16px;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.anchor-target {
  position: relative;
  top: -86px;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  color: var(--blue);
  font-weight: 800;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 28px rgba(23, 54, 93, 0.16);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  place-items: center;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 0.19em;
}

.nav-links {
  display: flex;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  gap: 28px;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:focus-visible {
  border-radius: 10px;
}

.nav-button {
  border-radius: 999px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  padding: 9px 14px;
}

.hero {
  background:
    radial-gradient(circle at 82% 8%, rgba(181, 138, 60, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  padding: 94px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(40px, 6.6vw, 84px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.hero-description {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  align-items: center;
  padding: 14px 20px;
  transition: 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
}

.trust-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.panel-header {
  display: flex;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
}

.panel-header span {
  color: var(--blue);
  font-weight: 800;
}

.panel-header small {
  color: var(--muted);
  font-weight: 600;
}

.panel-stat {
  display: grid;
  grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 18px;
  padding: 28px 0;
}

.panel-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.panel-stat strong {
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--blue);
  place-items: center;
}

.panel-stat p {
  color: var(--muted);
  font-weight: 600;
}

.company-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid div {
  border-right: 1px solid var(--line);
  padding: 24px;
}

.strip-grid div:last-child {
  border-right: none;
}

.strip-grid span,
.contact-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.strip-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.section {
  padding: 100px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 62px;
}

h2 {
  color: var(--ink);
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.text-stack p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.services {
  background: var(--soft);
}

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

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  transition: 0.22s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 54px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 800;
  place-items: center;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 22px;
}

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

.approach .narrow {
  max-width: 860px;
}

.approach-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.approach-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid var(--line);
  gap: 26px;
  padding: 28px 0;
}

.approach-item span {
  color: var(--gold);
  font-weight: 800;
}

.approach-item h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 22px;
}

.approach-item p {
  max-width: 720px;
  color: var(--muted);
}

.statement {
  background: var(--blue);
  color: var(--white);
  padding: 92px 0;
}

.statement .eyebrow {
  color: #e7c17a;
}

.statement h2 {
  max-width: 970px;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 60px;
}

.contact-intro {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-row {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-of-type {
  border-bottom: none;
}

.contact-row strong,
.contact-row a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.contact-row a {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.future-note {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  padding: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  justify-content: space-between;
  gap: 20px;
}

.legal-page {
  background: var(--soft);
  padding: 72px 0 96px;
}

.legal-card {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 42px;
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 64px);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
}

.legal-card ul {
  margin: 14px 0 0 22px;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid div:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 680px) {
  .menu-toggle {
    display: inline-flex;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .nav-links a {
    width: 100%;
    padding: 4px 0;
  }

  .nav-links .nav-button {
    width: auto;
    padding: 10px 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.legal-nav {
    position: static;
    display: flex;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0;
  }

  .legal-nav a:not(.nav-button) {
    display: none;
  }

  .hero {
    padding: 70px 0 60px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: -0.035em;
  }

  .hero-description,
  .text-stack p {
    font-size: 17px;
  }

  .hero-panel,
  .contact-card {
    border-radius: 22px;
    padding: 24px;
  }

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

  .strip-grid div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .strip-grid div:last-child {
    border-bottom: none;
  }

  .panel-stat,
  .approach-item {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .legal-page {
    padding: 48px 0 72px;
  }

  .legal-card {
    border-radius: 22px;
    padding: 28px;
  }
}

@media (max-width: 420px) {
  .container,
  .navbar {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    max-width: 138px;
    letter-spacing: 0.13em;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .panel-header {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .service-card:hover {
    transform: none;
  }
}
