:root {
  --orange: #f97316;
  --orange-dark: #c2410c;
  --orange-light: #fff7ed;
  --black: #0f172a;
  --charcoal: #1f2937;
  --gray: #64748b;
  --light-gray: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
}
.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(226,232,240,0.95);
}

.navbar { min-height: 84px; }
.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong { display: block; color: var(--black); font-size: 1.05rem; }
.brand small { display: block; color: var(--gray); font-size: 0.76rem; margin-top: -2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 11px;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--orange-light);
  color: var(--orange-dark);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: inherit;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(249, 115, 22, .28);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--border); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.16), transparent 35%),
    linear-gradient(180deg, var(--orange-light), #fff 70%);
  padding: 78px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 1px 0 var(--border);
}
h1, h2, h3 { color: var(--black); line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.45rem, 5vw, 4.75rem); letter-spacing: -0.055em; }
.hero p.lead {
  font-size: 1.18rem;
  color: #334155;
  margin: 22px 0 0;
  max-width: 650px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.quick-fact {
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.quick-fact strong { display: block; color: var(--black); }
.quick-fact span { color: var(--gray); font-size: .92rem; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 22px; background: var(--orange-light); }
.hero-card-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 16px 4px 4px;
  align-items: start;
}
.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.section { padding: 74px 0; }
.section-light { background: var(--light-gray); }
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.04em; }
.section-title p { max-width: 650px; color: var(--gray); margin: 12px 0 0; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--gray); margin: 0; }
.card ul { margin: 14px 0 0; padding-left: 18px; color: var(--gray); }
.card li { margin: 5px 0; }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  align-items: center;
}
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
}
.panel.orange h2,
.panel.orange h3 { color: var(--white); }
.panel.orange p { color: rgba(255,255,255,.92); }

.list-check {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.list-check li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}
.list-check li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .8rem;
  margin-top: 1px;
}

.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-band p { margin: 10px 0 0; color: #cbd5e1; max-width: 700px; }

.page-hero {
  background: linear-gradient(180deg, var(--orange-light), #fff);
  padding: 58px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.3rem, 4.5vw, 4.1rem); }
.page-hero p { max-width: 780px; color: var(--gray); font-size: 1.13rem; margin: 18px 0 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: grid; gap: 7px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--black); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 50px;
  padding: 13px 14px;
  font: inherit;
  color: var(--black);
  background: var(--white);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(249,115,22,.2);
  border-color: var(--orange);
}
.form-note {
  background: var(--orange-light);
  border: 1px solid #fed7aa;
  color: #7c2d12;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.small-text { color: var(--gray); font-size: .92rem; }
.hidden-field { display: none !important; }

.faq-list { display: grid; gap: 14px; }
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; color: var(--black); }
details p { color: var(--gray); margin: 12px 0 0; }

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.placeholder {
  min-height: 210px;
  border-radius: 22px;
  border: 2px dashed #fdba74;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  color: #9a3412;
  font-weight: 900;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { color: var(--white); font-weight: 900; font-size: 1.1rem; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.site-footer h2 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.site-footer p { color: #cbd5e1; margin: 8px 0; }
.site-footer a { color: var(--white); text-decoration-color: rgba(255,255,255,.3); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px;
  padding: 18px 0;
}
.footer-bottom p { margin: 0; font-size: .9rem; }

@media (max-width: 1040px) {
  .nav-actions { display: none; }
  .nav-links a { padding: 9px 8px; }
}

@media (max-width: 860px) {
  .desktop-only { display: none; }
  .top-bar-inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .cards-grid, .placeholder-grid { grid-template-columns: 1fr 1fr; }
  .quick-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav-toggle-label {
    display: inline-grid;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .nav-toggle-label span { width: 25px; height: 3px; background: var(--black); display: block; border-radius: 999px; }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% - 1px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links a { border-radius: 12px; padding: 12px; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .navbar, .nav-inner { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand small { display: none; }
  .cards-grid, .placeholder-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .section-title { display: block; }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 28px; }
}
