:root {
  --navy-950: #061f3f;
  --navy-900: #082a52;
  --graphite-700: #5f6265;
  --green-950: #082419;
  --green-850: #0d3a27;
  --green-700: #147a4a;
  --green-500: #1ca465;
  --orange-600: #f47b20;
  --orange-700: #d76012;
  --orange-100: #fff0e2;
  --ink: #102236;
  --muted: #667077;
  --line: #dce3e6;
  --paper: #ffffff;
  --header-paper: #fbfcf8;
  --soft: #f6f8f2;
  --leaf: #65bd5d;
  --shadow: 0 22px 60px rgba(8, 36, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-600);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 0 clamp(18px, 4vw, 58px);
  color: var(--navy-950);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid rgba(8, 42, 82, 0.12);
  box-shadow: 0 14px 34px rgba(6, 31, 63, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  padding: 0;
  font-weight: 800;
  letter-spacing: 0;
  background: transparent;
}

.brand::before {
  display: none;
}

.brand-logo {
  width: clamp(224px, 18vw, 292px);
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9))
    drop-shadow(0 8px 14px rgba(6, 31, 63, 0.18));
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--orange-700);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
  border-radius: 4px;
  white-space: nowrap;
}

.header-action {
  color: var(--navy-950);
  background: var(--orange-600);
  box-shadow: 0 12px 28px rgba(244, 123, 32, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-950);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 168px clamp(20px, 6vw, 92px) 84px;
  color: white;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(8, 36, 25, 0.99) 0%, rgba(8, 36, 25, 0.92) 40%, rgba(8, 36, 25, 0.34) 74%),
    linear-gradient(0deg, rgba(8, 36, 25, 0.4), rgba(244, 123, 32, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -1px;
  width: 58%;
  height: 150px;
  background: var(--orange-600);
  transform: skewX(-28deg);
  transform-origin: bottom right;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 10%;
  top: 82px;
  width: 22%;
  height: 100%;
  background: rgba(28, 164, 101, 0.68);
  clip-path: polygon(42% 0, 100% 0, 58% 100%, 0 100%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--orange-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9b45;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.55rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  color: var(--navy-950);
  border: 2px solid var(--orange-600);
  background: var(--orange-600);
}

.btn-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

.btn-secondary {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.quick-panel {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(115px, 1fr));
  gap: 1px;
  width: min(560px, calc(100% - 36px));
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.quick-panel div {
  min-height: 112px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-950);
}

.quick-panel strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.quick-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: white;
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  padding: 76px 0 70px;
  background:
    linear-gradient(118deg, var(--paper) 0 62%, var(--orange-100) 62% 77%, var(--soft) 77% 100%);
}

.intro-grid,
.section-heading,
.assurance-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.intro-grid p:last-child,
.split-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section {
  padding: 88px 0;
  background: var(--soft);
}

.section-heading {
  margin-bottom: 42px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 123, 32, 0.34);
  box-shadow: 0 18px 44px rgba(8, 36, 25, 0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 78px;
  height: 140px;
  background: var(--orange-100);
  clip-path: polygon(42% 0, 100% 0, 58% 100%, 0 100%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--leaf);
  border-radius: 4px;
}

.icon-chip.cyan {
  background: #22b7c9;
}

.icon-chip.blue {
  color: white;
  background: #1677d2;
}

.icon-chip.green {
  background: #23c782;
}

.icon-chip.orange {
  background: var(--orange-600);
}

.icon-chip.shield {
  color: white;
  background: #6b706c;
}

.icon-chip.leaf {
  background: var(--leaf);
}

.service-card p,
.case-grid p,
.assurance-list p,
.faq-answer p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange-700);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 96px clamp(20px, 6vw, 88px);
  background: white;
}

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

.split-copy p {
  margin-top: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--green-950);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  background: var(--green-500);
  clip-path: polygon(14% 48%, 38% 72%, 88% 16%, 100% 28%, 40% 92%, 0 58%);
}

.solution-board {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(130deg, var(--green-950) 0 66%, var(--orange-600) 66% 79%, var(--green-700) 79%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.solution-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 18px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--orange-600);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.solution-row span {
  color: rgba(255, 255, 255, 0.72);
}

.cases-section {
  background: var(--soft);
}

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

.case-grid article,
.assurance-list article {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-grid strong {
  display: block;
  color: var(--green-950);
  font-size: 1.08rem;
}

.case-grid p,
.assurance-list p {
  margin-bottom: 0;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
  background:
    linear-gradient(126deg, var(--green-950) 0 43%, var(--green-700) 43% 68%, var(--orange-600) 68% 100%);
}

.metric {
  min-height: 210px;
  padding: 48px clamp(24px, 5vw, 70px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metric strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.metric span {
  display: block;
  max-width: 260px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.assurance-section {
  background: white;
}

.assurance-list {
  display: grid;
  gap: 18px;
}

.faq-section {
  padding: 90px 0;
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 48px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 70px;
  padding: 0 24px;
  color: var(--green-950);
  font: inherit;
  font-weight: 800;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.faq-item strong {
  color: var(--orange-600);
  font-size: 1.4rem;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  border-bottom: 1px solid var(--line);
}

.faq-answer p {
  margin: 0;
}

.faq-answer.is-open {
  display: block;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  padding: 92px clamp(20px, 6vw, 88px);
  color: white;
  background:
    linear-gradient(112deg, var(--green-950) 0 58%, var(--green-700) 58% 74%, var(--orange-600) 74%);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  border: 0;
  border-radius: 4px;
  background: white;
}

.contact-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.full-field,
.contact-form button,
.privacy-note,
.form-status {
  grid-column: 1 / -1;
}

.contact-form button {
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.privacy-note,
.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 58px);
  color: var(--muted);
  background: var(--header-paper);
  border-top: 1px solid rgba(8, 42, 82, 0.12);
}

.footer-brand {
  color: white;
  min-width: 234px;
  box-shadow: none;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: var(--navy-950);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--green-950);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .header-action {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .split-section,
  .faq-layout,
  .contact-band,
  .assurance-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 46px;
  }

  .hero {
    min-height: auto;
  }

  .site-footer,
  .footer-links {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    min-width: 190px;
    padding: 0;
  }

  .brand::before {
    inset: -9px -12px;
  }

  .brand-logo {
    width: 190px;
    height: auto;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    padding: 128px 20px 48px;
  }

  .hero::after {
    display: none;
  }

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

  .quick-panel,
  .trust-band,
  .service-grid,
  .case-grid,
  .metrics-band,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .quick-panel div {
    min-height: 92px;
  }

  .trust-band span {
    min-height: 58px;
  }

  .metric {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .split-section,
  .contact-band {
    padding: 70px 20px;
  }

  .solution-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 16px 18px;
  }
}

@media (max-width: 390px) {
  .brand {
    min-width: 170px;
  }

  .brand-logo {
    width: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
