:root {
  --ink: #101317;
  --muted: #5d6673;
  --line: #d9dee7;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --deep: #071012;
  --teal: #0f766e;
  --blue: #2563eb;
  --coral: #f97316;
  --amber: #f59e0b;
  --shadow: 0 24px 80px rgba(16, 19, 23, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 48px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 222, 231, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer-layout,
.scheduler-header,
.field-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  font-size: 0.8rem;
}

.nav-links {
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  color: currentColor;
  opacity: 0.86;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.72) 36%, rgba(3, 7, 18, 0.2) 72%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.22), rgba(3, 7, 18, 0.56));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0 26px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: min(940px, 100%);
  margin: 0;
  font-size: clamp(2.65rem, 4.6vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  margin-bottom: 10px;
  color: #f9c97a;
  font-size: clamp(1rem, 2.1vw, 1.7rem);
  line-height: 1;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #071012;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
}

.hero-metrics dt {
  margin: 0;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.section {
  padding: clamp(70px, 9vw, 122px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  padding: 42px 0;
  background: var(--deep);
  color: #fff;
}

.intro-grid,
.split-layout,
.safety-layout,
.booking-layout,
.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split-layout h2,
.safety-layout h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.split-layout p,
.safety-layout p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-grid > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  margin-top: 18px;
}

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

.workflow-card {
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.workflow-icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 820;
}

.workflow-card h3,
.comparison h3,
.scheduler h3,
.faq-grid summary {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.workflow-card p,
.comparison p,
.method-steps p,
.faq-grid p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.method-section,
.deliverables {
  background: var(--soft);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  padding: 20px;
  border: 1px solid rgba(217, 222, 231, 0.8);
  border-radius: var(--radius);
  background: #fff;
}

.method-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 820;
}

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

.comparison div {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.comparison div:last-child {
  background: var(--teal);
}

.comparison p {
  color: rgba(255, 255, 255, 0.78);
}

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

.deliverables-list div {
  min-height: 92px;
  padding: 22px;
  background: #fff;
  font-weight: 760;
}

.safety-list,
.booking-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-list li,
.booking-points li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.safety-list li::before,
.booking-points li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.booking-section {
  padding: clamp(70px, 9vw, 128px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 16, 18, 0.96), rgba(17, 24, 39, 0.96)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 44%);
}

.booking-copy p,
.booking-points li {
  color: rgba(255, 255, 255, 0.74);
}

.scheduler {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.scheduler-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.scheduler-header p {
  margin: 0 0 4px;
  color: var(--muted);
}

.scheduler-duration {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  font-weight: 780;
}

#company-site {
  position: absolute;
  left: -9999px;
}

.field-row {
  justify-content: space-between;
  gap: 16px;
}

.field-row label,
.field-label,
form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.field-row select {
  min-width: min(260px, 100%);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

textarea {
  resize: vertical;
}

.slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 48px;
  margin: 10px 0 18px;
}

.slot-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-weight: 760;
}

.slot-button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

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

form {
  display: grid;
  gap: 14px;
}

.consent-line {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.turnstile-container:empty {
  display: none;
}

.submit-button {
  width: 100%;
  color: #fff;
  background: var(--ink);
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}

.form-message.success {
  color: var(--teal);
}

.form-message.error {
  color: #b42318;
}

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

details {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-weight: 780;
}

details p {
  margin-top: 12px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer-layout {
  justify-content: space-between;
  gap: 24px;
}

.footer-layout a {
  color: var(--teal);
  font-weight: 780;
}

@media (max-width: 900px) {
  .site-header {
    height: 66px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 124px 0 32px;
  }

  .hero-metrics,
  .intro-grid,
  .split-layout,
  .safety-layout,
  .booking-layout,
  .method-layout,
  .workflow-grid,
  .deliverables-list,
  .faq-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 42px;
  }

  .method-steps,
  .form-grid,
  .slots {
    grid-template-columns: 1fr;
  }

  .field-row {
    display: grid;
  }

  .workflow-card {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .hero-content {
    padding: 102px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 2.55rem);
    line-height: 0.98;
  }

  .hero h1 span {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-metrics {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.72));
  }
}

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