:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --bg-soft: #0d0d0d;
  --bg-panel: #111111;
  --bg-panel-strong: #1a1a1a;
  --line: #2a2a2a;
  --line-soft: #333333;
  --text: #f0f0f0;
  --muted: #888888;
  --muted-strong: #999999;
  --accent: var(--accent-strong);
  --accent-strong: #48df22;
  --accent-deep: #2db800;
  --accent-soft: rgba(57, 255, 20, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shell-width: 1280px;
  --shell-width-wide: 1200px;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 84px;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior: none;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: linear-gradient(180deg, #0a0a0a 0%, #090909 30%, #050505 100%);
  padding-bottom: 0;
}

body::before,
body::after {
  content: none;
}

body::before {
  position: fixed;
}

body::after {
  position: fixed;
}

.logo-intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(circle at center, rgba(72, 223, 34, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.98));
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: none;
}

.logo-intro.is-visible {
  opacity: 1;
  visibility: visible;
}

.logo-intro.is-visible.is-leaving {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 640ms ease,
    visibility 0s linear 640ms;
}

.logo-intro__sample {
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 1100ms ease 140ms,
    transform 1100ms ease 140ms;
}

.logo-intro__sample.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-intro__sample--post .logo-intro__mark {
  height: clamp(46px, 6.5vw, 86px);
}

.logo-intro__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 100%;
  opacity: 1;
  will-change: auto;
}

.logo-intro__part {
  display: block;
  width: auto;
  height: 100%;
  flex: none;
}

.logo-intro__o {
  position: relative;
  top: 10px;
  display: block;
  width: auto;
  height: 76%;
  aspect-ratio: 21.18 / 23.74;
  overflow: hidden;
  flex: none;
}

.logo-intro__face {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform;
}

.logo-intro__face--front {
  transform: rotateY(0deg);
  transition: transform 980ms cubic-bezier(0.28, 0.02, 0.18, 1);
}

.logo-intro__face--back {
  transform: rotateY(180deg);
  transition: transform 980ms cubic-bezier(0.28, 0.02, 0.18, 1);
}

.logo-intro__sample--post.is-flipped .logo-intro__face--front {
  transform: rotateY(-180deg);
}

.logo-intro__sample--post.is-flipped .logo-intro__face--back {
  transform: rotateY(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .logo-intro,
  .logo-intro__mark,
  .logo-intro__sample,
  .logo-intro__face--front,
  .logo-intro__face--back {
    transition-duration: 1ms;
    animation-duration: 1ms;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #111;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 160px), var(--shell-width));
  margin-inline: auto;
}

.site-shell--wide {
  width: min(calc(100% - 240px), var(--shell-width-wide));
}

.hero > .site-shell {
  width: min(100%, 1440px);
  padding-inline: clamp(1rem, 5.5556vw, 80px) clamp(1rem, 2.5694vw, 37px);
}

.section {
  position: relative;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

.section > :not(.particles-bg),
.stats-bar > :not(.particles-bg) {
  position: relative;
  z-index: 1;
}

.particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
  pointer-events: none;
}

.particles-bg canvas {
  display: block;
}

.section--services {
  background: #111;
}

.section--services .site-shell {
  width: min(calc(100% - 150px), 1290px);
}

.section--process {
  background: #0d0d0d;
}

.section--responsive {
  padding: 0;
  background: #050505;
}

.section--pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.section--faq {
  background: #0a0a0a;
}

.section--projects {
  background: #111;
}

.section--contact {
  background: #0a0a0a;
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.section-head {
  max-width: 980px;
  margin-bottom: 2.25rem;
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--accent-strong);
  font-family: var(--font-heading);
  font-size: clamp(2.9rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 149px;
  height: 31px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav a,
.mobile-menu a,
.footer__nav a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.mobile-menu a:hover,
.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--accent);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: var(--accent-strong);
  color: #111;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(57, 255, 20, 0.15);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.mobile-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(15, 15, 15, 0.94);
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  flex-direction: column;
  cursor: pointer;
}

.mobile-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu {
  display: grid;
  gap: 0.5rem;
  padding: 0 0 0.95rem;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.96);
}

.mobile-menu__cta {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent-deep)) !important;
  color: #111 !important;
  font-weight: 700;
}

.hero {
  padding: 0;
  background: linear-gradient(90deg, #080b08 0%, #0d0d0d 65%);
}

.hero__grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hero__copy {
  display: grid;
  gap: 1.5rem;
  align-content: center;
  max-width: 480px;
  padding: 3rem 0;
  min-width: 0;
}

.hero__copy h1 {
  margin: 0;
  color: var(--accent-strong);
  font-family: var(--font-heading);
  font-size: clamp(3.3rem, 4.6vw, 4.4rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero__lead {
  margin: 0;
  max-width: 444px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent-deep));
  color: #111;
  box-shadow: 0 12px 28px rgba(57, 255, 20, 0.16);
}

.button--secondary {
  border-color: var(--line);
  background: #1a1a1a;
  color: #888;
}

.button--secondary:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero__visual {
  position: relative;
  margin: 0;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero__glow {
  position: absolute;
  inset: 14% 10% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 223, 34, 0.16), transparent 62%);
  filter: blur(42px);
  pointer-events: none;
}

.hero__art {
  position: relative;
  z-index: 1;
  width: min(100%, 843px);
  height: auto;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.48));
}

.stats-bar {
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-bar__inner {
  min-height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  padding: 20px 0;
}

.stats-bar--quote {
  background:
    radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.08), transparent 34%),
    #050505;
}

.stats-bar__inner--quote {
  min-height: 116px;
  padding-block: 26px;
  text-align: center;
}

.stats-bar__inner--quote p {
  margin: 0;
  max-width: 920px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-card strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 4.3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 221px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #111;
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  background: #0f1a0f;
}

.service-card__icon img {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.process-hero {
  margin: 0 0 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
}

.process-hero img {
  width: 100%;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #111;
  min-width: 0;
}

.step-card__media {
  position: relative;
}

.step-card__image {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.step-card__badge {
  position: absolute;
  left: -12px;
  top: -16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid #111;
  background: var(--accent);
  color: #111;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.step-card h3 {
  margin: 18px 0 0;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.step-card p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}

.responsive__stage {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
}

.responsive__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.responsive__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5.5556vw, 80px);
  box-sizing: border-box;
}

.responsive__copy {
  position: relative;
  margin-top: 149px;
  width: 520px;
  height: 282px;
}

.responsive__eyebrow {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  color: #888;
  font-family: "Barlow", var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.responsive__heading {
  position: absolute;
  left: 0;
  top: 38px;
  margin: 0;
  color: var(--accent-strong);
  font-family: "Exo 2", var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  width: 520px;
}

.responsive__text {
  position: absolute;
  left: 0;
  top: 172px;
  margin: 0;
  color: #f0f0f0;
  font-family: "Barlow", var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  width: 520px;
}

.responsive__cta {
  position: absolute;
  left: 0;
  top: 234px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  color: #888;
  background: transparent;
  font-family: "Barlow", var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.responsive__cta:hover {
  color: #d6d6d6;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111;
  min-width: 0;
}

.pricing-card--featured {
  border-color: rgba(57, 255, 20, 0.55);
  background:
    radial-gradient(circle at 30% 0%, rgba(57, 255, 20, 0.08), transparent 30%),
    #0f1510;
}

.pricing-card__eyebrow {
  margin: 0;
  color: #666;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card__eyebrow--featured {
  color: var(--accent);
}

.pricing-card h3 {
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: clamp(3rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-card__lead {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.check-list {
  margin: 0.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card__button {
  width: fit-content;
  margin-top: 0.25rem;
  padding-inline: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111;
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.faq-item[open] {
  border-color: rgba(57, 255, 20, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  font-weight: 600;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__content p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  min-height: 539px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-card__media {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-card__media--logo img {
  width: 180px;
  height: auto;
}

.project-card__title {
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.project-card__type {
  margin: 0;
  color: #666;
  font-size: 13px;
}

.project-card__desc {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.project-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 119px;
  height: 38px;
  border-radius: 20px;
  background: #1a1a1a;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.project-card__meta {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
}

.project-card__metrics {
  display: flex;
  gap: 46px;
  align-items: flex-start;
}

.project-card__metric {
  display: grid;
  gap: 3px;
}

.project-card__metric strong {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.project-card__metric span {
  color: #666;
  font-size: 11px;
  line-height: 1.3;
}

.button--project {
  min-height: 42px;
  width: fit-content;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.button--project img {
  width: 14px;
  height: 14px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.contact__copy {
  display: grid;
  gap: 32px;
}

.contact__copy h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.contact__copy > p {
  margin: 0;
  max-width: 36rem;
  color: #999;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  gap: 20px;
  padding: 32px;
  border-radius: 12px;
  background: #1a1a1a;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-card__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.contact-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-card > div span {
  display: block;
  color: #666;
  font-size: 12px;
}

.contact-card strong {
  display: block;
  color: #f0f0f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 40px;
  border-radius: 16px;
  background: #1a1a1a;
}

.contact-form__head h3 {
  margin: 0;
  color: #f0f0f0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form__head p {
  margin: 0.75rem 0 0;
  color: #999;
  font-size: 16px;
  line-height: 1.6;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: #999;
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  background: #0a0a0a;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.08);
}

.contact-form__button {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
}

.contact-form__status {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.footer {
  padding: 3rem 0 1.4rem;
  border-top: 1px solid #1a1a1a;
  background: #080808;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr) minmax(0, 0.8fr);
  gap: 1.5rem;
}

.brand--footer {
  width: 149px;
  height: 31px;
  margin-bottom: 1rem;
}

.footer__brand p {
  margin: 0;
  max-width: 280px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #1a1a1a;
  display: grid;
  place-items: center;
}

.social-links img {
  width: 28px;
  height: 28px;
}

.footer__nav,
.footer__contact {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer__nav h3,
.footer__contact h3 {
  margin: 0 0 0.45rem;
  color: #f0f0f0;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer__nav a,
.footer__contact a,
.footer__contact p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  border-top: 1px solid #1a1a1a;
}

.service-card,
.step-card,
.project-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 180ms ease;
}

.step-card__image,
.project-card__media img,
.service-card__icon,
.button--project img {
  transition: transform 260ms ease, filter 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .header-cta:hover,
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(57, 255, 20, 0.18);
  }

  .button--secondary:hover {
    background: #202020;
    border-color: rgba(57, 255, 20, 0.34);
  }

  .service-card:hover,
  .step-card:hover,
  .project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.34);
    background: #141814;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(57, 255, 20, 0.04);
  }

  .service-card:hover .service-card__icon {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(57, 255, 20, 0.18));
  }

  .step-card:hover .step-card__image,
  .project-card:hover .project-card__media img {
    transform: scale(1.035);
  }

  .project-card:hover .button--project img {
    transform: translateX(3px);
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero > .site-shell,
  .section--services .site-shell {
    width: min(calc(100% - 160px), var(--shell-width));
  }

  .hero > .site-shell {
    padding-inline: 0;
  }

  .hero__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__copy h1 {
    max-width: 10ch;
  }

  .hero__visual {
    min-height: 0;
    justify-content: flex-start;
  }

  .service-grid,
  .step-grid,
  .project-grid,
  .pricing-grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.25rem 0;
  }

  .section--responsive {
    padding: 0;
  }

  .hero > .site-shell,
  .section--services .site-shell {
    width: min(calc(100% - 1.25rem), var(--shell-width));
  }

  .site-shell {
    width: min(calc(100% - 1.25rem), var(--shell-width));
  }

  .site-shell--wide {
    width: min(calc(100% - 1.25rem), var(--shell-width-wide));
  }

  .hero__copy h1 {
    font-size: clamp(2.55rem, 10vw, 3.6rem);
  }

  .hero__lead,
  .section-head p,
  .service-card p,
  .step-card p,
  .responsive__text,
  .pricing-card p,
  .project-card p,
  .contact-info p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .section-head h2,
  .responsive__heading {
    font-size: clamp(2.3rem, 9.2vw, 3rem);
    line-height: 0.98;
  }

  .hero__actions {
    gap: 0.65rem;
  }

  .stats-bar__inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .stats-bar__inner--quote p {
    white-space: normal;
  }

  .service-grid,
  .step-grid,
  .project-grid,
  .pricing-grid,
  .field-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    gap: 2rem;
  }

  .responsive__copy {
    margin-top: 2rem;
    width: auto;
    height: auto;
  }

  .responsive__content {
    padding-inline: 1rem;
  }

  .responsive__eyebrow,
  .responsive__heading,
  .responsive__text,
  .responsive__cta {
    position: static;
  }

  .responsive__heading {
    margin-top: 0.85rem;
    width: auto;
  }

  .responsive__text {
    margin-top: 1rem;
    width: auto;
  }

  .responsive__cta {
    margin-top: 1.2rem;
  }

  .hero > .site-shell {
    padding-inline: 0;
  }

  .contact-form,
  .contact-info {
    padding: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-shell,
  .site-shell--wide {
    width: min(calc(100% - 1rem), var(--shell-width-wide));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand,
  .brand--footer {
    width: 124px;
    height: 26px;
  }

  .hero__copy h1 {
    max-width: 9ch;
  }

  .button {
    width: auto;
    padding-inline: 1rem;
  }

  .contact-form__button {
    font-size: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
