:root {
  --blue: #276da9;
  --blue-dark: #174d7d;
  --green: #3f8f6b;
  --ink: #18232d;
  --muted: #596876;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f3f7f9;
  --warm: #b98d5b;
  --shadow: 0 22px 55px rgba(18, 39, 58, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(39, 109, 169, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  text-decoration: none;
  color: var(--blue);
  line-height: 0.85;
}

.brand-main {
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-main span {
  font-size: 0.58em;
}

.brand-company {
  padding-bottom: 4px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-dark);
  border-color: var(--green);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background: #16384f;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-ac96.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 35, 52, 0.92) 0%, rgba(18, 54, 78, 0.74) 42%, rgba(18, 54, 78, 0.18) 100%),
    linear-gradient(0deg, rgba(14, 35, 52, 0.34), rgba(14, 35, 52, 0.12));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bde6cc;
}

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

h1 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.17rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

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

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.intro-band {
  padding: 18px clamp(18px, 5vw, 68px);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  border-bottom: 3px solid var(--warm);
}

.section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 68px);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 100%;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 39, 58, 0.06);
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
  background: #eaf3f8;
  border: 1px solid #d1e2ec;
  border-radius: 8px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

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

.process {
  padding: clamp(66px, 9vw, 104px) clamp(18px, 5vw, 68px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(23, 77, 125, 0.98), rgba(26, 91, 100, 0.96)),
    #174d7d;
}

.process .eyebrow {
  color: #bde6cc;
}

.process-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.steps article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: #bde6cc;
  font-weight: 800;
}

.steps p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 68px);
  background: #f8fafb;
}

.contact-copy,
.contact-panel {
  width: min(100%, 580px);
}

.contact-copy {
  justify-self: end;
}

.contact-copy p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: clamp(24px, 4vw, 34px);
  font-style: normal;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  margin-bottom: 4px;
}

.contact-panel a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.privacy-section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 68px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.privacy-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

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

.privacy-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.privacy-content article {
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.privacy-content p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.privacy-content a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.privacy-page {
  background: #f8fafb;
}

.privacy-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.privacy-page-section {
  min-height: calc(100svh - 76px);
  border-top: 0;
}

.privacy-page-section .privacy-inner {
  width: min(1180px, 100%);
}

.privacy-page-section .privacy-heading {
  max-width: 840px;
}

.privacy-content h2 {
  font-size: 1.18rem;
  line-height: 1.28;
}

.close-button,
.close-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.close-button {
  color: #ffffff;
  background: var(--blue-dark);
}

.close-button svg {
  width: 18px;
  height: 18px;
}

.privacy-close-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.close-button-secondary {
  border-color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(18px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.82);
  background: #142838;
}

.site-footer div {
  max-width: 880px;
}

.site-footer strong,
.site-footer span {
  color: #ffffff;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  font-size: 0.94rem;
  font-weight: 800;
}

.footer-links a {
  color: #ffffff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 940px) {
  .intro-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .process-inner,
  .contact-section,
  .privacy-content {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-self: start;
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    margin: 0 auto;
    padding: 64px 0 74px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(14, 35, 52, 0.94), rgba(18, 54, 78, 0.72)),
      linear-gradient(0deg, rgba(14, 35, 52, 0.44), rgba(14, 35, 52, 0.18));
  }

  .button {
    width: 100%;
  }

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

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .privacy-topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2.45rem;
  }

  .service-card,
  .steps article,
  .contact-panel,
  .privacy-content article {
    padding: 20px;
  }
}
