:root {
  --ink: #001b4a;
  --muted: #6f7785;
  --line: #d8dde6;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --brand: #002a6e;
  --navy: #001b4a;
  --accent: #2f65b8;
  --mist: #eef2f7;
  --shadow: 0 24px 70px rgba(0, 27, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(246, 248, 251, 0.92);
  border-bottom: 1px solid rgba(216, 221, 230, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

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

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover,
.header-action:hover,
.email-link:hover {
  color: var(--accent);
}

.header-action {
  color: var(--brand);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  min-height: calc(100vh - 74px);
  padding: clamp(48px, 7vw, 94px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(0, 42, 110, 0.11), transparent 40%),
    linear-gradient(320deg, rgba(111, 119, 133, 0.16), transparent 42%),
    var(--paper);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

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

.trust-row span {
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand);
  background: transparent;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: clamp(18px, 3vw, 34px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(180deg, var(--brand), var(--navy));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  gap: 8px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid div {
  min-height: 132px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.metric-grid strong {
  display: block;
  margin-bottom: 34px;
  color: #dce8ff;
  font-size: 1.7rem;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.intro {
  background: var(--navy);
}

.intro p {
  max-width: 1040px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.16;
  font-weight: 700;
}

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

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 260px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card p,
.proof-grid p,
.steps p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.proof {
  background: var(--mist);
}

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

.proof-grid article {
  padding: 26px 0 0;
  border-top: 2px solid var(--line);
}

.proof-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--brand);
  font-weight: 800;
}

.proof-action {
  margin-top: 34px;
}

.process {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 22px;
  border-top: 2px solid var(--line);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.email-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 380px;
  }

  .services,
  .proof-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer {
    flex-direction: column;
  }

  .site-header {
    align-items: center;
    gap: 14px;
  }

  .header-action {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
