:root {
  --bg: #070907;
  --panel: #0e1411;
  --panel-2: #151d18;
  --text: #f4f5ef;
  --muted: #aab3aa;
  --line: rgba(255, 255, 255, 0.14);
  --green: #63ec82;
  --green-2: #1fb85a;
  --amber: #f3c96a;
  --steel: #d8ddd6;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(125deg, rgba(99, 236, 130, 0.11), transparent 34%),
    linear-gradient(180deg, #070907 0%, #0b100e 42%, #070907 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 10px 12px;
  background: rgba(8, 11, 9, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #071009;
  background: linear-gradient(135deg, var(--green), var(--amber));
  border-radius: 8px;
  font-weight: 800;
}

.brand-logo {
  width: 86px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #050706;
  border: 1px solid rgba(99, 236, 130, 0.12);
  border-radius: 8px;
  padding: 5px;
}

.section-logo {
  display: block;
  width: min(280px, 76vw);
  height: auto;
  object-fit: contain;
  background:
    #050706;
  border: 1px solid rgba(99, 236, 130, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.hero-logo {
  width: min(340px, 82vw);
  margin-bottom: 22px;
  animation: logo-idle 4.8s ease-in-out infinite;
}

.contact-logo {
  width: min(260px, 78vw);
  margin-bottom: 18px;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  color: var(--steel);
  font-size: 14px;
}

.nav a {
  padding: 8px 0;
}

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

.header-action,
.button,
.contact-form button,
.service-picker-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}

.header-action,
.button.primary,
.contact-form button {
  color: #061009;
  background: var(--green);
}

.header-action:hover,
.button.primary:hover,
.contact-form button:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(99, 236, 130, 0.76);
  outline-offset: 3px;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: rgba(99, 236, 130, 0.55);
  background: rgba(99, 236, 130, 0.12);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 84px;
}

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

.hero-image {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(99, 236, 130, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 236, 130, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  transform: perspective(620px) rotateX(62deg) translateY(24%);
  transform-origin: bottom center;
  animation: grid-drive 9s linear infinite;
}

.hero-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(99, 236, 130, 0.18) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: light-sweep 6.5s ease-in-out infinite;
}

.motion-line {
  position: absolute;
  right: -18%;
  width: min(58vw, 720px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 236, 130, 0.92), transparent);
  filter: drop-shadow(0 0 10px rgba(99, 236, 130, 0.55));
  animation: scan-line 5.8s ease-in-out infinite;
}

.line-one {
  top: 34%;
}

.line-two {
  top: 62%;
  animation-delay: 1.8s;
  animation-duration: 7.2s;
}

.motion-ping {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(99, 236, 130, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(99, 236, 130, 0.65);
  animation: ping-pulse 2.8s ease-out infinite;
}

.ping-one {
  right: 28%;
  top: 38%;
}

.ping-two {
  right: 17%;
  top: 58%;
  animation-delay: 1.1s;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 7, 6, 0.98) 0%, rgba(4, 7, 6, 0.82) 40%, rgba(4, 7, 6, 0.22) 82%),
    linear-gradient(0deg, rgba(7, 9, 7, 1) 0%, rgba(7, 9, 7, 0) 30%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--steel);
  font-size: clamp(18px, 2vw, 22px);
}

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-info div {
  min-height: 132px;
  padding: 30px clamp(20px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(14, 20, 17, 0.92);
}

.quick-info strong,
.quick-info span {
  display: block;
}

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

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 26px;
  color: var(--text);
  font: inherit;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 236, 130, 0.45);
  background:
    linear-gradient(180deg, rgba(99, 236, 130, 0.1), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

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

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  background: rgba(99, 236, 130, 0.1);
  border: 1px solid rgba(99, 236, 130, 0.32);
  border-radius: 8px;
}

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

.service-card h3 {
  margin: 28px 0 14px;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p,
.split p {
  margin: 0;
  color: var(--muted);
}

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

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

.trust-card,
.testimonial-card {
  min-height: 118px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-card {
  position: relative;
  display: block;
  padding-left: 46px;
  color: var(--text);
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(99, 236, 130, 0.45);
}

.trust-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.trust-card span {
  display: block;
  margin-top: 9px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.55;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-card p {
  margin: 0;
  color: var(--steel);
  line-height: 1.7;
}

.testimonial-card strong {
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  background: #0c100e;
  border-block: 1px solid var(--line);
}

.split h2 {
  max-width: 850px;
  margin-bottom: 24px;
}

.preview-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 0;
  background: #111713;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 7, 0), rgba(7, 9, 7, 0.78));
  pointer-events: none;
}

.visual-badges {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #071009;
  background: var(--green);
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(99, 236, 130, 0.16), transparent 36%),
    #080b0a;
  border-top: 1px solid var(--line);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #071009;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.social-link:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.social-link.is-disabled {
  opacity: 0.42;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 14px;
}

.contact-form label:nth-child(5),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.service-picker-button {
  width: 100%;
  min-height: 48px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form .wide,
.privacy-row,
.turnstile-slot,
.form-status {
  grid-column: 1 / -1;
}

.privacy-row {
  display: flex !important;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.45;
}

.privacy-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  line-height: 1.45;
}

.turnstile-slot {
  min-height: 65px;
}

.service-picker {
  position: relative;
}

.service-picker-button {
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.service-picker-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translateY(-2px);
}

.service-picker-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  background: #f4f5ef;
  border: 1px solid rgba(99, 236, 130, 0.45);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.service-picker-list.is-open {
  display: grid;
}

.service-picker-list button {
  justify-content: flex-start;
  width: 100%;
  min-height: 44px;
  color: #071009;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 16, 9, 0.1);
  border-radius: 0;
  padding: 0 14px;
  text-align: left;
}

.service-picker-list button:hover,
.service-picker-list button.is-selected {
  color: #071009;
  background: rgba(99, 236, 130, 0.28);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(99, 236, 130, 0.08), transparent 36%),
    #111820;
  border-top: 1px solid var(--line);
}

.map-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.map-copy h2 {
  color: var(--green);
  font-size: clamp(30px, 4vw, 48px);
}

.map-frame {
  overflow: hidden;
  min-height: 410px;
  background: #0a1017;
  border: 1px solid rgba(99, 236, 130, 0.24);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
  filter: grayscale(0.55) hue-rotate(165deg) saturate(0.9) contrast(1.15) brightness(0.85);
}

.map-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--text);
  font-weight: 700;
}

.map-contact-list > span {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 8px;
}

.map-contact-list b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(99, 236, 130, 0.4);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.social-links.compact {
  margin-top: 18px;
}

.hours-card {
  margin-top: 22px;
  color: var(--text);
}

.hours-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 19px;
}

.hours-card ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--steel);
  font-weight: 700;
}

.service-dialog {
  width: min(640px, calc(100vw - 32px));
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(99, 236, 130, 0.12), rgba(255, 255, 255, 0.04)),
    #0b100e;
  border: 1px solid rgba(99, 236, 130, 0.36);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.service-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 26px;
  cursor: pointer;
}

.dialog-icon {
  margin-bottom: 20px;
}

.service-dialog h2 {
  margin-bottom: 18px;
}

.service-dialog p:not(.eyebrow) {
  color: var(--steel);
}

.service-dialog .button {
  width: max-content;
  margin-top: 22px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f8984;
}

.privacy-row a,
.map-contact-list a,
.site-footer a,
.contact-lines a {
  color: var(--green);
  text-decoration: none;
}

.privacy-row a:hover,
.map-contact-list a:hover,
.site-footer a:hover,
.contact-lines a:hover {
  color: var(--amber);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #070907;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.legal-header {
  position: sticky;
}

.legal-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.legal-page h1 {
  margin: 8px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
}

.legal-note {
  max-width: 760px;
  color: var(--steel);
  line-height: 1.7;
}

.legal-card {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-card p {
  margin: 0;
  color: var(--steel);
  line-height: 1.65;
}

.legal-card strong {
  color: var(--text);
}

.footer-actions {
  justify-content: flex-end;
}

.site-footer .social-links {
  margin-top: 0;
}

.site-footer .social-link {
  width: 38px;
  height: 38px;
}

.site-footer .social-link svg {
  width: 19px;
  height: 19px;
}

.site-footer a {
  color: var(--green);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

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

  .hero {
    min-height: 690px;
  }

  .quick-info,
  .split,
  .contact-band,
  .map-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    top: 12px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .brand-logo {
    width: 72px;
    height: 38px;
  }

  .section-logo {
    padding: 7px 10px;
  }

  .hero {
    min-height: 650px;
    padding-top: 120px;
  }

  .hero-motion::before {
    background-size: 58px 58px;
    opacity: 0.18;
  }

  .motion-line {
    width: 78vw;
  }

  .ping-one {
    right: 16%;
    top: 42%;
  }

  .ping-two {
    right: 28%;
    top: 68%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 7, 6, 0.96) 0%, rgba(4, 7, 6, 0.76) 78%, rgba(4, 7, 6, 0.58) 100%),
      linear-gradient(0deg, rgba(7, 9, 7, 1) 0%, rgba(7, 9, 7, 0) 32%);
  }

  .quick-info,
  .service-grid,
  .trust-grid,
  .testimonial-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }
}

@keyframes grid-drive {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 148px, 148px 0;
  }
}

@keyframes light-sweep {
  0%,
  36% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes scan-line {
  0%,
  100% {
    opacity: 0;
    transform: translateX(18%) scaleX(0.75);
  }
  38%,
  64% {
    opacity: 1;
    transform: translateX(-12%) scaleX(1);
  }
}

@keyframes ping-pulse {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(4.2);
  }
}

@keyframes logo-idle {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(99, 236, 130, 0.16);
  }
}

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