:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --text: #1a1d29;
  --muted: #61657a;
  --primary: #6c3bff;
  --secondary: #dff2ff;
  --border: #e6e8f0;
  --shadow: 0 16px 40px rgba(20, 28, 64, 0.08);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-header { background: #fff; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.site-title { color: var(--text); font-size: 1.25rem; font-weight: 700; }
.menu { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; }
.announcement-bar { background: linear-gradient(90deg, #111429, var(--primary)); color: #fff; font-size: .95rem; padding: 10px 0; }
.hero { padding: 72px 0 48px; background: radial-gradient(circle at top right, #e8e4ff 0%, #f7f8fc 42%, #f7f8fc 100%); }
.hero-grid, .split-grid { display: grid; gap: 28px; grid-template-columns: 1.2fr .8fr; align-items: center; }
.eyebrow { display: inline-block; background: var(--secondary); color: #164061; padding: 6px 12px; border-radius: 999px; font-size: .85rem; font-weight: 700; margin-bottom: 14px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2.3rem, 4.3vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.hero-copy { max-width: 680px; font-size: 1.1rem; color: var(--muted); }
.card, .cta-banner { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.hero-card { padding: 32px; }
.section { padding: 56px 0; }
.alt-section { background: #f1f3fb; }
.section-heading { margin-bottom: 24px; }
.card-grid { display: grid; gap: 24px; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.button { display: inline-block; padding: 14px 20px; border-radius: 12px; font-weight: 700; border: 1px solid transparent; text-decoration: none; }
.button:hover { text-decoration: none; opacity: .95; }
.button-primary { background: var(--primary); color: #fff; }
.button-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.text-link { font-weight: 700; }
.check-list { padding-left: 18px; margin: 12px 0 0; }
.cta-banner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.content-wrap { max-width: 900px; }
.page-card, .post-card { padding: 36px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-meta, .note { color: var(--muted); font-size: .95rem; }
.site-footer { background: #111429; color: #fff; margin-top: 40px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 28px; padding: 48px 0 20px; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 16px 0 28px; }
.lead-form { display: grid; gap: 10px; }
.lead-form input { width: 100%; padding: 14px; border-radius: 12px; border: 1px solid var(--border); }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  border: 1px solid var(--border); border-radius: 18px; padding: 16px; background: #fff; box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .hero-grid, .split-grid, .three-up, .two-up, .footer-grid, .cta-banner { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-block; }
  .primary-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; padding: 14px 16px 18px; border-bottom: 1px solid var(--border); }
  .primary-nav.open { display: block; }
  .menu { flex-direction: column; }
}
