:root {
  --ink: #17324d;
  --muted: #5f6f7e;
  --blue: #2367a8;
  --teal: #0f8f8a;
  --green: #5f9f57;
  --mist: #eff7f6;
  --paper: #ffffff;
  --line: #d9e4e8;
  --warm: #f8f3ea;
  --shadow: 0 18px 50px rgba(23, 50, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

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

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 78vh;
  padding: clamp(56px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(239, 247, 246, 0.92), rgba(248, 243, 234, 0.86)),
    radial-gradient(circle at 82% 20%, rgba(15, 143, 138, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #e7f2f0);
}

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

.page-hero,
.contact-page {
  padding: clamp(56px, 9vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(239, 247, 246, 0.94), rgba(248, 243, 234, 0.72)),
    linear-gradient(135deg, #ffffff, #e7f2f0);
}

.page-hero {
  min-height: 48vh;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  min-height: 64vh;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.button.full {
  width: 100%;
  margin-top: 12px;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 18px;
  background: var(--mist);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 4px;
  color: var(--muted);
}

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

.intro,
.trust,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro > p,
.trust-list,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card:nth-child(odd) {
  background: var(--mist);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.22;
}

.trust {
  background: var(--warm);
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 50, 77, 0.16);
}

.contact {
  padding: clamp(52px, 8vw, 92px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, #17324d, #0f8f8a);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-card a:not(.button) {
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

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

  .site-header,
  .hero,
  .intro,
  .trust,
  .contact,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .brand img {
    width: 126px;
  }

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

@media (max-width: 520px) {
  .nav {
    font-size: 0.94rem;
  }

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