* {
  box-sizing: border-box;
}

:root {
  --navy: #062760;
  --blue: #053077;
  --green: #27822d;
  --lime: #4caf1f;
  --ink: #10131a;
  --muted: #31353f;
  --pale: #eefbff;
  --line: #d4dce1;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

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

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 5;
  padding: 0 52px;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 72px;
  height: 64px;
  display: block;
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mark-blue {
  fill: #082c6f;
}

.mark-green {
  fill: #27a633;
}

.mark-green.light {
  fill: #5dbd2e;
}

.mark-red {
  fill: #ed1c24;
}

.mark-orange {
  fill: #f58220;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #1b6762;
  line-height: 1;
}

.brand-text strong {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
}

.nav-shell {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 29px;
  margin-left: auto;
  margin-right: 0;
  white-space: nowrap;
}

.nav-link {
  color: #141820;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.nav-link.active {
  color: #196843;
  border-bottom: 2px solid #196843;
}

.consult-btn {
  min-width: 184px;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero {
  width: calc(100% - 200px);
  min-height: 720px;
  margin: -50px 150px;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 22px;
  align-items: center;
  /* background: white; */
}


.eyebrow {
  width: 700px;
  margin: 0 0 54px;
  color: #176948;
  font-size: 27px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 34px;
  max-width: none;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.38;
  font-weight: 800;
}

.hero-text {
  width: 680px;
  margin-bottom: 29px;
  color: #1d222b;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-title{
  width: 900px;
  font-size: 57px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 220px;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 14px;
  background: var(--lime);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.hero-art {
  position: relative;
  height: 480px;
  width: 100%;
  max-width: 696px;
  justify-self: end;
}

.hero-photo {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 40px;
  width: 115%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%, 0% 58%, 28% 0);
}

.hero-photo img,
.diamond-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.diamond-photo {
  position: absolute;
  right: 236px;
  top: 154px;
  width: 184px;
  height: 184px;
  border: 17px solid #fff;
  border-radius: 38px;
  overflow: hidden;
  transform: rotate(45deg);
  z-index: 3;
}

.diamond-photo img {
  transform: rotate(-45deg) scale(1.45);
}

.shape {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 24px;
  transform: rotate(45deg);
  z-index: 2;
}

.shape-green {
  left: 48px;
  top: 205px;
  background: #267c2d;
}

.shape-blue {
  background: var(--navy);
}

.shape-top {
  left: 188px;
  top: 92px;
}

.shape-bottom {
  left: 198px;
  top: 321px;
}

.service-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dot-grid {
  position: absolute;
  width: 185px;
  height: 72px;
  background-image: radial-gradient(#0a5b49 2.5px, transparent 2.7px);
  background-size: 18px 18px;
  opacity: 0.8;
}

.dot-grid-top {
  right: 211px;
  top: 32px;
}

.dot-grid-bottom {
  left: 18px;
  bottom: 18px;
  opacity: 0.35;
}

.trust-strip {
  width: calc(100% - 104px);
  min-height: 88px;
  margin: -12px auto 0;
  padding: 0 49px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #fff;
  border-radius: 0 0 33px 33px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 4;
}

.trust-item {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-left: 5px;
  border-right: 2px solid #a5a7ab;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  flex: 0 0 auto;
}

.trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item p {
  margin: 0;
  color: #154a39;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.panel {
  background: var(--pale);
}

.services {
  margin-top: -39px;
  padding: 107px 52px 60px;
  text-align: center;
}

.pill {
  min-width: 173px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 5px 22px;
  border: 1px solid #b5bdc0;
  border-radius: 999px;
  color: #1f6b4b;
  background: #fbffff;
  box-shadow: inset 0 0 0 1px #ecf1f2;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.services h2,
.journey h2,
.reviews h2 {
  margin-bottom: 20px;
  color: #07090d;
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
}

.section-subtitle {
  margin: 0 auto;
  color: #161921;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 700;
  text-align: center;
}

.service-grid {
  width: 100%;
  margin: 48px auto 41px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 31px;
}

.service-card {
  position: relative;
  height: 267px;
  border: 1px solid #c5d0d4;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.07);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.9) 67%, #fff 100%);
  pointer-events: none;
}

.service-card-text {
  position: absolute;
  left: 26px;
  right: 16px;
  bottom: 18px;
  z-index: 2;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #10131a;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.service-card a {
  color: #126141;
  font-size: 10px;
  font-weight: 800;
}

.service-card a span {
  margin-left: 8px;
  font-size: 18px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 225px;
  min-height: 46px;
  padding: 10px 25px;
  border: 2px solid #687177;
  border-radius: 17px;
  background: #fbffff;
  color: #243a35;
  font-size: 16px;
  font-weight: 800;
}

.journey {
  padding: 72px 52px 83px;
  text-align: center;
  background: #fff;
}

.timeline {
  width: 100%;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8.333%;
  right: 8.333%;
  top: 29px;
  height: 2px;
  background: #9aa0b5;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 21px;
  border-radius: 50%;
  background: #064faa;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.step span.green {
  background: #15933b;
}

.step h3 {
  margin-bottom: 12px;
  color: #171a20;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: #171a20;
  font-size: 10px;
  line-height: 1.36;
  font-weight: 600;
}

.reviews {
  padding: 96px 52px 88px;
  text-align: center;
}

.reviews .pill {
  text-transform: none;
  font-size: 17px;
}

.review-grid {
  width: 100%;
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.review-card {
  min-height: 230px;
  padding: 30px 22px 23px;
  border: 1px solid #cdd7dc;
  border-radius: 9px;
  background: #fff;
}

.stars {
  margin-bottom: 16px;
  color: #d9b514;
  font-size: 18px;
  letter-spacing: 3px;
}

.quote {
  max-width: 330px;
  margin-bottom: 26px;
  color: #11151c;
  font-size: 15px;
  line-height: 1.33;
  font-weight: 800;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author p {
  margin: 0;
  color: #12161f;
  font-size: 12px;
  line-height: 1.34;
  font-weight: 700;
}

.review-author strong {
  font-size: 14px;
  font-weight: 800;
}

.footer {
  min-height: 234px;
  padding: 36px 52px 50px;
  border-top: 1px solid #cdd5d9;
  background: #fff;
  display: flex;
  justify-content: center;
}

.footer-container {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(310px, 1.65fr) minmax(120px, 0.75fr) minmax(245px, 1.05fr) minmax(150px, 0.75fr);
  gap: 54px;
}

.footer-brand-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 19px;
}

.footer-mark {
  width: 58px;
  height: 52px;
  flex: 0 0 auto;
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer h3 {
  margin: 4px 0 0;
  color: #2e343a;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.footer h4 {
  margin: 0 0 18px;
  color: #333941;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.footer a,
.footer p {
  margin: 0;
  color: #777f87;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.footer-column a {
  display: block;
}

.footer-brand > p {
  max-width: 306px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #626a72;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.call-title {
  margin-top: 38px !important;
}

.whatsapp {
  position: fixed;
  right: 27px;
  bottom: 28px;
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #24d166;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  z-index: 10;
}

.whatsapp span {
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 50%;
  position: relative;
}

.whatsapp span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-18deg);
  background: #24d166;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 18px;
  }

  .header-container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .nav-shell {
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-art {
    order: -1;
    transform: scale(0.88);
    transform-origin: center;
    width: auto;
    max-width: 100%;
  }



  .trust-strip,
  .service-grid,
  .review-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .timeline {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero,
  .trust-strip {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 34px;
  }

  .hero-text {
    width: auto;
  }

  .hero-art {
    height: 360px;
    transform: scale(0.66);
    margin: -68px 0 -70px;
  }

  .trust-strip,
  .service-grid,
  .review-grid,
  .timeline,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 12px;
  }

  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .trust-strip {
    padding: 24px;
    gap: 18px;
  }

  .trust-item {
    border-right: 0;
  }

  .services,
  .reviews {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services h2,
  .journey h2,
  .reviews h2 {
    font-size: 32px;
  }
}
