* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 130px; }
body {
  margin: 0;
  color: #0b3030;
  background: #f7faf6;
  font-family: "Figtree", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1290px, calc(100% - 48px)); margin: 0 auto; }
.site-top {
  background: #003f41;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-family: "DM Sans", Arial, sans-serif;
}
.top-inner { display: flex; align-items: center; justify-content: space-between; min-height: 32px; }
.top-links, .socials { display: flex; align-items: center; gap: 28px; }
.socials span { font-size: 11px; text-transform: uppercase; }
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding-top: 10px;
  pointer-events: none;
}
.nav-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 81, 83, .9);
  border-radius: 0 8px 8px 0;
  padding: 0 0 0 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  pointer-events: auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: white; font-weight: 800; font-size: 22px; }
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--secondary), #31d1b2);
  position: relative;
}
.brand-mark:after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #005153;
  border-radius: 50%;
}
.nav-links { display: flex; align-items: center; gap: 34px; color: white; font-size: 14px; font-weight: 700; }
.grid-btn {
  width: 72px;
  height: 72px;
  border: 0;
  background: white;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  gap: 5px;
  place-content: center;
  border-radius: 0 8px 8px 0;
}
.grid-btn span { width: 7px; height: 7px; background: #005153; border-radius: 50%; }
.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: #003f41;
  color: white;
  padding-top: 118px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,63,65,.96), rgba(0,81,83,.86) 48%, rgba(0,63,65,.72)),
    url("../images/slider/images/uploads/2025/05/bg-slider.webp") center/cover no-repeat;
}
.hero-grid {
  min-height: 600px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 30px;
  position: relative;
}
.hero-copy { max-width: 600px; padding-top: 30px; }
.mini-title {
  margin: 0 0 14px;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.mini-title.dark { color: #005153; }
h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.02em;
  margin: 0 0 22px;
}
h2 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
}
h3 { margin: 0; }
.hero-copy p:not(.mini-title) {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
  max-width: 510px;
}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 8px 0 22px;
  border-radius: 999px;
  background: white;
  color: #003f41;
  font-weight: 800;
  font-size: 14px;
  margin-top: 18px;
}
.pill-btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--secondary);
}
.hero-visual {
  position: relative;
  height: 590px;
}
.hero-person {
  position: absolute;
  right: 155px;
  bottom: 0;
  max-height: 560px;
  max-width: 48vw;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.25));
}
.hero-chart {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(360px, 31vw);
}
.scroll-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.section { padding: 105px 0; }
.features {
  position: relative;
  background: #fbfffb;
  overflow: hidden;
}
.features:before {
  content: "";
  position: absolute;
  inset: -200px auto auto -260px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(0,81,83,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(0,81,83,.025), 0 0 0 72px rgba(0,81,83,.02);
}
.split-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 52px;
}
.split-head h2 { max-width: 760px; }
.small-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #eff8f4;
  color: #005153;
  font-size: 13px;
  font-weight: 900;
}
.feature-grid, .service-grid, .blog-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  min-height: 230px;
  padding: 34px 28px;
  background: white;
  border: 1px solid rgba(0,81,83,.12);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 18px 45px rgba(0,81,83,.07);
}
.feature-card:nth-child(even) { transform: translateY(32px); background: #f1f8f5; }
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #005153;
  background: linear-gradient(135deg, var(--secondary), #cfffa7);
  font-weight: 900;
  margin-bottom: 24px;
}
.feature-card h3, .service-card h3 { font-size: 20px; margin-bottom: 14px; }
.feature-card p, .service-card p, .blog-card p, .process p, .about-copy p, .pricing p {
  color: #63716e;
  line-height: 1.7;
}
.swoosh {
  height: 70px;
  width: 52vw;
  border-bottom: 17px solid var(--secondary);
  border-radius: 0 0 80% 45%;
  transform: rotate(7deg);
  position: absolute;
  right: -5vw;
  bottom: 10px;
}
.about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 230px minmax(310px, .9fr) 1.05fr;
  gap: 48px;
  align-items: center;
}
.about-counters {
  display: grid;
  gap: 20px;
}
.counter-card {
  min-height: 145px;
  padding: 24px 22px;
  border-radius: 12px;
  background: #f3faf6;
  border: 1px solid rgba(0,81,83,.1);
  position: relative;
  overflow: hidden;
}
.counter-card:before {
  content: "";
  position: absolute;
  width: 94px;
  height: 94px;
  right: -42px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(190,255,107,.42);
}
.counter-card strong {
  display: block;
  font-size: 54px;
  line-height: 1;
  color: #005153;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.counter-card strong span {
  font-size: 28px;
  color: var(--secondary);
  margin-left: 4px;
}
.counter-card p {
  position: relative;
  margin: 0;
  color: #526964;
  font-weight: 700;
  line-height: 1.45;
  font-size: 14px;
}
.about-media {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-media:before {
  content: "";
  position: absolute;
  inset: 30px 0 0 34px;
  border-radius: 48% 52% 46% 54%;
  background: linear-gradient(135deg, rgba(190,255,107,.24), rgba(0,81,83,.08));
}
.about-media img {
  position: relative;
  width: min(430px, 100%);
  border-radius: 18px;
  background: #e5f3ef;
  box-shadow: 0 28px 70px rgba(0,81,83,.18);
}
.since-card {
  position: absolute;
  right: 10px;
  bottom: 44px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #005153;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,81,83,.22);
}
.since-card span { display: block; color: var(--secondary); font-size: 13px; text-transform: uppercase; }
.since-card strong { display: block; font-size: 46px; }
.about-copy {
  padding-left: 10px;
}
.about-copy > p:not(.mini-title) {
  font-size: 18px;
  max-width: 620px;
}
.about-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 14px;
  font-weight: 800;
}
.about-copy li:before {
  content: "";
  display: inline-grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: inset 0 0 0 8px #005153;
}
.outline-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 24px;
  border: 1px solid #005153;
  border-radius: 999px;
  color: #005153;
  font-weight: 900;
}
.services { background: #eef7f2; }
.center-head { text-align: center; max-width: 830px; margin: 0 auto 54px; }
.service-intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}
.service-intro h2 {
  max-width: 790px;
}
.partner-proof {
  background: white;
  border-radius: 14px;
  padding: 26px 28px;
  border: 1px solid rgba(0,81,83,.12);
  box-shadow: 0 18px 48px rgba(0,81,83,.08);
}
.proof-icons {
  display: flex;
  margin-bottom: 18px;
}
.proof-icons span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #31d1b2);
  border: 3px solid white;
  margin-left: -10px;
}
.proof-icons span:first-child { margin-left: 0; }
.proof-icons span:nth-child(2) { background: #ffcd4c; }
.proof-icons span:nth-child(3) { background: #005153; }
.proof-icons span:nth-child(4) { background: #dfffd0; }
.partner-proof strong {
  display: block;
  color: #005153;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
}
.partner-proof p {
  margin: 0;
  color: #63716e;
  font-weight: 800;
  line-height: 1.45;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: white;
  min-height: 420px;
  border-radius: 14px;
  border: 1px solid rgba(0,81,83,.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,81,83,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,81,83,.16);
}
.service-image {
  height: 174px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,81,83,.08), rgba(0,63,65,.64));
}
.service-num {
  position: absolute;
  left: 24px;
  top: 24px;
  color: #005153;
  background: #005153;
  background: var(--secondary);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-weight: 900;
  z-index: 1;
}
.service-body {
  padding: 42px 32px 32px;
  position: relative;
}
.service-icon-badge {
  position: absolute;
  top: -34px;
  right: 28px;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #005153;
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(0,81,83,.25);
  border: 5px solid white;
}
.service-card h3 {
  font-size: 25px;
  line-height: 1.15;
  margin-bottom: 15px;
}
.service-card p {
  min-height: 82px;
  margin-bottom: 22px;
}
.service-card a {
  color: #005153;
  font-weight: 900;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.service-card a span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
}
.service-more {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.pricing { background: white; }
.pricing-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: #f5fbf8;
  border-radius: 12px;
  padding: 34px;
  border: 1px solid rgba(0,81,83,.1);
}
.price-card.highlighted {
  background: #005153;
  color: white;
}
.price-card.highlighted li, .price-card.highlighted small { color: rgba(255,255,255,.75); }
.price { font-size: 72px; color: var(--secondary); font-weight: 900; margin: 20px 0; }
.price span { font-size: 28px; vertical-align: super; color: inherit; }
.price small { font-size: 14px; color: #63716e; margin-left: 8px; }
.price-card ul { padding-left: 18px; line-height: 2; color: #63716e; }
.dark-btn { background: #005153; color: white; padding-right: 22px; }
.highlighted .dark-btn { background: var(--secondary); color: #005153; }
.process {
  color: white;
  background:
    linear-gradient(135deg, rgba(0,63,65,.96), rgba(0,81,83,.9)),
    url("../images/slider/images/uploads/2025/05/bg-slider.webp") center/cover no-repeat;
}
.process-grid { grid-template-columns: repeat(3, 1fr); }
.process article {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 34px;
  background: rgba(255,255,255,.07);
}
.process span { color: var(--secondary); font-weight: 900; }
.process h3 { margin-top: 18px; font-size: 24px; }
.process p { color: rgba(255,255,255,.74); }
.portfolio { background: #f7fbf8; }
.section-copy {
  color: #63716e;
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.portfolio-grid article {
  min-height: 260px;
  border-radius: 12px;
  padding: 28px;
  color: white;
  background:
    linear-gradient(180deg, rgba(0,81,83,.12), rgba(0,63,65,.9)),
    url("../images/slider/images/uploads/2025/05/bg-slider.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portfolio-grid span {
  color: var(--secondary);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.portfolio-grid h3 { font-size: 24px; margin: 10px 0; }
.portfolio-grid p { color: rgba(255,255,255,.75); line-height: 1.6; }
.portfolio-grid a { color: var(--secondary); font-weight: 900; }
.awards { background: white; }
.awards-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.award-list {
  display: grid;
  gap: 18px;
}
.award-list article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,81,83,.13);
}
.award-list strong {
  color: #005153;
  font-size: 30px;
}
.award-list h3 { font-size: 24px; margin-bottom: 8px; }
.award-list p { margin: 0; color: #63716e; line-height: 1.6; }
.testimonials {
  color: white;
  background:
    linear-gradient(135deg, rgba(0,63,65,.96), rgba(0,81,83,.9)),
    url("../images/slider/images/uploads/2025/05/bg-slider.webp") center/cover no-repeat;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-grid article {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 30px;
  background: rgba(255,255,255,.07);
}
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: #005153;
  font-weight: 900;
  margin-bottom: 18px;
}
.testimonial-grid h3 { font-size: 22px; margin-bottom: 4px; }
.testimonial-grid span { color: var(--secondary); font-size: 13px; font-weight: 800; }
.testimonial-grid p { color: rgba(255,255,255,.76); line-height: 1.75; }
.blog { background: #fbfffb; }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid article {
  background: white;
  border-radius: 10px;
  padding: 34px;
  border: 1px solid rgba(0,81,83,.12);
  box-shadow: 0 16px 45px rgba(0,81,83,.06);
}
.blog-grid span { color: #005153; font-weight: 900; text-transform: uppercase; font-size: 12px; }
.blog-grid h3 { font-size: 27px; margin: 14px 0; }
.contact-cta {
  background: #005153;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-cta:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(190,255,107,.18);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.contact-card {
  background: white;
  color: #0b3030;
  border-radius: 12px;
  padding: 34px;
}
.contact-card h3 { font-size: 30px; margin-bottom: 20px; }
.contact-card p { color: #63716e; line-height: 1.7; }
.footer {
  background: #002f31;
  color: white;
  padding: 70px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 48px;
}
.footer p { color: rgba(255,255,255,.72); line-height: 1.7; }
.footer-brand { margin-bottom: 18px; }
@media (max-width: 980px) {
  .nav-links, .top-links span:nth-child(2), .socials { display: none; }
  .hero-grid, .about-grid, .service-intro, .pricing-grid, .footer-grid, .awards-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 70px; }
  .hero-visual { height: 380px; }
  .hero-person { right: 25%; max-height: 360px; }
  .hero-chart { width: 230px; }
  .feature-grid, .service-grid, .process-grid, .blog-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .about-counters { grid-template-columns: repeat(3, 1fr); }
  .about-copy { padding-left: 0; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1290px); }
  .main-nav { top: 0; padding-top: 8px; }
  .nav-card { padding-left: 16px; }
  .hero { padding-top: 110px; }
  .hero-grid { min-height: auto; }
  .hero-visual { display: none; }
  .split-head, .feature-grid, .service-grid, .process-grid, .blog-grid, .testimonial-grid, .about-counters { grid-template-columns: 1fr; }
  .award-list article { grid-template-columns: 1fr; gap: 8px; }
  .feature-card:nth-child(even) { transform: none; }
  .section { padding: 70px 0; }
  .since-card { left: auto; right: 0; bottom: -20px; }
}
