:root {
  color-scheme: dark;
  --bg: #07110e;
  --bg-soft: #0d1a16;
  --bg-panel: #111f1a;
  --ink: #f2f7f4;
  --muted: #a9bbb3;
  --line: rgba(255, 255, 255, 0.12);
  --green: #51f0a4;
  --green-strong: #11c77d;
  --green-deep: #123f34;
  --cyan: #54d9ff;
  --copper: #d7a756;
  --danger: #ff7b7b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  background: rgba(7, 17, 14, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-130%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #04100c;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header.is-scrolled,
.site-header.compact {
  background: rgba(7, 17, 14, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

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

.brand-logo-link {
  position: relative;
  flex: 0 0 auto;
  min-width: 142px;
  min-height: 48px;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid rgba(81, 240, 164, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(81, 240, 164, 0.16), rgba(84, 217, 255, 0.07)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 26px rgba(81, 240, 164, 0.18),
    inset 0 0 18px rgba(81, 240, 164, 0.05);
}

.brand-logo {
  width: 132px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.1));
}

.footer-logo {
  width: 190px;
  max-height: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(81, 240, 164, 0.36);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(81, 240, 164, 0.18), rgba(84, 217, 255, 0.09));
  box-shadow: 0 0 28px rgba(81, 240, 164, 0.18);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

.brand strong {
  display: block;
  line-height: 1.1;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(242, 247, 244, 0.82);
  font-size: 0.91rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: rgba(81, 240, 164, 0.14);
  border: 1px solid rgba(81, 240, 164, 0.34);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(81, 240, 164, 0.38);
  border-radius: var(--radius);
  background: rgba(81, 240, 164, 0.1);
  color: var(--green);
  box-shadow: 0 0 22px rgba(81, 240, 164, 0.12);
}

.menu-toggle span:not(.sr-only) {
  display: none;
}

.menu-toggle::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 -7px 0 currentColor,
    0 7px 0 currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(81, 240, 164, 0.7);
  background: rgba(81, 240, 164, 0.16);
  outline: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 80px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.97) 0%, rgba(7, 17, 14, 0.88) 36%, rgba(7, 17, 14, 0.32) 72%, rgba(7, 17, 14, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 17, 14, 0.1), var(--bg));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  gap: 48px;
  align-items: end;
}

.hero-copy {
  padding-top: 76px;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  width: fit-content;
  max-width: 680px;
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 13px 16px;
  border: 1px solid rgba(81, 240, 164, 0.44);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(81, 240, 164, 0.16), rgba(84, 217, 255, 0.07)),
    rgba(2, 8, 6, 0.68);
  box-shadow: 0 0 28px rgba(81, 240, 164, 0.16);
}

.promo-banner::before {
  display: none;
}

.promo-banner strong {
  color: var(--green);
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.promo-banner span {
  color: rgba(242, 247, 244, 0.94);
  font-weight: 800;
  line-height: 1.35;
}

.promo-banner-compact {
  width: 100%;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
}

.hero-title {
  max-width: 560px;
  margin-bottom: 12px;
  font-weight: 900;
}

.hero-title-logo {
  max-width: 540px;
  margin-bottom: 18px;
  line-height: 1;
}

.hero-logo {
  width: min(470px, 80vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.12));
}

.hero-statement {
  max-width: 700px;
  margin-bottom: 16px;
  color: rgba(242, 247, 244, 0.94);
  font-size: clamp(1.42rem, 3.1vw, 2.35rem);
  font-weight: 750;
  line-height: 1.16;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4.15rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.lead {
  max-width: 640px;
  color: rgba(242, 247, 244, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  color: #04100c;
  box-shadow: 0 16px 44px rgba(17, 199, 125, 0.24);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.btn-ghost {
  min-height: 44px;
}

.btn-wide {
  width: 100%;
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(9, 25, 20, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-panel > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-panel small,
.hero-panel dd {
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 14px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats dt {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #0a1713;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid div {
  min-height: 118px;
  padding: 28px;
  border-inline-start: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-inline-end: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 8px;
  color: var(--muted);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  background:
    linear-gradient(180deg, var(--bg), #0b1713 42%, var(--bg-soft));
}

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

.service-card,
.project-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(81, 240, 164, 0.4);
  background: rgba(81, 240, 164, 0.055);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(81, 240, 164, 0.12);
  color: var(--green);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.project-card p,
.why-item p {
  color: var(--muted);
}

.request-section {
  background:
    linear-gradient(120deg, rgba(18, 63, 52, 0.82), rgba(7, 17, 14, 0.95) 58%),
    radial-gradient(circle at 78% 18%, rgba(84, 217, 255, 0.16), transparent 33%);
}

.request-layout,
.about-layout,
.why-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 58px;
  align-items: start;
}

.request-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(242, 247, 244, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.request-builder {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 17, 14, 0.72);
  box-shadow: var(--shadow);
}

.builder-step,
.summary-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-title span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(81, 240, 164, 0.14);
  color: var(--green);
  font-weight: 900;
}

.step-title h3 {
  margin: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-grid label {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  cursor: pointer;
}

.choice-grid input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--green);
}

.choice-grid span {
  min-width: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.service-type-card {
  min-height: 118px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-type-card:hover,
.service-type-card:focus-visible,
.service-type-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(81, 240, 164, 0.5);
  background: rgba(81, 240, 164, 0.09);
}

.service-type-card strong,
.service-type-card span {
  display: block;
}

.service-type-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.service-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 247, 244, 0.9);
  cursor: pointer;
}

.consent-line input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green);
}

.consent-line span {
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(242, 247, 244, 0.88);
  font-weight: 700;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 8, 6, 0.64);
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
  min-height: 46px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
select:focus,
textarea:focus {
  border-color: rgba(81, 240, 164, 0.64);
  box-shadow: 0 0 0 3px rgba(81, 240, 164, 0.12);
}

.photo-upload {
  padding: 14px;
  border: 1px dashed rgba(81, 240, 164, 0.36);
  border-radius: var(--radius);
  background: rgba(81, 240, 164, 0.055);
}

.photo-upload span {
  color: var(--ink);
}

.photo-upload small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.photo-upload input[type="file"] {
  width: 100%;
  margin-top: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 8, 6, 0.64);
  color: var(--ink);
  cursor: pointer;
}

.photo-upload input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #04100c;
  font-weight: 900;
  cursor: pointer;
}

.photo-preview {
  margin-top: -4px;
  color: rgba(242, 247, 244, 0.88);
  font-size: 0.92rem;
}

.photo-preview.is-empty {
  color: var(--muted);
}

.photo-preview ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.photo-preview li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.photo-preview li span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.photo-preview li small {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 700;
}

.summary-box h3 {
  margin-bottom: 16px;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.summary-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-block: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 26px;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--danger);
}

.about {
  background: #07110e;
}

.about-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.about-visual {
  min-height: 490px;
  display: grid;
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(81, 240, 164, 0.1), rgba(84, 217, 255, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  overflow: hidden;
}

.circuit-card {
  width: min(360px, calc(100% - 50px));
  margin-inline: auto;
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(81, 240, 164, 0.26);
  border-radius: var(--radius);
  background: rgba(7, 17, 14, 0.7);
  box-shadow: var(--shadow);
}

.circuit-card span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.circuit-card span:nth-child(2) {
  width: 74%;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.circuit-card span:nth-child(3) {
  width: 52%;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.circuit-card strong {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.values-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.values-grid div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.values-grid strong,
.values-grid span {
  display: block;
}

.values-grid span {
  color: var(--muted);
}

.projects {
  background: var(--bg-soft);
}

.project-card span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.why {
  background:
    linear-gradient(180deg, #0b1713, #07110e),
    radial-gradient(circle at 18% 10%, rgba(81, 240, 164, 0.12), transparent 30%);
}

.why-layout {
  align-items: start;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.why-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(81, 240, 164, 0.12);
  color: var(--green);
  font-weight: 900;
}

.contact {
  background: var(--green-deep);
}

.contact-layout {
  align-items: center;
}

.contact-options {
  display: grid;
  gap: 12px;
}

.contact-options a {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-options span {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer {
  padding: 46px 0;
  background: #050c0a;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.footer-layout p {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(18, 63, 52, 0.55), transparent 380px),
    var(--bg);
}

.legal-main {
  padding: calc(var(--header-height) + 70px) 0 100px;
}

.legal-content {
  max-width: 850px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.legal-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-content p {
  color: var(--muted);
}

.request-page .legal-main,
.cleaning-page .legal-main {
  padding-top: calc(var(--header-height) + 70px);
}

.request-intro,
.cleaning-intro {
  max-width: 780px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 20px;
    gap: 10px;
  }

  .brand-logo-link {
    margin-right: auto;
    min-width: 128px;
    min-height: 44px;
    padding: 6px 11px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    max-height: calc(100dvh - var(--header-height) - 28px);
    overflow: auto;
    display: none;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 17, 14, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    padding: 12px;
  }

  .header-action {
    display: inline-flex;
    order: 2;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero-content,
  .request-layout,
  .about-layout,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 14, 0.96), rgba(7, 17, 14, 0.82)),
      linear-gradient(180deg, rgba(7, 17, 14, 0.1), var(--bg));
  }

  .request-copy {
    position: static;
  }

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

}

@media (max-width: 700px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    gap: 7px;
    padding-inline: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .brand small {
    display: none;
  }

  .brand-logo-link {
    min-width: 104px;
    min-height: 38px;
    padding: 5px 8px;
  }

  .brand-logo {
    width: 100px;
  }

  .header-action {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.76rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-color: rgba(81, 240, 164, 0.68);
    background:
      linear-gradient(145deg, rgba(81, 240, 164, 0.18), rgba(84, 217, 255, 0.08)),
      rgba(3, 13, 10, 0.96);
    color: #ffffff;
    box-shadow:
      0 0 0 1px rgba(81, 240, 164, 0.12),
      0 0 24px rgba(81, 240, 164, 0.24);
  }

  .menu-toggle::before {
    width: 22px;
    height: 2.5px;
    box-shadow:
      0 -7px 0 currentColor,
      0 7px 0 currentColor;
  }

  .footer-logo {
    width: 166px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 48px;
  }

  .hero-content {
    gap: 22px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 14, 0.94), rgba(7, 17, 14, 0.86) 56%, var(--bg)),
      linear-gradient(90deg, rgba(7, 17, 14, 0.9), rgba(7, 17, 14, 0.72));
  }

  .promo-banner {
    width: 100%;
    min-height: 86px;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "badge label"
      "badge text";
    align-items: center;
    column-gap: 12px;
    row-gap: 3px;
    margin-bottom: 18px;
    padding: 14px;
    border-color: rgba(81, 240, 164, 0.68);
    background:
      linear-gradient(135deg, rgba(81, 240, 164, 0.18), rgba(84, 217, 255, 0.1) 46%, rgba(2, 8, 6, 0.82)),
      rgba(2, 8, 6, 0.9);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.26),
      0 0 34px rgba(81, 240, 164, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .promo-banner::before {
    content: "1h";
    grid-area: badge;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green), var(--green-strong));
    color: #04100c;
    font-size: 0.94rem;
    font-weight: 950;
    box-shadow: 0 0 22px rgba(81, 240, 164, 0.36);
  }

  .promo-banner strong {
    grid-area: label;
    font-size: 0.72rem;
  }

  .promo-banner span {
    grid-area: text;
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .hero-logo {
    width: min(292px, 78vw);
  }

  .hero-title-logo {
    margin-bottom: 14px;
  }

  .hero-statement {
    margin-bottom: 12px;
    font-size: clamp(1.18rem, 6.3vw, 1.62rem);
    line-height: 1.22;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .btn {
    min-height: 46px;
    padding-inline: 16px;
  }

  .btn-primary {
    border-color: rgba(81, 240, 164, 0.45);
    background:
      linear-gradient(135deg, #72ffc0, var(--green-strong));
    box-shadow:
      0 16px 34px rgba(17, 199, 125, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }

  .btn-secondary,
  .btn-ghost {
    border-color: rgba(81, 240, 164, 0.24);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-panel {
    padding: 15px;
  }

  .hero-panel > div:first-child {
    margin-bottom: 12px;
  }

  .hero-stats div {
    padding: 11px 12px;
  }

  .hero-stats dt {
    font-size: 1.2rem;
  }

  .hero-stats dd {
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.72rem, 8.6vw, 2.32rem);
    line-height: 1.12;
  }

  h3 {
    font-size: 1.05rem;
  }

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

  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .hero-stats,
  .service-grid,
  .project-grid,
  .trust-grid,
  .field-grid,
  .choice-grid,
  .service-type-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:last-child {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 18px;
    border-inline: 0;
    border-top: 1px solid rgba(81, 240, 164, 0.18);
    background:
      linear-gradient(135deg, rgba(81, 240, 164, 0.085), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.025);
  }

  .trust-grid div::before,
  .service-card::before,
  .project-card::before,
  .builder-step::before,
  .summary-box::before,
  .why-item::before,
  .contact-options a::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), rgba(84, 217, 255, 0.55));
    box-shadow: 0 0 18px rgba(81, 240, 164, 0.3);
  }

  .service-card,
  .project-card {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 20px;
    border-color: rgba(81, 240, 164, 0.22);
    background:
      linear-gradient(145deg, rgba(81, 240, 164, 0.09), rgba(84, 217, 255, 0.035) 48%, rgba(255, 255, 255, 0.025)),
      rgba(7, 17, 14, 0.72);
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .project-card span {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    border: 1px solid rgba(81, 240, 164, 0.28);
    border-radius: var(--radius);
    background: rgba(81, 240, 164, 0.1);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(81, 240, 164, 0.2), rgba(84, 217, 255, 0.08));
    box-shadow: 0 0 22px rgba(81, 240, 164, 0.18);
  }

  .service-icon svg {
    width: 22px;
    height: 22px;
  }

  .request-layout,
  .about-layout,
  .why-layout,
  .contact-layout {
    gap: 28px;
  }

  .request-builder,
  .builder-step,
  .summary-box,
  .legal-content {
    padding: 16px;
  }

  .request-builder {
    gap: 12px;
    border-color: rgba(81, 240, 164, 0.24);
    background:
      radial-gradient(circle at 100% 0%, rgba(81, 240, 164, 0.12), transparent 30%),
      rgba(7, 17, 14, 0.82);
    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .builder-step,
  .summary-box {
    position: relative;
    overflow: hidden;
    border-color: rgba(81, 240, 164, 0.18);
    background:
      linear-gradient(135deg, rgba(81, 240, 164, 0.055), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.035);
  }

  .step-title {
    gap: 10px;
    margin-bottom: 14px;
  }

  .step-title span {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .choice-grid label,
  .consent-line {
    min-height: 46px;
    padding: 11px;
    border-color: rgba(81, 240, 164, 0.18);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .service-type-card {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 17px 54px 17px 17px;
    border-color: rgba(81, 240, 164, 0.34);
    background:
      linear-gradient(135deg, rgba(81, 240, 164, 0.13), rgba(84, 217, 255, 0.06) 45%, rgba(255, 255, 255, 0.03)),
      rgba(7, 17, 14, 0.88);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .service-type-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--cyan));
  }

  .service-type-card::after {
    content: "\2192";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--green);
    color: #04100c;
    font-weight: 950;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(81, 240, 164, 0.24);
  }

  .service-type-card strong {
    color: var(--ink);
    font-size: 1.02rem;
  }

  .service-card-link {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 0 14px;
    border: 1px solid rgba(81, 240, 164, 0.42);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green), var(--green-strong));
    color: #04100c;
    box-shadow: 0 14px 30px rgba(17, 199, 125, 0.2);
  }

  .service-card-link::after {
    content: "\2192";
    font-size: 1.1rem;
    line-height: 1;
  }

  .field-grid {
    gap: 12px;
  }

  input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
  select,
  textarea {
    padding: 11px 12px;
  }

  .photo-upload {
    padding: 12px;
    border-color: rgba(81, 240, 164, 0.48);
    background:
      linear-gradient(135deg, rgba(81, 240, 164, 0.09), rgba(84, 217, 255, 0.035)),
      rgba(255, 255, 255, 0.035);
  }

  .photo-preview li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .summary-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .why-item,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .why-item,
  .contact-options a {
    position: relative;
    overflow: hidden;
    border-color: rgba(81, 240, 164, 0.18);
    background:
      linear-gradient(135deg, rgba(81, 240, 164, 0.07), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.035);
  }

  .contact-options a {
    padding-right: 52px;
  }

  .contact-options a::after {
    content: "\2192";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(81, 240, 164, 0.16);
    color: var(--green);
    font-weight: 950;
    transform: translateY(-50%);
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-main {
    padding: calc(var(--header-height) + 34px) 0 64px;
  }

  .request-page .legal-main,
  .cleaning-page .legal-main {
    padding-top: calc(var(--header-height) + 34px);
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .brand-logo-link {
    min-width: 92px;
    padding-inline: 7px;
  }

  .brand-logo {
    width: 88px;
  }

  .header-action {
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  .header-action::before {
    content: "Start";
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .menu-toggle::before {
    width: 21px;
  }

  .hero-logo {
    width: min(252px, 76vw);
  }

  .promo-banner span,
  .lead,
  .section-heading p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .request-builder,
  .builder-step,
  .summary-box,
  .legal-content,
  .service-card,
  .project-card {
    padding: 14px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
