:root {
  --ink: #182126;
  --muted: #53616b;
  --line: #dce3e7;
  --paper: #f8faf9;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --amber: #d97706;
  --navy: #152436;
  --soft: #eef4f2;
  --shadow: 0 22px 60px rgba(21, 36, 54, 0.14);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(220, 227, 231, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

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

.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: clamp(68px, 9vw, 132px) clamp(22px, 5vw, 72px) 58px;
  background: linear-gradient(145deg, #f8faf9 0%, #eef4f2 52%, #fbf7ef 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.72rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.25);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button.light {
  color: var(--navy);
  background: var(--white);
}

.hero-media {
  position: relative;
}

.hero-media img,
.spotlight-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px clamp(22px, 5vw, 72px) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 30px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(76px, 9vw, 126px) clamp(22px, 5vw, 72px);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 104px);
}

.text-stack {
  color: var(--muted);
  font-size: 1.06rem;
}

.services,
.values,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.services article,
.values article,
.solution-grid article,
.contact-card,
.contact-form {
  padding: clamp(28px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 36, 54, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 900;
}

.feature-band,
.lead-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin: 0 clamp(22px, 5vw, 72px);
  padding: clamp(42px, 6vw, 72px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.feature-band + .lead-panel,
.lead-panel + .site-footer {
  margin-top: clamp(28px, 4vw, 56px);
}

.lead-panel {
  margin-bottom: clamp(28px, 4vw, 56px);
}

.feature-band p,
.lead-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.feature-band .eyebrow {
  color: #8ee6d8;
}

.page-hero {
  padding: clamp(72px, 9vw, 126px) clamp(22px, 5vw, 72px) clamp(44px, 6vw, 78px);
  background: linear-gradient(150deg, #f8faf9 0%, #eef4f2 62%, #fff7e8 100%);
}

.page-hero.compact {
  padding-bottom: 28px;
}

.page-hero h1 {
  max-width: 1030px;
  font-size: clamp(2.15rem, 4.3vw, 4.6rem);
}

.page-hero .lead {
  max-width: 780px;
}

.solution-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: 40px clamp(22px, 5vw, 72px) clamp(78px, 9vw, 126px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--teal-dark);
  background: var(--soft);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  padding: 40px clamp(22px, 5vw, 72px) clamp(80px, 9vw, 126px);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--navy);
  font-weight: 800;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

.submit {
  width: fit-content;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-page {
  max-width: 880px;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.4rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #111b25;
}

.site-footer a {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-brand {
  color: var(--white);
  font-size: 1.34rem;
  margin-bottom: 14px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(680px, calc(100% - 36px));
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner button {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .split,
  .solution-spotlight,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services,
  .values,
  .solution-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    order: -1;
  }
}

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

  .brand {
    font-size: 1.18rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 28px;
  }

  .hero,
  .page-hero {
    background: var(--paper);
  }

  .services,
  .values,
  .solution-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .lead-panel,
  .site-footer,
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .button,
  .submit {
    width: 100%;
  }
}
