:root {
  --bg: #050608;
  --ink: #0c1117;
  --muted: #68717f;
  --paper: #ffffff;
  --soft: #f3f6f8;
  --line: #dce3ea;
  --cyan: #0ee7ff;
  --cyan-dark: #00798d;
  --amber: #ffb02e;
  --charcoal: #111821;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(1, 9, 14, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 70px);
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 104px clamp(20px, 5vw, 70px) 24px;
  overflow: hidden;
  background: var(--bg);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.72) 34%, rgba(5, 6, 8, 0.2) 74%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.14), rgba(5, 6, 8, 0.9) 92%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 28px;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3rem, 6.1vw, 5.65rem);
  line-height: 0.95;
  font-weight: 900;
}

.hero p {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.94rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--cyan);
  color: #001015;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 12, 0.64);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 104px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.02rem;
}

.hero-panel span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 70px);
}

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

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1;
  font-weight: 900;
}

.section-heading p,
.delivery-copy p,
.contact-copy p {
  max-width: 710px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.service-band {
  background: var(--paper);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  min-height: 292px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 58px;
  background: #eefbfe;
  color: var(--cyan-dark);
}

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

.service-list h3,
.rental-card h3,
.process-rail h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-list p,
.rental-card p,
.process-rail p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.rentals {
  background: var(--charcoal);
  color: #fff;
}

.rentals .section-heading p {
  color: rgba(255, 255, 255, 0.64);
}

.text-link {
  color: var(--cyan);
  font-weight: 850;
}

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

.rental-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.rental-card.featured {
  border-color: rgba(14, 231, 255, 0.6);
  background: linear-gradient(180deg, rgba(14, 231, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.rental-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.rental-top span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rental-card p {
  color: rgba(255, 255, 255, 0.7);
}

.rental-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.rental-card li {
  position: relative;
  padding-left: 20px;
}

.rental-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--cyan);
}

.select-package {
  min-height: 50px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #fff;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.process {
  background: var(--soft);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}

.process-rail article {
  padding: 28px 26px 0 0;
}

.process-rail span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--cyan-dark);
  font-weight: 900;
}

.delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: #fff;
}

.delivery-list {
  border-top: 1px solid var(--line);
}

.delivery-list div {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-list strong {
  font-size: 1rem;
}

.delivery-list span {
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 7vw, 90px);
  background: var(--bg);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-note {
  margin-top: 34px;
  padding: 22px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.06);
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-self: start;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--cyan);
}

.quote-form select option {
  color: var(--ink);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(20px, 5vw, 70px);
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.site-footer .brand-mark {
  border-color: var(--line);
  background: var(--ink);
}

.site-footer p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer a:last-child {
  color: var(--cyan-dark);
  font-weight: 850;
}

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

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 6, 8, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero-panel,
  .service-list,
  .rental-grid,
  .process-rail,
  .delivery,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .hero-panel div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .section-heading.split,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 0.95rem;
  }

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

  .hero {
    min-height: auto;
    padding: 112px 16px 20px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.62)),
      linear-gradient(180deg, rgba(5, 6, 8, 0.18), rgba(5, 6, 8, 0.92) 82%);
  }

  .hero h1 {
    font-size: 3.15rem;
  }

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

  .section {
    padding: 66px 16px;
  }

  .service-list article,
  .rental-card {
    min-height: auto;
  }

  .line-icon {
    margin-bottom: 34px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }
}

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