:root {
  --bg: #08090b;
  --bg-strong: #0f1115;
  --bg-soft: #141922;
  --panel: rgba(17, 21, 27, 0.9);
  --panel-strong: rgba(12, 15, 20, 0.98);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --text: #f6f1ea;
  --muted: #b5bec8;
  --muted-strong: #d8e0e8;
  --orange: #f26a2c;
  --orange-2: #ff9b58;
  --orange-soft: rgba(242, 106, 44, 0.16);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 106, 44, 0.16), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(255, 155, 88, 0.12), transparent 18%),
    linear-gradient(180deg, #060709 0%, #0d1117 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 80%);
}

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

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

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

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

.topbar {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 8, 10, 0.94);
}

.topbar-wrap {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar p,
.topbar a {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  min-width: 0;
  padding: 4px 0;
  max-width: 300px;
}

.brand img {
  display: block;
  width: clamp(140px, 18vw, 220px);
  max-width: 100%;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  filter: none;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 28px;
}

.header-actions {
  flex: 0 0 auto;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: #dfe7ee;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.phone-link {
  font-weight: 800;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 40px rgba(242, 106, 44, 0.32);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 34px 0 36px;
}

.hero-shell,
.split-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.hero-shell {
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.dark-panel h2,
.quote-copy h2,
.thanks-card h1,
.policy-card h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.3px;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 5.7vw, 5.3rem);
}

.hero h1 span {
  color: var(--orange);
}

.hero-text,
.section-title p,
.service-card p,
.area-panel p,
.review-card p,
.quote-copy p,
.faq-item p,
.stat-card p,
.hero-ticket p,
.local-panel p,
.thanks-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-points,
.trust-strip,
.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  margin: 30px 0 18px;
}

.hero-points span,
.trust-strip li,
.route-list li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-image-card,
.stat-card,
.service-card,
.review-card,
.area-panel,
.dark-panel,
.local-panel,
.quote-form,
.faq-item,
.thanks-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  box-shadow: var(--shadow);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(7, 8, 10, 0.88) 100%);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-ticket {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 11, 15, 0.82);
  backdrop-filter: blur(12px);
}

.hero-ticket strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-ticket p {
  margin: 0 0 14px;
}

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

.hero-ticket li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-ticket li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.stat-card {
  padding: 22px;
}

.stat-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.stat-card p,
.service-card p,
.review-card p,
.area-panel p,
.quote-copy p,
.local-panel p,
.thanks-card p {
  margin: 0;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 110px;
}

.section-title {
  max-width: 840px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.areas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.service-card,
.review-card,
.area-panel {
  position: relative;
  padding: 30px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card::before,
.review-card::before,
.area-panel::before,
.local-panel::before,
.dark-panel::before,
.quote-form::before,
.thanks-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 106, 44, 0.75), rgba(255, 255, 255, 0));
}

.service-card:hover,
.review-card:hover,
.area-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 106, 44, 0.28);
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border: 2px solid rgba(242, 106, 44, 0.82);
  border-radius: 22px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: rgba(242, 106, 44, 0.08);
}

.service-card .icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-bar h2,
.service-card h3,
.area-panel h3,
.local-panel h3 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.86rem;
  text-transform: uppercase;
  line-height: 1;
}

.service-note {
  margin-top: 14px;
  color: var(--muted-strong);
  font-weight: 700;
}

.dark-panel,
.local-panel {
  position: relative;
  min-height: 100%;
  padding: 34px;
  overflow: hidden;
}

.dark-panel {
  background:
    radial-gradient(circle at top right, rgba(242, 106, 44, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.96) 0%, rgba(10, 13, 17, 0.98) 100%);
}

.local-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    radial-gradient(circle at top center, rgba(242, 106, 44, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(18, 21, 27, 0.95) 0%, rgba(10, 13, 17, 0.99) 100%);
}

.route-list {
  gap: 10px;
}

.route-list li {
  min-height: 38px;
  font-size: 0.94rem;
}

.local-checklist {
  display: grid;
  gap: 14px;
}

.local-check {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.local-check strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
}

.local-check p {
  margin: 0;
}

.process-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 72px;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.process-list strong {
  font-size: 1.05rem;
}

.process-list span {
  color: var(--muted);
  line-height: 1.6;
}

.area-map-panel {
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(242, 106, 44, 0.08), transparent 30%),
    #090a0c;
}

.area-map-panel img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 0;
  object-fit: contain;
  border-radius: 20px;
}

.area-copy-panel {
  display: grid;
  align-content: start;
}

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

.area-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.06rem;
  font-weight: 700;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.reviews {
  background:
    linear-gradient(180deg, rgba(242, 106, 44, 0.05) 0%, transparent 12%),
    transparent;
}

.review-card .stars {
  margin-bottom: 16px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-card strong {
  display: block;
  margin-top: 16px;
}

.quote-copy {
  padding: 8px 6px 8px 0;
}

.contact-list,
.quote-highlights,
.faq-grid {
  display: grid;
  gap: 14px;
}

.contact-list {
  margin: 26px 0 30px;
}

.contact-list a,
.contact-list span {
  color: #fff;
  font-weight: 800;
}

.quote-highlights {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.quote-highlights > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.quote-highlights strong {
  display: block;
  margin-bottom: 6px;
}

.quote-form {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: #f3f5f7;
  font-size: 0.96rem;
  font-weight: 700;
}

.form-fieldset {
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.form-fieldset legend {
  padding: 0 8px;
  color: #f3f5f7;
  font-size: 0.96rem;
  font-weight: 800;
}

.checkbox-grid {
  display: grid;
  gap: 12px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3f5f7;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.checkbox-option span {
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

select {
  appearance: none;
  color-scheme: dark;
}

select option {
  color: #f7f7f4;
  background: #10161c;
}

input::placeholder,
textarea::placeholder {
  color: #9aa5ae;
}

textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 14px;
}

input:focus,
select:focus,
textarea:focus,
.faq-item summary:focus,
.mobile-cta:focus {
  outline: 2px solid rgba(255, 155, 88, 0.95);
  outline-offset: 2px;
}

.form-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
  text-align: center;
}

.form-note a,
.footer-meta a,
.policy-stack a {
  color: #fff;
  font-weight: 800;
  text-decoration-color: rgba(242, 106, 44, 0.65);
}

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

.faq-item {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.hidden {
  display: none;
}

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

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 340px;
}

.footer-brand img {
  width: clamp(170px, 34vw, 240px);
  max-width: 100%;
  height: auto;
  max-height: 124px;
  object-fit: contain;
  filter: none;
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  max-width: 560px;
  text-align: right;
}

.company-legal {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
}

.policy-updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.policy-stack {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.policy-stack section {
  display: grid;
  gap: 10px;
}

.policy-stack h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.policy-stack p,
.policy-stack li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-stack ul {
  margin: 0;
  padding-left: 20px;
}

.thanks-page {
  min-height: calc(100vh - 46px);
  display: grid;
  align-items: center;
}

.thanks-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  overflow: hidden;
}

.thanks-card p {
  max-width: 560px;
  margin: 18px auto 0;
}

.thanks-card .hero-buttons {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.thanks-card .hero-buttons .btn {
  min-width: 250px;
  justify-content: center;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 45;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-wrap {
    min-height: 90px;
  }

  .brand img {
    width: clamp(130px, 34vw, 190px);
    max-width: 100%;
    max-height: 82px;
  }

  .site-nav,
  .header-actions .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav.open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: #0c1116;
    box-shadow: var(--shadow);
  }

  .hero-shell,
  .split-grid,
  .quote-grid,
  .areas-grid,
  .card-grid.four,
  .card-grid.three,
  .faq-grid,
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .area-map-panel {
    padding: 10px;
  }

  .topbar-wrap {
    justify-content: center;
    text-align: center;
  }

  .topbar a {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.9rem);
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .policy-card {
    padding: 26px 22px;
  }

  .footer-meta {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .hero-ticket {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .brand img {
    width: clamp(118px, 36vw, 164px);
    max-height: 70px;
  }

  .footer-brand img {
    width: clamp(150px, 48vw, 180px);
  }

  .dark-panel,
  .local-panel,
  .thanks-card,
  .quote-form,
  .service-card,
  .review-card,
  .area-panel,
  .stat-card,
  .faq-item {
    border-radius: 18px;
  }

  .mobile-cta {
    display: inline-flex;
  }
}
