/* === Tokens === */
:root {
  --green: #7fba2c;
  --green-dark: #509e2f;
  --dark: #064e3b;
  --dark-2: #3c6a35;
  --text: #2d3432;
  --text-80: rgba(0, 0, 0, 0.8);
  --text-70: rgba(0, 0, 0, 0.7);
  --text-90: rgba(0, 0, 0, 0.9);
  --muted-bg: #f2f4f1;
  --muted: #5a615c;
  --border: rgba(0, 109, 55, 0.1);
  --inter: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

main {
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

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

.low-mt {
  margin-top: 161px;
}

.high-mt {
  margin-top: 252px;
}

.container {
  max-width: 1980px;
  padding: 0 5.45454545455%;
  margin: 0 auto;
}

/* === Buttons === */
.green {
  color: var(--green);
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 32.5px 28px;
  font-size: 18px;
  font-weight: 500;
}

.btn-dark-pill {
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  padding: 0 24px;
  height: 45px;
  font-size: 18px;
  font-weight: 500;
}

.btn-outline {
  border: 4px solid var(--dark-2);
  color: var(--text);
  border-radius: 16px;
  padding: 8px 20px;
  font-size: 21px;
  font-weight: 500;
  background: #fff;
}

.btn-white-green {
  background: #fff;
  color: var(--green);
  border-radius: 16px;
  padding: 0 40px;
  width: 262px;
  height: 80px;
  font-size: 21px;
  font-weight: 500;
}

.btn-outline-green-on-dark {
  border: 3px solid var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 0 24px;
  height: 56px;
  font-size: 18px;
  font-weight: 500;
  align-self: flex-start;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 76px;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: none;
}

.header-phone {
  display: none;
}

.header-cta {
  display: none;
}

.hamburger {
  color: var(--dark);
  display: inline-flex;
}

.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--muted);
}

/* === Hero === */
.hero {
  background: #fff;
  margin-top: 64px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  color: var(--text-90);
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.05;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-80);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-email-pill {
  position: absolute;
  bottom: 15px;
  left: 27px;
  z-index: 10;
}

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

/* === Section spacing === */
section {
  background: #fff;
}

section h2 {
  color: var(--text-90);
  font-size: clamp(32px, 4.5vw, 65px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 32px;
}

/* === Why Us === */
.why-grid {
  display: grid;
  gap: 40px;
}

.why-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-head h2 {
  margin: 0;
}

.why-head p {
  color: var(--text-80);
  font-size: clamp(16px, 1.5vw, 25px);
  line-height: 1.35;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 56px;
}

.stat-val {
  color: var(--green);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1;
}

.stat-prefix {
  color: var(--green);
}

.stat-label {
  color: var(--text);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.3;
}

/* === Partners === */
.partners {
  padding-top: 0;
}

.partners-lead {
  color: var(--text-80);
  font-size: clamp(16px, 1.2vw, 19px);
  margin-bottom: 24px;
}

.partners-lead svg {
  translate: 11px 50%;
}

.partners-swiper {
  padding-bottom: 8px;
  overflow: visible;
  clip-path: inset(-100vw -100vw -100vw 0);
}

.partners-swiper .swiper-slide {
  width: 140px;
}

.partner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.partner img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* === Services === */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.services-list li {
  border-bottom: 1px solid #acb4b1;
  transition: background-color .15s;
}

.services-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.services-list li:hover {
  background: var(--muted-bg);
}

.services-list li span {
  color: var(--text-80);
  font-size: clamp(16px, 1.6vw, 30px);
  font-weight: 500;
  line-height: 1.3;
}

.services-list li svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  transform: rotate(-90deg);
}

/* === CTA === */
.cta {
  padding: 32px 0;
}

.cta-box {
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  background-color: #509E2F;
  background-image: linear-gradient(90deg, #509E2F 36.95%, rgba(80, 158, 47, 0) 60.06%), url(assets/f24089f9f0fd753670f0556212282d5ea2565791.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 100% 100%, 65% auto;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.cta-content h3 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 69px);
  font-weight: 600;
  line-height: 1.05;
}

.btn-white-green {
  align-self: flex-start;
}

/* === About === */
.about-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.about-frame {
  width: 47.1088435%;
}

.about-frame iframe {
  width: 100%;
  height: 476px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 48.4693878%;
}

.about h2 {
  color: var(--text-90);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.about-grid {
  display: grid;
  gap: 14px;
}

.about-card {
  background: var(--muted-bg);
  border-radius: 16px;
  padding: 26px 28px;
  color: var(--text-80);
  font-size: 20px;
  line-height: 1.4;
}

/* === Director === */
.director-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.director-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-content {
  display: flex;
  flex-direction: column;
}

.director-eyebrow {
  color: var(--text-70);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.director-content h3 {
  color: var(--text);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
}

.director-lead {
  color: var(--text-70);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 34px;
}

.director-description {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 10px;
}

.director-description p {
  font-family: var(--inter);
}

.director-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 8px;
  font-family: var(--inter);
}

.dcard {
  background: var(--muted-bg);
  border-radius: 20px;
  padding: 25px;
}

.dcard-t {
  color: var(--text-80);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.dcard-d {
  color: #59615f;
  font-size: 14px;
  line-height: 1.4;
}

.director-quote {
  border-left: 4px solid var(--dark);
  padding-left: 16px;
  color: #59615f;
  font-size: 16px;
  line-height: 1.625;
  margin-top: 16px;
  font-family: var(--inter);
  font-weight: 400;
  font-style: Regular;
  width: 64.6365422%;
}

/* === Objects === */
.objects-swiper {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.objects-box {
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.objects-content {
  padding-bottom: 73px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  width: 47.845805%;
  margin-left: auto;
}

.objects-content h3 {
  font-size: clamp(22px, 2.8vw, 42px);
  line-height: 1.1;
  font-weight: 600;
}

.objects-content p {
  font-size: 18px;
  line-height: 1.4;
}

.objects-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-left: 4.08163265%;
  padding-right: 1.58730159%;
}

.objects-bottom .swiper-pagination {
  position: static;
  width: auto;
  flex: 1;
  display: flex;
  gap: 8px;
  margin-right: 24px;
  margin-bottom: 37px;
}

.objects-bottom .swiper-pagination-bullet {
  width: 9.01360544%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.objects-bottom .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.objects-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.objects-nav .swiper-button-next svg path {
  stroke: #FFFFFF;
}

.objects-nav .swiper-button-prev svg path {
  stroke: #509E2F;
}

.objects-nav .swiper-button-next,
.objects-nav .swiper-button-prev {
  position: static;
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  margin-bottom: 27px;
}

.objects-nav .swiper-button-next::after,
.objects-nav .swiper-button-prev::after {
  display: none;
}

/* === Map === */
.map-img {
  border-radius: 16px;
  overflow: hidden;
}

.map-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* === Advantages === */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.adv {
  display: flex;
  flex-direction: column;
}

.adv-icon {
  width: auto;
  height: 230px;
}

.adv-icon svg {
  width: auto;
  height: 100%;
}

.adv-title {
  color: var(--text-80);
  font-size: 22px;
  font-weight: 700;
  margin-top: 16px;
}

.adv-text {
  color: var(--text-80);
  font-size: 16px;
  line-height: 1.4;
  margin-top: 14px;
}

/* === Workflow === */
.workflow-divider {
  border-top: 3px solid var(--muted-bg);
  padding-top: 32px;
  margin-top: 16px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.wstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.wcircle {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid var(--dark-2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
}

.wtext {
  color: var(--text-80);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

/* === Certificates === */
.certificates h2 {
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.1;
}

.certs-swiper {
  overflow: hidden;
  position: relative;
}

.certs-swiper .swiper-slide {
  width: 280px;
}

.cert {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.cert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Questions === */
.questions-grid {
  display: grid;
  gap: 16px;
}

.questions-box {
  border-radius: 28px;
  overflow: hidden;
  padding: 32px 24px;
  background-image: url(assets/5ef186c3cc512bf7c865782018c095f30eec1732.png);
  background-blend-mode: overlay;
  background-color: var(--green);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  background-position: center left 12.11778%;
}

.questions-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #fff;
}

.questions-content h3 {
  font-size: clamp(28px, 4vw, 65px);
  font-weight: 600;
  line-height: 1.05;
}

.questions-content p {
  font-size: clamp(16px, 1.6vw, 30px);
  line-height: 1.3;
  width: 72.16%;
}

.questions-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 72.16%;
}

.questions-form input[type="text"] {
  margin-top: 32px;
}

.questions-form input[type="text"] {
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  color: #fff;
  border-radius: 16px;
  height: 79px;
  padding: 0 24px;
  font-size: 18px;
  outline: none;
  font-family: inherit;
}

.questions-form input[type="text"]::placeholder {
  color: #fff;
  opacity: 1;
}

.questions-form button {
  background: #fff;
  color: var(--dark);
  border-radius: 16px;
  height: 56px;
  padding: 0 40px;
  font-size: 18px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 25px;
  width: 45.3287197%;
  height: 80px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  margin-top: 10px;
}

.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--dark);
}

.questions-image {
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  height: 843px;
}

.questions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Reviews === */
.certs-swiper,
.reviews-swiper {
  overflow: visible;
  overflow-x: clip;
  position: relative;
}

.reviews-swiper .swiper-slide {
  width: 280px;
}

.review {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

.review img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews h2 {
  font-size: clamp(32px, 4.5vw, 69px);
}

/* === Swiper custom === */
.partners-swiper .swiper-button-next,
.partners-swiper .swiper-button-prev {
  color: var(--green);
  background: rgba(255, 255, 255, 0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
}

.partners-swiper .swiper-button-next:hover,
.partners-swiper .swiper-button-prev:hover {
  background: #fff;
  transform: scale(1.1);
}

.partners-swiper .swiper-button-next::after,
.partners-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Unified arrow style for certs & reviews */
.certs-swiper .swiper-button-next,
.certs-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.2s;
  top: auto;
  bottom: 0;
  margin-top: 0;
}

.certs-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-prev {
  left: auto;
  right: 84px;
}

.certs-swiper .swiper-button-next,
.reviews-swiper .swiper-button-next {
  right: 0;
}

.certs-swiper .swiper-button-next::after,
.certs-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after,
.reviews-swiper .swiper-button-prev::after {
  display: none;
}

.certs-swiper .swiper-button-next:hover,
.certs-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
  opacity: 0.7;
}

.certs-swiper .swiper-button-next {
  bottom: 0;
  transform: translateY(calc(100% + 44px));
}

.certs-swiper .swiper-button-prev {
  bottom: 0;
  transform: translateY(calc(100% + 44px)) rotate(180deg);
}

.certs-swiper .swiper-pagination-bullet,
.reviews-swiper .swiper-pagination-bullet {
  background: var(--green);
  opacity: 0.35;
  width: 10px;
  height: 10px;
}

.certs-swiper .swiper-pagination-bullet-active,
.reviews-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--green);
}

.reviews-swiper .swiper-button-next {
  top: 0;
  transform: translateY(calc(-100% - 44px));
}

.reviews-swiper .swiper-button-prev {
  top: 0;
  transform: translateY(calc(-100% - 44px)) rotate(180deg);
}

.swiper-button-next.swiper-button-disabled svg path,
.swiper-button-prev.swiper-button-disabled svg path {
  opacity: 1;
  stroke: #D9D9D9;
}

/* === Find Us === */
.findus h2 {
  font-size: clamp(32px, 4.5vw, 69px);
}

.findus-grid {
  display: grid;
  gap: 24px;
}

.findus-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.findus-row {
  display: grid;
  grid-template-columns: 59.1324201% 39.3835616%;
  justify-content: space-between;
}

.hours-card,
.address-card,
.social-card,
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.hours-label,
.address-label,
.social-card-label,
.contact-card-label {
  font-size: 24px;
  line-height: 2;
}

.contact-card {
  background: var(--green);
  color: var(--text);
  border-radius: 16px;
  padding: 20px 24px;
}

.contact-card-label {
  font-weight: 500;
  color: #FFFFFF;
}

.contact-card-value {
  color: #FFFFFF;
}

.contact-card-value,
.hours-value,
.address-value,
.social-card-hours {
  font-size: 31px;
  line-height: 1.7;
}

.social-card {
  background: #f2f4f1;
  border-radius: 16px;
  padding: 20px 20px;
}

.social-card-label {
  font-weight: 500;
  color: var(--text-80);
}

.social-card-hours {
  color: var(--dark);
}

.address-card {
  background: #f2f4f1;
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--text-80);
}

.address-label {
  font-weight: 500;
  color: #000000B2;
}

.address-value {
  color: var(--dark);
}

.hours-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 20px 20px;
  color: #fff;
}

.hours-label {
  font-weight: 500;
  color: #FFFFFF;
}

.hours-value {
  color: #fff;
}

.findus-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
}

.findus-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Footer === */
.site-footer {
  background: #f1f4f2;
  padding: 55px 0 17px;
  color: var(--text);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-company-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.footer-company-name strong {
  font-weight: 700;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credits-initials {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.footer-credits-lines {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-left: 39.1723356%;
}

.footer-row {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(6, 78, 59, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

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

.footer-dot {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.footer-copyright {
  font-size: 12px;
  color: var(--muted);
}

/* === Desktop === */
@media (min-width: 768px) {
  .partner {
    height: 142px;
  }

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

  .about-card-wide {
    grid-column: 1 / -1;
  }

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

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

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



  .header-phone {
    display: flex;
    align-items: center;
    color: var(--dark);
    font-weight: 800;
    font-size: 21px;
  }

  .header-cta.btn-outline {
    display: inline-flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: 14.853%;
    height: 100%;
  }
}

@media (min-width: 1024px) {

  section h2 {
    margin-bottom: 90px;
  }

  .main-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 32px;
    border: 0;
    align-items: center;
    color: var(--muted);
    font-weight: 700;
    font-size: 16px;
  }

  .hamburger {
    display: none;
  }

  .logo img {
    width: 64px;
    height: 64px;
  }

  .hero-grid {
    grid-template-columns: 45.1814059% auto;
    gap: 4.98866213%;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-image {
    aspect-ratio: 879/772;
    border-radius: 30px;
  }

  .why-grid {
    grid-template-columns: 45.1814059% auto;
    gap: 7.31292517%;
  }

  .partners-swiper .swiper-slide {
    width: 305px !important;
  }

  .partner {
    height: 142px;
  }

  .cta {
    padding: 64px 0;
  }

  .cta-box {
    padding: 73px 87px;
  }

  .director-grid {
    grid-template-columns: 38.6621315% 57.3844419%;
    gap: 2.9478458%;
  }

  .director-photo {
    aspect-ratio: auto;
    height: 787px;
  }

  .objects-box {
    min-height: 776px;
  }

  .advantages-grid {
    grid-template-columns: repeat(4, 20.5782313%);
    justify-content: space-between;
  }

  .workflow-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .workflow-grid::before {
    content: "";
    position: absolute;
    top: 72px;
    /* half of 144px circle */
    left: 0;
    right: 0;
    height: 3px;
    background: var(--muted-bg);
    z-index: 0;
  }

  .wcircle {
    width: 144px;
    height: 144px;
  }

  .certs-swiper .swiper-slide {
    width: 33.333%;
  }

  .questions-grid {
    grid-template-columns: 50.0566893% 49.3197279%;
    justify-content: space-between;
  }

  .questions-box {
    padding: 61px 41px;
  }

  .reviews-swiper .swiper-slide {
    width: 320px;
  }

  .review {
    height: 461px;
  }

  .findus-grid {
    grid-template-columns: 49.6598639% 49.4331066%;
    justify-content: space-between;
    align-items: stretch;
  }

  .findus-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .findus-row:first-child {
    height: 309px;
  }

  .findus-row:last-child {
    height: 269px;
  }

  .findus-map {
    min-height: unset;
  }

  .footer-top {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}