﻿:root {
  --black: #111827;
  --white: #ffffff;
  --paper: #f8fafc;
  --soft: #4b5563;
  --muted: #4b5563;
  --line: #e5e7eb;
  --dark-line: rgba(255, 255, 255, 0.14);
  --panel: #f8fafc;
  --primary: #a6df39;
  --primary-hover: #a6df39;
  --radius: 0;
  --label-col: clamp(210px, 17vw, 230px);
  --section-gap: clamp(44px, 5vw, 70px);
  --content-start: calc(var(--label-col) + var(--section-gap));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.section-pad {
  padding-inline: clamp(22px, 5vw, 66px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 11px clamp(22px, 5vw, 48px);
  background: var(--black);
  border-bottom: 1px solid transparent;
  color: var(--white);
  overflow: visible;
}

.site-header.scrolled {
  border-bottom-color: var(--dark-line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 14vw, 190px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 42px);
  font-size: 0.9rem;
  font-weight: 900;
  overflow: visible;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "\25BE";
  font-size: 0.78em;
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 250px;
  padding: 12px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.98);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown-menu a:hover {
  color: var(--primary);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.nav-call {
  min-width: 168px;
  padding: 14px 24px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--black);
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-call:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 200ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.68fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(30px, 4.8vw, 58px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.hero-centered {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(34px, 6vw, 84px);
  padding-bottom: clamp(58px, 8vw, 110px);
}

.hero-brand {
  position: relative;
  max-width: 1120px;
  margin: 0;
  text-align: left;
}

.hero-orb {
  display: none;
}

.hero-brand h1 {
  max-width: none;
  margin: 0 0 28px;
  color: var(--black);
  font-size: clamp(5.8rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-brand h2 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--black);
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-brand p {
  max-width: 920px;
  margin: 0;
  color: rgba(17, 24, 39, 0.66);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.kicker,
.section-title p,
.contact-head p {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.7rem, 8.2vw, 7.35rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: none;
}

h2 {
  margin-bottom: 0;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: none;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 700;
  text-transform: none;
}

p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-copy > p:not(.kicker) {
  max-width: 600px;
  color: var(--black);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:focus-visible,
.nav-dropdown-toggle:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.website-offer a:focus-visible,
.result-description a:focus-visible,
.socials a:focus-visible,
.footer a:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--primary);
  color: var(--black);
}

.button-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
}

.button-light:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.hero-panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(410px, 36vw, 560px);
  place-items: center;
  border: 0;
  background: transparent;
  overflow: visible;
}

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

.hero-image-panel img {
  display: block;
  width: auto;
  max-width: min(88%, 500px);
  max-height: clamp(410px, 36vw, 560px);
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(17, 24, 39, 0.16));
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--black);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee span {
  padding: 16px 26px;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 900;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 16px;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 400;
}

.stat span {
  color: var(--primary-hover);
  font-weight: 800;
}

.client-marquee {
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.client-marquee-label {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 20px clamp(20px, 4vw, 46px);
  border-right: 1px solid var(--dark-line);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
}

.client-marquee-window {
  position: relative;
  overflow: hidden;
}

.client-marquee-window::before,
.client-marquee-window::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
  content: "";
}

.client-marquee-window::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), rgba(17, 24, 39, 0));
}

.client-marquee-window::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), rgba(17, 24, 39, 0));
}

.client-marquee-track {
  display: flex;
  width: max-content;
  min-height: 92px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  animation: clientMarquee 36s linear infinite;
  will-change: transform;
}

.client-marquee-track span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(132, 204, 22, 0.34);
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 900;
  white-space: nowrap;
}

.client-marquee:hover .client-marquee-track {
  animation-play-state: paused;
}

.clients {
  width: 100%;
  padding: clamp(48px, 7vw, 82px) clamp(22px, 5vw, 66px);
  background: var(--white);
}

.clients .results-head {
  text-align: center;
}

.clients .results-head h2,
.clients .results-head h3 {
  margin-bottom: clamp(30px, 5vw, 54px);
}

.logo-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(26px, 4vw, 48px) clamp(18px, 3vw, 34px);
  margin: 0 auto;
}

.logo-box {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-box img {
  display: block;
  width: 100%;
  max-width: 165px;
  height: 82px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.logo-box img:hover {
  transform: scale(1.04);
}

.results {
  padding-top: clamp(68px, 8vw, 104px);
  padding-bottom: clamp(74px, 8vw, 112px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 860px;
}

.results-head {
  text-align: center;
}

.results-head p {
  margin-bottom: 12px;
  color: var(--primary-hover);
  font-weight: 900;
  text-transform: uppercase;
}

.results-head h2,
.results-head h3 {
  margin-bottom: 26px;
  color: var(--black);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.9rem, 5.6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: none;
}

.result-tabs {
  display: flex;
  max-width: 1120px;
  justify-content: flex-start;
  gap: 0;
  margin: 0 auto clamp(30px, 4vw, 48px);
  padding: 0 clamp(16px, 2vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.05);
  overflow-x: auto;
}

.result-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-height: 72px;
  border: 0;
  padding: 0 clamp(12px, 1.45vw, 20px);
  background: transparent;
  color: var(--black);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.result-tabs button::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 3px;
  background: transparent;
  content: "";
}

.result-tabs button.active {
  color: var(--primary-hover);
}

.result-tabs button.active::after {
  background: var(--primary);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.result-card {
  display: grid;
  overflow: hidden;
  min-height: 492px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  transition: transform 220ms ease, opacity 180ms ease;
}

.result-card.hidden {
  display: none;
}

.result-card:hover {
  transform: translateY(-6px);
}

.result-card h3 {
  display: grid;
  min-height: 76px;
  place-items: center;
  margin: 0;
  padding: 18px;
  color: var(--black);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  text-transform: none;
}

.result-card h3 a {
  color: inherit;
  overflow-wrap: anywhere;
}

.results-category-title {
  margin: 0 0 clamp(20px, 3vw, 30px);
  color: var(--black);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  text-align: center;
}

.result-visual {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.35), transparent 26%),
    linear-gradient(135deg, rgba(132, 204, 22, 0.86), rgba(101, 163, 13, 0.78)),
    linear-gradient(135deg, #e8f8d0, #ffffff);
}

.result-visual.warm {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(132, 204, 22, 0.76), rgba(17, 24, 39, 0.62)),
    linear-gradient(135deg, #ffffff, #eef7df);
}

.result-visual.deep {
  background:
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.82), rgba(132, 204, 22, 0.68)),
    linear-gradient(135deg, #e9f6d9, #ffffff);
}

.result-visual-image {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--black);
}

.result-visual-image img {
  display: block;
  width: min(100%, 520px);
  height: 242px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.result-description {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 148px;
  padding: 24px;
  background: var(--white);
}

.result-description p {
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.5;
}

.result-description a {
  width: max-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  padding: 0 18px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.result-description a:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.works-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  text-align: center;
}

.mockup {
  position: absolute;
  display: block;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.24);
}

.mockup::before {
  position: absolute;
  top: 15%;
  right: 10%;
  left: 10%;
  height: 34%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  content: "";
}

.mockup::after {
  position: absolute;
  right: 10%;
  bottom: 14%;
  left: 10%;
  height: 28%;
  background:
    repeating-linear-gradient(0deg, rgba(17, 24, 39, 0.12) 0 7px, transparent 7px 17px);
  content: "";
}

.mockup-main {
  top: 44px;
  left: 17%;
  width: 58%;
  height: 180px;
  transform: rotate(-12deg);
}

.mockup-side {
  right: 10%;
  bottom: 36px;
  width: 44%;
  height: 140px;
  transform: rotate(12deg);
}

.about,
.services,
.method,
.packages,
.contact {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(76px, 10vw, 132px);
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-title,
.contact-head {
  display: grid;
  grid-template-columns: var(--label-col) minmax(0, 1fr);
  gap: var(--section-gap);
  align-items: center;
}

.section-title {
  margin-bottom: clamp(38px, 6vw, 72px);
}

.about .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.section-title h2,
.contact-head h2,
.section-title h3,
.contact-head h3 {
  max-width: 820px;
  color: var(--primary-hover);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.about .section-title h2,
.about .section-title h3 {
  max-width: 760px;
  overflow-wrap: normal;
}

.about .section-title h2 span,
.about .section-title h3 span {
  display: block;
  white-space: nowrap;
}

.about-text {
  max-width: 820px;
  min-width: 0;
  margin-left: var(--content-start);
  padding-top: 0;
}

.about-text p {
  margin: 0 0 22px;
  color: var(--black);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 400;
  line-height: 1.45;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.service-intro {
  color: var(--soft);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

.growth-partners {
  padding-top: clamp(70px, 8vw, 108px);
  padding-bottom: clamp(76px, 8vw, 116px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.growth-title {
  max-width: 920px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  color: var(--black);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: none;
}

.growth-title span {
  color: var(--primary-hover);
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(340px, 420px) minmax(250px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}

.growth-list {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.growth-list article {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px dotted rgba(17, 24, 39, 0.42);
}

.growth-list article::after {
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--black);
  background: var(--white);
  content: "";
}

.growth-list-left article::after {
  left: 0;
}

.growth-list-right {
  text-align: right;
}

.growth-list-right article::after {
  right: 0;
}

.growth-list h3 {
  margin: 0 0 14px;
  color: var(--primary-hover);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
}

.growth-list p {
  margin: 0;
  color: var(--black);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.04rem);
  font-weight: 400;
  line-height: 1.42;
}

.growth-orbit {
  display: grid;
  place-items: center;
}

.growth-core {
  position: relative;
  display: grid;
  width: min(390px, 78vw);
  height: min(520px, 92vw);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(132, 204, 22, 0.44);
  border-radius: 50% / 44%;
  background: #f3f4f6;
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.18);
}

.growth-core::before {
  content: none;
}

.growth-core::after {
  content: none;
}

.growth-mascot {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: auto;
  height: 98%;
  max-width: none;
  transform: translateX(-50%);
  opacity: 1;
}

.growth-core strong {
  position: relative;
  z-index: 3;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.orbit-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 54px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(17, 24, 39, 0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
}

.badge-roi {
  left: 16%;
  bottom: 29%;
}

.badge-seo {
  top: 17%;
  left: 33%;
}

.badge-ads {
  top: 31%;
  right: 15%;
}

.badge-web {
  right: 17%;
  bottom: 18%;
}

.service-intro {
  max-width: 820px;
  margin: -30px 0 54px var(--content-start);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 78%;
  --glow-y: 18%;
  --card-lift: 0px;
  --card-scale: 1;
  --reveal-y: 0px;
  --card-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
  min-height: clamp(335px, 28vw, 390px);
  padding: clamp(22px, 2.2vw, 30px);
  overflow: hidden;
  border: 1px solid #a6df39;
  border-radius: clamp(22px, 2.2vw, 34px);
  background: #ffffff;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transform: perspective(1000px) translate3d(0, calc(var(--card-lift) + var(--reveal-y)), 0) scale(var(--card-scale)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 180ms cubic-bezier(0.18, 0.9, 0.2, 1);
  backface-visibility: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(166, 223, 57, 0.18), transparent 36%);
  content: "";
  opacity: 0.72;
  transition: opacity 220ms ease, transform 260ms ease;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card.is-hovered {
  --card-lift: -28px;
  --card-scale: 1.075;
  --card-shadow: 0 48px 105px rgba(132, 204, 22, 0.32);
  border-color: #a6df39;
}

.service-card:hover::before,
.service-card.is-hovered::before {
  opacity: 1;
  transform: scale(1.14);
}

.service-card.is-pressed {
  animation: service-tap 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:active {
  --card-lift: -16px;
  --card-scale: 1.045;
}

@keyframes service-tap {
  0% {
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
    transform: perspective(1000px) translateY(0) scale(1);
  }
  35% {
    box-shadow: 0 26px 62px rgba(132, 204, 22, 0.22);
    transform: perspective(1000px) translateY(-14px) scale(1.035);
  }
  68% {
    transform: perspective(1000px) translateY(3px) scale(0.992);
  }
  100% {
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
    transform: perspective(1000px) translateY(0) scale(1);
  }
}

.service-card span {
  display: block;
  margin-bottom: clamp(24px, 2.8vw, 36px);
  color: #a6df39;
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  font-weight: 900;
}

.service-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(0.94rem, 1.08vw, 1.08rem);
  line-height: 1.48;
  font-weight: 500;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #a6df39 !important;
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  font-weight: 950;
}

.service-card.service-card-featured {
  min-height: 420px;
  padding: 34px 30px 30px;
  background:
    radial-gradient(circle at 84% 12%, rgba(166, 223, 57, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfcf7 56%, #f5f8e1 100%);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.service-card.service-card-featured::before {
  opacity: 0.58;
  background: radial-gradient(circle at 84% 10%, rgba(166, 223, 57, 0.18), transparent 34%);
}

.service-card.service-card-featured:hover,
.service-card.service-card-featured.is-hovered {
  --card-lift: 0px;
  --card-scale: 1;
  --card-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
  --tilt-x: 0deg !important;
  --tilt-y: 0deg !important;
  --glow-x: 84% !important;
  --glow-y: 10% !important;
}

.service-card.service-card-featured:hover::before,
.service-card.service-card-featured.is-hovered::before {
  opacity: 0.78;
  transform: none;
}

.service-card.service-card-featured span {
  margin-bottom: 30px;
  font-size: clamp(1.38rem, 1.95vw, 1.8rem);
}

.service-card.service-card-featured small {
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.service-card.service-card-featured h3 {
  margin-bottom: 0;
  font-size: clamp(1.44rem, 2vw, 1.88rem);
  line-height: 0.92;
}

.service-card.service-card-featured .service-card-link {
  min-height: 44px;
  padding-inline: 18px;
}

.method-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-left: var(--content-start);
  margin-top: -10px;
}

.method-item {
  display: grid;
  grid-template-columns: 80px minmax(170px, 0.26fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.method-item span {
  color: var(--muted);
  font-weight: 900;
}

.method-item h3,
.method-item p {
  margin-bottom: 0;
}

.packages {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 100% 52%, rgba(166, 223, 57, 0.32), transparent 18%),
    var(--white);
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.package-cards {
  display: grid;
  align-items: end;
  max-width: 1080px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: 0 auto clamp(34px, 5vw, 56px);
  padding-top: 32px;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  overflow: visible;
  height: 475px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.78), rgba(255, 255, 255, 0.96)),
    var(--white);
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.05);
  text-align: center;
}

.package-card-featured {
  height: calc(475px + 1cm);
  border-color: var(--primary);
  box-shadow: 0 22px 60px rgba(132, 204, 22, 0.16);
}

.package-card h3 {
  margin: 0;
  padding: 30px 24px 0;
  color: var(--black) !important;
  font-size: clamp(1.24rem, 1.9vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
}

.package-card-featured h3 {
  padding-top: 40px;
}

.package-card > strong {
  margin: 10px 24px 8px;
  color: var(--primary-hover);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.package-card small {
  display: block;
  margin: 0 24px 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.14);
  color: var(--soft);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.package-card em {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  min-width: 126px;
  padding: 10px 18px;
  background: var(--primary);
  border-radius: 999px;
  color: var(--black);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 10px 22px rgba(132, 204, 22, 0.3);
}

.package-card ul {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 0 28px 18px;
  list-style: none;
}

.package-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 20px;
  border-bottom: 0;
  padding: 0;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.28;
  text-align: left;
}

.package-card li span {
  color: var(--muted);
  font-weight: 700;
}

.package-card li b {
  min-width: 18px;
  color: var(--primary-hover);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.package-card li:last-child b {
  color: var(--primary-hover);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}

.package-card a {
  align-self: end;
  margin: 0 28px 28px;
  padding: 15px 20px;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 7px;
  color: var(--black) !important;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 24px rgba(132, 204, 22, 0.24);
}

.package-card a:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.website-offer {
  position: relative;
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 1140px);
  max-width: 1140px;
  align-items: center;
  gap: clamp(26px, 4vw, 60px);
  margin: clamp(42px, 5vw, 70px) auto 0;
  padding: 52px 40px 36px;
  border: 1px solid var(--primary);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(166, 223, 57, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
  overflow: visible;
}

.website-offer-copy {
  display: block;
  min-width: 0;
  padding-top: 0;
  padding-right: 0;
}

.website-offer-tag {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black) !important;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 22px rgba(132, 204, 22, 0.24);
}

.website-offer h3 {
  margin: 0;
  color: var(--black) !important;
  max-width: 100%;
  font-size: clamp(1.55rem, 2.35vw, 2.5rem);
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.website-offer a {
  display: inline-flex;
  min-height: 52px;
  flex: 0 0 auto;
  justify-self: end;
  min-width: 224px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 0 22px;
  background: var(--primary);
  color: var(--black) !important;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.website-offer a:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.contact-head {
  align-items: center;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(54px, 10vw, 180px);
  row-gap: clamp(14px, 2vw, 22px);
}

.contact-head h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-head span {
  display: block;
  max-width: 430px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  grid-column: 2;
  margin-top: 0;
}

.contact {
  background: var(--white);
  color: var(--black);
  border-bottom-color: var(--line);
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(46px, 5vw, 68px);
  contain-intrinsic-size: 420px;
}

.contact .contact-head p,
.contact .contact-head span {
  color: var(--soft);
}

.service-page {
  background:
    radial-gradient(circle at top left, rgba(166, 223, 57, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.service-page .hero,
.service-hero {
  gap: clamp(28px, 5vw, 56px);
  padding-top: clamp(48px, 7vw, 92px);
  padding-bottom: clamp(50px, 7vw, 90px);
}

.service-page .service-section .section-title,
.service-page .service-section .service-intro-wide,
.service-page .service-section .benefit-grid,
.service-page .service-section .method-list,
.service-page .service-section .faq-list,
.service-page .service-section .service-portfolio,
.service-page .service-section .service-portfolio-grid,
.service-page .contact-head {
  width: min(100%, 1080px);
  margin-inline: auto;
}

.service-page .hero-copy > p:not(.kicker),
.service-intro-wide {
  max-width: 760px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.service-hero-grid-centered {
  display: block;
}

.service-hero-copy {
  display: grid;
  gap: 18px;
}

.service-hero-copy-centered {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.service-hero-copy-centered .kicker {
  margin-bottom: 6px;
}

.service-hero-copy-centered h1 {
  max-width: 20ch;
  margin: 0 auto 18px;
  color: var(--black);
  font-size: clamp(3rem, 4.8vw, 4.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.service-hero-copy-centered p {
  max-width: 820px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6;
}

.service-hero-copy-centered h1,
.service-hero-copy-centered p {
  margin-left: auto;
  margin-right: auto;
}

.service-badges-centered {
  justify-content: center;
}

.service-hero-copy-centered .hero-actions {
  justify-content: center;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.92)),
    var(--black);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.12);
}

.service-hero-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.service-hero-panel .service-hero-panel-copy {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 700;
}

.service-section {
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 96px);
  padding-inline: clamp(22px, 5vw, 66px);
  border-top: 1px solid var(--line);
}

.marquee,
.stats,
.about,
.growth-partners,
.clients,
.services,
.faq,
.contact,
.service-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.service-section .section-title {
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.04);
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.benefit-card p {
  margin-bottom: 0;
}

.service-process {
  margin-left: 0;
}

.service-process .method-item {
  grid-template-columns: 72px minmax(160px, 0.3fr) minmax(0, 1fr);
}

.service-process .method-item span {
  color: var(--primary-hover);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.faq-copy {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid rgba(166, 223, 57, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(166, 223, 57, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98));
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.faq-points {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.faq-points li {
  color: var(--black);
  line-height: 1.65;
}

.faq-list details {
  border: 1px solid rgba(166, 223, 57, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 223, 57, 0.5);
  box-shadow: 0 20px 42px rgba(17, 24, 39, 0.08);
}

.faq-list summary {
  position: relative;
  padding: 18px 56px 18px 20px;
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(166, 223, 57, 0.18);
  color: var(--black);
  font-size: 1rem;
  font-weight: 900;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  content: "â€“";
  background: rgba(166, 223, 57, 0.3);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.service-portfolio {
  margin-top: 12px;
}

.service-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-portfolio-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.04);
}

.service-portfolio-card img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 14px;
}

.service-portfolio-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1rem;
}

.service-portfolio-card p {
  margin-bottom: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card-link:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.service-card-link:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

.services-catalog {
  background: var(--paper);
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.service-catalog-card {
  position: relative;
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  border: 1px solid var(--primary);
  border-radius: clamp(22px, 2.2vw, 32px);
  background:
    radial-gradient(circle at 86% 8%, rgba(166, 223, 57, 0.18), transparent 34%),
    var(--white);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(132, 204, 22, 0.16);
}

.service-catalog-card-wide {
  grid-column: span 2;
}

.service-catalog-card-full {
  grid-column: 1 / -1;
}

.service-catalog-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--primary) !important;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.15;
}

.service-catalog-icon {
  flex: 0 0 auto;
  font-size: 1.35em;
}

.service-catalog-card > p {
  margin-bottom: 20px;
  line-height: 1.55;
}

.service-catalog-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 21px;
}

.service-catalog-card li {
  color: var(--black);
  line-height: 1.45;
}

.service-list-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-group {
  padding: 20px;
  border: 1px solid rgba(166, 223, 57, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.industry-group h3 {
  margin-bottom: 14px;
  color: var(--black) !important;
  font-size: 1.05rem;
}

.more-services-page .services-catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.more-services-page .service-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.more-services-page .industry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .services-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-catalog-card-wide,
  .service-catalog-card-full {
    grid-column: 1 / -1;
  }

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

  .more-services-page .services-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-catalog-grid,
  .service-list-columns,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .service-catalog-card-wide,
  .service-catalog-card-full {
    grid-column: auto;
  }

  .service-catalog-card:hover {
    transform: none;
  }

  .more-services-page .services-catalog-grid,
  .more-services-page .service-list-columns,
  .more-services-page .industry-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  position: relative;
  padding-top: 72px;
  padding-bottom: 26px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(140px, 0.5fr) minmax(220px, 0.74fr) minmax(360px, 1.2fr);
  gap: clamp(30px, 4vw, 58px);
  padding-bottom: 66px;
}

.footer-brand h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
}

.footer-logo {
  display: block;
  width: min(178px, 58vw);
  height: auto;
  margin: -18px 0 18px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 26px;
  color: #d8d8d2;
  font-size: 1rem;
  line-height: 1.58;
}

.footer-brand a,
.footer-brand span,
.footer-col a {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: #c9c9c2;
  transform: translateX(4px);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.socials a svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black) !important;
  transform: translateY(-2px);
}

.footer-col h3 {
  position: relative;
  width: max-content;
  margin: 0 0 24px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: none;
}

.footer-col h3::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--primary);
  content: "";
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
  color: #d8d8d2;
  line-height: 1.42;
}

.footer-contact span {
  color: var(--white);
  font-weight: 800;
}

.footer-contact strong {
  min-width: 0;
  color: #d8d8d2;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.footer-contact a[href^="mailto:"] {
  white-space: normal;
}

.footer-contact p {
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  border-top: 1px solid var(--dark-line);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.back-to-top {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--black) !important;
  font-size: 1.35rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal {
  --reveal-y: 30px;
  transform: perspective(1000px) translate3d(0, calc(var(--card-lift) + var(--reveal-y)), 0) scale(var(--card-scale)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: opacity 720ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 180ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.service-card.reveal.visible {
  --reveal-y: 0px;
  transform: perspective(1000px) translate3d(0, calc(var(--card-lift) + var(--reveal-y)), 0) scale(var(--card-scale)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes clientRail {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes clientMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .hero,
  .about,
  .section-title,
  .contact-head {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 38px;
  }

  .hero-centered {
    padding-bottom: 74px;
  }

  h1 {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .about .section-title h2,
  .about .section-title h3 {
    max-width: 760px;
  }

  .about .section-title h2 span,
  .about .section-title h3 span {
    white-space: normal;
  }

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

  .about-text,
  .service-intro {
    margin-top: 0;
    margin-left: 0;
  }

  .growth-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
    gap: 30px;
  }

  .growth-orbit {
    order: 2;
  }

  .growth-list-left {
    order: 1;
  }

  .growth-list-right {
    order: 3;
    text-align: left;
  }

  .growth-list article::after {
    left: 0;
    right: auto;
  }

  .method-list {
    margin-left: 0;
    margin-top: 0;
  }

  .package-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: 0;
    margin-inline: auto;
  }

  .contact-head span {
    grid-column: auto;
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .section-pad {
    padding-inline: 20px;
  }

  .service-page .section-pad,
  .service-page .service-section,
  .service-page .footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .service-page .service-hero-copy,
  .service-page .section-title,
  .service-page .about-text,
  .service-page .service-intro-wide,
  .service-page .benefit-grid,
  .service-page .method-list,
  .service-page .contact-head,
  .service-page .footer-grid,
  .service-page .footer-bottom {
    width: 100%;
    min-width: 0;
  }

  .service-page h1,
  .service-page h2,
  .service-page h3,
  .service-page p,
  .service-page a,
  .service-page span {
    overflow-wrap: break-word;
  }

  .site-header {
    min-height: 62px;
    padding-inline: 16px;
    backdrop-filter: none;
  }

  .brand-logo {
    width: clamp(136px, 42vw, 176px);
    max-height: 44px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
  }

  .site-nav {
    position: fixed;
    inset: 62px 12px auto;
    z-index: 70;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    align-items: stretch;
    gap: 0;
    width: auto;
    max-height: calc(100vh - 74px);
    padding: 12px 12px 18px;
    background: var(--black);
    border: 1px solid var(--dark-line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 12px;
    min-height: 40px;
  }

  .nav-dropdown {
    position: relative;
    display: block;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    min-height: 40px;
  }

  .nav-dropdown-menu {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    min-width: 0;
    width: 100%;
    margin: 4px 0 0 !important;
    padding: 4px 0 0 0 !important;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    z-index: auto;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 8px 10px;
    border-radius: 0;
    white-space: normal;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    text-align: left;
    line-height: 1.25;
    box-sizing: border-box;
  }

  .nav-call {
    min-width: 0;
    margin-top: 6px;
    min-height: 42px;
    padding-block: 10px;
  }

  body.nav-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: clamp(3.25rem, 16vw, 4.85rem);
    line-height: 0.92;
  }

  h2,
  .section-title h2,
  .contact-head h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 0.96;
  }

  .hero {
    min-height: auto;
    gap: 26px;
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .hero-centered {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .hero-brand h1 {
    font-size: clamp(4.7rem, 23vw, 8rem);
    margin-bottom: 18px;
  }

  .hero-brand h2 {
    font-size: clamp(1.7rem, 7vw, 2.65rem);
    margin-bottom: 16px;
  }

  .hero-brand p {
    font-size: 1rem;
  }

  .service-hero-copy-centered h1 {
    max-width: 16ch;
    font-size: clamp(2rem, 7vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .service-hero-copy-centered p {
    font-size: 1rem;
  }

  .hero-brand {
    text-align: center;
  }

  .hero-copy > p:not(.kicker) {
    max-width: 100%;
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    flex: 1 1 150px;
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .hero-panel {
    max-width: 360px;
    min-height: 0;
  }

  .hero-image-panel img {
    max-width: min(78vw, 290px);
    max-height: 390px;
    margin-inline: auto;
  }

  .marquee-track {
    min-height: 54px;
    gap: 26px;
    animation-duration: 26s;
  }

  .marquee-track,
  .client-marquee-track {
    animation: none;
    transform: none;
  }

  .marquee {
    display: none;
  }

  .stats {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .about,
  .services,
  .method,
  .packages,
  .contact,
  .clients,
  .growth-partners {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .section-title,
  .contact-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .about-text,
  .service-intro,
  .method-list {
    margin-left: 0;
  }

  .about-text p,
  .service-intro {
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .client-marquee {
    grid-template-columns: 1fr;
  }

  .client-marquee-label {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .client-marquee-track {
    min-height: 76px;
    animation-duration: 42s;
  }

  .client-marquee-window::before,
  .client-marquee-window::after {
    width: 42px;
  }

  .growth-title {
    text-align: left;
  }

  .growth-core {
    width: min(300px, 82vw);
    height: min(400px, 108vw);
    margin-inline: auto;
  }

  .growth-list {
    gap: 20px;
  }

  .growth-list h3 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .growth-list p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .results-head {
    text-align: left;
  }

  .package-card {
    height: auto;
    min-height: 0;
  }

  .package-card-featured {
    height: auto;
  }

  .package-card h3 {
    padding-inline: 22px;
  }

  .package-card > strong {
    margin-inline: 22px;
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .package-card small {
    margin-inline: 22px;
  }

  .package-card ul {
    padding-inline: 22px;
  }

  .package-card a {
    margin-inline: 22px;
    min-height: 50px;
  }

  .website-offer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 54px 20px 24px;
    text-align: center;
    overflow: visible;
  }

  .website-offer-copy {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .website-offer-tag {
    top: 0;
    min-height: 34px;
    padding: 0 20px;
    font-size: 0.7rem;
    transform: translate(-50%, -50%);
  }

  .website-offer h3 {
    white-space: normal;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.05;
  }

  .website-offer a {
    width: min(100%, 320px);
    justify-self: center;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    padding: 18px;
  }

  .clients .results-head {
    text-align: center;
  }

  .clients .results-head h2,
  .clients .results-head h3 {
    font-size: clamp(2.1rem, 11vw, 3.7rem);
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .logo-box {
    min-height: 92px;
    padding: 8px;
  }

  .logo-box img {
    max-width: min(132px, 38vw);
    height: 68px;
  }

  .result-tabs {
    justify-content: flex-start;
    margin-inline: 0;
    padding-inline: 10px;
  }

  .result-tabs button {
    min-height: 58px;
    padding-inline: 14px;
  }

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

  .result-card {
    min-height: auto;
  }

  .stats,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
    transform: none !important;
    will-change: auto;
  }

  .service-card.service-card-featured {
    min-height: 0;
  }

  .service-card:hover,
  .service-card.is-hovered {
    --card-lift: 0px;
    --card-scale: 1;
  }

  .service-card::before {
    opacity: 0.26;
    transform: none;
  }

  .service-card.reveal,
  .service-card.reveal.visible {
    --reveal-y: 0px;
    transform: none;
  }

  .service-card:hover,
  .service-card.is-hovered,
  .service-card:active {
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.05);
  }

  .result-card:hover,
  .faq-list details:hover,
  .button:hover,
  .result-description a:hover,
  .socials a:hover,
  .footer-col a:hover {
    transform: none;
  }

  .service-card span {
    margin-bottom: 22px;
  }

  .contact-head {
    row-gap: 16px;
  }

  .contact-head span {
    grid-column: auto;
    max-width: 100%;
    margin-top: 8px;
    font-size: 1.06rem;
    line-height: 1.5;
  }

  .footer-bottom,
  .footer-bottom div {
    display: grid;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-bottom div {
    width: 100%;
    grid-template-columns: 1fr 42px;
    align-items: start;
    gap: 12px 18px;
  }

  .footer-bottom div a:not(.back-to-top) {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 46px;
    gap: 28px;
  }

  .footer-contact a,
  .footer-contact p {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .footer-contact a[href^="mailto:"] strong {
    font-size: 0.92rem;
  }

  .footer-logo {
    width: 168px;
    height: auto;
    margin-top: -12px;
  }

  .back-to-top {
    position: static;
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-self: end;
    width: 42px;
    height: 42px;
    margin: 0;
  }
}

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

  .marquee-track,
  .client-marquee-track {
    animation: none !important;
  }

  .service-card.reveal,
  .service-card.reveal.visible {
    transform: none !important;
  }
}

p {
  color: #111827 !important;
}

h1,
h2,
h3 {
  color: #a6df39 !important;
}

.site-header .brand span,
.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer a,
.footer span,
.footer strong {
  color: #ffffff !important;
}

/* Service page editorial alignment */
.service-page .service-hero-copy-centered,
.service-page .section-title,
.service-page .contact-head {
  display: flex;
  width: min(100%, 1080px);
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-page .service-hero-copy-centered .kicker,
.service-page .section-title > p,
.service-page .contact-head > p {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 34px;
  color: var(--black) !important;
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.service-page .service-hero-copy-centered .kicker::after,
.service-page .section-title > p::after,
.service-page .contact-head > p::after {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 96px;
  height: 4px;
  background: var(--primary);
  content: "";
  transform: translateX(-50%);
}

.service-page .service-hero-copy-centered h1,
.service-page .section-title h2,
.service-page .section-title h3,
.service-page .contact-head h2,
.service-page .contact-head h3 {
  max-width: 980px;
  margin: 0 auto 34px;
  color: var(--black) !important;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.75rem, 5.2vw, 5.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-align: center;
  text-transform: none;
  text-wrap: balance;
}

.service-page .service-hero-copy-centered h1 {
  max-width: 24ch;
}

.service-page .service-hero-copy-centered p,
.service-page .about-text,
.service-page .about-text p,
.service-page .service-intro-wide,
.service-page .contact-head span {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  color: var(--black) !important;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
}

.service-page .about-text p {
  margin-bottom: 24px;
}

.service-page .service-section .section-title {
  margin-bottom: clamp(34px, 5vw, 62px);
}

/* Our Services page — reference-matched catalogue layout */
.our-services-page {
  background: #ffffff;
  color: #0d1522;
  font-family: "Poppins", Arial, sans-serif;
}

.our-services-page button,
.our-services-page input,
.our-services-page select,
.our-services-page textarea {
  font-family: "Poppins", Arial, sans-serif;
}

.our-services-page main {
  background:
    radial-gradient(circle at 55% 6%, rgba(166, 223, 57, 0.045), transparent 20%),
    #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

.our-services-hero {
  padding: clamp(34px, 4.6vw, 48px) 20px clamp(25px, 3.2vw, 34px);
  text-align: center;
}

.our-services-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-services-eyebrow {
  display: inline-flex;
  min-height: 19px;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px !important;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(166, 223, 57, 0.13);
  color: #5d8d13 !important;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.our-services-hero h1 {
  margin: 0 0 9px;
  color: #0c1420 !important;
  font-size: clamp(3rem, 6.35vw, 4.25rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.our-services-hero h1 span {
  color: #71a916;
}

.our-services-intro {
  margin: 0 !important;
  color: #303844 !important;
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  font-weight: 500;
  line-height: 1.7;
}

.our-services-tagline {
  position: relative;
  margin: 15px 0 0 !important;
  padding-bottom: 13px;
  color: #6a9e19 !important;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.75vw, 1.3rem);
  font-style: italic;
  line-height: 1.2;
  transform: rotate(-1deg);
}

.our-services-tagline::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 86px;
  height: 1px;
  background: #0d1522;
  content: "";
  transform: translateX(-50%) rotate(-4deg);
}

.our-services-catalog {
  padding: 0 clamp(20px, 3.4vw, 34px) clamp(34px, 5vw, 52px);
}

.our-services-grid {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.65vw, 20px);
  align-items: stretch;
  margin: 0 auto;
}

.our-service-card {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  padding: clamp(22px, 2.3vw, 30px) clamp(16px, 1.9vw, 24px);
  overflow: hidden;
  border: 1px solid #dfe5e9;
  border-radius: 13px;
  background:
    radial-gradient(circle at 92% 5%, rgba(166, 223, 57, 0.065), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fdfefe 100%);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.our-service-card:hover {
  border-color: rgba(128, 184, 30, 0.52);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.075);
  transform: translateY(-3px);
}

.our-service-number {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #69a10e;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 950;
  line-height: 1;
}

.our-service-watermark {
  position: absolute;
  top: 16px;
  right: 15px;
  color: rgba(111, 155, 28, 0.1);
  font-size: clamp(2.25rem, 4.1vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.our-service-card > h2 {
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  color: #0c1420 !important;
  font-size: clamp(1.14rem, 1.6vw, 1.42rem);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: -0.025em;
}

.our-service-card > ul,
.our-industry-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: clamp(27px, 3.4vw, 39px) 0 0;
  padding: 0;
  list-style: none;
}

.our-service-card li,
.our-industry-group li {
  position: relative;
  min-width: 0;
  padding-left: 10px;
  color: #07111d;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 600;
  line-height: 1.55;
}

.our-service-card li::before,
.our-industry-group li::before {
  position: absolute;
  top: 0.61em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #78b51b;
  content: "";
}

.our-service-card-wide {
  grid-column: span 3;
}

.our-service-card-heading {
  display: flex;
  align-items: center;
  gap: 22px;
}

.our-service-card-heading h2 {
  margin: 0;
  color: #0c1420 !important;
  font-size: clamp(1.14rem, 1.6vw, 1.42rem);
  font-weight: 900;
  line-height: 1.25;
}

.our-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 26px;
  margin-top: 25px;
}

.our-industry-group {
  min-width: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid #e7eaed;
}

.our-industry-group:nth-last-child(-n + 2) {
  padding-bottom: 0;
  border-bottom: 0;
}

.our-industry-group h3 {
  margin: 0;
  color: #0c1420 !important;
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  font-weight: 900;
  line-height: 1.25;
}

.our-industry-group ul {
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 8px;
}

.assets-card > h2 {
  margin: -20px 50px 0 34px;
}

.assets-card > ul {
  display: block;
  width: min(100%, 310px);
  margin: 29px auto 0;
  text-align: center;
}

.assets-card > ul li {
  padding: 8px 4px;
  border-bottom: 1px solid #e4e8eb;
  font-size: clamp(0.76rem, 0.95vw, 0.86rem);
  font-weight: 600;
}

.assets-card > ul li::before {
  display: none;
}

.assets-card > ul li:last-child {
  border-bottom: 0;
}

.our-services-cta-wrap {
  padding: 0 clamp(20px, 3.4vw, 34px) clamp(18px, 2.6vw, 28px);
}

.our-services-cta {
  display: flex;
  width: min(100%, 1180px);
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid #e0e5e8;
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 0%, rgba(166, 223, 57, 0.085), transparent 28%),
    #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.035);
  text-align: center;
}

.our-services-cta h2 {
  margin: 0 0 5px;
  color: #0c1420 !important;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.our-services-cta h2 span {
  color: #69a10e;
}

.our-services-cta p {
  margin: 0 !important;
  color: #525b67 !important;
  font-size: 0.72rem;
}

.our-services-cta a {
  display: inline-flex;
  min-width: 128px;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 4px;
  background: #091522;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.our-services-cta a:hover {
  background: #5f9410;
  transform: translateY(-2px);
}

.our-services-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 13px clamp(28px, 9vw, 82px);
  background:
    radial-gradient(circle at 80% 10%, rgba(166, 223, 57, 0.13), transparent 30%),
    #fafcf7;
}

.our-services-benefit {
  display: grid;
  gap: 3px;
  padding: 0 clamp(14px, 3vw, 34px);
  border-right: 1px solid #cfd5d1;
}

.our-services-benefit:last-child {
  border-right: 0;
}

.our-services-benefit strong,
.our-services-benefit span {
  color: #111827;
  font-size: clamp(0.52rem, 0.73vw, 0.64rem);
  line-height: 1.35;
}

.our-services-benefit strong {
  font-weight: 900;
}

.our-services-footer.footer {
  padding: 19px clamp(30px, 6.5vw, 60px) 10px;
  background: linear-gradient(110deg, #07111b 0%, #0b1622 54%, #06101a 100%);
}

.our-services-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(130px, 1.05fr) minmax(70px, 0.65fr) minmax(70px, 0.65fr) minmax(150px, 1.3fr) minmax(95px, 0.8fr);
  gap: clamp(14px, 2.2vw, 26px);
  align-items: start;
  padding: 0 0 10px;
}

.our-services-footer .footer-logo {
  width: 105px;
  margin: -7px 0 5px;
}

.our-services-footer .footer-brand p {
  max-width: 145px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.55rem;
  line-height: 1.55;
}

.our-services-footer .footer-col h3 {
  margin: 0 0 9px;
  font-size: 0.64rem;
}

.our-services-footer .footer-col h3::after {
  display: none;
}

.our-services-footer .footer-col > a,
.our-services-footer .footer-contact p {
  display: block;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.55rem;
  line-height: 1.35;
}

.our-services-footer .footer-contact span {
  display: none;
}

.our-services-footer .footer-contact strong {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: inherit;
  font-weight: 500;
}

.our-services-footer .socials {
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 2px;
}

.our-services-footer .socials a {
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  font-size: 0.48rem;
}

.our-services-footer .footer-bottom {
  justify-content: center;
  padding-top: 7px;
  border-top: 0;
}

.our-services-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.53rem;
}

@media (max-width: 900px) {
  .our-services-footer .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .our-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-service-card {
    grid-column: span 1;
  }

  .our-service-card-wide {
    grid-column: span 2;
  }

  .our-services-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }

  .our-services-benefit:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 540px) {
  .our-services-hero {
    padding-top: 36px;
  }

  .our-services-hero h1 {
    font-size: clamp(2.8rem, 15vw, 3.7rem);
  }

  .our-services-intro br {
    display: none;
  }

  .our-services-catalog,
  .our-services-cta-wrap {
    padding-inline: 14px;
  }

  .our-services-grid {
    grid-template-columns: 1fr;
  }

  .our-service-card,
  .our-service-card-wide {
    grid-column: auto;
  }

  .our-service-card > ul {
    gap: 8px 12px;
  }

  .our-industry-grid {
    grid-template-columns: 1fr;
  }

  .our-industry-group:nth-last-child(2) {
    padding-bottom: 12px;
    border-bottom: 1px solid #e7eaed;
  }

  .assets-card > h2 {
    margin: 20px 0 0;
  }

  .our-services-benefits {
    padding-inline: 18px;
  }

  .our-services-benefit {
    padding-inline: 12px;
  }

  .our-services-footer.footer {
    padding: 28px 22px 14px;
  }

  .our-services-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 26px;
  }

  .our-services-footer .footer-brand,
  .our-services-footer .footer-social-col {
    grid-column: 1 / -1;
  }
}

.service-page .service-section .benefit-grid,
.service-page .service-section .method-list,
.service-page .service-section .faq-list,
.service-page .service-section .service-portfolio-grid {
  margin-top: 0;
}

.service-page .benefit-card,
.service-page .service-portfolio-card {
  text-align: center;
}

.service-page .service-process .method-item {
  width: min(100%, 980px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 760px) {
  .service-page .service-hero-copy-centered,
  .service-page .section-title,
  .service-page .contact-head {
    align-items: center;
    text-align: center;
  }

  .service-page .service-hero-copy-centered .kicker,
  .service-page .section-title > p,
  .service-page .contact-head > p {
    margin-bottom: 28px;
  }

  .service-page .service-hero-copy-centered .kicker::after,
  .service-page .section-title > p::after,
  .service-page .contact-head > p::after {
    top: calc(100% + 12px);
    width: 72px;
    height: 3px;
  }

  .service-page .service-hero-copy-centered h1,
  .service-page .section-title h2,
  .service-page .section-title h3,
  .service-page .contact-head h2,
  .service-page .contact-head h3 {
    max-width: 11.5ch;
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 11vw, 3.3rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .service-page .service-hero-copy-centered p,
  .service-page .about-text,
  .service-page .about-text p,
  .service-page .service-intro-wide,
  .service-page .contact-head span {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
  }
}

/* Unified section heading style */
.section-title,
.results-head,
.contact-head,
.service-page .section-title,
.service-page .contact-head {
  display: flex;
  width: min(100%, 1080px);
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title > p,
.results-head > p,
.contact-head > p,
.service-page .section-title > p,
.service-page .contact-head > p {
  width: auto;
  max-width: 100%;
  margin: 0 0 20px;
  color: var(--black) !important;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.service-page .section-title > p::after,
.service-page .contact-head > p::after {
  display: none;
}

.section-title h2,
.section-title h3,
.results-head h2,
.results-head h3,
.contact-head h2,
.contact-head h3,
.service-page .section-title h2,
.service-page .section-title h3,
.service-page .contact-head h2,
.service-page .contact-head h3 {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--primary) !important;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.1rem, 6vw, 6.1rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: none;
  text-wrap: balance;
}

.about .section-title h2 span,
.about .section-title h3 span {
  display: inline;
  white-space: normal;
}

.about .section-title h2,
.about .section-title h3 {
  max-width: 100%;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  white-space: nowrap;
}

.contact-head span {
  grid-column: auto;
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
}

@media (max-width: 760px) {
  .section-title,
  .results-head,
  .contact-head,
  .service-page .section-title,
  .service-page .contact-head {
    width: 100%;
  }

  .section-title > p,
  .results-head > p,
  .contact-head > p,
  .service-page .section-title > p,
  .service-page .contact-head > p {
    margin-bottom: 14px;
  }

  .section-title h2,
  .section-title h3,
  .results-head h2,
  .results-head h3,
  .contact-head h2,
  .contact-head h3,
  .service-page .section-title h2,
  .service-page .section-title h3,
  .service-page .contact-head h2,
  .service-page .contact-head h3 {
    max-width: 11.5ch;
    font-size: clamp(2.6rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .about .section-title h2,
  .about .section-title h3 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3.4rem);
    white-space: nowrap;
  }

  .contact-head span {
    margin-top: 18px;
  }
}

/* Centered content alignment */
.about-text,
.service-intro {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-text p,
.service-intro {
  text-align: center;
}

.method-list,
.service-process {
  width: min(100%, 1080px);
  margin-right: auto;
  margin-left: auto;
}

.method-item {
  grid-template-columns: minmax(48px, 0.14fr) minmax(150px, 0.26fr) minmax(260px, 1fr);
  text-align: center;
}

.method-item span,
.method-item h3,
.method-item p {
  text-align: center;
}

.method-item p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 760px) {
  .about-text,
  .service-intro,
  .method-list,
  .service-process {
    width: 100%;
    max-width: 100%;
  }

  .method-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.service-page .service-hero-copy-centered h1 {
  color: #a6df39 !important;
}

/* Homepage creative services preview */
.main-services {
  padding-top: clamp(62px, 8vw, 98px);
  padding-bottom: clamp(68px, 8vw, 104px);
  background: #f8fafc;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
}

.main-services .creative-services-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.main-services .service-grid {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.creative-services {
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(62px, 8vw, 100px);
  background:
    radial-gradient(circle at 50% 4%, rgba(166, 223, 57, 0.07), transparent 22%),
    #ffffff;
  font-family: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
}

.creative-services-heading {
  display: flex;
  width: min(100%, 900px);
  flex-direction: column;
  align-items: center;
  margin: 0 auto clamp(30px, 4.5vw, 50px);
  text-align: center;
}

.creative-services-heading > p:first-child {
  margin: 0 0 12px;
  color: #5f9215 !important;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.creative-services-heading h2 {
  margin: 0;
  color: #0b1420 !important;
  font-family: inherit;
  font-size: clamp(3rem, 5.7vw, 5.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.creative-services-heading h2 span {
  color: #669d14;
}

.creative-services-intro {
  margin: 19px 0 0 !important;
  color: #394250 !important;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.creative-services-heading > strong {
  margin-top: 13px;
  color: #6ca515;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 700;
}

.creative-services-grid {
  display: grid;
  width: min(100%, 1220px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
  align-items: stretch;
  margin: 0 auto;
}

.creative-service-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  grid-column: span 3;
  flex-direction: column;
  padding: clamp(16px, 1.7vw, 21px);
  border: 1px solid rgba(128, 164, 62, 0.28);
  border-radius: 15px;
  background:
    radial-gradient(circle at 90% 5%, rgba(166, 223, 57, 0.055), transparent 30%),
    #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.creative-service-card:hover {
  border-color: rgba(112, 164, 28, 0.62);
  box-shadow: 0 18px 38px rgba(86, 126, 21, 0.1);
  transform: translateY(-4px);
}

.creative-service-card-head {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 10px;
  align-items: start;
}

.creative-service-number {
  align-self: start;
  color: #69a412;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
}

.creative-service-card h3 {
  grid-column: 1;
  margin: 0;
  color: #0c1420 !important;
  font-family: inherit;
  font-size: clamp(1.12rem, 1.48vw, 1.34rem);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.creative-service-card > p {
  min-height: 82px;
  margin: 22px 0 17px !important;
  color: #111827 !important;
  font-size: clamp(0.94rem, 1.06vw, 1.02rem);
  font-weight: 500;
  line-height: 1.65;
}

.creative-service-image {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 245 / 159;
  place-items: center;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(111, 158, 30, 0.27);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(166, 223, 57, 0.08), rgba(230, 240, 225, 0.5)),
    #f8fbf5;
}

.creative-service-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

@media (max-width: 1050px) {
  .creative-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creative-service-card {
    min-height: 390px;
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .creative-services {
    padding-inline: 16px;
  }

  .creative-services-heading h2 {
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .creative-services-intro br {
    display: none;
  }

  .creative-services-grid {
    grid-template-columns: 1fr;
  }

  .creative-service-card {
    width: 100%;
    min-height: 370px;
    grid-column: auto;
  }

  .creative-service-card-head {
    grid-template-columns: 1fr;
  }

  .creative-service-card > p {
    min-height: 0;
  }

  .creative-service-image {
    min-height: 0;
  }
}

