:root {
  --brand-primary: #39b54a;
  --brand-dark: #234629;
  --text-dark: #111111;
  --text-soft: #464146;
  --text-muted: #65616a;
  --background: #ffffff;
  --mint: #eff9f1;
  --mint-strong: #e8f7eb;
  --border: #b9efc1;
  --container: 1768px;
  --radius: 34px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 260ms;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --header-height: 86px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--text-dark);
  background: var(--background);
  font-family: var(--body-font, Manrope, Arial, sans-serif);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
body.nav-open { overflow: hidden; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font, Manrope, Arial, sans-serif);
  line-height: 1.18;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
.container {
  width: min(var(--container), calc(100% - clamp(42px, 7vw, 132px)));
  margin-inline: auto;
}
.container > *,
[class$="-grid"] > *,
[class*="-grid "] > * {
  min-width: 0;
}
input,
select,
textarea {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid rgba(57, 181, 74, 0.45);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
  transition: box-shadow 180ms var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}
.site-notice {
  position: fixed;
  top: calc(var(--header-height) + 14px);
  left: 50%;
  z-index: 1200;
  width: min(92vw, 560px);
  padding: 14px 20px;
  color: #123b18;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.6vw, 46px);
}
.site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--brand-primary);
  font-weight: 900;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0;
}
.site-brand::first-letter { color: var(--brand-primary); }
.site-brand img {
  display: block;
  width: auto;
  max-width: clamp(230px, 22vw, 360px);
  max-height: 66px;
}
.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.3vw, 38px);
}
.primary-menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.05vw, 38px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu-list > li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}
.primary-menu-list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #000000;
  font-size: clamp(0.94rem, 0.98vw, 1.08rem);
  font-weight: 700;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
  will-change: transform;
}
.primary-menu-list > li:hover > a,
.primary-menu-list > li:focus-within > a {
  color: var(--brand-primary);
  animation: headerHoverBump 420ms var(--ease) both;
}
.menu-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.submenu-toggle { display: none; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 16px) scale(0.985);
  transform-origin: top center;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms var(--ease);
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.rich-dropdown,
.compact-dropdown,
.mega-menu {
  background: #ffffff;
  border: 1px solid rgba(57, 181, 74, 0.46);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(24, 80, 34, 0.14);
}
.rich-dropdown::before,
.compact-dropdown::before,
.mega-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.rich-dropdown,
.compact-dropdown {
  width: 350px;
  padding: 12px;
  margin: 0;
  list-style: none;
  overflow: hidden;
  background: linear-gradient(145deg, #f5fcf6 0%, #e4f7e8 100%);
}
.compact-dropdown { width: 330px; }
.rich-dropdown li + li,
.compact-dropdown li + li { margin-top: 8px; }
.mega-menu {
  width: min(1180px, calc(100vw - 120px));
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  overflow: hidden;
}
.rich-dropdown a,
.compact-dropdown a {
  display: block;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.rich-dropdown a:hover,
.compact-dropdown a:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(29, 91, 39, 0.09);
  transform: translateY(-2px);
}
.rich-dropdown strong,
.compact-dropdown strong,
.mega-menu strong,
.mega-service em { display: block; }
.rich-dropdown strong,
.compact-dropdown strong,
.mega-menu strong { color: #000000; font-size: 0.95rem; font-weight: 800; }
.rich-dropdown span,
.compact-dropdown span { display: block; margin-top: 7px; color: var(--text-muted); font-size: 0.82rem; line-height: 1.45; }
.mega-menu__sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(145deg, #eefaf1 0%, #dff5e4 100%);
}
.mega-category {
  display: block;
  min-height: 132px;
  padding: 24px;
  border-radius: 10px;
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}
.mega-category:first-child { background: rgba(255, 255, 255, 0.78); }
.mega-category:hover {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 26px rgba(29, 91, 39, 0.09);
  transform: translateY(-2px);
}
.mega-category span {
  display: block;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.mega-menu__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 10px 18px;
}
.mega-service {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 106px;
  padding: 14px 20px;
  border-radius: 10px;
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.mega-service:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 22px;
  height: 1px;
  background: rgba(17, 17, 17, 0.08);
}
.mega-service:nth-child(even)::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(17, 17, 17, 0.08);
}
.mega-service:hover {
  background: rgba(57, 181, 74, 0.065);
  box-shadow: 0 10px 24px rgba(24, 80, 34, 0.08);
  transform: translateY(-2px);
}
.mega-service img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.mega-service em {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.5;
}
.mega-group h3 {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid var(--brand-primary);
  border-radius: 999px;
  cursor: pointer;
  color: var(--brand-primary);
  background: #ffffff;
  font-weight: 700;
  font-size: clamp(0.94rem, 0.96vw, 1.04rem);
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
  will-change: transform;
}
.header-cta:hover,
.btn:hover {
  color: #ffffff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 22px rgba(57, 181, 74, 0.18);
  animation: headerHoverBump 420ms var(--ease) both;
}
.btn--primary { min-width: 222px; }
.btn--secondary {
  border-color: transparent;
  background: transparent;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
}
.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #d8e8dc;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: #111111;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section {
  padding-top: clamp(0px, 1.5vw, 18px);
  background: #ffffff;
}
.hero-shell {
  min-height: clamp(620px, calc(100vh - var(--header-height) - 24px), 720px);
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px);
  background: var(--mint);
  border-radius: 0 70px 0 0;
  overflow: hidden;
}
.hero-copy h1 {
  max-width: 900px;
  margin: 0 0 clamp(58px, 6vw, 92px);
  color: var(--text-soft);
  font-size: clamp(2.75rem, 3.45vw, 4.25rem);
  line-height: 1.32;
  font-weight: 800;
}
.hero-copy h1::first-line { color: var(--text-soft); }
.hero-copy .button-row,
.hero-copy h1 { animation: heroReveal 760ms var(--ease); }
.hero-illustration {
  position: relative;
  min-height: 460px;
}
.hero-illustration picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-illustration img {
  position: absolute;
  inset: 0 -8% 0 auto;
  width: 118%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: softFloat 5.5s ease-in-out infinite;
}
.hero-orbit {
  position: absolute;
  inset: 18px 60px auto auto;
  width: min(29vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, #55d95b 0%, rgba(85, 217, 91, 0.18) 100%);
  animation: softFloat 5.5s ease-in-out infinite;
}
.people-scene {
  position: absolute;
  right: 30px;
  bottom: 36px;
  width: min(520px, 100%);
  height: 220px;
}
.people-scene span {
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 138px;
  border-radius: 32px 32px 12px 12px;
  background: #242936;
}
.people-scene span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f6b391;
  transform: translateX(-50%);
}
.people-scene span:nth-child(1) { left: 15px; height: 116px; background: #2b254f; }
.people-scene span:nth-child(2) { left: 110px; height: 160px; background: #535763; }
.people-scene span:nth-child(3) { left: 218px; height: 132px; background: var(--brand-primary); }
.people-scene span:nth-child(4) { left: 318px; width: 95px; height: 78px; border-radius: 16px; background: #333333; }
.people-scene span:nth-child(5) { right: 18px; height: 150px; background: #56bd5a; }
.people-scene span:nth-child(1),
.people-scene span:nth-child(3),
.people-scene span:nth-child(5) { animation: personFloat 4.8s ease-in-out infinite; }
.people-scene span:nth-child(2),
.people-scene span:nth-child(4) { animation: personFloat 5.6s ease-in-out infinite reverse; }

.home-section {
  padding: clamp(76px, 8vw, 120px) 0;
  background: #ffffff;
}
.reveal-on-scroll,
.home-service-card,
.process-card,
.review-card,
.blog-card,
.project-card,
.pricing-card,
.job-card,
.career-detail-side,
.career-detail-main,
.career-benefit-grid article,
.package-detail-side,
.package-detail-main,
.team-detail-visual,
.team-detail-main,
.testimonial-detail-card,
.faq-detail-content,
.team-card,
.service-card,
.service-detail-card,
.seo-pricing-card,
.seo-benefit-card,
.seo-feature-card,
.case-step-grid article,
.career-intro-panel,
.faq-side-card,
.reference-faq details,
.legal-side-card,
.legal-content,
.sitemap-card,
.search-result-card,
.not-found-card,
.contact-directory,
.contact-form-panel,
.contact-purpose-grid article,
.partner-grid > div {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease), background var(--duration) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll.is-visible,
.home-service-card.is-visible,
.process-card.is-visible,
.review-card.is-visible,
.blog-card.is-visible,
.project-card.is-visible,
.pricing-card.is-visible,
.job-card.is-visible,
.career-detail-side.is-visible,
.career-detail-main.is-visible,
.career-benefit-grid article.is-visible,
.package-detail-side.is-visible,
.package-detail-main.is-visible,
.team-detail-visual.is-visible,
.team-detail-main.is-visible,
.testimonial-detail-card.is-visible,
.faq-detail-content.is-visible,
.team-card.is-visible,
.service-card.is-visible,
.service-detail-card.is-visible,
.seo-pricing-card.is-visible,
.seo-benefit-card.is-visible,
.seo-feature-card.is-visible,
.case-step-grid article.is-visible,
.career-intro-panel.is-visible,
.faq-side-card.is-visible,
.reference-faq details.is-visible,
.legal-side-card.is-visible,
.legal-content.is-visible,
.sitemap-card.is-visible,
.search-result-card.is-visible,
.not-found-card.is-visible,
.contact-directory.is-visible,
.contact-form-panel.is-visible,
.contact-purpose-grid article.is-visible,
.partner-grid > div.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.js-ready .reveal-on-scroll:not(.is-visible),
body.js-ready .home-service-card:not(.is-visible),
body.js-ready .process-card:not(.is-visible),
body.js-ready .review-card:not(.is-visible),
body.js-ready .blog-card:not(.is-visible),
body.js-ready .project-card:not(.is-visible),
body.js-ready .pricing-card:not(.is-visible),
body.js-ready .job-card:not(.is-visible),
body.js-ready .career-detail-side:not(.is-visible),
body.js-ready .career-detail-main:not(.is-visible),
body.js-ready .career-benefit-grid article:not(.is-visible),
body.js-ready .package-detail-side:not(.is-visible),
body.js-ready .package-detail-main:not(.is-visible),
body.js-ready .team-detail-visual:not(.is-visible),
body.js-ready .team-detail-main:not(.is-visible),
body.js-ready .testimonial-detail-card:not(.is-visible),
body.js-ready .faq-detail-content:not(.is-visible),
body.js-ready .team-card:not(.is-visible),
body.js-ready .service-card:not(.is-visible),
body.js-ready .service-detail-card:not(.is-visible),
body.js-ready .seo-pricing-card:not(.is-visible),
body.js-ready .seo-benefit-card:not(.is-visible),
body.js-ready .seo-feature-card:not(.is-visible),
body.js-ready .case-step-grid article:not(.is-visible),
body.js-ready .career-intro-panel:not(.is-visible),
body.js-ready .faq-side-card:not(.is-visible),
body.js-ready .reference-faq details:not(.is-visible),
body.js-ready .legal-side-card:not(.is-visible),
body.js-ready .legal-content:not(.is-visible),
body.js-ready .sitemap-card:not(.is-visible),
body.js-ready .search-result-card:not(.is-visible),
body.js-ready .not-found-card:not(.is-visible),
body.js-ready .contact-directory:not(.is-visible),
body.js-ready .contact-form-panel:not(.is-visible),
body.js-ready .contact-purpose-grid article:not(.is-visible),
body.js-ready .partner-grid > div:not(.is-visible) {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-weight: 800;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
}
.section-kicker span {
  display: block;
  width: 82px;
  height: 1px;
  background: var(--brand-primary);
}
.section-kicker.align-left { justify-content: flex-start; }
.section-title-row {
  display: block;
  margin-bottom: clamp(36px, 4vw, 58px);
  text-align: center;
}
.section-title-row h2,
.center-title,
.tech-layout h2 {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(2.25rem, 3.25vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}
.section-title-row h2 span,
.center-title span,
.tech-layout h2 span,
.contact-band h2 span { color: var(--brand-primary); }
.section-title-row h2::first-letter,
.center-title::first-letter { color: inherit; }
.section-title-row h2,
.center-title { max-width: 1220px; margin-inline: auto; }
.center-title.text-left {
  margin-inline: 0;
  text-align: left;
}
.section-title-row h2::after,
.center-title::after,
.tech-layout h2::after { content: ""; }
.section-title-row a,
.process-intro a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #000000;
  font-weight: 800;
  font-size: 1.02rem;
  padding-left: 96px;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}
.section-title-row a:hover,
.process-intro a:hover {
  color: var(--brand-primary);
  transform: translateX(3px);
}
.section-title-row a::before,
.process-intro a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 80px;
  height: 2px;
  background: #7b7b7b;
  transform: translateY(-50%);
}
.section-title-row a::after,
.process-intro a::after {
  content: "";
  position: absolute;
  left: 88px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-primary);
  transform: translateY(-50%);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 92px) clamp(34px, 6vw, 98px);
}
.services-section {
  padding: clamp(56px, 6vw, 88px) 0;
}
.services-section .section-kicker {
  margin-bottom: 16px;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 800;
}
.services-section .section-title-row {
  display: block;
  margin-bottom: clamp(36px, 4vw, 58px);
  text-align: center;
}
.services-section .section-title-row h2 {
  max-width: 1220px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 3.25vw, 3.65rem);
  line-height: 1.12;
  text-align: center;
}
.section-title-row__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  margin-top: 12px;
  flex-wrap: wrap;
}
.section-title-row__meta p {
  margin: 0;
  color: #000000;
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.45;
}
.services-section .section-title-row a {
  display: inline-flex;
  position: relative;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 96px;
  border: 0;
  border-radius: 0;
  color: #000000;
  background: transparent;
  box-shadow: none;
  font-size: 1.02rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}
.services-section .section-title-row a:hover {
  color: var(--brand-primary);
  transform: translateX(3px);
}
.services-section .section-title-row a::before,
.services-section .section-title-row a::after {
  display: block;
}
.services-section .section-title-row a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 80px;
  height: 2px;
  background: #7b7b7b;
  transform: translateY(-50%);
}
.services-section .section-title-row a::after {
  content: "";
  position: absolute;
  left: 88px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-primary);
  transform: translateY(-50%);
}
.home-service-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition-delay: calc(var(--stagger, 0) * 80ms);
}
.home-service-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.process-card:hover,
.blog-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.11);
}
.service-icon {
  width: 112px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50% 50% 44% 56%;
  color: var(--brand-primary);
  background: var(--mint);
  border: 1px solid var(--border);
  font-weight: 900;
}
.service-image {
  width: 146px;
  height: 122px;
  margin-bottom: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(57, 181, 74, 0.1));
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
}
.home-service-card:hover .service-image img {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 22px rgba(57, 181, 74, 0.16));
}
.home-service-card h3 {
  max-width: 360px;
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.55rem, 2.05vw, 2.08rem);
  line-height: 1.25;
  font-weight: 800;
}
.home-service-card h3 a {
  color: inherit;
  transition: color 160ms var(--ease);
}
.home-service-card h3 a:hover {
  color: var(--brand-primary);
}
.home-service-card p {
  max-width: 340px;
  margin: 0;
  color: #30313b;
  font-size: clamp(1.02rem, 1.22vw, 1.25rem);
  line-height: 1.62;
}
.service-card {
  min-height: 312px;
  background: transparent;
  box-shadow: none;
}
.service-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.service-card-media {
  width: 146px;
  height: 122px;
  display: block;
  margin-bottom: 34px;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(57, 181, 74, 0.1));
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
}
.service-card:hover .service-card-media img {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 22px rgba(57, 181, 74, 0.16));
}
.service-card h3 {
  max-width: 360px;
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.55rem, 2.05vw, 2.08rem);
  line-height: 1.25;
  font-weight: 800;
}
.service-card p {
  max-width: 340px;
  margin: 0 0 20px;
  color: #30313b;
  font-size: clamp(1.02rem, 1.22vw, 1.25rem);
  line-height: 1.62;
}
.service-card strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--brand-primary);
  font-weight: 900;
}
.service-card strong::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  transition: width var(--duration) var(--ease);
}
.service-card:hover strong::after { width: 52px; }

.tech-section,
.partners-section { background: var(--mint); }
.tech-layout {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}
.tech-layout h2 {
  max-width: 900px;
  margin-bottom: 58px;
  text-align: left;
}
.tech-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 50px;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
}
.tech-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid #000000;
  color: #000000;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}
.tech-tab:first-child {
  padding-left: 0;
}
.tech-tab.is-active,
.tech-tab:hover,
.tech-tab:focus-visible {
  color: var(--brand-primary);
}
.tech-tab:hover {
  transform: translateY(-1px);
}
.tech-tab:last-child { border-right: 0; }
.tech-panels {
  min-height: 196px;
}
.tech-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(70px, 1fr));
  gap: 32px 34px;
  max-width: 1080px;
}
.tech-panel[hidden] { display: none; }
.tech-logo-grid div {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: #111111;
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.tech-logo-grid div:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: none;
}
.tech-svg {
  display: block;
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 7px 12px rgba(13, 86, 31, 0.14));
}
.tech-logo-img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(13, 86, 31, 0.14));
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
}
.tech-logo-grid .tech-svg {
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
}
.tech-logo-grid div:hover .tech-svg,
.tech-logo-grid div:hover .tech-logo-img {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 18px rgba(57, 181, 74, 0.28));
}
.tech-logo-grid small {
  display: none;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 800;
}
.tech-illustration {
  position: relative;
  min-height: clamp(540px, 38vw, 650px);
  isolation: isolate;
  overflow: visible;
}
.tech-illustration::before {
  content: "";
  position: absolute;
  inset: -24px -28px -24px -18%;
  z-index: 0;
  background:
    radial-gradient(ellipse 62% 82% at 70% 50%, rgba(239, 249, 241, 0) 45%, var(--mint) 82%),
    linear-gradient(90deg, var(--mint) 0%, rgba(239, 249, 241, 0.94) 18%, rgba(239, 249, 241, 0) 46%);
  pointer-events: none;
}
.tech-illustration > img {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: -18px;
  bottom: -28px;
  width: min(112%, 760px);
  height: calc(100% + 58px);
  object-fit: contain;
  object-position: center right;
  animation: softFloat 6.5s ease-in-out infinite;
  filter: saturate(1.02) contrast(0.99);
  mix-blend-mode: multiply;
  opacity: 0.98;
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 68% 52%, #000 0 62%, rgba(0, 0, 0, 0.72) 75%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 82% at 68% 52%, #000 0 62%, rgba(0, 0, 0, 0.72) 75%, transparent 100%);
}
.floating-tech-badges {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.floating-tech-badges span {
  position: absolute;
  width: clamp(54px, 4.3vw, 78px);
  height: clamp(54px, 4.3vw, 78px);
  display: grid;
  place-items: center;
  padding: clamp(8px, 0.75vw, 12px);
  border-radius: 50%;
  color: #111111;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(32, 106, 46, 0.1), 0 0 0 7px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  animation: badgeOrbitFloat 5.4s ease-in-out infinite;
  --float-x: 8px;
  --float-y: -12px;
  will-change: transform, box-shadow;
}
.floating-tech-badges .tech-svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 13px rgba(13, 86, 31, 0.18));
}
.floating-tech-badges img {
  position: static;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(13, 86, 31, 0.12));
}
.floating-tech-badges .tech-mongodb { left: 34%; top: 23%; --float-x: -8px; --float-y: 10px; animation-delay: 0s; }
.floating-tech-badges .tech-app-store { left: 48%; top: 15%; --float-x: -7px; --float-y: -11px; animation-delay: .35s; }
.floating-tech-badges .tech-flutter { right: 25%; top: 14%; --float-x: 8px; --float-y: -10px; animation-delay: .7s; }
.floating-tech-badges .tech-redis { right: 7%; top: 29%; --float-x: 8px; --float-y: -9px; animation-delay: 1.05s; }
.floating-tech-badges .tech-js { left: 24%; top: 47%; --float-x: -6px; --float-y: -10px; animation-delay: 1.4s; }
.floating-tech-badges .tech-gcp {
  right: 30%;
  top: 42%;
  width: clamp(44px, 3vw, 58px);
  height: clamp(44px, 3vw, 58px);
  --float-x: 7px;
  --float-y: 9px;
  animation-delay: 1.75s;
}
.floating-tech-badges .tech-node {
  right: 9%;
  top: 48%;
  width: clamp(42px, 3vw, 54px);
  height: clamp(42px, 3vw, 54px);
  --float-x: -7px;
  --float-y: 8px;
  animation-delay: 2.1s;
}
.floating-tech-badges .tech-aws { left: 26%; bottom: 25%; --float-x: -8px; --float-y: 8px; animation-delay: 2.45s; }
.green-disc {
  position: absolute;
  right: 70px;
  top: 0;
  width: min(34vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #bdf6bf, #55c65b 72%);
  animation: softFloat 6.5s ease-in-out infinite;
}
.desk-person {
  position: absolute;
  right: 140px;
  bottom: 52px;
  width: 260px;
  height: 250px;
  border-radius: 45% 45% 38% 38%;
  background: linear-gradient(180deg, #f5b189 0 20%, #d9dee7 21% 64%, #343a46 65%);
  box-shadow: 80px 88px 0 -18px #55bd58, -36px 138px 0 -48px #194d21;
}
.tech-illustration > span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-primary);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  animation: iconFloat 4.8s ease-in-out infinite;
}
.tech-illustration > span:nth-of-type(1) { left: 12%; top: 48%; }
.tech-illustration > span:nth-of-type(2) { right: 14%; top: 28%; }
.tech-illustration > span:nth-of-type(3) { left: 34%; top: 16%; }
.tech-illustration > span:nth-of-type(4) { right: 7%; top: 56%; }

.process-section { background: #ffffff; }
.center-title { margin-bottom: clamp(24px, 3vw, 38px); }
.process-intro {
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  margin: 0 auto clamp(38px, 5vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  flex-wrap: wrap;
}
.process-intro p {
  margin: 0;
  color: #000000;
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.45;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.process-card {
  position: relative;
  isolation: isolate;
  min-height: 365px;
  padding: clamp(32px, 4vw, 44px);
  border-radius: 28px;
  background: #fbfcfd;
  border: 1px solid rgba(57, 181, 74, 0.08);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 360ms var(--ease), background 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease);
}
.process-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: #d9f4de;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}
.process-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.08);
  border: 1px solid rgba(57, 181, 74, 0.12);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}
.process-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(57, 181, 74, 0.18);
  box-shadow: 0 22px 46px rgba(18, 94, 38, 0.13), 0 8px 18px rgba(0, 0, 0, 0.06);
}
.process-card:hover::before {
  opacity: 1;
  transform: scale(1);
}
.process-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.process-card:nth-child(2),
.home-service-card:nth-child(2),
.review-card:nth-child(2),
.blog-card:nth-child(2) { transition-delay: 90ms; }
.process-card:nth-child(3),
.home-service-card:nth-child(3),
.review-card:nth-child(3),
.blog-card:nth-child(3) { transition-delay: 180ms; }
.process-card:nth-child(4),
.home-service-card:nth-child(4) { transition-delay: 270ms; }
.process-card span {
  display: block;
  margin-bottom: 22px;
  color: #cfcfd1;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
  transition: color 360ms var(--ease), transform 360ms var(--ease), opacity 360ms var(--ease);
}
.process-card h3 {
  margin: 0 0 24px;
  color: #000000;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  transition: color 360ms var(--ease), transform 360ms var(--ease);
}
.process-card p {
  margin: 0;
  color: #242530;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
  transition: color 360ms var(--ease), transform 360ms var(--ease);
}
.process-card:hover span {
  color: #c8c9c8;
  opacity: 1;
  transform: translateY(-3px) scale(1.03);
}
.process-card:hover h3,
.process-card:hover p {
  color: #000000;
  transform: translateY(-2px);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 58px);
  margin-top: 64px;
}
.partner-grid div {
  min-height: 114px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  font-weight: 900;
  text-align: center;
}
.partner-logo-card {
  position: relative;
  overflow: hidden;
  gap: 6px;
}
.partner-logo-card::before {
  content: "";
  position: absolute;
  inset: auto -28px -46px auto;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.08);
}
.partner-logo-card strong {
  position: relative;
  display: block;
  color: var(--brand-primary);
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
}
.partner-logo-card img {
  position: relative;
  width: min(100%, 132px);
  max-height: 52px;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02);
}
.partner-logo-card span {
  position: relative;
  display: block;
  color: #3e424a;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.who-section {
  background: #ffffff;
  padding-bottom: clamp(78px, 8vw, 126px);
}
.who-grid {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  align-items: center;
  gap: clamp(48px, 7.5vw, 124px);
}
.who-grid h2 {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: clamp(2.45rem, 4.2vw, 4.75rem);
  line-height: 1.18;
  font-weight: 800;
}
.who-grid h2 span { color: var(--brand-primary); }
.who-grid p {
  max-width: 820px;
  color: #242530;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.75;
}
.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand-primary);
  font-weight: 800;
  text-transform: lowercase;
}
.who-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.who-visual::before {
  content: "";
  position: absolute;
  inset: 9% 8%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(57, 181, 74, 0.2), rgba(57, 181, 74, 0.04));
}
.who-visual img {
  position: relative;
  width: min(100%, 640px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(57, 181, 74, 0.14));
  animation: softFloat 6.5s ease-in-out infinite;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4.5vw, 70px);
  margin-top: clamp(72px, 8vw, 116px);
}
.number-grid div {
  position: relative;
  padding: 12px 24px 8px;
  background: transparent;
  text-align: center;
}
.number-grid div + div::before {
  content: "";
  position: absolute;
  left: calc(clamp(28px, 4.5vw, 70px) / -2);
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: rgba(57, 181, 74, 0.22);
}
.number-grid strong {
  display: block;
  color: var(--brand-primary);
  font-size: clamp(4.2rem, 7.6vw, 8.1rem);
  line-height: 1;
  font-weight: 800;
}
.number-grid span {
  display: block;
  max-width: 280px;
  margin: 14px auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.45;
  font-weight: 800;
}

.testimonial-section { background: var(--mint); overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 28px;
  margin-top: 60px;
  will-change: transform;
  animation: testimonialDrift 18s ease-in-out infinite alternate;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
.review-card {
  flex: 0 0 min(420px, calc((100% - 56px) / 3));
  min-height: 360px;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
}
.review-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-primary);
  font-size: 2rem;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(57, 181, 74, 0.22);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.review-card h3 {
  margin: 0 0 6px;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 800;
}
.review-role {
  display: block;
  min-height: 2.6em;
  color: #5b5d66;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}
.stars {
  margin-top: 14px;
  color: var(--brand-primary);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.review-card blockquote {
  margin: 20px 0;
  color: #242530;
  font-size: 1.05rem;
  line-height: 1.65;
}
.review-card blockquote p {
  margin: 0;
}
.review-card span {
  color: var(--text-muted);
  font-weight: 800;
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.review-source::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}
.blog-preview-section { background: #ffffff; }
.blog-card-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(57, 181, 74, 0.2), transparent 30%),
    linear-gradient(135deg, #eff9f1 0%, #ffffff 100%);
  border: 1px solid rgba(57, 181, 74, 0.18);
}
.blog-card:hover .blog-card-visual,
.blog-card:hover img {
  filter: saturate(1.04);
}
.blog-card-visual span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-primary);
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(57, 181, 74, 0.2);
}

.contact-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background:
    linear-gradient(90deg, rgba(239, 249, 241, 0.96), rgba(239, 249, 241, 0.84)),
    url("../images/avyan-contact-map.png") center right / cover no-repeat,
    var(--mint);
}
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  align-items: center;
  gap: 48px;
}
.contact-band h2 {
  position: relative;
  max-width: 980px;
  margin: 0 0 24px;
  padding-left: 42px;
  color: #000000;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 900;
}
.contact-band h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 5px;
  background: var(--brand-primary);
}
.contact-band p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
}
.reach-card {
  text-align: center;
  background-image: radial-gradient(circle, rgba(57, 181, 74, 0.1) 1px, transparent 1.6px);
  background-size: 8px 8px;
}
.reach-card span {
  display: block;
  margin-bottom: 4px;
  color: #000000;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reach-card strong {
  display: block;
  color: var(--brand-primary);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.1;
  font-weight: 900;
}
.reach-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 14px;
  padding: 0 34px;
  color: #ffffff;
  background: var(--brand-primary);
  border-radius: 999px;
  font-weight: 900;
}

.floating-actions {
  position: fixed;
  right: clamp(24px, 3.2vw, 68px);
  bottom: clamp(54px, 6.8vw, 78px);
  z-index: 999;
  display: grid;
  gap: 8px;
  justify-items: end;
}
.floating-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #14ad1d;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-family: var(--heading-font, Manrope, Arial, sans-serif);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  transition: filter 180ms var(--ease);
}
.floating-action:hover { filter: brightness(1.04); }
.floating-action--enquiry {
  min-width: 148px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 7px 13px 13px 5px;
  transform: perspective(120px) rotateX(0deg) rotate(-1deg) skewX(4deg);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1.1rem;
  line-height: 1;
}
.floating-action--enquiry::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -14px;
  width: 26px;
  height: 20px;
  background: #14ad1d;
  clip-path: polygon(0 0, 100% 0, 78% 100%);
}
.floating-action--whatsapp {
  width: 78px;
  height: 78px;
  margin-right: 5px;
  padding: 5px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: #29a71a;
  overflow: hidden;
  animation: chatPulse 2.4s ease-in-out infinite;
}
.floating-action--whatsapp::before {
  content: "";
  position: absolute;
  inset: -17px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(24, 170, 29, 0.12);
}
.floating-action--whatsapp span {
  display: none;
}
.floating-action--whatsapp img {
  width: 88%;
  height: 88%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.quick-enquiry-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.quick-enquiry-form label {
  display: grid;
  gap: 7px;
  color: #000000;
  font-weight: 800;
}
.quick-enquiry-form input,
.quick-enquiry-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.quick-enquiry-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-primary);
  font-weight: 900;
  cursor: pointer;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
}
.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.enquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}
.enquiry-modal__panel {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  top: 50%;
  width: min(460px, calc(100vw - 36px));
  padding: clamp(28px, 4vw, 42px);
  transform: translateY(calc(-50% + 24px));
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  transition: transform var(--duration) var(--ease);
}
.enquiry-modal.is-open .enquiry-modal__panel { transform: translateY(-50%); }
.enquiry-modal__panel h2 { margin: 0 0 14px; color: var(--brand-primary); font-size: clamp(2rem, 4vw, 3.1rem); }
.eyebrow { color: var(--brand-primary); font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.enquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid #d8e8dc;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.site-footer {
  padding: 88px 0 30px;
  color: #55515d;
  background: #ffffff;
}
.footer-cta { display: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 0.82fr 1.22fr;
  gap: clamp(40px, 5.6vw, 96px);
  align-items: start;
}
.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 26px;
  color: #000000;
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  line-height: 1.25;
  font-weight: 800;
}
.footer-grid p,
.footer-grid li {
  margin: 0;
  color: #53505c;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.75;
  font-weight: 400;
}
.footer-grid ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-grid a {
  color: inherit;
  transition: color 160ms var(--ease);
}
.footer-grid a:hover {
  color: var(--brand-primary);
}
.footer-grid p strong {
  display: inline-block;
  margin: 10px 0 4px;
  color: #000000;
  font-size: 1.05rem;
  font-weight: 800;
}
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.social-links a { color: var(--brand-primary); font-weight: 900; }
.footer-legal-inline {
  margin-top: 24px !important;
  gap: 10px !important;
}
.footer-legal-inline a {
  color: #000000;
  font-weight: 700;
}
.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
  color: #6b6770;
  font-size: 0.95rem;
}
.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 96px) 0 88px;
  background:
    radial-gradient(circle at 82% 38%, rgba(57, 181, 74, 0.08) 1px, transparent 1.8px) 0 0 / 10px 10px,
    linear-gradient(180deg, #eff9f1 0%, #f4fbf5 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -34%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.08);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  min-height: 322px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero .section-kicker {
  margin-bottom: 24px;
}
.page-hero h1 {
  max-width: 1120px;
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  line-height: 1.08;
  font-weight: 800;
}
.page-hero p {
  max-width: 900px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.06rem, 1.32vw, 1.32rem);
  line-height: 1.72;
}
.section { padding: clamp(72px, 9vw, 112px) 0; }
.section-light { background: #ffffff; }
.section-dark { color: #ffffff; background: var(--brand-primary); }
.content-body { max-width: 860px; }
.content-body a { color: var(--brand-primary); font-weight: 800; }
.about-intro { background: #ffffff; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}
.about-intro-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}
.about-intro-visual img {
  width: min(100%, 560px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(57, 181, 74, 0.12));
  animation: softFloat 6.5s ease-in-out infinite;
}
.about-intro-content h2 {
  max-width: 860px;
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: clamp(2.2rem, 3.4vw, 4.2rem);
  font-weight: 800;
}
.about-intro-content h2::after { content: ""; }
.about-intro-content .content-body p {
  color: #242530;
  font-size: clamp(1.04rem, 1.2vw, 1.22rem);
  line-height: 1.72;
}
.about-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.about-fact-grid div {
  min-height: 132px;
  padding: 24px;
  border-radius: 22px;
  background: var(--mint);
  border: 1px solid rgba(57, 181, 74, 0.16);
}
.about-fact-grid strong {
  display: block;
  color: var(--brand-primary);
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 1;
  font-weight: 900;
}
.about-fact-grid span {
  display: block;
  margin-top: 10px;
  color: #2d3038;
  font-weight: 800;
  line-height: 1.45;
}
.about-proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.about-proof-list li {
  position: relative;
  padding-left: 28px;
  color: #242530;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.55;
}
.about-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(57, 181, 74, 0.1);
}
.about-activities {
  background: var(--mint);
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: 58px;
}
.activity-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(57, 181, 74, 0.18);
  border-radius: 26px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(35, 70, 41, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}
.activity-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.08);
}
.activity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 181, 74, 0.46);
  background: #fafffb;
  box-shadow: 0 24px 50px rgba(35, 70, 41, 0.14);
}
.activity-card span {
  display: block;
  margin-bottom: 72px;
  color: rgba(0, 0, 0, 0.14);
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
}
.activity-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  font-weight: 900;
}
.activity-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #242530;
  font-size: 1.03rem;
  line-height: 1.66;
}
.about-grid,
.service-detail-grid,
.quote-layout,
.contact-page-grid,
.case-study-layout {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}
.about-grid h2,
.service-side-card h2,
.contact-info-card h2 {
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: clamp(2.2rem, 3.4vw, 4.2rem);
  font-weight: 800;
}
.reference-content {
  color: #242530;
  font-size: clamp(1.05rem, 1.22vw, 1.22rem);
  line-height: 1.75;
}
.reference-content h2,
.reference-content h3,
.reference-content h4 {
  color: #000000;
  font-weight: 900;
  margin-top: 1.5em;
}
.reference-content a { color: var(--brand-primary); font-weight: 900; }
.case-study-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.case-study-media {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}
.case-study-media .single-image {
  margin: 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(57, 181, 74, 0.24);
  border-radius: 34px;
  background: #eff9f1;
  box-shadow: 0 22px 48px rgba(35, 70, 41, 0.09);
  aspect-ratio: 1 / 0.86;
  object-fit: contain;
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.case-metrics span {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 18px 14px;
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 18px;
  background: #ffffff;
  color: #4d4a55;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 24px rgba(35, 70, 41, 0.06);
}
.case-metrics strong {
  color: var(--brand-primary);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1;
}
.case-study-content {
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(57, 181, 74, 0.18);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(35, 70, 41, 0.07);
}
.case-study-content .eyebrow { margin: 0 0 18px; }
.case-study-content h2:first-of-type { margin-top: 0; }
.case-study-process { background: #eff9f1; }
.case-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}
.case-step-grid article {
  position: relative;
  min-height: 280px;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 70, 41, 0.08);
}
.case-step-grid span {
  display: block;
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.16);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}
.case-step-grid h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
}
.case-step-grid p {
  margin: 0;
  color: #242530;
  font-size: 1.05rem;
  line-height: 1.7;
}
.inner-card-grid,
.project-grid,
.pricing-grid,
.career-grid,
.blog-grid {
  display: grid;
  gap: 30px;
  margin-top: 58px;
}
.inner-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.project-grid,
.pricing-grid,
.career-grid,
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.inner-services-grid { margin-top: 72px; }
.work-proof-strip {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
  padding: 18px;
  border: 1px solid rgba(57, 181, 74, 0.24);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(27, 88, 41, 0.08);
}
.work-proof-strip div {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 8px 18px;
  border-right: 1px solid rgba(57, 181, 74, 0.24);
}
.work-proof-strip div:last-child { border-right: 0; }
.work-proof-strip strong {
  color: var(--brand-primary);
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1;
  font-weight: 900;
}
.work-proof-strip span {
  color: #4d4a55;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}
.work-category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.work-category-row span {
  padding: 12px 22px;
  border: 1px solid rgba(57, 181, 74, 0.34);
  border-radius: 999px;
  color: #000000;
  background: #f5fcf7;
  font-weight: 800;
}
.reference-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}
.reference-feature-list article {
  min-height: 310px;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 70, 41, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.reference-feature-list article:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 181, 74, 0.44);
  box-shadow: 0 22px 46px rgba(35, 70, 41, 0.14);
}
.reference-feature-list span {
  display: block;
  margin-bottom: 34px;
  color: rgba(0, 0, 0, 0.16);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}
.reference-feature-list h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  font-weight: 900;
}
.reference-feature-list p {
  margin: 0;
  color: #242530;
  font-size: 1.05rem;
  line-height: 1.7;
}
.project-card,
.pricing-card,
.job-card,
.blog-card,
.team-card,
.service-side-card,
.contact-info-card,
.reference-form-shell,
.sitemap-card {
  border-radius: 28px;
  background: #fbfcfd;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
}
.project-card,
.blog-card {
  overflow: hidden;
  border: 1px solid rgba(57, 181, 74, 0.12);
  background: #ffffff;
}
.project-card {
  position: relative;
  border-color: rgba(57, 181, 74, 0.22);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(34, 92, 45, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 181, 74, 0.44);
  box-shadow: 0 22px 46px rgba(34, 92, 45, 0.14);
}
.project-card a,
.blog-card a,
.team-card,
.pricing-card,
.job-card,
.service-side-card,
.contact-info-card,
.reference-form-shell,
.sitemap-card {
  display: block;
  height: 100%;
  padding: clamp(28px, 3vw, 42px);
}
.project-card img,
.blog-card img,
.team-card img,
.single-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 24px;
  object-fit: cover;
}
.project-card img,
.blog-card img { aspect-ratio: 16 / 10; }
.project-card img {
  padding: 18px;
  background: linear-gradient(180deg, #eef9f1 0%, #ffffff 100%);
  object-fit: contain;
}
.project-card__label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(42, 114, 54, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--brand-primary);
  font-weight: 900;
}
.project-card__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}
.team-card img { aspect-ratio: 4 / 4.6; }
.team-card {
  border: 1px solid rgba(57, 181, 74, 0.18);
  background: #ffffff;
  text-align: center;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 181, 74, 0.42);
  box-shadow: 0 22px 46px rgba(35, 70, 41, 0.13);
}
.team-card img {
  width: min(190px, 82%);
  margin: 0 auto 24px;
  padding: 12px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #eff9f1;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(35, 70, 41, 0.08);
}
.project-card h3,
.blog-card h3,
.pricing-card h3,
.job-card h3,
.team-card h3 {
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 900;
}
.blog-card h3 {
  font-size: clamp(1.55rem, 2vw, 2.16rem);
  line-height: 1.25;
  font-weight: 800;
}
.project-card p,
.blog-card p,
.pricing-card p,
.job-card p,
.team-card p,
.service-side-card p,
.contact-info-card p {
  color: #242530;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.6;
}
.blog-card p {
  color: #4d4a55;
  line-height: 1.68;
}
.pricing-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 24px 0;
}
.pricing-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(57, 181, 74, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfffc 0%, #f5fcf7 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.pricing-card:hover {
  border-color: rgba(57, 181, 74, 0.48);
  box-shadow: 0 18px 40px rgba(45, 136, 62, 0.14);
}
.pricing-card h3 {
  color: #001334;
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  font-weight: 800;
}
.pricing-start {
  display: block;
  margin: 26px 0 12px;
  color: #3d4a64;
  font-size: 1.02rem;
  font-weight: 700;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px !important;
}
.pricing-price strong {
  color: var(--brand-primary);
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
}
.pricing-price em {
  color: #001334;
  font-style: normal;
  font-weight: 800;
}
.pricing-card p {
  margin: 0 0 24px;
  color: #111111;
  font-size: clamp(1.05rem, 1.22vw, 1.24rem);
  line-height: 1.58;
}
.pricing-card .pricing-features {
  margin-top: auto;
}
.pricing-card ul {
  gap: 14px;
  margin: 30px 0 32px;
  padding: 30px 0 0;
  border-top: 2px dashed rgba(57, 181, 74, 0.72);
  list-style: none;
}
.pricing-card li {
  position: relative;
  padding-left: 34px;
  color: #000000;
  font-size: 1.06rem;
  line-height: 1.45;
}
.pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-primary);
  font-weight: 900;
}
.pricing-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}
.job-card a,
.sitemap-card a {
  color: var(--brand-primary);
  font-weight: 900;
}
.career-intro-panel {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(57, 181, 74, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 22%, rgba(57, 181, 74, 0.14) 0 18%, transparent 19%),
    #eff9f1;
}
.career-intro-panel h3 {
  margin: 10px 0 0;
  color: #111111;
  font-size: clamp(2rem, 3.1vw, 3.7rem);
  line-height: 1.18;
  font-weight: 900;
}
.career-intro-panel > p {
  margin: 0;
  color: #242530;
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  line-height: 1.75;
}
.career-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.career-benefits span,
.job-card__meta {
  display: inline-flex;
  width: max-content;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: rgba(57, 181, 74, 0.1);
  font-weight: 900;
}
.job-card {
  border: 1px solid rgba(57, 181, 74, 0.18);
  background: #ffffff;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}
.job-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 181, 74, 0.42);
  background: #f3fbf5;
  box-shadow: 0 22px 46px rgba(34, 92, 45, 0.12);
}
.job-card h3 { margin-top: 24px; }
.career-detail-section {
  background: #ffffff;
}
.career-detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}
.career-detail-side {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(57, 181, 74, 0.24);
  border-radius: 28px;
  background: #eff9f1;
  box-shadow: 0 18px 40px rgba(35, 70, 41, 0.08);
}
.career-detail-side h2 {
  margin: 10px 0 24px;
  color: #000000;
  font-size: clamp(1.9rem, 2.8vw, 3.1rem);
  line-height: 1.18;
  font-weight: 900;
}
.career-role-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.career-role-meta span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #242530;
  font-weight: 800;
}
.career-role-meta span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 5px rgba(57, 181, 74, 0.1);
}
.career-detail-main {
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(57, 181, 74, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(35, 70, 41, 0.07);
}
.career-detail-main .eyebrow { margin: 0 0 18px; }
.career-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.career-detail-grid section {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 22px;
  background: #f7fcf8;
}
.career-detail-grid h3 {
  margin-top: 0;
}
.career-benefit-section {
  background: var(--mint);
}
.career-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}
.career-benefit-grid article {
  min-height: 285px;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 70, 41, 0.08);
}
.career-benefit-grid span {
  display: block;
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.16);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}
.career-benefit-grid h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
}
.career-benefit-grid p {
  margin: 0;
  color: #242530;
  font-size: 1.05rem;
  line-height: 1.7;
}
.package-detail-layout,
.team-detail-layout,
.faq-detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}
.package-detail-side,
.package-detail-main,
.team-detail-visual,
.team-detail-main,
.testimonial-detail-card,
.faq-detail-content {
  border: 1px solid rgba(57, 181, 74, 0.18);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(35, 70, 41, 0.07);
}
.package-detail-side {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: clamp(30px, 4vw, 52px);
  background: #eff9f1;
}
.package-detail-side h2,
.team-detail-main h2 {
  margin: 10px 0 20px;
  color: #000000;
  font-size: clamp(1.9rem, 2.8vw, 3.1rem);
  line-height: 1.18;
  font-weight: 900;
}
.package-detail-side p {
  color: #242530;
  font-size: 1.06rem;
  line-height: 1.7;
}
.package-detail-main,
.team-detail-main,
.faq-detail-content {
  padding: clamp(30px, 4vw, 58px);
}
.package-note {
  margin-top: 34px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  background: #eff9f1;
}
.team-detail-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(34px, 5vw, 70px);
  background: #eff9f1;
}
.team-detail-visual img {
  width: min(360px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(35, 70, 41, 0.12);
}
.team-skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.team-skill-row span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: rgba(57, 181, 74, 0.1);
  font-weight: 900;
}
.testimonial-detail-section {
  background: #eff9f1;
}
.testimonial-detail-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 5vw, 74px);
}
.testimonial-detail-profile img {
  width: min(240px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 70, 41, 0.1);
}
.testimonial-detail-content p {
  color: #111111;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.65;
}
.testimonial-detail-content strong,
.testimonial-detail-content span {
  display: block;
}
.testimonial-detail-content strong {
  margin-top: 26px;
  color: #000000;
  font-size: 1.3rem;
}
.testimonial-detail-content span {
  margin-top: 4px;
  color: var(--brand-primary);
  font-weight: 900;
}
.reference-faq {
  width: 100%;
  display: grid;
  gap: 18px;
  margin: 0;
}
.faq-reference-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  margin-top: 58px;
}
.faq-side-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(57, 181, 74, 0.24);
  border-radius: 28px;
  background: #eff9f1;
  box-shadow: 0 18px 40px rgba(35, 70, 41, 0.08);
}
.faq-side-card h3 {
  margin: 10px 0 20px;
  color: #000000;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.18;
  font-weight: 900;
}
.faq-side-card p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #242530;
  font-size: 1.08rem;
  line-height: 1.7;
}
.reference-faq details {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(35, 70, 41, 0.06);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.reference-faq details[open],
.reference-faq details:hover {
  border-color: rgba(57, 181, 74, 0.48);
  box-shadow: 0 18px 36px rgba(35, 70, 41, 0.1);
}
.reference-faq summary {
  position: relative;
  cursor: pointer;
  padding: 24px 72px 24px 28px;
  color: #000000;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 900;
  list-style: none;
}
.reference-faq summary::-webkit-details-marker { display: none; }
.reference-faq summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-primary);
  transform: translateY(-50%);
  font-size: 1.3rem;
  line-height: 1;
}
.reference-faq details[open] summary::after {
  content: "-";
}
.reference-faq details div {
  padding: 0 28px 24px;
  color: #242530;
  line-height: 1.7;
}
.reference-form-shell {
  min-height: 360px;
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid rgba(57, 181, 74, 0.22);
  background: var(--mint);
}
.reference-service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.reference-service-form label {
  display: grid;
  gap: 9px;
  color: #000000;
  font-weight: 900;
}
.reference-service-form .is-wide,
.reference-service-form button { grid-column: 1 / -1; }
.reference-service-form span {
  font-size: 0.96rem;
}
.reference-form-shell input,
.reference-form-shell textarea,
.reference-form-shell select {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(57, 181, 74, 0.35);
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  outline: 0;
}
.reference-form-shell textarea { resize: vertical; }
.reference-form-shell input:focus,
.reference-form-shell textarea:focus,
.reference-form-shell select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(57, 181, 74, 0.1);
}
.contact-reference-section {
  background: #ffffff;
}
.contact-reference-grid {
  display: grid;
  grid-template-columns: 0.42fr minmax(0, 0.58fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
}
.contact-directory,
.contact-form-panel,
.contact-purpose-grid article {
  border-radius: 28px;
  background: #fbfcfd;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}
.contact-directory,
.contact-form-panel {
  padding: clamp(30px, 3.6vw, 54px);
}
.contact-directory h2,
.contact-form-panel h2 {
  margin: 0 0 30px;
  color: #000000;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.15;
  font-weight: 900;
}
.contact-location-list {
  display: grid;
  gap: 22px;
}
.contact-location-list article {
  padding: 26px;
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 22px;
  background: var(--mint);
}
.contact-location-list h3,
.contact-purpose-grid h3 {
  margin: 0 0 14px;
  color: #000000;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  font-weight: 900;
}
.contact-location-list p,
.contact-purpose-grid p {
  margin: 8px 0 0;
  color: #333844;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.55;
}
.contact-reference-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-reference-form label {
  display: grid;
  gap: 9px;
  color: #000000;
  font-weight: 900;
}
.contact-reference-form .is-full,
.contact-reference-form button {
  grid-column: 1 / -1;
}
.contact-reference-form input,
.contact-reference-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(57, 181, 74, 0.26);
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}
.contact-reference-form textarea {
  resize: vertical;
}
.contact-reference-form button {
  justify-self: start;
  min-height: 56px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-primary);
  font-weight: 900;
  cursor: pointer;
}
.contact-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}
.contact-purpose-grid article {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(57, 181, 74, 0.16);
}

.seo-industries-section,
.seo-pricing-section,
.seo-other-services {
  background: #ffffff;
}
.section-heading.centered {
  text-align: center;
}
.industry-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  border: 1px solid rgba(57, 181, 74, 0.28);
  border-radius: 22px;
  overflow: hidden;
}
.industry-tile {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  gap: 26px;
  align-items: end;
  padding: clamp(34px, 4.6vw, 66px);
  background: #ffffff;
}
.industry-tile.is-green {
  background: var(--brand-primary);
  color: #ffffff;
}
.industry-tile h3 {
  margin: 0 0 28px;
  color: inherit;
  font-size: clamp(1.65rem, 2.1vw, 2.25rem);
  font-weight: 900;
}
.industry-tile p {
  max-width: 520px;
  margin: 0;
  color: inherit;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.65;
}
.industry-tile img {
  width: min(210px, 100%);
  justify-self: end;
  filter: drop-shadow(0 22px 30px rgba(19, 114, 39, 0.12));
}
.seo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 58px;
}
.seo-pricing-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.2vw, 50px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfffc 0%, #f6fcf8 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.seo-pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 181, 74, 0.52);
  box-shadow: 0 22px 46px rgba(45, 136, 62, 0.18);
}
.seo-pricing-card h3 {
  margin: 0 0 36px;
  color: #001334;
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  font-weight: 900;
}
.seo-pricing-card > span {
  color: #3d4a64;
  font-size: 1.05rem;
  font-weight: 800;
}
.seo-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0 26px;
  color: #001334;
  font-weight: 900;
}
.seo-price strong {
  color: var(--brand-primary);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}
.seo-pricing-card p {
  margin: 0 0 30px;
  color: #111111;
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  line-height: 1.55;
}
.seo-pricing-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 30px 0 0;
  border-top: 2px dashed rgba(57, 181, 74, 0.7);
  list-style: none;
}
.seo-pricing-card li {
  position: relative;
  padding-left: 34px;
  color: #000000;
  font-size: 1.08rem;
  line-height: 1.45;
}
.seo-pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-primary);
  font-weight: 900;
}
.seo-pricing-card a {
  margin-top: auto;
  color: var(--brand-primary);
  font-weight: 900;
}
.seo-process-section,
.seo-why-section {
  background: var(--mint);
}
.seo-process-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.seo-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 5vw, 82px);
  row-gap: 34px;
}
.seo-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-primary);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(57, 181, 74, 0.18);
}
.seo-process-step h3 {
  margin: 0 0 14px;
  color: #000000;
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  font-weight: 900;
}
.seo-process-step p {
  margin: 0;
  color: #3a3d45;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  line-height: 1.55;
}
.seo-module-orbit {
  position: relative;
  width: 220px;
  height: 360px;
}
.seo-module-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 8px solid rgba(57, 181, 74, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.seo-module-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}
.seo-module-dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.seo-module-dot::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #ffffff;
  z-index: -1;
  transform: rotate(18deg);
}
.seo-module-dot.dot-1 { top: 28px; left: 126px; }
.seo-module-dot.dot-2 { top: 116px; right: 0; }
.seo-module-dot.dot-3 { bottom: 112px; right: 0; }
.seo-module-dot.dot-4 { bottom: 24px; left: 126px; }
.seo-module-orbit.is-right .seo-module-dot.dot-1 { top: 28px; left: 52px; }
.seo-module-orbit.is-right .seo-module-dot.dot-2 { top: 116px; left: 0; right: auto; }
.seo-module-orbit.is-right .seo-module-dot.dot-3 { bottom: 112px; left: 0; right: auto; }
.seo-module-orbit.is-right .seo-module-dot.dot-4 { bottom: 24px; left: 52px; }
.seo-why-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.42fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.seo-why-top > div > p {
  max-width: 980px;
  margin: 46px 0 0;
  color: #000000;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.65;
}
.seo-feature-card,
.seo-benefit-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 26px rgba(35, 85, 44, 0.06);
}
.seo-feature-card {
  padding: clamp(34px, 4vw, 56px);
}
.seo-feature-card img,
.seo-benefit-card img {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  object-fit: contain;
  border-radius: 50%;
  background: #d8f4de;
}
.seo-feature-card h3,
.seo-benefit-card h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 900;
}
.seo-feature-card p,
.seo-benefit-card p {
  margin: 0;
  color: #30323a;
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  line-height: 1.55;
}
.seo-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.seo-benefit-card {
  min-height: 310px;
  padding: clamp(28px, 3vw, 42px);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.seo-benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(57, 181, 74, 0.15);
}
.seo-service-grid {
  margin-top: 76px;
}
.reference-form-shell button,
.reference-form-shell input[type="submit"] {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-primary);
  font-weight: 900;
}
.inner-contact-band { margin-top: 0; }
.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}
.blog-single-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}
.blog-single-aside .single-image,
.blog-single-visual {
  width: 100%;
  margin: 0 0 18px;
  border-radius: 28px;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  background: #eff9f1;
  box-shadow: 0 18px 40px rgba(35, 70, 41, 0.08);
}
.blog-single-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.blog-single-visual span {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.18);
}
.blog-single-visual strong {
  position: relative;
  z-index: 1;
  color: var(--brand-primary);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  font-weight: 900;
}
.blog-meta-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(57, 181, 74, 0.22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(35, 70, 41, 0.06);
}
.blog-meta-panel span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242530;
  font-weight: 800;
}
.blog-meta-panel span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-primary);
}
.blog-single {
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(57, 181, 74, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(35, 70, 41, 0.07);
}
.blog-single .eyebrow { margin: 0 0 18px; }
.blog-single p:first-of-type { margin-top: 0; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}
.legal-side-card {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(57, 181, 74, 0.24);
  border-radius: 28px;
  background: #eff9f1;
  box-shadow: 0 18px 40px rgba(35, 70, 41, 0.08);
}
.legal-side-card h2 {
  margin: 10px 0 20px;
  color: #000000;
  font-size: clamp(1.9rem, 2.8vw, 3.1rem);
  line-height: 1.18;
  font-weight: 900;
}
.legal-side-card p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #242530;
  font-size: 1.06rem;
  line-height: 1.7;
}
.legal-content,
.case-study-layout,
.sitemap-card {
  max-width: 1040px;
}
.legal-content {
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(57, 181, 74, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(35, 70, 41, 0.07);
}
.sitemap-layout,
.search-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.sitemap-card {
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 70, 41, 0.08);
}
.sitemap-card h2 {
  margin: 0 0 24px;
  color: #000000;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 900;
}
.sitemap-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sitemap-card li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #242530;
  font-weight: 800;
}
.sitemap-card li a::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 5px rgba(57, 181, 74, 0.1);
}
.search-results-section { background: #ffffff; }
.search-refine-form {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 34px auto 0;
  padding: 12px;
  border: 1px solid rgba(57, 181, 74, 0.28);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(35, 70, 41, 0.08);
}
.search-refine-form input {
  min-height: 54px;
  border: 0;
  padding: 0 22px;
  background: transparent;
  color: #111111;
  font: inherit;
  outline: 0;
}
.search-refine-form button {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-primary);
  font-weight: 900;
  cursor: pointer;
}
.search-result-grid { margin-top: 56px; }
.search-result-card,
.search-empty-card {
  border: 1px solid rgba(57, 181, 74, 0.2);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 70, 41, 0.08);
}
.search-result-card a,
.search-empty-card {
  display: block;
  height: 100%;
  padding: clamp(28px, 3vw, 42px);
}
.search-result-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: rgba(57, 181, 74, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.search-result-card h3,
.search-empty-card h3 {
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 900;
}
.search-result-card p,
.search-empty-card p {
  margin: 0;
  color: #242530;
  font-size: 1.06rem;
  line-height: 1.7;
}
.search-empty-card {
  grid-column: 1 / -1;
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}
.search-empty-card .btn { margin-top: 26px; }
.not-found-section { background: #eff9f1; }
.not-found-card {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  padding: clamp(34px, 5vw, 74px);
  border: 1px solid rgba(57, 181, 74, 0.22);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(35, 70, 41, 0.1);
}
.not-found-card h2 {
  margin: 10px 0 22px;
  color: #000000;
  font-size: clamp(2.3rem, 4.3vw, 5.2rem);
  line-height: 1.08;
  font-weight: 900;
}
.not-found-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 34px;
  color: #242530;
  font-size: clamp(1.05rem, 1.28vw, 1.25rem);
  line-height: 1.75;
}
.not-found-search {
  width: 100%;
  grid-template-columns: 1fr;
  border-radius: 28px;
  background: #eff9f1;
}
.not-found-search button { width: 100%; }

@keyframes heroReveal {
  from { opacity: 0.82; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softReveal {
  from { opacity: 0.86; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes personFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(25, 165, 30, 0.28); }
  50% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), 0 0 0 12px rgba(25, 165, 30, 0); }
}
@keyframes headerHoverBump {
  0% { transform: translateY(0); }
  42% { transform: translateY(-8px); }
  68% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
@keyframes testimonialDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-22%); }
}
@keyframes badgeOrbitFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    box-shadow: 0 12px 24px rgba(34, 108, 47, 0.08), 0 0 0 5px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: translate3d(var(--float-x), var(--float-y), 0) scale(1.03);
    box-shadow: 0 16px 30px rgba(34, 108, 47, 0.13), 0 0 0 8px rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 1280px) {
  :root { --header-height: 78px; }
  .site-header {
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.11);
  }
  .header-inner {
    gap: 14px;
  }
  .site-brand {
    min-width: 0;
  }
  .site-brand img {
    max-width: clamp(176px, 32vw, 260px);
    max-height: 58px;
  }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0 auto;
    width: min(430px, 100vw);
    display: flex;
    flex-direction: column;
    padding: 18px clamp(18px, 5vw, 34px) 34px;
    overflow-y: auto;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    box-shadow: -18px 0 42px rgba(20, 46, 25, 0.14);
    transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility var(--duration) var(--ease);
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
  .primary-menu-list { display: grid; gap: 8px; align-items: stretch; justify-content: stretch; }
  .primary-menu-list > li {
    display: block;
    min-height: auto;
    border: 1px solid #e5eee7;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
  }
  .primary-menu-list > li > a {
    min-height: 56px;
    justify-content: space-between;
    padding: 0 58px 0 16px;
    font-size: 1.02rem;
    font-weight: 800;
  }
  .primary-menu-list > li:hover > a,
  .primary-menu-list > li:focus-within > a {
    animation: none;
  }
  .menu-item-has-children > a::after { display: none; }
  .submenu-toggle {
    position: absolute;
    top: 7px;
    right: 8px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: var(--mint);
    cursor: pointer;
  }
  .submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary);
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--duration) var(--ease);
  }
  .menu-item-has-children.is-open > .submenu-toggle::before { transform: rotate(225deg) translateY(-2px); }
  .sub-menu,
  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    transition: max-height 320ms var(--ease), padding 320ms var(--ease);
  }
  .menu-item-has-children.is-open > .sub-menu { max-height: 900px; padding: 4px 12px 14px; }
  .menu-item-has-children.is-open > .mega-menu { max-height: 1400px; }
  .rich-dropdown,
  .compact-dropdown,
  .mega-menu {
    background: #f4fbf5;
    border-radius: 0 0 12px 12px;
  }
  .rich-dropdown a,
  .compact-dropdown a {
    padding: 13px 14px;
    border-radius: 8px;
  }
  .rich-dropdown span,
  .compact-dropdown span {
    margin-top: 4px;
  }
  .mega-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: hidden;
  }
  .mega-menu__sidebar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .mega-category { min-height: auto; padding: 14px; }
  .mega-menu__content {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .mega-service {
    min-height: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .mega-service img {
    width: 42px;
    height: 42px;
  }
  .mega-service em {
    font-size: 0.78rem;
  }
  .header-actions {
    margin-top: auto;
    padding-top: 18px;
    align-items: stretch;
    flex-direction: column;
  }
  .header-cta {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero-shell,
  .tech-layout,
  .who-grid,
  .about-intro-grid,
  .contact-band-grid,
  .about-grid,
  .service-detail-grid,
  .seo-why-top,
  .case-study-shell,
  .faq-reference-layout,
  .career-intro-panel,
  .career-detail-layout,
  .career-detail-grid,
  .package-detail-layout,
  .team-detail-layout,
  .testimonial-detail-card,
  .faq-detail-layout,
  .blog-single-layout,
  .legal-layout,
  .not-found-card,
  .contact-reference-grid,
  .quote-layout,
  .contact-page-grid,
  .case-study-layout { grid-template-columns: 1fr; }
  .hero-shell { border-radius: 0 42px 0 0; min-height: auto; }
  .hero-copy h1 { margin-bottom: 34px; font-size: clamp(2.35rem, 8vw, 4.4rem); line-height: 1.18; }
  .page-hero { padding: calc(var(--header-height) + 56px) 0 58px; }
  .page-hero .container { min-height: 230px; }
  .page-hero h1 { font-size: clamp(2.55rem, 10vw, 4.4rem); }
  .hero-illustration { min-height: 360px; }
  .hero-orbit { right: 10%; width: min(58vw, 360px); }
  .people-scene { right: 0; }
  .service-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-grid,
  .pricing-grid,
  .seo-pricing-grid,
  .seo-benefit-grid,
  .activity-grid,
  .reference-feature-list,
  .career-benefit-grid,
  .contact-purpose-grid,
  .career-grid,
  .blog-grid,
  .inner-card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-board { grid-template-columns: 1fr; }
  .case-study-media,
  .blog-single-aside,
  .legal-side-card,
  .career-detail-side,
  .package-detail-side,
  .faq-side-card { position: static; }
  .case-step-grid { grid-template-columns: 1fr; }
  .industry-tile {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 0.35fr);
  }
  .seo-process-layout { grid-template-columns: 1fr; }
  .seo-module-orbit { display: none; }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-track,
  .number-grid { grid-template-columns: 1fr; }
  .testimonial-track {
    display: grid;
    animation: none;
  }
  .review-card { flex-basis: auto; }
  .number-grid div + div::before { display: none; }
  .who-visual { min-height: 380px; }
  .tech-logo-grid { grid-template-columns: repeat(4, minmax(70px, 1fr)); }
  .tech-illustration { min-height: 460px; }
  .tech-illustration::before { inset-inline: 0; }
  .tech-illustration > img {
    right: 0;
    width: 100%;
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --header-height: 64px; }
  section {
    padding-block: 58px;
  }
  .container { width: calc(100% - 32px); }
  .header-inner {
    min-height: var(--header-height);
    gap: 16px;
    justify-content: space-between;
  }
  .site-brand { font-size: 1.15rem; }
  .site-brand img {
    width: auto;
    max-width: clamp(132px, 40vw, 156px);
    max-height: 40px;
  }
  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }
  .nav-toggle span {
    width: 21px;
    margin: 4px auto;
  }
  .primary-nav {
    inset: var(--header-height) 0 0 0;
    width: 100%;
    max-width: 100%;
    padding: 14px 13px 26px;
    border-top: 1px solid #e7f1e9;
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(20, 46, 25, 0.16);
  }
  .primary-nav.is-open {
    transform: translateY(0);
  }
  .primary-menu-list {
    gap: 7px;
  }
  .primary-menu-list > li > a {
    min-height: 52px;
    padding: 0 54px 0 14px;
    font-size: 0.98rem;
  }
  .submenu-toggle {
    top: 6px;
    width: 40px;
    height: 40px;
  }
  .header-actions {
    padding-top: 12px;
  }
  .header-cta {
    min-height: 48px;
  }
  .mega-menu__sidebar,
  .mega-menu__content { grid-template-columns: 1fr; }
  .mega-service:nth-child(odd)::after,
  .mega-service:nth-child(even)::after {
    right: 14px;
    left: 14px;
  }
  .hero-section {
    padding-top: 14px;
  }
  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 0;
    padding: 24px;
    border-radius: 0 24px 0 0;
    text-align: center;
  }
  .hero-copy,
  .hero-copy h1,
  .hero-illustration {
    min-width: 0;
    max-width: 100%;
  }
  .hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 800;
    text-wrap: pretty;
  }
  .hero-illustration {
    min-height: 0;
    width: 100%;
    margin-top: 18px;
  }
  .hero-illustration picture { height: auto; }
  .hero-illustration img {
    position: static;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    animation: none;
  }
  .hero-orbit {
    right: 2%;
    width: min(78vw, 300px);
  }
  .people-scene {
    right: 0;
    width: min(88vw, 340px);
  }
  .button-row { gap: 12px; align-items: stretch; flex-direction: column; }
  .button-row .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 20px;
    justify-content: center;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .section-kicker {
    justify-content: center;
    font-size: 0.88rem;
  }
  .services-section .section-title-row {
    text-align: center;
  }
  .services-section .section-title-row h2 {
    text-align: center;
    font-size: clamp(2.05rem, 9vw, 3.1rem);
  }
  .section-title-row__meta {
    gap: 12px;
    margin-top: 14px;
  }
  .section-title-row__meta p {
    width: 100%;
    font-size: 1rem;
  }
  .services-section .section-title-row a {
    width: auto;
    min-height: 44px;
    padding: 0;
  }
  .services-section .section-title-row a::before,
  .services-section .section-title-row a::after { display: none; }
  .service-grid,
  .process-grid,
  .testimonial-track,
  .number-grid,
  .project-grid,
  .pricing-grid,
  .work-proof-strip,
  .case-metrics,
  .reference-service-form,
  .sitemap-layout,
  .search-result-grid,
  .seo-pricing-grid,
  .seo-process-grid,
  .seo-benefit-grid,
  .activity-grid,
  .reference-feature-list,
  .career-benefit-grid,
  .contact-purpose-grid,
  .contact-reference-form,
  .career-grid,
  .blog-grid,
  .inner-card-grid.four,
  .partner-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .industry-tile {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .work-proof-strip {
    border-radius: 28px;
    padding: 14px;
  }
  .work-proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(57, 181, 74, 0.18);
    padding: 14px 10px;
  }
  .work-proof-strip div:last-child { border-bottom: 0; }
  .career-intro-panel,
  .career-detail-side,
  .career-detail-main,
  .faq-side-card,
  .legal-side-card,
  .not-found-card,
  .case-study-content,
  .case-step-grid article { border-radius: 22px; }
  .search-refine-form {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .search-refine-form button { width: 100%; }
  .reference-faq summary { padding-right: 64px; }
  .industry-tile img {
    justify-self: start;
    width: 150px;
  }
  .seo-pricing-card { min-height: auto; }
  .tech-section {
    padding-top: 54px;
  }
  .tech-layout {
    gap: 26px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .tech-layout h2 {
    margin-bottom: 28px;
    text-align: center;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }
  .tech-tabs {
    justify-content: center;
    gap: 10px 0;
    margin-bottom: 26px;
    overflow: visible;
    padding-bottom: 6px;
    flex-wrap: wrap;
  }
  .tech-tabs::-webkit-scrollbar {
    display: none;
  }
  .tech-tab {
    flex: 0 1 auto;
    padding: 0 12px;
    white-space: nowrap;
    font-size: 0.98rem;
  }
  .tech-panels {
    min-height: auto;
  }
  .tech-logo-grid {
    grid-template-columns: repeat(3, minmax(64px, 1fr));
    gap: 18px 16px;
  }
  .tech-logo-grid div {
    min-height: 74px;
  }
  .tech-svg {
    width: 48px;
    height: 48px;
  }
  .tech-logo-img {
    width: 56px;
    height: 56px;
  }
  .tech-illustration {
    min-height: 315px;
    max-width: 390px;
    width: 100%;
    margin: 10px auto 0;
  }
  .tech-illustration::before {
    inset: 0;
  }
  .floating-tech-badges {
    max-width: 100%;
  }
  .tech-illustration::before {
    width: min(76vw, 290px);
    height: min(76vw, 290px);
    right: 0;
    left: auto;
  }
  .tech-person {
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
  }
  .tech-floating-logo {
    width: 52px;
    height: 52px;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(42, 83, 48, 0.12);
  }
  .tech-floating-logo img {
    width: 34px;
    height: 34px;
  }
  .tech-floating-logo.logo-1 { top: 10%; left: 18%; }
  .tech-floating-logo.logo-2 { top: 3%; left: 47%; }
  .tech-floating-logo.logo-3 { top: 12%; right: 13%; }
  .tech-floating-logo.logo-4 { top: 37%; left: 8%; }
  .tech-floating-logo.logo-5 { top: 40%; right: 5%; }
  .tech-floating-logo.logo-6 { right: 18%; bottom: 8%; }
  .tech-floating-logo.logo-7 { left: 18%; bottom: 8%; }
  .section-title-row,
  .process-intro { align-items: center; flex-direction: column; border-radius: 0; text-align: center; }
  .process-intro p { width: 100%; font-size: 1rem; }
  .section-title-row a,
  .process-intro a { padding-left: 0; }
  .section-title-row a::before,
  .section-title-row a::after,
  .process-intro a::before,
  .process-intro a::after { display: none; }
  .floating-actions {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 990;
    gap: 6px;
    grid-auto-flow: row;
  }
  .floating-action--enquiry {
    display: none;
  }
  .floating-action--enquiry::after {
    right: 16px;
    bottom: -10px;
    width: 20px;
    height: 15px;
  }
  .floating-action--whatsapp {
    display: inline-flex;
    width: 56px;
    height: 56px;
    margin-right: 0;
    padding: 4px;
    border-width: 4px;
  }
  .contact-band h2 { padding-left: 22px; }
  .reach-card strong { font-size: 2.1rem; }
  .number-grid strong { font-size: 4rem; }

  /* Keep single-column mobile content visually centred and free of overflow. */
  .home-service-card,
  .process-card,
  .review-card,
  .project-card,
  .pricing-card,
  .blog-card,
  .partner-logo-card,
  .number-grid > div,
  .who-grid > div,
  .contact-band-grid > div,
  .footer-grid > div {
    text-align: center;
  }
  .home-service-card,
  .home-service-card > a,
  .service-card,
  .service-card > a {
    align-items: center;
    text-align: center;
  }
  .home-service-card h3,
  .home-service-card p,
  .service-card h3,
  .service-card p {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .home-service-card img,
  .service-icon,
  .review-avatar,
  .project-card img,
  .blog-card img,
  .partner-logo-card img {
    margin-inline: auto;
  }
  .who-grid,
  .contact-band-grid,
  .footer-grid {
    justify-items: center;
  }
  .contact-band h2 {
    padding-left: 0;
  }
  .reach-card strong,
  .footer-grid a,
  .footer-grid p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .site-brand img {
    max-width: 140px;
    max-height: 36px;
  }
  .nav-toggle {
    width: 40px;
    height: 40px;
  }
  .primary-menu-list > li > a {
    min-height: 50px;
    font-size: 0.94rem;
  }
  .hero-copy h1,
  .section-title-row h2,
  .tech-layout h2 {
    overflow-wrap: anywhere;
  }
  .tech-logo-grid {
    grid-template-columns: repeat(2, minmax(92px, 1fr));
  }
  .tech-tabs {
    margin-inline: 0;
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
