:root {
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --max: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070908;
  --bg-solid: #070908;
  --bg-alt: #090c0b;
  --bg-muted: #0f110d;
  --surface: #101411;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --surface-subtle: rgba(255, 255, 255, 0.045);
  --surface-wash: rgba(255, 255, 255, 0.05);
  --surface-raised: rgba(8, 12, 11, 0.72);
  --text: #f3f7f4;
  --text-soft: #dce8e1;
  --text-hero: #f3f7f4;
  --hero-muted: #d5ddd8;
  --muted: #a8b5ad;
  --placeholder: #75827a;
  --line: rgba(232, 244, 235, 0.16);
  --line-soft: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #67e8c9;
  --accent-contrast: #07100d;
  --accent-two: #d8a35d;
  --accent-two-soft: #ffe0b0;
  --accent-edge: rgba(103, 232, 201, 0.72);
  --accent-quiet: rgba(103, 232, 201, 0.24);
  --icon-stroke: rgba(232, 244, 235, 0.58);
  --shadow: rgba(0, 0, 0, 0.42);
  --shadow-strong: rgba(0, 0, 0, 0.46);
  --shadow-soft: rgba(0, 0, 0, 0.32);
  --header-bg: rgba(7, 9, 8, 0.72);
  --brand-bg: #070908;
  --brand-border: rgba(103, 232, 201, 0.48);
  --brand-glow: rgba(103, 232, 201, 0.16);
  --logo-panel-bg: rgba(7, 9, 8, 0.56);
  --hero-image-filter: saturate(0.88) contrast(1.08) brightness(0.72);
  --hero-scrim:
    radial-gradient(circle at 28% 38%, rgba(103, 232, 201, 0.18) 0%, rgba(103, 232, 201, 0.08) 22%, transparent 47%),
    linear-gradient(90deg, rgba(7, 9, 8, 0.95) 0%, rgba(7, 9, 8, 0.76) 45%, rgba(7, 9, 8, 0.32) 100%),
    linear-gradient(180deg, rgba(7, 9, 8, 0.24) 0%, rgba(7, 9, 8, 0.84) 88%, #070908 100%);
  --nav-hover: rgba(255, 255, 255, 0.08);
  --action-border: rgba(216, 163, 93, 0.42);
  --card-glow:
    radial-gradient(circle at 18% 12%, rgba(103, 232, 201, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #101411;
  --growth-bg:
    linear-gradient(145deg, rgba(103, 232, 201, 0.14), rgba(255, 255, 255, 0.035)),
    #101411;
  --fit-card-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  --section-gradient-a: linear-gradient(180deg, #090c0b, #0f110d);
  --section-gradient-b: linear-gradient(180deg, #0f110d, #090c0b);
  --field-bg: rgba(5, 8, 7, 0.72);
  --focus-ring: #f0f7f4;
  --success: #9cf7c1;
  --success-bg: rgba(58, 179, 110, 0.12);
  --error: #ffb4ab;
  --error-bg: rgba(255, 80, 80, 0.12);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  background-image: var(--grain);
  background-attachment: fixed;
  color: var(--text);
  letter-spacing: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  touch-action: manipulation;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 24px), var(--max));
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--header-bg);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 8, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.brand,
.nav-action,
.nav-links,
.nav-toggle {
  display: flex;
  align-items: center;
}

.brand {
  min-height: 44px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: 168px;
  height: 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.nav-links {
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links a,
.nav-action {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-links a {
  position: relative;
  overflow: hidden;
}

.nav-links a::after {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--nav-hover);
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-action {
  justify-self: end;
  border: 1px solid var(--action-border);
  color: var(--accent-two-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-toggle {
  position: relative;
  display: none;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 9, 8, 0.94);
  box-shadow: 0 22px 58px var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, background-color 0.3s ease, border-color 0.3s ease;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--nav-hover);
  color: var(--text);
}

.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.button:focus-visible,
.nav-toggle:focus-visible,
.nav-action:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.footer-contact a:focus-visible,
.footer-top:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: var(--hero-image-filter);
  transform: scale(1.02);
  z-index: -3;
  transition: filter 0.3s ease;
}

.hero-scrim {
  background: var(--hero-scrim);
  z-index: -2;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.52fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  width: min(calc(100% - 32px), var(--max));
  min-height: 96vh;
  margin: 0 auto;
  padding: 126px 0 66px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.hero-copy h1,
.hero-lede,
.hero-actions {
  animation: heroIntro 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-copy h1 {
  animation-delay: 120ms;
}

.hero-lede {
  animation-delay: 240ms;
}

.hero-actions {
  animation-delay: 360ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.4vw, 4.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 650px;
  color: var(--hero-muted);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-copy,
.hero-panel {
  color: var(--text-hero);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

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

.button.primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.button.primary::after {
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  animation: shimmer 3s ease-in-out infinite;
}

.button.primary.is-loading::after {
  animation-play-state: paused;
  opacity: 0;
}

.button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface-soft);
}

.hero-panel {
  align-self: center;
  justify-self: end;
  position: relative;
  width: 100%;
  max-width: 430px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: 0 34px 100px var(--shadow-strong);
  backdrop-filter: blur(18px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-panel::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -30px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.panel-topline,
.hero-proof {
  display: grid;
  gap: 10px;
}

.panel-topline {
  grid-template-columns: 1fr auto;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.hero-proof span {
  position: relative;
  z-index: 0;
  min-height: 86px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--surface-subtle);
  background-clip: padding-box;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.38;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-proof span::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-edge), transparent 54%);
  content: "";
}

.hero-proof strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1.35rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.72;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.scroll-indicator::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.section {
  padding: clamp(68px, 9vw, 116px) 0;
}

.section-heading,
.problem-grid,
.proof-grid,
.case-grid,
.feature-grid,
.service-list,
.package-grid,
.fit-inner,
.process-grid,
.faq-grid,
.contact,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

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

.section-heading h2,
.contact h2,
.fit h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-heading p,
.contact-copy p,
.feature-card p,
.fit-list p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.proof {
  background: var(--bg-solid);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-grid article {
  min-height: 220px;
  padding: 24px;
  border-top: 2px solid transparent;
  background: var(--surface);
  transition: transform 220ms ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.problem-grid span,
.package-grid span,
.proof-grid span,
.feature-card span,
.case-body span,
.process-grid span {
  color: var(--accent-two);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.proof-grid strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.proof-grid p,
.problem-grid p,
.case-body p,
.process-grid p,
.package-grid p,
.package-grid li,
.faq-grid p,
.service-list p,
.form-note {
  color: var(--muted);
  line-height: 1.62;
}

.problem {
  background: var(--section-gradient-a);
}

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

.problem-grid article {
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--surface-subtle);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.problem-grid p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  font-weight: 700;
}

.cases {
  background: var(--bg-alt);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.case-card:nth-child(4),
.case-card:nth-child(5) {
  grid-column: span 3;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-body {
  padding: 18px;
}

.case-body h3,
.process-grid h3,
.service-list h3,
.fit-list h3,
.growth-steps h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
}

.services {
  background: var(--section-gradient-a);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.feature-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

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

.service-list article {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--card-glow);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.service-list article::after,
.fit-list article::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--action-border);
  border-radius: 50%;
  content: "";
}

.icon-badge {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: var(--surface-soft);
  box-shadow: 0 0 28px var(--brand-glow);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-badge.small {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--icon-stroke);
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: stroke 220ms ease;
}

.service-meta {
  color: var(--accent-two);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-list h3 {
  max-width: 320px;
  margin-top: 10px;
  line-height: 1.16;
}

.service-list p {
  max-width: 360px;
}

.packages {
  background: var(--bg-muted);
}

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

.package-grid article {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--card-glow);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.package-grid h3 {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.package-grid ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 18px;
}

.package-grid p {
  margin: auto 0 0;
  color: var(--text-soft);
  font-weight: 800;
}

.local-growth {
  overflow: hidden;
  background: var(--section-gradient-b);
}

.local-growth-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.growth-copy {
  position: relative;
  overflow: hidden;
  margin-left: -2rem;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: var(--growth-bg);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.growth-copy::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid var(--brand-border);
  border-radius: 50%;
  content: "";
}

.growth-copy h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.growth-copy p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.growth-steps {
  display: grid;
  gap: 14px;
}

.growth-steps article {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 22px 24px 22px 76px;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--surface-subtle);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.growth-steps span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--action-border);
  border-radius: 50%;
  color: var(--accent-two);
  font-size: 0.76rem;
  font-weight: 800;
}

.growth-steps p {
  color: var(--muted);
  line-height: 1.62;
}

.fit {
  background: var(--bg-muted);
}

.fit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.fit-list article {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--fit-card-bg);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.fit-list h3,
.fit-list p,
.fit-list .icon-badge {
  position: relative;
  z-index: 1;
}

.process {
  background: var(--section-gradient-b);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-grid article {
  min-height: 220px;
  padding: 24px;
  border-top: 2px solid transparent;
  background: var(--surface);
  transition: transform 220ms ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.faq {
  background: var(--bg-alt);
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 220ms ease;
}

.faq-grid summary {
  min-height: 44px;
  padding: 18px 20px;
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 800;
  list-style-position: inside;
  touch-action: manipulation;
}

.faq-grid details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-meta span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.86rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-wash);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field-bg);
  color: var(--text);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--placeholder);
}

.contact-form .button {
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.button-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(7, 16, 13, 0.28);
  border-top-color: var(--accent-contrast);
  border-radius: 50%;
  animation: spin 760ms linear infinite;
}

.button.is-loading .button-spinner {
  display: inline-block;
}

.form-status {
  display: none;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status[data-state="success"],
.form-status[data-state="error"] {
  display: block;
}

.form-status[data-state="success"] {
  border-color: rgba(156, 247, 193, 0.36);
  background: var(--success-bg);
  color: var(--success);
}

.form-status[data-state="error"] {
  border-color: rgba(255, 180, 171, 0.38);
  background: var(--error-bg);
  color: var(--error);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-contact {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  justify-self: start;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--accent);
}

.footer-brand {
  justify-self: center;
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.footer-brand span {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-top {
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--action-border);
  border-radius: 999px;
  background: var(--card);
  color: var(--accent);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 180ms ease;
}

.footer-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-top:hover,
.footer-top:focus-visible {
  border-color: var(--accent);
  background: var(--nav-hover);
  color: var(--accent-two-soft);
  transform: translateY(-2px);
}

.js .problem-grid article,
.js .proof-grid article,
.js .case-card,
.js .feature-card,
.js .service-list article,
.js .package-grid article,
.js .growth-copy,
.js .growth-steps article,
.js .fit-list article,
.js .process-grid article,
.js .faq-grid details {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 220ms ease;
}

.js .problem-grid article.is-visible,
.js .proof-grid article.is-visible,
.js .case-card.is-visible,
.js .feature-card.is-visible,
.js .service-list article.is-visible,
.js .package-grid article.is-visible,
.js .growth-copy.is-visible,
.js .growth-steps article.is-visible,
.js .fit-list article.is-visible,
.js .process-grid article.is-visible,
.js .faq-grid details.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-grid article:hover,
.proof-grid article:hover,
.case-card:hover,
.feature-card:hover,
.service-list article:hover,
.package-grid article:hover,
.growth-steps article:hover,
.fit-list article:hover,
.process-grid article:hover,
.faq-grid details:hover {
  border-top-color: var(--accent);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.service-list article:hover .icon-badge svg,
.fit-list article:hover .icon-badge svg {
  stroke: var(--accent);
}

@keyframes heroIntro {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%,
  42% {
    transform: translateX(0) skewX(-18deg);
  }

  72%,
  100% {
    transform: translateX(420%) skewX(-18deg);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -4px);
  }

  50% {
    opacity: 0.88;
    transform: translate(-50%, 6px);
  }
}

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

@media (max-width: 1040px) {
.site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: grid;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-panel {
    justify-self: start;
    max-width: 760px;
  }

  .growth-copy {
    margin-left: 0;
  }

  .problem-grid,
  .proof-grid,
  .feature-grid,
  .service-list,
  .package-grid,
  .local-growth-inner,
  .fit-inner,
  .process-grid,
  .faq-grid,
  .contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card,
  .case-card:nth-child(4),
  .case-card:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 18px), var(--max));
    min-height: 56px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 96px 0 42px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.65rem);
    line-height: 1.06;
  }

  .section-heading h2,
  .contact h2,
  .fit h2,
  .growth-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-actions,
  .contact-meta {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-contact,
  .footer-brand,
  .footer-top {
    justify-self: center;
  }

  .footer-brand span {
    display: block;
    margin: 6px 0 0;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel h2 {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
    line-height: 1.12;
  }

  .hero-panel::before,
  .scroll-indicator {
    display: none;
  }

  .panel-topline,
  .hero-proof,
  .problem-grid,
  .proof-grid,
  .feature-grid,
  .service-list,
  .package-grid,
  .local-growth-inner,
  .fit-inner,
  .fit-list,
  .process-grid,
  .faq-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .case-card,
  .case-card:nth-child(4),
  .case-card:nth-child(5) {
    grid-column: span 1;
  }

  .problem-grid article,
  .proof-grid article,
  .service-list article,
  .package-grid article,
  .growth-steps article,
  .fit-list article,
  .process-grid article {
    min-height: auto;
  }

  .growth-steps article {
    padding-left: 22px;
    padding-top: 72px;
  }
}

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