/* Base reset and typography */
:root {
  --bg: #f6f1e8;
  --panel: #fffaf3;
  --text: #1f2937;
  --muted: #4b5563;
  --accent: #d97757;
  --accent-strong: #b45309;
  --border: #e7dcc8;
  --success: #16a34a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --max-width: 1180px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

/* Layout */
.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 232, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.badge {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

select.location-switcher {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #fdfcf9;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 35px rgba(185, 83, 9, 0.25);
}

.btn-secondary {
  background: var(--panel);
  border-color: var(--border);
  color: var(--text);
}

.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff1d6;
  color: #b45309;
  border-radius: 999px;
  font-weight: 700;
}

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  color: #111827;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 16px 0 12px;
}

h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
  border-radius: 999px;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stat {
  padding: 14px 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 22px;
  color: #0f172a;
}

.section {
  padding: 48px 0;
}

.section-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature .tag {
  background: #fce7f3;
  color: #be185d;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 700;
  width: fit-content;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: 800;
  color: #f97316;
  background: #fff7ed;
  padding: 6px 10px;
  border-radius: 10px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card.highlight {
  border-color: #f97316;
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.2);
}

.price {
  font-size: 26px;
  font-weight: 800;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  color: var(--success);
  font-weight: 900;
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.location-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.cta {
  text-align: center;
  padding: 56px 0 72px;
}

.footer {
  margin-top: 20px;
  padding: 20px 0 32px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }
  .hero {
    padding-top: 40px;
  }
}

