:root {
  --bg: #f4f7f9;
  --surface: #ffffff;
  --surface-strong: #eef3f6;
  --ink: #0f2231;
  --muted: #617584;
  --line: rgba(15, 34, 49, 0.12);
  --navy: #0d1b2a;
  --navy-soft: #12314a;
  --teal: #117a79;
  --teal-soft: #e1f3f2;
  --orange: #d86b2b;
  --orange-dark: #bd5a1f;
  --shadow: 0 22px 70px rgba(13, 27, 42, 0.13);
  --soft-shadow: 0 14px 42px rgba(13, 27, 42, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(17, 122, 121, 0.1), transparent 25rem),
    linear-gradient(180deg, #fbfdfe 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 34, 49, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: min(330px, 30vw);
  height: auto;
}

.site-footer .brand img {
  width: min(340px, 100%);
}

.site-footer .brand {
  width: fit-content;
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--navy);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span {
  margin: 4px auto;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 0.54rem 0.64rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: rgba(13, 27, 42, 0.06);
}

.nav-cta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.86rem 1.22rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(216, 107, 43, 0.25);
}

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

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(13, 27, 42, 0.14);
}

.button.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 122, 121, 0.12);
  color: var(--teal);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.hero .eyebrow,
.panel.dark .eyebrow,
.contact-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #f8fbfc;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(18, 49, 74, 0.92)),
    radial-gradient(circle at top right, rgba(17, 122, 121, 0.25), transparent 22rem);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 84%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 2.2rem;
  align-items: start;
}

.hero-copy {
  color: #f8fbfc;
}

.hero-copy h1,
.section-heading h2,
.panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
}

.hero-copy p {
  max-width: 66ch;
  margin: 1.3rem 0 0;
  color: rgba(248, 251, 252, 0.82);
  font-size: 1.08rem;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.hero-stats article {
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
}

.hero-stats span {
  color: rgba(248, 251, 252, 0.72);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  margin-top: 4.6rem;
}

.hero-art,
.image-panel,
.contact-art {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-art {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.photo-art {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 270px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(13, 27, 42, 0.84);
  color: #fff;
  backdrop-filter: blur(16px);
}

.visual-caption strong,
.visual-caption span {
  display: block;
}

.visual-caption span {
  margin-top: 0.2rem;
  color: rgba(248, 251, 252, 0.75);
}

.section {
  padding: 4.4rem 0;
}

.section.compact {
  padding: 3.5rem 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.1rem;
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.section-heading p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
}

.stacked-heading {
  display: block;
}

.stacked-heading p {
  margin-top: 1rem;
}

.trust-grid,
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.category-card,
.serve-card,
.faq-card,
.panel,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.metric-card,
.serve-card,
.process-step {
  padding: 1.35rem;
}

.metric-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.metric-card strong,
.category-card strong,
.serve-card strong,
.process-step strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.metric-card p,
.serve-card p,
.process-step p,
.panel p {
  margin: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  min-height: 230px;
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 122, 121, 0.28);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1.05rem;
}

.category-card span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-section {
  position: relative;
}

.split-grid,
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
}

.panel {
  padding: 2rem;
}

.panel.dark {
  background:
    linear-gradient(160deg, rgba(13, 27, 42, 0.98), rgba(18, 49, 74, 0.96)),
    radial-gradient(circle at top right, rgba(17, 122, 121, 0.2), transparent 22rem);
  color: #fff;
  border: none;
}

.panel.dark p,
.panel.dark li {
  color: rgba(248, 251, 252, 0.77);
}

.feature-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.feature-copy p {
  margin-top: 1rem;
}

.image-panel {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.75rem;
  background: var(--surface);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-panel {
  min-height: 420px;
  padding: 0;
  background: var(--navy);
}

.photo-panel img {
  object-fit: cover;
}

.check-list,
.footer-links {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 2.1rem;
  margin-top: 0.85rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 0.39rem;
  top: 0.48rem;
  width: 0.45rem;
  height: 0.22rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  min-height: 205px;
}

.step-index {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.compact-serve-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: start;
}

.faq-layout a {
  color: var(--teal);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-card {
  overflow: hidden;
  padding: 0;
}

.faq-toggle {
  width: 100%;
  padding: 1.15rem 1.3rem;
  border: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-toggle::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--orange);
  font-size: 1.4rem;
}

.faq-card.open .faq-toggle::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 1.3rem 1.3rem;
}

.faq-answer-inner p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(18, 49, 74, 0.92)),
    radial-gradient(circle at top right, rgba(216, 107, 43, 0.16), transparent 20rem);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  max-width: 14ch;
  margin-top: 1rem;
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
}

.contact-copy p {
  max-width: 62ch;
  color: rgba(248, 251, 252, 0.78);
}

.contact-art {
  width: 100%;
  background: #fff;
}

.site-footer {
  padding: 3rem 0;
  background: #08131f;
  color: rgba(248, 251, 252, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.9fr;
  gap: 1.5rem;
}

.site-footer p {
  max-width: 44ch;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 0;
}

.footer-links li + li {
  margin-top: 0.75rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 110px;
  }

  .brand img {
    width: min(330px, 34vw);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .contact-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid,
  .serve-grid,
  .footer-grid,
  .process-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 94px;
  }

  .brand img {
    width: min(300px, 68vw);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(15, 34, 49, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.82rem 1rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-stats,
  .cards-grid,
  .trust-grid,
  .serve-grid,
  .compact-serve-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .visual-caption {
    position: static;
    margin-top: 0.8rem;
    max-width: none;
  }

  .panel,
  .contact-panel {
    padding: 1.35rem;
  }

  .category-card {
    min-height: auto;
  }
}
