@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto+Slab:wght@700;800;900&display=swap");

:root {
  --ink: #111827;
  --muted: #657184;
  --teal: #009b8e;
  --teal-dark: #053f3a;
  --teal-deep: #003f3a;
  --panel: rgba(8, 71, 62, 0.72);
  --pale: #edf7f3;
  --soft: #f8faf8;
  --line: #d4dde5;
  --heading: "Roboto Slab", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 135px 0 150px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.brand {
  color: #101010;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #566173;
  font-size: 15px;
  font-weight: 600;
}

.menu-toggle,
.hamburger {
  display: none;
}

.contact-button {
  min-width: 123px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--teal);
  border-radius: 7px;
  font-weight: 700;
}

.hero {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  top: 120px;
  left: 82px;
  width: 940px;
  min-height: 576px;
  padding: 79px 101px 70px;
  color: #fff;
  background: var(--panel);
  border-radius: 14px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: #0aa99c;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
  max-width: 780px;
  margin: 25px 0 36px;
  font-family: var(--heading);
  font-size: 57px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 21px;
  line-height: 1.32;
  font-weight: 400;
}

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

.button {
  width: 230px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}

.button-primary {
  color: #115d58;
  background: #fff;
}

.button-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.fit-section {
  min-height: 825px;
  padding-top: 105px;
  background: var(--pale);
  text-align: center;
}

.fit-section h2 {
  margin: 0 0 51px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
}

.fit-form {
  width: 938px;
  min-height: 526px;
  margin: 0 auto;
  padding: 52px 57px 48px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(0, 85, 77, 0.1);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.fit-form p {
  margin: 0 0 50px;
  color: #5d6675;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
}

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

.fit-form form p,
.fit-form .wpcf7-form p {
  display: contents;
  margin: 0;
}

.fit-form form label,
.fit-form .wpcf7-form label {
  position: relative;
  display: block;
  overflow: hidden;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.fit-form .wpcf7-form-control-wrap {
  display: block;
}

.fit-form form input:not([type="submit"]),
.fit-form .wpcf7-form input:not([type="submit"]) {
  width: 100%;
  height: 51px;
  box-sizing: border-box;
  padding: 0 16px;
  border: 1px solid #b8c8c4;
  border-radius: 7px;
  color: var(--ink);
  background: #f8fcfb;
  font: 700 15px var(--sans);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.fit-form form input::placeholder,
.fit-form .wpcf7-form input::placeholder {
  color: #7a8797;
  opacity: 1;
  font-weight: 700;
}

.fit-form form input:not([type="submit"]):focus,
.fit-form .wpcf7-form input:not([type="submit"]):focus {
  outline: 3px solid rgba(0, 151, 137, 0.18);
  border-color: #009789;
  background: #fff;
}

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

.field-grid input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  border: 1px solid #aeb8c6;
  border-radius: 7px;
  color: var(--ink);
  font: 600 16px var(--sans);
}

.field-grid input::placeholder {
  color: #a3a3a3;
  opacity: 1;
}

.fit-form button {
  width: 100%;
  height: 64px;
  margin-top: 34px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #075d55;
  font: 900 17px var(--sans);
  letter-spacing: 0.04em;
}

.fit-form form input[type="submit"],
.fit-form .wpcf7-submit {
  grid-column: 1 / -1;
  width: 100%;
  height: 64px;
  margin-top: 3px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #075d55;
  font: 900 17px var(--sans);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fit-form form input[type="submit"]:hover,
.fit-form form input[type="submit"]:focus-visible,
.fit-form .wpcf7-submit:hover,
.fit-form .wpcf7-submit:focus-visible {
  background: #009b8e;
  box-shadow: 0 14px 28px rgba(0, 95, 86, 0.18);
  transform: translateY(-1px);
}

.fit-form .wpcf7-spinner {
  display: none;
}

.illustration-band {
  min-height: 557px;
  display: grid;
  grid-template-columns: minmax(360px, 520px) 757px;
  justify-content: center;
  align-items: center;
  gap: 226px;
  padding: 60px 90px;
  background: var(--soft);
}

.illustration-copy {
  align-self: center;
}

.illustration-copy h2 {
  max-width: 520px;
  margin: 21px 0 30px;
  color: #10151f;
  font-family: var(--heading);
  font-size: 43px;
  line-height: 1.02;
  font-weight: 900;
}

.illustration-copy p:not(.section-kicker) {
  max-width: 470px;
  margin: 0;
  color: #5d6775;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.illustration-band img {
  width: 757px;
  height: auto;
  display: block;
  border-radius: 13px;
}

.quote-section {
  padding: 137px 24px 94px;
  text-align: center;
  background: #fff;
}

.quote-section blockquote {
  max-width: 760px;
  margin: 0 auto;
  color: #111;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 500;
}

.quote-section p {
  margin: 9px 0 48px;
  color: #040404;
  font-size: 24px;
  font-weight: 900;
  text-transform: none;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.dots .active {
  background: var(--teal);
}

.image-feature {
  padding: 65px 122px 137px;
  background: #fff;
}

.slider {
  width: 100%;
  max-width: 1672px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 18px;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  min-width: 100%;
  margin: 0;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  background: #edf7f3;
}

.slide img {
  width: 100%;
  height: 791px;
  display: block;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.slider-dots a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9dddf;
}

.slider-dots a:first-child {
  background: var(--teal);
}

.product-path {
  padding: 118px 24px 172px;
  background: linear-gradient(180deg, #edf7f3 0%, #fff 100%);
  text-align: center;
}

.product-path h2,
.trust-section h2 {
  margin: 27px 0 12px;
  color: #050505;
  font-family: var(--heading);
  font-size: 54px;
  line-height: 0.99;
  font-weight: 900;
}

.section-copy {
  margin: 0;
  color: #111;
  font-size: 19px;
  line-height: 1.35;
}

.path-icons {
  width: 520px;
  margin: 58px auto 112px;
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr;
  align-items: center;
  gap: 16px;
}

.path-step {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #778294;
  font-size: 14px;
  font-weight: 700;
}

.path-step p {
  margin: 0;
}

.path-arrow {
  color: #9ca7b5;
  font-size: 22px;
  transform: translateY(-18px);
}

.icon,
.trust-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
}

.icon::before,
.icon::after,
.trust-icon::before,
.trust-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.users-icon::before {
  width: 15px;
  height: 15px;
  top: 19px;
  left: 22px;
  border: 4px solid var(--teal);
  border-radius: 50%;
  background: transparent;
  box-shadow: -15px 6px 0 -7px #fff, -15px 6px 0 -3px var(--teal), 15px 6px 0 -7px #fff, 15px 6px 0 -3px var(--teal);
}

.users-icon::after {
  width: 28px;
  height: 15px;
  left: 18px;
  bottom: 15px;
  border: 4px solid var(--teal);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.target-icon::before {
  inset: 14px;
  border: 4px solid var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 10px var(--teal);
}

.growth-icon::before {
  width: 28px;
  height: 21px;
  left: 17px;
  top: 24px;
  border-left: 5px solid var(--teal);
  border-bottom: 5px solid var(--teal);
  transform: skew(-18deg) rotate(135deg);
  border-radius: 1px;
}

.growth-icon::after {
  width: 13px;
  height: 13px;
  right: 16px;
  top: 18px;
  border-top: 5px solid var(--teal);
  border-right: 5px solid var(--teal);
}

.process-cards {
  width: 1233px;
  max-width: calc(100% - 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
  margin: 0 auto;
  text-align: left;
}

.process-cards article {
  min-height: 256px;
  padding: 39px 32px 32px;
  background: #e7f0ec;
  border-radius: 8px;
}

.process-cards strong {
  display: block;
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 66px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.process-cards h3,
.trust-cards h3 {
  margin: 0 0 22px;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
}

.process-cards p,
.trust-cards p {
  margin: 0;
  color: #697586;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.trust-section {
  min-height: 773px;
  padding: 124px 24px 0;
  background: #f8faf8;
  text-align: center;
}

.trust-section h2 {
  margin-bottom: 78px;
}

.trust-cards {
  width: 1233px;
  max-width: calc(100% - 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
  margin: 0 auto;
  text-align: left;
}

.trust-cards article {
  min-height: 253px;
  padding: 39px 33px 30px;
  background: #fff;
  border: 1px solid #dde4e9;
  border-radius: 8px;
}

.final-cta {
  padding: 112px 24px 118px;
  color: #fff;
  background: linear-gradient(135deg, #004a43 0%, #006d62 58%, #0b9c8d 100%);
  text-align: center;
}

.final-cta .section-kicker {
  color: #9df5e9;
}

.final-cta h2 {
  max-width: 910px;
  margin: 25px auto 22px;
  font-family: var(--heading);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
}

.final-cta p:not(.section-kicker) {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.45;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 38px;
}

.final-cta .button-outline {
  background: rgba(255, 255, 255, 0.08);
}

.trust-icon {
  width: 51px;
  height: 51px;
  margin-bottom: 28px;
  background: #eafff9;
}

.trust-icon.ring::before {
  inset: 14px;
  border: 4px solid var(--teal);
  border-radius: 50%;
}

.dots-icon::before,
.dots-icon::after {
  width: 8px;
  height: 8px;
  top: 22px;
  background: var(--teal);
  border-radius: 50%;
}

.dots-icon::before {
  left: 17px;
}

.dots-icon::after {
  right: 17px;
}

.trust-icon.users-icon::before {
  top: 13px;
  left: 18px;
  transform: scale(0.68);
  transform-origin: top left;
}

.trust-icon.users-icon::after {
  left: 13px;
  bottom: 12px;
  transform: scale(0.68);
  transform-origin: top left;
}

.site-footer {
  min-height: 484px;
  padding: 111px 344px 31px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--teal-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 555px) minmax(260px, 1fr);
  gap: 210px;
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 23px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-footer h3 {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.4;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
  font-size: 18px;
  line-height: 1.45;
}

.site-footer address {
  padding-top: 31px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 19px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 106px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .site-header {
    padding: 0 48px;
  }

  .hero-panel {
    left: 48px;
    width: min(840px, calc(100% - 96px));
  }

  .site-footer {
    padding-inline: 90px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 66px;
    min-height: 66px;
    padding: 0 20px;
    gap: 0;
    flex-wrap: nowrap;
  }

  .brand {
    font-size: 23px;
  }

  .menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #d8e2df;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .hamburger span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #0b2b2a;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 8px 20px 18px;
    color: #172032;
    background: #fff;
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf2f1;
    font-size: 15px;
  }

  .nav-links .contact-button {
    min-width: 0;
    width: 100%;
    height: 44px;
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
    color: #fff;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    height: 720px;
  }

  .hero-panel {
    top: 72px;
    left: 20px;
    width: calc(100% - 40px);
    min-height: 0;
    padding: 42px 28px;
  }

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

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .field-grid,
  .process-cards,
  .trust-cards,
  .illustration-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .fit-section,
  .product-path,
  .trust-section {
    padding-inline: 20px;
  }

  .fit-form {
    width: 100%;
    padding: 34px 22px;
  }

  .fit-form p {
    font-size: 20px;
  }

  .fit-form form,
  .fit-form .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fit-form form input:not([type="submit"]),
  .fit-form .wpcf7-form input:not([type="submit"]) {
    height: 54px;
    padding: 0 15px;
    font-size: 15px;
  }

  .fit-form form input[type="submit"],
  .fit-form .wpcf7-submit {
    height: 64px;
    margin-top: 2px;
    font-size: 16px;
    letter-spacing: 0.02em;
  }

  .illustration-band {
    min-height: 0;
    justify-content: center;
    gap: 34px;
    padding: 60px 20px;
    text-align: left;
  }

  .illustration-copy h2 {
    font-size: clamp(34px, 8vw, 43px);
  }

  .illustration-band img,
  .path-icons {
    width: 100%;
  }

  .image-feature {
    padding: 40px 20px 80px;
  }

  .slide img {
    height: 58vw;
    min-height: 280px;
  }

  .cta-actions {
    display: grid;
    gap: 14px;
  }

  .final-cta h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .product-path h2,
  .trust-section h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .path-icons {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .path-arrow {
    transform: rotate(90deg);
  }

  .process-cards,
  .trust-cards {
    max-width: 100%;
  }

  .site-footer {
    padding: 70px 24px 30px;
  }

  .footer-inner {
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 70px;
  }
}
