:root {
  --bg: #f6f8f7;
  --surface: #ffffff;
  --muted-surface: #edf4f1;
  --text: #10201b;
  --muted: #5d6a65;
  --line: #dbe6e1;
  --brand: #0c6b58;
  --brand-dark: #073f35;
  --accent: #2f7da7;
  --shadow: 0 18px 45px rgba(11, 44, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

img {
  max-width: 100%;
  height: auto;
}

input,
select,
textarea,
button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 125, 167, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 230, 225, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 86px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover {
  background: var(--muted-surface);
  color: var(--brand-dark);
}

.nav .nav-cta {
  background: var(--brand);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b332d;
}

.hero-slides,
.hero-slide,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity;
}

.slide-one {
  animation: heroSlideOne 21s ease-in-out infinite;
}

.slide-two {
  animation: heroSlideTwo 21s ease-in-out infinite;
}

.slide-three {
  animation: heroSlideThree 21s ease-in-out infinite;
}

.hero::after {
  content: "";
  z-index: 1;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.14), transparent 27%),
    linear-gradient(90deg, rgba(8, 43, 36, 0.92), rgba(8, 43, 36, 0.56)),
    linear-gradient(180deg, rgba(8, 43, 36, 0), rgba(8, 43, 36, 0.18));
}

@keyframes heroSlideOne {
  0%,
  26% {
    opacity: 1;
  }

  33%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroSlideTwo {
  0%,
  26% {
    opacity: 0;
  }

  33%,
  59% {
    opacity: 1;
  }

  66%,
  100% {
    opacity: 0;
  }
}

@keyframes heroSlideThree {
  0%,
  59% {
    opacity: 0;
  }

  66%,
  93% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr);
  align-items: center;
  gap: 52px;
  padding: 132px 0 150px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero h1 {
  max-width: 820px;
  margin: 18px 0;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

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

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-submit {
  width: fit-content;
  background: var(--brand);
  color: #fff;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--muted-surface);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 740px;
}

.section-heading.center {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
}

.section-heading p,
.content p,
.card p,
.trust-item p,
.contact-list p {
  color: var(--muted);
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 42px;
}

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

.card,
.trust-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(13, 52, 43, 0.06);
}

.card {
  padding: 24px;
}

.card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  margin-bottom: 22px;
  background: var(--muted-surface);
  color: var(--brand);
  font-weight: 900;
}

.card h3,
.trust-item strong {
  font-size: 1.2rem;
}

.card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 800;
}

.trust-item {
  padding: 22px;
}

.trust-item p {
  margin: 10px 0 0;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 30px;
  align-items: start;
}

.contact-intro {
  max-width: none;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
  white-space: nowrap;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list p {
  border-left: 4px solid var(--brand);
  background: var(--bg);
  margin: 0;
  padding: 14px 16px;
}

.contact-list strong {
  display: block;
  color: var(--text);
}

.contact-list a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a,
.footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-section {
  min-height: 68vh;
  background: var(--surface);
}

.policy-content {
  max-width: 860px;
}

.policy-content h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 1.25rem;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.8;
}

.button-dark {
  margin-top: 18px;
  background: var(--brand);
  color: #fff;
}

.footer {
  background: #f4f4f4;
  color: var(--text);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.footer-logo {
  width: 86px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-copy p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-copy strong {
  color: var(--brand);
}

.footer-copy span {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 900px) {
  .header-inner,
  .nav {
    flex-wrap: wrap;
  }

  .header-inner {
    padding: 12px 0;
  }

  .nav {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid,
  .split,
  .cards,
  .trust-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid {
    align-items: flex-start;
  }

  .footer-copy p {
    display: grid;
    gap: 6px;
  }

  .contact-intro {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .brand small {
    display: none;
  }

  .nav a {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero-grid {
    padding: 96px 0 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide {
    animation: none;
  }

  .slide-one {
    opacity: 1;
  }
}
