:root {
  --bg: #07110c;
  --bg-strong: #0d1913;
  --surface: rgba(11, 16, 13, 0.82);
  --surface-strong: rgba(15, 22, 18, 0.94);
  --text: #f2f5f2;
  --muted: #b8c3bc;
  --line: rgba(183, 220, 199, 0.09);
  --accent: #5aae77;
  --accent-dark: #2c5f43;
  --accent-soft: rgba(90, 174, 119, 0.16);
  --forest: #11241b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(74, 155, 104, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 77, 53, 0.14), transparent 22%),
    linear-gradient(180deg, #020403 0%, #060907 42%, #030504 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  background-color: rgba(0, 0, 0, 0.2);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

body::after {
  content: none;
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 120px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(6, 10, 8, 0.5);
  border: 1px solid rgba(219, 243, 228, 0.08);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17, 27, 22, 0.88), rgba(52, 104, 74, 0.72));
  border: 1px solid rgba(183, 220, 199, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
}

.brand-copy span {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  text-shadow: 0 0 18px rgba(90, 174, 119, 0.18);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 16;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(219, 243, 228, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(16, 27, 21, 0.9), rgba(9, 15, 12, 0.82));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2f5f2, #9fd7b4);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(159, 215, 180, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 28px rgba(0, 0, 0, 0.22);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-subnav {
  display: none;
  position: relative;
  z-index: 15;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-subnav[hidden] {
  display: none !important;
}

.mobile-subnav.is-open {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.mobile-subnav a {
  padding: 12px 14px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 700;
}

.mobile-subnav a:hover,
.mobile-subnav a:focus-visible {
  color: var(--text);
  background: rgba(90, 174, 119, 0.12);
  border-color: rgba(144, 212, 168, 0.24);
}

.mobile-subnav a[aria-current="page"] {
  color: var(--text);
  background: rgba(74, 155, 104, 0.18);
  border-color: rgba(132, 197, 157, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 18px 34px rgba(16, 41, 28, 0.45);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #65bb83, #336c4c);
  box-shadow: 0 22px 38px rgba(20, 55, 36, 0.5);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(168, 185, 175, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #f8fbf8;
  background: rgba(90, 174, 119, 0.08);
  border-color: rgba(144, 212, 168, 0.24);
  box-shadow: 0 16px 30px rgba(11, 30, 20, 0.26);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.cta-label-mobile {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 72px 0 48px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px -24px auto;
  height: 420px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(74, 155, 104, 0.08), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 20% 20%, rgba(74, 155, 104, 0.08), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  filter: blur(0.2px);
  pointer-events: none;
  animation: heroPanelFloat 9s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -18px -32px 0;
  z-index: -2;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.16) 30%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(circle at 50% 18%, rgba(74, 155, 104, 0.08), transparent 42%);
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  inset: -10px -40px 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb,
.ambient-grid,
.ambient-line {
  position: absolute;
}

.ambient-orb {
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.9;
}

.orb-one {
  top: 18px;
  left: 4%;
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle, rgba(92, 181, 124, 0.22) 0%, rgba(92, 181, 124, 0.08) 38%, transparent 72%);
  animation: orbDriftOne 12s ease-in-out infinite;
}

.orb-two {
  top: 90px;
  right: 10%;
  width: 340px;
  height: 340px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(74, 155, 104, 0.1) 26%, transparent 70%);
  animation: orbDriftTwo 14s ease-in-out infinite;
}

.ambient-grid {
  top: 40px;
  left: 12%;
  width: 42%;
  height: 72%;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 82%);
  opacity: 0.35;
  transform: perspective(900px) rotateX(66deg) rotateZ(-18deg);
  transform-origin: top left;
  animation: gridBreath 10s ease-in-out infinite;
}

.ambient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 211, 171, 0.55), transparent);
  opacity: 0.8;
  animation: linePulse 7s ease-in-out infinite;
}

.line-one {
  top: 84px;
  right: 8%;
  width: 260px;
  transform: rotate(-14deg);
}

.line-two {
  bottom: 36px;
  left: 14%;
  width: 220px;
  transform: rotate(18deg);
}

.hero-copy,
.hero-card,
.service-card,
.benefit-grid article,
.steps article,
.testimonial-grid blockquote,
.faq-list details,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 8px;
  color: #84c59d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(132, 197, 157, 0.2);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5.2vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow:
    0 18px 50px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(255, 255, 255, 0.04);
}

.service-page h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5.6vw, 5.1rem);
  line-height: 0.94;
}

.hero-text,
.section-heading p,
.service-card p,
.benefit-grid p,
.steps p,
.testimonial-grid p,
.faq-list p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 10px 0 0;
  font-size: 1rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 14px;
  align-items: center;
}

.hero-actions .button {
  flex: 1 1 0;
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-card {
  display: flex;
  min-height: 100%;
  padding: 0;
  border-radius: var(--radius-xl);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-visual,
.service-visual {
  margin: 0;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  flex: 1;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a100d;
  min-height: 680px;
}

.hero-visual img,
.service-visual img {
  display: block;
  width: 100%;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.service-visual img {
  height: auto;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.9) 0%, rgba(5, 8, 6, 0.76) 18%, rgba(5, 8, 6, 0.34) 34%, rgba(5, 8, 6, 0.12) 52%, rgba(5, 8, 6, 0.06) 72%, rgba(5, 8, 6, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.14) 0%, rgba(5, 8, 6, 0.16) 34%, rgba(5, 8, 6, 0.84) 100%);
  pointer-events: none;
}

.hero-visual-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 12, 9, 0.8);
  border: 1px solid rgba(210, 245, 223, 0.12);
  color: #f5fbf6;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 46px 48px 236px;
  max-width: 40%;
}

.hero-overlay .eyebrow,
.hero-overlay h1,
.hero-overlay .hero-text,
.hero-overlay .hero-actions {
  position: relative;
  z-index: 1;
}

.hero-overlay .hero-text {
  margin-top: 0;
  max-width: 38ch;
  color: rgba(245, 249, 246, 0.84);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.56);
}

.hero-button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(6, 10, 8, 0.32);
  backdrop-filter: blur(10px);
}

.hero-button-ghost:hover,
.hero-button-ghost:focus-visible {
  background: rgba(90, 174, 119, 0.12);
  border-color: rgba(144, 212, 168, 0.28);
}

.card-kicker {
  margin: 0;
  font-weight: 700;
}

.hero-info-band {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 12, 9, 0.36), rgba(7, 12, 9, 0.5));
  border: 1px solid rgba(210, 245, 223, 0.07);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero-info-lead {
  display: grid;
  gap: 10px;
  align-content: start;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid article {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(14, 21, 17, 0.5), rgba(9, 15, 12, 0.34));
  border: 1px solid rgba(210, 245, 223, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.metric-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.metric-grid span {
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.92rem;
}

.callout {
  position: relative;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(49, 104, 73, 0.58), rgba(16, 27, 21, 0.7));
  color: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(132, 197, 157, 0.05),
    0 0 14px rgba(58, 118, 83, 0.08);
}

.callout::before {
  content: "\"";
  position: absolute;
  top: 8px;
  left: 14px;
  color: rgba(182, 234, 201, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
  pointer-events: none;
}

.callout p {
  margin: 0 0 8px;
  padding-left: 16px;
  color: inherit;
}

.callout span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-info-band .trust-list {
  grid-column: 1 / -1;
  margin-top: 0;
  gap: 8px;
}

.hero-info-band .trust-list li {
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(210, 245, 223, 0.05);
  font-size: 0.92rem;
}

.logos-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.logos-strip span {
  padding: 14px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.compact {
  max-width: 900px;
}

.service-grid,
.service-detail-grid,
.benefit-grid,
.steps,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

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

.service-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 20, 17, 0.92), rgba(8, 12, 10, 0.94));
}

.service-visual {
  position: relative;
  margin-bottom: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top left, rgba(125, 210, 154, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.04), rgba(5, 8, 6, 0.2)),
    linear-gradient(135deg, rgba(9, 15, 12, 0.08), rgba(9, 15, 12, 0));
  pointer-events: none;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: #8fceab;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(74, 155, 104, 0.12);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.before-after-section {
  padding-top: 22px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.before-after-card {
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(14, 20, 17, 0.92), rgba(8, 12, 10, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.before-after-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.before-after-header h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
}

.before-after-header span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(210, 245, 223, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 4 / 5;
}

.comparison-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.08), rgba(5, 8, 6, 0.26)),
    linear-gradient(135deg, rgba(9, 15, 12, 0.08), rgba(9, 15, 12, 0));
  pointer-events: none;
}

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

.comparison-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(7, 12, 9, 0.82);
  border: 1px solid rgba(210, 245, 223, 0.1);
  color: #f5fbf6;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-badge-after {
  background: linear-gradient(135deg, rgba(90, 174, 119, 0.92), rgba(44, 95, 67, 0.94));
  color: #fff;
}

.comparison-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(15, 23, 19, 0.9), rgba(8, 12, 10, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.detail-label {
  margin: 0 0 10px;
  color: #84c59d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.service-detail-card p,
.service-detail-card li {
  color: var(--muted);
  line-height: 1.75;
}

.service-detail-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #9ad6b1;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: #d4f3df;
}

.coverage-section {
  padding-top: 28px;
}

.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-chips span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-weight: 700;
}

.section-accent {
  padding: 36px 34px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(12, 23, 18, 0.98), rgba(2, 5, 4, 0.98));
  color: #fff;
  border: 1px solid rgba(130, 180, 151, 0.12);
}

.section-accent .eyebrow,
.section-accent p,
.section-accent h2,
.section-accent h3 {
  color: inherit;
}

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

.benefit-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.benefit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

.steps article {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 20, 17, 0.92), rgba(8, 12, 10, 0.94));
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c6448, #101f17);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(74, 155, 104, 0.18);
}

.steps h3,
.testimonial-grid footer {
  font-family: "Space Grotesk", sans-serif;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 20, 17, 0.88), rgba(8, 12, 10, 0.9));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.testimonial-grid footer {
  margin-top: 18px;
  color: #84c59d;
  font-weight: 700;
}

.review-source {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-source::before {
  content: "★★★★★";
  margin-right: 6px;
  color: #d7c36a;
}

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

.faq-list details {
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 20, 17, 0.92), rgba(8, 12, 10, 0.94));
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list p {
  margin: 12px 0 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 22, 18, 0.96), rgba(7, 10, 8, 0.98));
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.contact-actions p {
  margin: 4px 0 0;
  font-weight: 700;
}

.site-footer {
  margin-top: 24px;
  padding: 34px 30px 24px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 18, 15, 0.96), rgba(5, 8, 7, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.95fr 0.95fr;
  gap: 28px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-mark {
  margin-bottom: 18px;
}

.footer-brand-mark .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.82rem;
  opacity: 0.92;
}

.footer-brand p,
.footer-column span,
.footer-column a,
.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  line-height: 1.75;
}

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

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #407c58, #101c15);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

@keyframes orbDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, 12px, 0) scale(1.05);
  }
}

@keyframes orbDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 10px, 0) scale(1.04);
  }
}

@keyframes gridBreath {
  0%,
  100% {
    opacity: 0.28;
    transform: perspective(900px) rotateX(66deg) rotateZ(-18deg) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: perspective(900px) rotateX(66deg) rotateZ(-18deg) scale(1.03);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.36;
  }
  50% {
    opacity: 0.82;
  }
}

@keyframes heroPanelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .orb-one,
  .orb-two,
  .ambient-grid,
  .ambient-line {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

@media (max-width: 1080px) {
  .contact-card,
  .service-grid,
  .before-after-grid,
  .service-detail-grid,
  .benefit-grid,
  .steps,
  .testimonial-grid,
  .logos-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-overlay {
    max-width: 50%;
    padding: 42px 34px 236px;
  }

  .hero-actions .button {
    min-width: 0;
    padding: 0 14px;
  }

  .hero-info-band {
    grid-template-columns: 1fr;
  }

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

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

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1000px);
    padding-bottom: 108px;
  }

  .site-header {
    top: 10px;
    padding: 12px;
    border-radius: 24px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy {
    min-width: 0;
    font-size: 0.84rem;
  }

  .brand-copy strong,
  .brand-copy span {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button-small {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .contact-card {
    padding: 22px;
  }

  .hero {
    padding: 44px 0 28px;
  }

  .hero::before,
  .hero::after {
    inset-inline: -10px;
    border-radius: 28px;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    max-width: 68%;
    justify-content: flex-start;
    gap: 9px;
    padding: 72px 18px 188px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .hero-overlay .eyebrow {
    max-width: 18ch;
    margin-bottom: 2px;
    font-size: 0.72rem;
    line-height: 1.3;
    letter-spacing: 0.15em;
  }

  .hero-actions {
    flex-wrap: nowrap;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.94rem;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    display: block;
    min-height: 680px;
  }

  .hero-visual img {
    height: 100%;
    object-position: center 32%;
  }

  .hero-visual-badge {
    top: 12px;
    left: 12px;
    bottom: auto;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .hero-info-band {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-info-lead {
    display: none;
  }

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

  .hero-info-band .trust-list {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.8vw, 3.1rem);
    line-height: 0.94;
  }

  .service-page h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .trust-list,
  .metric-grid,
  .service-grid,
  .before-after-grid,
  .service-detail-grid,
  .benefit-grid,
  .steps,
  .testimonial-grid,
  .contact-card,
  .logos-strip,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .mobile-subnav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(219, 243, 228, 0.08);
    border-radius: 20px;
    background: rgba(6, 10, 8, 0.72);
    backdrop-filter: blur(20px);
  }

  .hero-ambient {
    inset: -8px -12px 0;
  }

  .ambient-grid {
    left: 8%;
    width: 84%;
    height: 54%;
  }

  .orb-two {
    right: -8%;
  }

  .section {
    padding: 38px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .logos-strip,
  .section-accent,
  .workflow {
    display: none;
  }

  .service-card,
  .testimonial-grid blockquote,
  .steps article,
  .faq-list details {
    padding: 22px;
  }

  .service-visual {
    margin-bottom: 18px;
  }

  .site-footer {
    padding: 26px 20px 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .before-after-card {
    padding: 20px;
  }

  .before-after-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .before-after-header span {
    white-space: normal;
  }

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

  .before-after-section {
    padding-top: 12px;
  }

  .section-accent {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 540px) {
  .page-shell {
    width: calc(100% - 16px);
  }

  .site-header {
    padding: 10px;
    border-radius: 20px;
  }

  .brand-copy span {
    display: none;
  }

  .mobile-subnav {
    margin-top: 12px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    border-radius: 24px;
    min-height: 650px;
  }

  .hero-visual img {
    height: 100%;
    object-position: center 30%;
  }

  .hero-overlay {
    max-width: 78%;
    padding: 64px 16px 196px;
    gap: 8px;
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-overlay .eyebrow {
    max-width: 16ch;
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    width: auto;
    font-size: 0.88rem;
    line-height: 1.25;
    padding-inline: 10px;
  }

  .cta-label-desktop {
    display: none;
  }

  .cta-label-mobile {
    display: inline;
  }

  .hero-info-band {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metric-grid article:nth-child(n + 3) {
    display: none;
  }

  .callout,
  .metric-grid article,
  .hero-info-band .trust-list li {
    padding: 11px 12px;
  }

  .logos-strip span,
  .coverage-chips span {
    padding: 12px;
    font-size: 0.92rem;
  }

  .before-after-card {
    padding: 16px;
    border-radius: 22px;
  }

  .comparison-shot {
    aspect-ratio: 4 / 4.7;
    border-radius: 18px;
  }

  .comparison-badge {
    top: 10px;
    left: 10px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .contact-card {
    padding: 18px;
    border-radius: 24px;
  }
}
