@import url("tokens.css");

html:not(:has(body.modal-open)),
body:not(.modal-open) {
  overflow-x: clip;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.6;
}

.container {
  padding-inline: var(--page-gutter);
}


img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: var(--z-tooltip);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-ink);
  color: var(--color-button-ink);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* —— Header —— */

.site-header {
  padding-block: var(--space-lg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 44px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  display: block;
  width: 200px;
  height: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(3.5);
}

.logo:hover,
.logo.is-hover {
  opacity: 0.86;
}

.logo:active,
.logo.is-active {
  opacity: 0.72;
}

.logo[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
}

.nav-panel {
  --bs-offcanvas-width: min(320px, 88vw);
  --bs-offcanvas-bg: var(--color-paper-2);
  --bs-offcanvas-color: var(--color-ink);
  --bs-offcanvas-border-color: var(--color-rule);
  --bs-offcanvas-zindex: 1055;
  z-index: var(--bs-offcanvas-zindex);
}

.nav-panel .offcanvas-header {
  padding: var(--space-md) var(--space-lg);
  border-bottom: var(--rule);
}

.nav-panel .offcanvas-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}

.nav-panel .offcanvas-body {
  padding: var(--space-md);
}

.site-nav {
  position: relative;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  min-height: 44px;
  padding: var(--space-2xs) var(--space-xs);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-nav);
  line-height: 1.2;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.is-hover {
  color: var(--color-ink);
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
}

.nav-link:active,
.nav-link.is-active-press {
  transform: translateY(1px);
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--color-accent);
}

.nav-link:disabled,
.nav-link[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.site-nav .dropdown-toggle::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  margin-bottom: 2px;
  vertical-align: middle;
  border: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--dur-short) var(--ease-out);
}

.site-nav .dropdown-toggle[aria-expanded="true"]::after,
.site-nav .nav-dropdown.is-hover .dropdown-toggle::after {
  transform: rotate(225deg);
  margin-bottom: -1px;
}

.site-nav .nav-dropdown-menu {
  z-index: var(--z-dropdown);
  min-width: 220px;
  margin-top: 0;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.site-nav .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 18px;
  left: 18px;
  height: 10px;
}

.site-nav .nav-dropdown-divider {
  margin: 8px 6px;
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.site-nav .nav-dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 10px 14px 10px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition:
    background-color var(--dur-short) var(--ease-out),
    color var(--dur-short) var(--ease-out);
}

.site-nav .nav-dropdown-item::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 6px;
  width: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background-color var(--dur-short) var(--ease-out);
}

.site-nav .nav-dropdown-item:hover,
.site-nav .nav-dropdown-item:focus,
.site-nav .nav-dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-nav .nav-dropdown-item:hover::before,
.site-nav .nav-dropdown-item:focus::before,
.site-nav .nav-dropdown-item:focus-visible::before,
.site-nav .nav-dropdown-item.is-active::before,
.site-nav .nav-dropdown-item[aria-current="page"]::before {
  background: rgba(255, 255, 255, 0.55);
}

.site-nav .nav-dropdown-item.is-active,
.site-nav .nav-dropdown-item[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
}

.site-nav .nav-dropdown-item--all {
  font-weight: 600;
  color: #fff;
}

/* —— Hero —— */

.hero-section {
  padding-block: 90px;
}

.hero-container {
  background: var(--gradient-hero);
  border-radius: clamp(20px, 3vw, var(--radius-hero));
  padding-block: clamp(28px, 5vw, 64px);
  padding-left: clamp(24px, 4vw, 32px);
  padding-right: clamp(20px, 4vw, 32px);
  overflow: clip;
}


.hero-grid {
  align-items: center;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  animation: reveal var(--dur-long) var(--ease-out) both;
}

.hero-heading {
  margin: 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw + 10px, var(--text-hero));
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-ink);
  overflow-wrap: break-word;
  min-width: 0;
  max-width: 577px;
}

.hero-para {
  margin: 0;
  max-width: 54ch;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-hero-body);
  line-height: 1.65;
  color: var(--color-ink);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
  width: 100%;
}

.hero-visual {
  min-width: 0;
  display: grid;
  place-items: center;
  animation: reveal var(--dur-long) var(--ease-out) both;
  animation-delay: 80ms;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 576px;
  height: auto;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 44px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-hero-btn);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out),
    opacity var(--dur-short) var(--ease-out);
}

.btn-hero--light {
  background: var(--color-ink);
  color: var(--color-button-ink);
  border-color: var(--color-ink);
}

.btn-hero--dark {
  background: var(--color-paper);
  color: var(--color-ink);
  border-color: var(--color-paper);
}


.btn-hero:active,
.btn-hero.is-active {
  transform: translateY(1px);
}

.btn-hero:disabled,
.btn-hero[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.btn-hero[data-state="loading"] {
  cursor: progress;
  opacity: 0.72;
}

.btn-hero[data-state="error"] {
  border-color: var(--color-danger);
}

.btn-hero[data-state="success"] {
  border-color: var(--color-success);
}


/* —— Trust bar —— */

.trust-section {
  padding-block: 90px;
}

.trust-container {
  background: #1d3e66;
  border-radius: clamp(16px, 2.5vw, 24px);
  padding-block: clamp(20px, 3vw, 32px);
  padding-inline: clamp(20px, 4vw, 44px);
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.trust-icon {
  display: block;
  flex-shrink: 0;
  width: 62px;
  height: 57px;
  object-fit: contain;
}

.trust-copy {
  min-width: 0;
}

.trust-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  color: #000f22;
}

.trust-para {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}


/* —— About —— */

.about-section {
  padding-block: 90px;
}

.about-grid {
  align-items: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.about-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27.74px;
  font-weight: 700;
  line-height: 32px;
  color: #23a455;
}

.about-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw + 13px, 50px);
  line-height: 1.12;
  color: #fff;
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  width: 100%;
}

.about-inset {
  margin: 0;
  width: min(100%, 204px);
  flex-shrink: 0;
}

.about-inset img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.about-intro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  min-width: 0;
}

.about-para {
  margin: 0;
  padding-right: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17.75px;
  line-height: 23px;
  color: #fff;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border: 1px solid #23a455;
  border-radius: 25px;
  background: #23a455;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}


.btn-about:active {
  transform: translateY(1px);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.about-stat-label {
  margin: 0;
  max-width: 152px;
  font-family: var(--font-body);
  font-size: 19.97px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}

.about-visual {
  display: grid;
  place-items: center;
}

.about-visual-image {
  display: block;
  width: 100%;
  max-width: 448px;
  height: auto;
  border-radius: clamp(20px, 3vw, 32px);
}


/* —— Services —— */

.services-section {
  padding-block: 90px;
  background: #07192f;
}

.services-header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.services-heading {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw + 8px, 45px);
  line-height: 1.2;
  color: #fff;
}

.services-lede {
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
}

.services-slider,
.features-slider {
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.services-slider-nav,
.features-slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.services-slider-btn,
.features-slider-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    opacity var(--dur-short) var(--ease-out);
}

.services-slider-btn:hover,
.services-slider-btn:focus-visible,
.features-slider-btn:hover,
.features-slider-btn:focus-visible {
  background: rgba(36, 162, 85, 0.25);
  border-color: #24a255;
}

.services-slider-btn:disabled,
.features-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.services-slider-dots,
.features-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.services-slider-dot,
.features-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    transform var(--dur-short) var(--ease-out);
}

.services-slider-dot.is-active,
.features-slider-dot.is-active {
  background: #24a255;
  transform: scale(1.25);
}

.service-card {
  position: relative;
  z-index: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 28px 61px 24px 24px;
  background: #515e6d;
  border: 2px solid #fff;
  border-radius: 20px;
  box-shadow:
    0 0 0 8px #07192f,
    0 0 0 10px #fff;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    box-shadow var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -12px;
  background: #24a255;
  filter: blur(12.77px);
  border-radius: 17.5583px;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity var(--dur-short) var(--ease-out);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-icon {
  display: block;
  width: auto;
  height: 72px;
  margin-bottom: 14px;
  object-fit: contain;
}

.service-card-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 21.32px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
}

.service-card-text {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
  flex-grow: 1;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 22px;
  border: 1px solid #23a455;
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    color var(--dur-short) var(--ease-out);
}

.service-card:hover,
.service-card:focus-within {
  z-index: 1;
  background: #24a255;
  border-color: #fff;
  box-shadow:
    0 0 0 8px #07192f,
    0 0 0 10px #fff;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}


.service-card:hover .btn-service,
.service-card:focus-within .btn-service {
  background: #fff;
  border-color: #fff;
  color: #000f22;
}


/* —— CTA banner —— */

.cta-section {
  padding-block: 90px;
}

.cta-banner {
  background: linear-gradient(257.38deg, rgba(217, 217, 217, 0) 28.21%, #23a455 85.24%);
  border-radius: 17px;
  padding-block: clamp(28px, 4vw, 52px);
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(20px, 3vw, 32px);
  overflow: clip;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  min-width: 0;
}

.cta-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw + 10px, 45px);
  line-height: 1.15;
  color: #fff;
}

.cta-para {
  margin: 0;
  max-width: 48ch;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  color: #fff;
}

.cta-visual {
  display: grid;
  place-items: center;
}

.cta-image {
  display: block;
  width: 100%;
  max-width: 544px;
  height: auto;
  transform: scale(1.15);
  transform-origin: center center;
}


/* —— Features —— */

.features-section {
  padding-block: 90px;
  background-color: #000f22;
}

.features-header {
  max-width: 78%;
  margin: 0 auto 56px;
  text-align: center;
}

.features-heading {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2;
  color: #fff;
}

.features-lede {
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px 24px;
  padding-top: 52px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 16px 24px 28px;
  overflow: visible;
  background: #f3f3f3;
  border-radius: 22px;
  text-align: center;
}

.feature-card-icon {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: -30px 0 22px;
  padding: 0;
  border-radius: 50%;
  background: #000f22;
  box-shadow: 0 0 0 10px #000f22;
  flex-shrink: 0;
}

.feature-card-icon img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.feature-card-title {
  margin: 0 0 12px;
  width: 100%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #000f22;
}

.feature-card-text {
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  color: #5c5c5c;
}


/* —— Stories —— */

.stories-section {
  padding-block: 90px;
}

.stories-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.stories-heading {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw + 10px, 45px);
  line-height: 1.2;
  color: #fff;
}

.stories-para {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  color: #fff;
}

.stories-frame {
  margin: 0;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 24px;
}

.stories-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.btn-stories {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 12px 30px;
  border: 1px solid #23a455;
  border-radius: var(--radius-pill);
  background: #23a455;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}


.btn-stories:active {
  transform: translateY(1px);
}


/* —— Newsletter —— */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Bot trap — hidden from users + most autofill */
.hp-trap {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.newsletter-section {
  padding-block: 90px;
  background: #07192f;
}

.newsletter-grid {
  align-items: stretch;
}

.newsletter-grid > [class*="col-"] {
  display: flex;
}

.newsletter-intro,
.newsletter-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.newsletter-copy {
  justify-content: center;
}

.newsletter-kicker {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: 27.74px;
  font-weight: 700;
  line-height: 32px;
  color: #23a455;
}

.newsletter-heading {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw + 10px, 45px);
  line-height: 1.2;
  color: #fff;
}

.newsletter-visual {
  margin: 0;
}

.newsletter-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.newsletter-para {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
}

.newsletter-para + .newsletter-para {
  margin-top: 12px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  width: 100%;
  margin-top: var(--space-lg);
}

.newsletter-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  padding: 20px 0 20px 30px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #000f22;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color-scheme: light;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.newsletter-input::placeholder {
  color: #9a8b80;
  font-weight: 500;
}

.newsletter-input:focus-visible {
  outline-color: var(--color-focus);
}

.newsletter-input.is-invalid {
  outline-color: var(--color-danger);
}

.btn-newsletter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  padding: 12px 30px;
  border: 1px solid #23a455;
  border-radius: var(--radius-pill);
  background: #23a455;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}


.btn-newsletter:active {
  transform: translateY(1px);
}


/* —— Get in touch —— */

.touch-section {
  padding-block: 90px;
}

.touch-grid > [class*="col-"] {
  display: flex;
}

.touch-copy {
  width: 100%;
}

.touch-title {
  margin: 0 0 var(--space-md);
  padding-left: 14px;
  border-left: 3px solid #23a455;
}

.touch-kicker {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #23a455;
}

.touch-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw + 8px, 42px);
  line-height: 1.2;
  color: #fff;
}

.touch-lede {
  margin: 0 0 var(--space-xl);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
}

.touch-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg) var(--space-xl);
  margin: 0;
}

.touch-detail {
  min-width: 0;
}

.touch-detail dt {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18.12px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
}

.touch-detail dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  color: #fff;
}

.touch-detail a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.touch-detail a:hover {
  opacity: 0.82;
}

.touch-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.touch-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.touch-social img,
.touch-social svg {
  display: block;
  height: 18px;
  width: auto;
}

.touch-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #23a455;
  border-radius: 10px;
  padding: 70px;
}

.touch-card-heading {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.touch-card-lede {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.touch-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 14px;
  width: 100%;
}

.touch-form input,
.touch-form textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #000f22;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color-scheme: light;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.touch-form input {
  min-height: 48px;
}

.touch-form textarea {
  flex: 1 1 auto;
  min-height: 140px;
  resize: vertical;
}

.touch-form input::placeholder,
.touch-form textarea::placeholder {
  color: #9a8b80;
}

.touch-form input:focus-visible,
.touch-form textarea:focus-visible {
  outline-color: #000f22;
}

.touch-form [aria-invalid="true"] {
  outline-color: var(--color-danger);
}

.btn-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  min-height: 36px;
  margin-top: 6px;
  padding: 8px 32px;
  border: 1px solid #000f22;
  border-radius: var(--radius-pill);
  background: #000f22;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15.3px;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}


.btn-touch:active {
  transform: translateY(1px);
}

.touch-card .form-status {
  margin-bottom: var(--space-md);
  background: color-mix(in srgb, #000f22 18%, #23a455);
  color: #fff;
}


@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Inner pages —— */

.page-hero {
  padding-block: clamp(24px, 4vw, 40px) 0;
}

.page-hero-banner {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  min-height: clamp(180px, 24vw, 260px);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
  border-radius: clamp(20px, 3vw, var(--radius-hero));
  background: #000f22;
  overflow: hidden;
  text-align: center;
}

.page-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 0% 50%, rgba(36, 162, 85, 0.85) 0%, rgba(36, 162, 85, 0.35) 35%, transparent 68%),
    linear-gradient(100deg, rgba(36, 162, 85, 0.55) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

.page-hero-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw + 12px, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #24a255, #3ecf70);
}

.page-hero-banner--service {
  display: block;
  place-items: unset;
  min-height: 0;
  padding: clamp(32px, 4vw, 48px);
  text-align: left;
}

.page-hero-banner--service .page-hero-title {
  font-size: clamp(32px, 3.4vw + 12px, 52px);
}

.page-hero-banner--service .page-hero-title::after {
  margin-left: 0;
  margin-right: 0;
  background: rgba(255, 255, 255, 0.55);
}

.page-hero-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}

.page-hero-service-copy {
  max-width: 34rem;
}

.page-hero-service-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-service-lede {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero-service-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-hero-service-points li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero-service-points li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.page-hero-service-form-card {
  position: relative;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(0, 15, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.page-hero-service-form-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1vw + 14px, 24px);
  line-height: 1.25;
  color: #fff;
}

.page-hero-service-form-lede {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-service-form-card .form-status {
  margin: 0 0 14px;
}

.page-hero-service-form {
  display: grid;
  gap: 12px;
}

.page-hero-service-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-hero-service-form input,
.page-hero-service-form select,
.page-hero-service-form textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 15, 34, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color var(--dur-short) var(--ease-out),
    background-color var(--dur-short) var(--ease-out);
}

.page-hero-service-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.page-hero-service-form select option {
  color: #000f22;
  background: #fff;
}

.page-hero-service-form textarea {
  min-height: 88px;
  resize: vertical;
}

.page-hero-service-form input::placeholder,
.page-hero-service-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.page-hero-service-form input:focus-visible,
.page-hero-service-form select:focus-visible,
.page-hero-service-form textarea:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 15, 34, 0.75);
}

.page-hero-service-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .page-hero-service-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .page-hero-service-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(32px, 4vw, 56px);
  }

  .page-hero-service-submit {
    width: auto;
    justify-self: start;
    min-width: 160px;
  }
}

.page-section {
  padding-block: 90px;
}

.page-copy {
  max-width: 62ch;
}

.page-copy h2 {
  margin: var(--space-2xl) 0 var(--space-md);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy p {
  margin: 0 0 var(--space-md);
  color: var(--color-muted);
}

.page-copy p:last-child {
  margin-bottom: 0;
}

.page-copy .btn-hero {
  margin-top: 8px;
}

/* —— About page —— */

.about-page-story {
  padding-block: 90px;
}

.about-page-story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.about-page-kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #24a255;
}

.about-page-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3vw + 12px, 48px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #fff;
}

.about-page-lede {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 0.8vw + 14px, 20px);
  font-weight: 500;
  line-height: 1.65;
  color: #fff;
}

.about-page-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-muted);
}

.about-page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.about-page-stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 2vw + 20px, 42px);
  font-weight: 700;
  line-height: 1.1;
  color: #24a255;
}

.about-page-stat-label {
  margin: 6px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-muted);
}

.about-page-story-visual {
  display: grid;
  place-items: center;
}

.about-page-story-visual img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
}

.about-page-values {
  padding-block: 20px 90px;
}

.about-page-values-header {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.about-page-values-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.5vw + 12px, 42px);
  line-height: 1.2;
  color: #fff;
}

.about-page-values-lede {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted);
}

.about-page-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-value-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}

.about-value-media {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #000f22;
}

.about-value-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-long) var(--ease-out);
}

.about-value-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px 30px;
  border-top: 3px solid #24a255;
  flex-grow: 1;
}

.about-value-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.2vw + 14px, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.about-value-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-muted);
}

.about-page-cta {
  padding-block: 0 90px;
}

.about-page-cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(36, 162, 85, 0.35) 0%, transparent 60%),
    var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page-cta-heading {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2vw + 14px, 36px);
  line-height: 1.2;
  color: #fff;
}

.about-page-cta-text {
  margin: 0;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  line-height: 1.6;
  color: var(--color-muted);
}

.about-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* —— Individual service pages —— */

.service-page-intro,
.service-page-body,
.service-page-cta {
  padding-block: 90px;
}

.service-page-body {
  padding-block: 0 90px;
}

.service-page-cta {
  padding-block: 0 90px;
}

.service-page-kicker {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.service-page-heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.2vw + 16px, 42px);
  line-height: 1.2;
  color: #fff;
}

.service-page-lede {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: clamp(18px, 0.8vw + 14px, 22px);
  line-height: 1.55;
  color: var(--color-ink);
}

.service-page-text {
  margin: 0 0 28px;
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  line-height: 1.65;
  color: var(--color-muted);
}

.service-page-intro-media,
.service-page-aside-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000f22;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.service-page-intro-media img,
.service-page-aside-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-intro-media {
  aspect-ratio: 16 / 10;
}

.service-page-aside-media {
  aspect-ratio: 3 / 4;
  margin-bottom: 0;
}

.service-page-sections {
  display: grid;
  gap: 18px;
}

.service-page-section-card {
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 18px;
  background: var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page-section-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1vw + 14px, 24px);
  line-height: 1.25;
  color: #fff;
}

.service-page-section-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.65;
  color: var(--color-muted);
}

.service-page-included {
  padding-block: 0 90px;
}

.service-page-included-banner {
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 70% 120% at 0% 0%, rgba(36, 162, 85, 0.22) 0%, transparent 55%),
    var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page-included-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.service-page-included-icon {
  display: block;
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

.service-page-included-copy .service-page-heading {
  margin-bottom: 8px;
}

.service-page-included-lede {
  margin: 0;
  max-width: 48ch;
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.6;
  color: var(--color-muted);
}

.service-page-included-grid {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-page-included-grid li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border-radius: 14px;
  background: rgba(0, 15, 34, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.service-page-included-grid li::before {
  content: "";
  position: absolute;
  top: 1.15em;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.service-page-included-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .service-page-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-page-aside-card {
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 18px;
  background: var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page-aside-icon {
  display: block;
  width: 72px;
  height: auto;
  margin-bottom: 16px;
}

.service-page-aside-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
}

.service-page-points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-page-points li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-muted);
}

.service-page-points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* —— Service page: process + FAQ —— */

.service-page-process,
.service-page-faq {
  padding-block: 0 90px;
}

.service-page-process-header {
  max-width: 720px;
  margin: 0 0 40px;
}

.service-page-process-lede,
.service-page-faq-lede {
  margin: 12px 0 0;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  line-height: 1.6;
  color: var(--color-muted);
}

.service-page-process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-page-process-card {
  position: relative;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 18px;
  background: var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.service-page-process-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-accent);
}

.service-page-process-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.service-page-process-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 0.8vw + 14px, 22px);
  line-height: 1.25;
  color: #fff;
}

.service-page-process-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.65;
  color: var(--color-muted);
}

.service-page-faq-header {
  margin-bottom: 8px;
}

.service-page-faq-accordion {
  display: grid;
  gap: 12px;
}

.service-page-faq-item {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  background: var(--color-paper-2);
  overflow: hidden;
}

.service-page-faq-item:first-of-type {
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
}

.service-page-faq-item:last-of-type {
  border-bottom-left-radius: 16px !important;
  border-bottom-right-radius: 16px !important;
}

.service-page-faq-item + .service-page-faq-item {
  margin-top: 0;
}

.service-page-faq-button {
  padding: 18px 52px 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  line-height: 1.35;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.service-page-faq-button:not(.collapsed) {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.service-page-faq-button:focus {
  box-shadow: none;
}

.service-page-faq-button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: -3px;
}

.service-page-faq-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
  filter: brightness(0) invert(1);
}

.service-page-faq-body {
  padding: 0 22px 20px;
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.65;
  color: var(--color-muted);
}

/* —— Services catalog (inner page) —— */

.services-catalog {
  padding-block: 90px;
}

.services-catalog-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-catalog-lede {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.2vw + 14px, 22px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-muted);
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--dur-short) var(--ease-out),
    background-color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}

.service-detail-media {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: #000f22;
}

.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 25, 46, 0.55) 100%);
  pointer-events: none;
}

.service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-long) var(--ease-out);
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-grow: 1;
  padding: 28px 28px 32px;
  border-top: 3px solid #24a255;
}

.service-detail-icon-img {
  display: block;
  width: auto;
  height: 52px;
  margin-bottom: 2px;
  object-fit: contain;
}

.service-detail-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.5vw + 16px, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.service-detail-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.6vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-muted);
  flex-grow: 1;
}

.btn-service-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px 24px;
  border: 1px solid #24a255;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    color var(--dur-short) var(--ease-out),
    transform var(--dur-micro) var(--ease-out);
}

.btn-service-detail:hover,
.btn-service-detail:focus-visible {
  background: #24a255;
  border-color: #24a255;
  color: #000f22;
}

/* —— Contact form —— */

.contact-page {
  padding-block: 90px;
}

.contact-page-intro {
  margin-bottom: 28px;
}

.contact-page-kicker {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-page-heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2vw + 14px, 40px);
  line-height: 1.2;
  color: #fff;
}

.contact-page-lede {
  margin: 0;
  max-width: 38ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.5vw + 14px, 18px);
  line-height: 1.6;
  color: var(--color-muted);
}

.contact-info-cards {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-info-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-label {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-info-value {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  text-decoration: none;
}

a.contact-info-value:hover {
  opacity: 0.82;
}

.contact-page-note {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(36, 162, 85, 0.12);
  border: 1px solid rgba(36, 162, 85, 0.28);
}

.contact-page-note p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-page-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
    var(--color-paper-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.contact-form-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 1.2vw + 14px, 28px);
  line-height: 1.25;
  color: #fff;
}

.contact-form-lede {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 0;
  max-width: none;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: var(--space-xs);
}

.field label {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 15, 34, 0.55);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.4;
  outline: none;
  transition:
    border-color var(--dur-short) var(--ease-out),
    background-color var(--dur-short) var(--ease-out);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.field select option {
  color: #000f22;
  background: #fff;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.field.is-hover input,
.field.is-hover textarea {
  background: rgba(0, 15, 34, 0.7);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.field.is-focus input,
.field.is-focus textarea {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 15, 34, 0.75);
}

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea,
.field [aria-invalid="true"] {
  border-color: var(--color-danger);
}

.field.is-success input,
.field.is-success select,
.field.is-success textarea {
  border-color: var(--color-success);
}

.field-help,
.field-error {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.field-error {
  color: var(--color-danger);
}

.contact-form-submit {
  justify-self: start;
  min-width: 160px;
  justify-content: center;
}

.contact-page-cta {
  padding-block: 0 90px;
}

.form-status {
  margin: 0 0 var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-accent) 16%, var(--color-paper));
}

.form-status--error {
  background: color-mix(in srgb, var(--color-danger) 16%, var(--color-paper));
}

@media (min-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Footer —— */

.site-footer {
  background: #1d3e66;
  padding-block: 90px 20px;
  border-top: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-wordmark {
  margin: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.footer-logo-img {
  display: block;
  width: 230px;
  height: auto;
  max-width: min(230px, 78vw);
  object-fit: contain;
}

.footer-wordmark:hover,
.footer-wordmark.is-hover {
  opacity: 0.86;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 4px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.footer-link:hover,
.footer-link.is-hover {
  color: #fff;
  opacity: 0.82;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: #fff;
}

.footer-social-link:hover,
.footer-social-link.is-hover {
  opacity: 0.82;
}

.footer-social-icon {
  display: block;
  height: 28px;
  width: auto;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  width: 100%;
  margin-top: 20px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a,
.footer-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-legal a:hover,
.footer-legal a.is-hover {
  color: #fff;
  opacity: 0.82;
}

/* —— Quote modal —— */

.quote-modal .modal-dialog {
  max-width: 920px;
  width: calc(100% - 2.5rem);
  margin: 1.75rem auto;
}

.quote-modal .modal-dialog-centered {
  min-height: calc(100% - 3.5rem);
}

.quote-modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #000f22;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 15, 34, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out);
}

.quote-modal-close:hover,
.quote-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.quote-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.quote-modal-aside {
  padding: clamp(28px, 4vw, 40px);
  padding-right: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(36, 162, 85, 0.45) 0%, transparent 60%),
    linear-gradient(160deg, #062818 0%, #000f22 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-modal-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.quote-modal-aside-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2vw + 14px, 34px);
  line-height: 1.2;
  color: #fff;
}

.quote-modal-aside-text {
  margin: 0 0 22px;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.quote-modal-perks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-modal-perks li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.quote-modal-perks li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24a255;
}

.quote-modal-main {
  padding: clamp(28px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
    var(--color-paper-2);
}

.quote-modal-error {
  margin-bottom: 16px;
}

.quote-modal-form {
  display: grid;
  gap: 14px;
}

.quote-modal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.quote-modal-field {
  display: grid;
  gap: 8px;
}

.quote-modal-field label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.quote-modal-field input,
.quote-modal-field select,
.quote-modal-field textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 15, 34, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color var(--dur-short) var(--ease-out),
    background-color var(--dur-short) var(--ease-out);
}

.quote-modal-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.quote-modal-field select option {
  color: #000f22;
  background: #fff;
}

.quote-modal-field textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-modal-field input::placeholder,
.quote-modal-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.quote-modal-field input:focus-visible,
.quote-modal-field select:focus-visible,
.quote-modal-field textarea:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 15, 34, 0.72);
}

.quote-modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .quote-modal-row {
    grid-template-columns: 1fr 1fr;
  }

  .quote-modal-submit {
    width: auto;
    justify-self: start;
    min-width: 180px;
  }
}

@media (min-width: 992px) {
  .quote-modal-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .quote-modal-aside {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quote-modal-close {
    top: 18px;
    right: 18px;
  }
}

/* —— Legal pages —— */

.legal-page {
  padding-block: 72px 90px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 36px;
}

.legal-updated {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.legal-content > section {
  margin-bottom: 28px;
}

.legal-content h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1vw + 14px, 24px);
  line-height: 1.3;
  color: #fff;
}

.legal-content p,
.legal-content li {
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-muted);
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  opacity: 0.82;
}

.legal-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-contact li {
  padding-left: 0;
}

.legal-contact li + li {
  margin-top: 6px;
}

.legal-contact strong {
  color: #fff;
  font-weight: 600;
}

/* —— Thank you —— */

.thank-you-page {
  padding-block: 48px 96px;
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-kicker {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.thank-you-heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2vw + 20px, 40px);
  line-height: 1.2;
  color: #fff;
}

.thank-you-text {
  margin: 0 auto 28px;
  max-width: 42ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.4vw + 14px, 18px);
  line-height: 1.65;
  color: var(--color-muted);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

