:root {
  --navy: #072136;
  --navy-2: #0d2f4c;
  --charcoal: #464646;
  --charcoal-2: #303030;
  --ink: #162331;
  --muted: #66717d;
  --line: #d8dee5;
  --soft: #f5f7f8;
  --white: #ffffff;
  --green: #268719;
  --green-2: #1a5c11;
  --shadow: 0 22px 60px rgba(7, 33, 54, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(38, 135, 25, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 33, 54, 0.97);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 40px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: auto;
  max-width: min(52vw, 220px);
  height: 54px;
  display: block;
  object-fit: contain;
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 650;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--charcoal);
}

.button-primary:hover {
  background: var(--charcoal-2);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(7, 33, 54, 0.16);
}

.button-secondary:hover {
  border-color: rgba(7, 33, 54, 0.34);
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background:
    linear-gradient(90deg, rgba(7, 33, 54, 0.86), rgba(7, 33, 54, 0.68)),
    linear-gradient(180deg, rgba(7, 33, 54, 0.24) 0%, rgba(7, 33, 54, 0.9) 100%),
    url("/assets/img/office-desk-laptop-chair.jpg");
  background-repeat: no-repeat;
  background-position: center, center, center;
  background-size: auto, auto, cover;
  color: var(--white);
}

.hero-inner {
  width: min(100% - 40px, var(--max));
  min-height: calc(100vh - 72px);
  max-height: 820px;
  margin: 0 auto;
  padding: 84px 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: 940px;
  text-align: center;
}

.hero h1,
.page-hero h1 {
  margin: 0 auto;
  max-width: 940px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 820;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.65;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.trust-item {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.trust-item strong {
  display: block;
  font-size: 15px;
}

.trust-item span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 94px 0;
}

.section-compact {
  padding: 70px 0;
}

.band {
  background: var(--soft);
}

.dark-band {
  color: var(--white);
  background: var(--navy);
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.wide {
  max-width: 920px;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.dark-band .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.dark-band .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.insight-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(7, 33, 54, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.insight-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.16;
}

.insight-panel ul {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.insight-panel li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.insight-panel li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

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

.feature-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 4px 54px;
}

.feature-track {
  position: relative;
  max-width: 760px;
  min-height: 330px;
  margin: 0 auto;
}

.feature-carousel:hover .feature-card,
.feature-carousel:focus-within .feature-card {
  animation-play-state: paused;
}

.feature-carousel .feature-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  opacity: 0;
  transform: translateX(24px);
  animation: feature-card-cycle 24s ease-in-out infinite;
}

.feature-carousel .feature-card:nth-child(2) {
  animation-delay: 8s;
}

.feature-carousel .feature-card:nth-child(3) {
  animation-delay: 16s;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 33, 54, 0.14);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(7, 33, 54, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.js .feature-carousel .carousel-control {
  display: grid;
}

.carousel-control:hover {
  background: var(--white);
  border-color: rgba(38, 135, 25, 0.38);
  box-shadow: 0 16px 34px rgba(7, 33, 54, 0.14);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-chevron {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.carousel-control-prev .carousel-chevron {
  transform: rotate(225deg);
  margin-left: 4px;
}

.carousel-control-next .carousel-chevron {
  transform: rotate(45deg);
  margin-right: 4px;
}

.js .feature-carousel.is-interactive .feature-card {
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear 0.28s;
}

.js .feature-carousel.is-interactive[data-direction="prev"] .feature-card {
  transform: translateX(-20px);
}

.js .feature-carousel.is-interactive[data-direction="next"] .feature-card {
  transform: translateX(20px);
}

.js .feature-carousel.is-interactive .feature-card.is-active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

@keyframes feature-card-cycle {
  0% {
    opacity: 0;
    transform: translateX(24px);
  }

  8%,
  30% {
    opacity: 1;
    transform: translateX(0);
  }

  38%,
  100% {
    opacity: 0;
    transform: translateX(-24px);
  }
}

.feature-card,
.step-card,
.price-card,
.form-card,
.security-card {
  background: var(--white);
  border: 1px solid rgba(7, 33, 54, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(7, 33, 54, 0.08);
}

.feature-card {
  padding: 26px;
}

.feature-card h3,
.step-card h3,
.price-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.price-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.15;
}

.feature-card p,
.step-card p,
.price-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

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

.step-card {
  position: relative;
  padding: 22px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 780;
}

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

.pricing-grid.single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.pricing-grid.tiers {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.price-card.highlight {
  border-color: rgba(38, 135, 25, 0.45);
  box-shadow: 0 18px 44px rgba(38, 135, 25, 0.13);
}

.badge {
  width: max-content;
  margin-bottom: 16px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 780;
}

.price {
  margin: 20px 0 4px;
  color: var(--navy);
  font-size: 46px;
  line-height: 1;
  font-weight: 830;
}

.price small {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 650;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--green);
  border-radius: 50%;
}

.price-card .button {
  margin-top: auto;
}

.form-section {
  background: linear-gradient(135deg, var(--charcoal), #303030);
  color: var(--white);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.form-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.form-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.security-list li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.security-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--green);
  border-radius: 50%;
}

.form-card {
  padding: 26px;
  color: var(--ink);
}

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

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid #cfd7df;
  border-radius: 6px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(38, 135, 25, 0.12);
}

.required {
  color: var(--green-2);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 13px;
}

.form-note-required {
  grid-column: 1 / -1;
  margin: -2px 0 0;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
}

.form-status.success {
  color: var(--green-2);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay-1 {
  transition-delay: 0.08s;
}

.js .reveal-delay-2 {
  transition-delay: 0.16s;
}

.js .reveal-delay-3 {
  transition-delay: 0.24s;
}

.page-hero {
  color: var(--white);
  background-color: var(--navy);
  background:
    linear-gradient(90deg, rgba(7, 33, 54, 0.96), rgba(7, 33, 54, 0.74)),
    linear-gradient(180deg, rgba(7, 33, 54, 0.2) 0%, rgba(7, 33, 54, 0.86) 100%),
    url("/assets/img/office-desk-laptop-chair.jpg");
  background-repeat: no-repeat;
  background-position: center, center, center;
  background-size: auto, auto, cover;
}

.page-hero-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 88px 0 76px;
}

.page-hero p {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
}

.timeline-dot {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 820;
}

.timeline-content {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 33, 54, 0.1);
  border-radius: var(--radius);
}

.timeline-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.timeline-content p {
  margin: 9px 0 0;
  color: var(--muted);
}

.security-card {
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.security-card h2 {
  margin: 0;
  font-size: 30px;
}

.security-card p,
.security-card li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #212529;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
}

.footer-inner strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

@media (max-width: 1040px) {
  .hero-inner,
  .split,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    max-height: none;
  }

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

@media (max-width: 820px) {
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    padding: 12px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-inner,
  .container,
  .page-hero-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    min-height: auto;
    padding: 58px 0 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .trust-row,
  .feature-grid,
  .pricing-grid,
  .pricing-grid.tiers,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-track {
    min-height: 390px;
  }

  .feature-carousel {
    padding: 0 48px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .report-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-layout {
    gap: 28px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .feature-carousel {
    padding: 0 0 56px;
  }

  .carousel-control {
    top: auto;
    bottom: 0;
    transform: none;
  }

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

  .carousel-control:active {
    transform: scale(0.98);
  }

  .carousel-control-prev {
    left: calc(50% - 50px);
  }

  .carousel-control-next {
    right: calc(50% - 50px);
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .feature-carousel {
    overflow: visible;
  }

  .js .feature-carousel .carousel-control {
    display: none;
  }

  .feature-track {
    width: auto;
    display: grid;
    animation: none;
    min-height: 0;
  }

  .feature-carousel .feature-card {
    position: static;
    opacity: 1;
    transform: none;
    animation: none;
  }
}
