:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --dark: #111827;
  --dark-soft: #1f2937;
  --accent: #f59e0b;
  --accent-dark: #b45309;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--dark);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-call {
  background: var(--accent);
  color: #111827;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 30px;
  padding: 80px 5vw 40px;
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.22), transparent 32%),
    linear-gradient(135deg, #fff7ed 0%, #f8fafc 55%, #e5e7eb 100%);
}

.hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.18rem;
  margin: 24px 0;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--dark);
  color: white;
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button.full { width: 100%; background: var(--accent); color: var(--dark); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-strip span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card,
.map-card,
.card,
.price-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  align-self: start;
  padding: 26px;
}

.quote-card h2 { margin: 0 0 8px; }
.quote-card ul { padding-left: 20px; color: var(--muted); }

.notice {
  margin: 28px 5vw 0;
  padding: 18px 20px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 18px;
}

.section {
  padding: 76px 5vw;
}

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

.section-heading h2,
.split h2,
.contact-section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading p,
.split p,
.contact-section p { color: var(--muted); }

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

.card { padding: 24px; box-shadow: none; }
.card h3 { margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; }

.dark-section {
  background: var(--dark);
  color: white;
}

.dark-section .eyebrow { color: var(--accent); }
.dark-section .section-heading p { color: #d1d5db; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.price-card {
  padding: 24px;
  background: var(--dark-soft);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.price-card.featured { outline: 2px solid var(--accent); }
.price-card h3 { margin: 0 0 10px; }
.price-card p { color: #d1d5db; }
.price-card .price {
  color: white;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
  margin: 8px 0 12px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--dark-soft);
}

th, td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

th { color: var(--accent); }
td { color: #e5e7eb; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.map-card { padding: 30px; }
.map-card h3 { margin-top: 0; }
.small-text { color: var(--muted); font-size: 0.92rem; }

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

.steps article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
}

.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  background: #fff7ed;
}

.contact-form {
  padding: 26px;
}

label {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

textarea { resize: vertical; }
.form-note { margin-bottom: 0; font-size: 0.9rem; color: var(--muted); }

.payment-disclaimer {
  margin: 16px 0;
  padding: 14px 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.95rem;
}

.payment-disclaimer strong { color: var(--accent-dark); }


.footer {
  padding: 30px 5vw;
  background: var(--dark);
  color: white;
}
.footer p { max-width: 900px; }
.footer .small-text { color: #9ca3af; }

@media (max-width: 920px) {
  .nav { display: none; }
  .hero,
  .split,
  .contact-section { grid-template-columns: 1fr; }
  .grid-3,
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .topbar { padding: 12px 4vw; }
  .brand small { display: none; }
  .nav-call { padding: 10px 12px; }
  .hero { padding: 48px 4vw 28px; }
  .section { padding: 54px 4vw; }
  .notice { margin-left: 4vw; margin-right: 4vw; }
  .grid-3,
  .pricing-grid,
  .steps { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.55rem; }
  .button,
  button { width: 100%; }
}

.hidden-field { display: none; }
