:root {
  --primary: #6b5a9e;
  --primary-light: #ebe4f7;
  --accent: #c4a35a;
  --bg: #fdfcfa;
  --text: #1a1625;
  --muted: #4a4458;
  --glass: rgba(255, 253, 250, 0.78);
  --border: rgba(107, 90, 158, 0.15);
  --radius: 22px;
  --shadow: 0 22px 50px rgba(26, 22, 37, 0.08);
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Manrope', system-ui, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-b); font-weight: 400; line-height: 1.65; }
.siteHeader {
  background: var(--glass); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem; position: sticky; top: 0; z-index: 1000; width: 100%;
}
.headerContainer { max-width: 1220px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; }
.brandLogo a { font-family: var(--font-h); font-weight: 700; font-size: 1.45rem; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.mainNav ul { display: flex; gap: 1.45rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; align-items: center; }
.mainNav a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.9rem; }
.mainNav a:hover { color: var(--primary); }
.ctaButton { border: 1.5px solid var(--primary); border-radius: 999px; padding: 0.5rem 1.3rem; color: var(--primary); transition: 0.25s; }
.ctaButton:hover { background: var(--primary); color: #fff; }
.navToggle { display: none; background: none; border: none; font-size: 1.45rem; cursor: pointer; color: var(--text); }
section { max-width: 1220px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.glassCard {
  background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform 0.25s, border-color 0.25s;
}
.glassCard:hover { transform: translateY(-3px); border-color: rgba(196, 163, 90, 0.35); }
h1, h2, h3 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }
.btn { display: inline-block; padding: 0.9rem 1.85rem; border-radius: 999px; font-weight: 600; text-decoration: none; transition: 0.25s; }
.btn-primary { background: var(--primary); color: #fff; border: 1.5px solid var(--primary); }
.btn-outline { border: 1.5px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.legalNote {
  font-size: 0.82rem; color: var(--muted); border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem; background: rgba(196, 163, 90, 0.08); border-radius: 0 12px 12px 0; margin-top: 1.2rem;
}
.orderForm input, .orderForm select, .orderForm textarea {
  width: 100%; padding: 0.85rem 1rem; margin-bottom: 1rem; border-radius: 12px; border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92); font-family: inherit; font-size: 1rem;
}
.orderForm label { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 0.35rem; }
.checkboxRow { display: flex; gap: 0.55rem; align-items: flex-start; margin: 1rem 0; font-size: 0.88rem; }
.checkboxRow input { width: auto; margin: 0.2rem 0 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.25rem; }
.pageHero { padding-top: 2.5rem; padding-bottom: 1rem; }
@media (max-width: 900px) {
  .navToggle { display: block; }
  .heroFlex { flex-direction: column !important; }
  .heroFlex > div { flex: 1 1 100% !important; max-width: 100% !important; }
  .statGrid, .stepGrid, .bentoRow { grid-template-columns: 1fr !important; }
}
