:root {
  --green: #123c32;
  --green-2: #196164;
  --lime: #c6f10e;
  --text: #102c27;
  --muted: #65726f;
  --line: #dbe5e1;
  --soft: #eef5f1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 44, 39, 0.08);
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  letter-spacing: 0;
}

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

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

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--green);
  font-family: Sora, Manrope, sans-serif;
  font-weight: 700;
}

.nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-family: Sora, Manrope, sans-serif;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.nav__cta,
.button--primary {
  background: var(--green-2);
  color: var(--white);
}

.button--ghost {
  border: 1px solid var(--green-2);
  color: var(--green-2);
}

.nav__cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(25, 97, 100, 0.22);
}

.nav__cta:active,
.button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(25, 97, 100, 0.16);
}

.hero {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero--clean {
  min-height: clamp(650px, 56vw, 820px);
  display: grid;
  grid-template-columns: minmax(40px, 1fr) minmax(610px, 900px) minmax(500px, 760px) minmax(24px, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f6f7f6 0%, #ffffff 52%, #f5f6f5 100%);
}

.hero-panel {
  grid-column: 2;
  align-self: center;
  position: relative;
  z-index: 2;
  padding: clamp(54px, 6.2vw, 88px) 0 clamp(42px, 5vw, 72px);
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--green-2);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel h1 {
  max-width: 860px;
  margin: 0 0 24px;
  color: var(--green);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(54px, 5.55vw, 86px);
  line-height: 0.96;
}

.hero-panel h1 span {
  display: block;
}
.hero-panel h1 span + span {
  color: #b08a3b;
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 34px;
  color: #40515f;
  font-size: clamp(21px, 1.7vw, 30px);
  line-height: 1.45;
  font-weight: 600;
}

.hero-photo {
  grid-column: 3 / 5;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 32%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 38%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
  margin-bottom: clamp(30px, 4vw, 58px);
}

.hero-button {
  min-height: clamp(56px, 5.1vw, 76px);
  min-width: clamp(210px, 16vw, 282px);
  padding: 0 clamp(18px, 2.4vw, 36px);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(15px, 1.08vw, 19px);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hero-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 38px rgba(16, 44, 39, 0.22);
}

.hero-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(16, 44, 39, 0.16);
}

.hero-button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

.hero-button--secondary {
  border: 1px solid var(--green-2);
  background: rgba(255, 255, 255, 0.86);
  color: var(--green);
  backdrop-filter: blur(4px);
}

.hero-button--secondary:hover {
  background: var(--white);
  color: var(--green-2);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  max-width: 760px;
}

.hero-benefits span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #40515f;
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.25;
  font-weight: 600;
  min-width: 0;
}

.hero-benefits span::before {
  content: "";
  flex: 0 0 auto;
  width: clamp(38px, 3.6vw, 58px);
  aspect-ratio: 1;
  border: 1px solid #b08a3b;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.58);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 54% 54%;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.62);
}

.benefit--security::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b08a3b' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 4.5 3 8.2 7 10 4-1.8 7-5.5 7-10V6l-7-3Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.benefit--time::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b08a3b' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3Cpath d='m10 15 2 2 4-4'/%3E%3C/svg%3E");
}

.benefit--support::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b08a3b' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19V10'/%3E%3Cpath d='M10 19V6'/%3E%3Cpath d='M15 19v-8'/%3E%3Cpath d='M20 19V4'/%3E%3Cpath d='M4 19h17'/%3E%3C/svg%3E");
}

.hero-benefits strong {
  display: block;
  color: #2e4350;
  font-weight: 800;
}

.hero-benefits em {
  display: block;
  min-width: 0;
  font-style: normal;
}

.hero-benefits small {
  display: block;
  margin-top: 2px;
  font-size: inherit;
  line-height: inherit;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-family: Sora, Manrope, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 12px;
  font-family: Sora, Manrope, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.about-content,
.card p,
.section__head p {
  color: var(--muted);
  line-height: 1.7;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.about-content {
  font-size: 18px;
}

.about-photo {
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-boxes {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.about-boxes article {
  padding: 16px 20px;
  border-left: 4px solid var(--green-2);
  border-radius: 0 8px 8px 0;
  background: var(--soft);
}

.about-boxes strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
}

.about-boxes span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.services {
  border-top: 1px solid var(--line);
}

.section__head {
  max-width: 820px;
  margin-bottom: 24px;
}

.services .section__head {
  max-width: 920px;
}

.services .section__head .eyebrow {
  margin-bottom: 10px;
}

.services .section__head p {
  font-size: 19px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.card {
  min-width: 0;
  min-height: 244px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 44, 39, 0.06);
  overflow-wrap: anywhere;
}

.card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Sora, Manrope, sans-serif;
  font-weight: 900;
}

.card__icon img {
  width: 34px;
  height: 34px;
}


.certificates {
  width: 100%;
  max-width: none;
  padding: 62px max(16px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  overflow: visible;
}

.certificate-grid figure {
  margin: 0;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform-origin: center;
}

.certificate-grid figure:hover,
.certificate-grid figure:focus-within {
  transform: translateY(-12px) scale(1.25);
  z-index: 8;
  border-color: rgba(25, 97, 100, 0.42);
  box-shadow: 0 24px 70px rgba(16, 44, 39, 0.22);
}

.certificate-grid img {
  max-height: 390px;
  width: auto;
  object-fit: contain;
}

.contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 62px auto;
  padding: 38px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
}

.contact-band .eyebrow {
  color: var(--lime);
}

.contact-band h2 {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  gap: 12px;
  font-size: 18px;
  line-height: 1.55;
}

.footer {
  min-height: 118px;
  padding: 24px max(16px, calc((100% - 1180px) / 2));
  background: var(--green);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 4px 18px;
  align-items: center;
}

.footer__brand img {
  grid-row: 1 / span 2;
  width: 148px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--white);
}

.footer__brand strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.footer__brand span,
.footer__credit {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.footer__credit {
  text-align: right;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 190px;
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav__links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .split {
    align-items: start;
  }

  .about-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero {
    min-height: 0;
    padding: 46px 0 34px;
  }

  .hero--banner {
    padding: 0;
  }

  h1 {
    font-size: 44px;
    line-height: 1.06;
  }

  h2 {
    font-size: 34px;
  }

  .cards,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 48px 0;
  }

  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__credit {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 160px;
  }

  .nav__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 16px;
  }

  .nav__links a {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
  }

  .nav__cta,
  .button {
    width: 100%;
  }

  html {
    scroll-padding-top: 210px;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    margin-top: 10px;
    padding-top: 18px;
  }

  .hero--banner {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .hero__content {
    padding: 8px 0;
  }

  .lead {
    font-size: 19px;
    line-height: 1.65;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 42px 0;
  }

  .split {
    gap: 22px;
  }

  .about-content {
    font-size: 17px;
  }

  .card {
    min-height: 0;
    padding: 22px;
  }

  .card__icon {
    margin-bottom: 18px;
  }


  .certificates {
    padding: 42px 14px;
  }

  .certificate-grid figure {
    min-height: 0;
    padding: 12px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .certificate-grid img {
    max-height: 480px;
  }

  .contact-band {
    width: min(100% - 28px, 1180px);
    margin: 42px auto;
    padding: 26px 20px;
  }

  .contact-card {
    font-size: 16px;
  }

  .footer__brand {
    grid-template-columns: 1fr;
  }

  .footer__brand img {
    grid-row: auto;
    width: 170px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 170px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .certificate-grid img {
    max-height: 420px;
  }
}

@media (max-width: 1100px) {
  .hero--clean {
    min-height: 0;
    grid-template-columns: minmax(28px, 1fr) minmax(420px, 660px) minmax(360px, 560px) minmax(20px, 1fr);
  }

  .hero-panel h1 {
    font-size: clamp(42px, 5.5vw, 64px);
  }

  .hero-panel h1 span {
  display: block;
}
.hero-panel h1 span + span {
  color: #b08a3b;
}

.hero-lead {
    font-size: clamp(18px, 2vw, 23px);
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .hero--clean {
    grid-template-columns: minmax(24px, 1fr) minmax(0, 620px) minmax(24px, 1fr);
    background: #f7f8f7;
  }

  .hero-panel {
    grid-column: 2;
    grid-row: 2;
    padding: 30px 0 38px;
  }

  .hero-photo {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 420px;
  }

  .hero-photo::before {
    display: none;
  }

  .hero-photo img {
    object-position: 68% center;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero--clean {
    width: 100%;
    margin-top: 0;
    grid-template-columns: 14px minmax(0, 1fr) 14px;
    padding: 0;
  }

  .hero-photo {
    min-height: 330px;
  }

  .hero-photo img {
    object-position: 69% center;
  }

  .hero-panel {
    padding: 24px 0 32px;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .hero-panel h1 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-panel h1 span {
  display: block;
}
.hero-panel h1 span + span {
  color: #b08a3b;
}

.hero-lead {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-button {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-benefits span {
    font-size: 15px;
  }
}