* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #ea580c;
  --brand-soft: #fff7ed;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  --radius: 28px;
  --radius-sm: 20px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 130px;
}

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

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

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

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

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 900;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
}

.section-lead-top {
  margin-top: 24px;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 34px;
}

.section-intro-wide {
  max-width: 760px;
}

.hero-legal {
  padding-bottom: 60px;
}

.hero-grid-top {
  align-items: start;
}

.data-sub-address {
  margin-top: 14px;
}

.data-value-legal-email {
  margin-top: 24px;
  font-size: 1.1rem;
}

.bullet-list-top {
  margin-top: 16px;
}

.legal-text-block {
  margin-top: 18px;
  line-height: 1.75;
}

.legal-contact-card h3, .legal-contact-card p {
  margin: 0;
}

.legal-contact-title {
  margin-top: 8px;
  font-size: 1.6rem;
}

.legal-contact-copy {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-contact-list {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.legal-contact-list p {
  line-height: 1.7;
}

.legal-contact-actions {
  margin-top: 28px;
}

.benefit-card-left {
  text-align: left;
}

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

.brand-sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-logo {
  height: 50px;
  width: auto;
}

.header-status-text {
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 1001;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
}

.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: max(16px, calc((100vw - var(--max)) / 2 + 16px));
  z-index: 1000;
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-list {
  display: grid;
  gap: 10px;
}

.compact-menu-list {
  gap: 8px;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--dark-2);
  font-weight: 700;
}

.menu-link:hover {
  background: var(--bg-soft);
}

.compact-menu-list .menu-link {
  padding: 12px 14px;
  font-size: 0.98rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 15%, rgba(251, 146, 60, 0.14), transparent 26%),
    radial-gradient(circle at 10% 35%, rgba(148, 163, 184, 0.12), transparent 22%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 60%, #fff7ed 100%);
}

.hero-grid {
  display: grid;
  gap: 52px;
  align-items: center;
  padding: 72px 0 88px;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy p {
  margin-top: 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark-2);
}

.btn-full {
  width: 100%;
}

.stat-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.stat-card strong {
  display: block;
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 900;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.visual-inner {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.visual-logo-img {
  max-height: 70px;
  width: auto;
}

.info-stack {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.mini-card {
  padding: 18px;
}

.mini-card.dark {
  border-color: transparent;
  background: var(--dark);
  color: #fff;
}

.mini-card.soft {
  border-color: #fed7aa;
  background: var(--brand-soft);
}

.mini-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-card.dark .mini-kicker {
  color: #cbd5e1;
}

.mini-card.soft .mini-kicker {
  color: #c2410c;
}

.mini-title {
  margin-top: 10px;
  font-size: 1.18rem;
  font-weight: 900;
}

.mini-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.mini-card.dark .mini-text {
  color: #cbd5e1;
}

.quick-grid, .steps-grid, .benefits-grid, .contact-grid, .two-col {
  display: grid;
  gap: 22px;
}

.quick-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.quick-strip-inner {
  padding-top: 28px;
  padding-bottom: 28px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.card-kicker {
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-text {
  margin-top: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.check-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #c2410c;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.95rem;
  font-weight: 900;
}

.check-item p {
  color: var(--dark-2);
  line-height: 1.65;
}

.data-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.data-grid {
  display: grid;
  gap: 16px;
}

.data-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-soft);
}

.data-box.dark {
  border-color: transparent;
  background: var(--dark);
  color: #fff;
}

.data-box.soft {
  border-color: #fed7aa;
  background: var(--brand-soft);
}

.data-title {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.data-box.dark .data-title {
  color: #cbd5e1;
}

.data-box.soft .data-title {
  color: #c2410c;
}

.data-value {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
}

.data-value-small-top {
  margin-top: 20px;
  font-size: 1.5rem;
}

.data-sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.data-box.dark .data-sub {
  color: #cbd5e1;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: var(--dark-2);
  font-size: 0.98rem;
}

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

.dark-section .lead {
  color: #cbd5e1;
}

.dark-section-intro {
  max-width: 760px;
}

.dark-eyebrow {
  color: #fb923c;
}

.steps-grid-top {
  margin-top: 34px;
}

.step-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.step-card.accent {
  border-color: transparent;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.28);
}

.step-card .card-kicker {
  color: #94a3b8;
}

.step-card.accent .card-kicker, .step-card.accent p {
  color: rgba(255, 255, 255, 0.92);
}

.step-card h3 {
  margin-top: 10px;
}

.step-card p {
  margin-top: 12px;
  color: #cbd5e1;
  line-height: 1.75;
}

.benefit-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 900;
}

.benefit-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-wrap {
  background: var(--bg-soft);
}

.contact-side p {
  margin-top: 22px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-2);
  font-weight: 600;
}

.contact-point .dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.9rem;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid, .field-grid {
  display: grid;
  gap: 16px;
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-2);
  font-size: 0.92rem;
  font-weight: 700;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:not([type="checkbox"]):not([type="radio"]):focus, textarea:focus, select:focus {
  border-color: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-field {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  color: var(--dark-2);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--brand);
  -webkit-appearance: checkbox;
  appearance: checkbox;
  box-shadow: none;
}

.checkbox-label input[type="checkbox"]:focus {
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.12);
}

.checkbox-label span {
  display: block;
}

.checkbox-label a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-label a:hover {
  color: #c2410c;
}

.form-message {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 600;
}

.form-message-success {
  border: 1px solid #10b981;
  background: #ecfdf5;
  color: #065f46;
}

.form-message-error {
  border: 1px solid #ef4444;
  background: #fef2f2;
  color: #991b1b;
}

.form-error {
  margin-top: 6px;
  color: #dc2626;
  font-size: 0.85rem;
  font-weight: 600;
}

.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

#formSuccess {
  transition: opacity 0.5s ease;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

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

.compact-footer-links {
  gap: 12px;
  font-size: 0.95rem;
}

.footer-small {
  color: var(--muted);
  font-size: 0.92rem;
}

.copy-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.copy-list p {
  color: var(--muted);
  line-height: 1.8;
}

.header-status-row.is-open .status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.header-status-row.is-closed .status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  gap: 16px;
}

.header-contact-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-self: center;
  gap: 24px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-2);
  border: 1px solid var(--line);
  background: #fff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.phone-icon {
  font-size: 1rem;
}

.header-hours-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.header-hours-grid {
  display: grid;
  grid-template-columns: 92px max-content;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
}

.header-hours-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-2);
  text-align: left;
  white-space: nowrap;
}

.header-hours-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
}

.header-status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.header-status-row.is-open {
  color: #166534;
}

.header-status-row.is-closed {
  color: #991b1b;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
}

.header-status-row.is-open .status-dot, .mobile-hours-bar.is-open .status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.header-status-row.is-closed .status-dot, .mobile-hours-bar.is-closed .status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.mobile-hours-bar {
  display: none;
}

@media (min-width: 700px) {
  .stat-grid, .quick-grid, .steps-grid, .benefits-grid, .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card-wide, .data-box.full {
    grid-column: 1 / -1;
  }

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

}

@media (min-width: 980px) {
  .hero-grid, .two-col, .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

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

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

}

@media (max-width: 699px) {
  [id] {
    scroll-margin-top: 100px;
  }

  #start {
    scroll-margin-top: 160px;
  }

  .menu-panel {
    right: 0;
    width: calc(100vw - 32px);
    max-height: calc(100vh - 100px);
    padding: 12px;
    border-radius: 18px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .compact-menu-list .menu-link {
    padding: 11px 12px;
    font-size: 0.95rem;
  }

  .header-contact-block {
    justify-content: center;
    gap: 0;
  }

  .header-phone {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-phone .phone-text {
    display: none;
  }

  .footer-compact {
    padding: 14px 0;
    align-items: flex-start;
  }

  .compact-footer-links {
    width: 100%;
    gap: 10px 14px;
  }

  .checkbox-label {
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    transform: scale(0.9);
    transform-origin: top left;
  }

  @media (max-width: 699px) {
    .site-header {
      padding: 0;
    }

    .header-hours-box {
      display: none;
    }

    .header-phone {
      width: 44px;
      height: 44px;
      padding: 0;
    }

    .header-phone .phone-text {
      display: none;
    }

    .mobile-hours-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 12px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      text-align: center;
      flex-wrap: wrap;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .mobile-hours-bar.is-open {
      background: #f0fdf4;
      color: #166534;
    }

    .mobile-hours-bar.is-closed {
      background: #fef2f2;
      color: #991b1b;
    }

    .mobile-hours-status {
      font-weight: 800;
    }

    .mobile-hours-separator {
      opacity: 0.55;
    }

    .mobile-hours-text {
      color: var(--muted);
    }

    .mobile-hours-bar.is-open .mobile-hours-text, .mobile-hours-bar.is-closed .mobile-hours-text {
      color: inherit;
      opacity: 0.85;
    }

    .header-inner {
      grid-template-columns: auto 1fr auto;
    }

    .header-contact-block {
      justify-self: center;
    }

    .menu-toggle {
      justify-self: end;
    }

  }

}

