:root {
  --bg: #0d1321;
  --surface: #111827;
  --surface-2: #ffffff;
  --surface-3: #f3f4f6;
  --text: #111827;
  --text-light: #f9fafb;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0f766e;
  --radius: 20px;
  --container: 1200px;
  --shadow: 0 12px 36px rgba(17, 24, 39, 0.08);
}

* { 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(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
h1,h2,h3,h4 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 4vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
ul { padding-left: 1.25rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section--compact { padding: 2rem 0; }
.section--alt { background: var(--surface-3); }
.stack-lg > * + * { margin-top: 2rem; }
.stack-lg--narrow { max-width: 860px; }
.stack-sm > * + * { margin-top: .75rem; }
.cards-grid { display: grid; gap: 1.25rem; }
.cards-grid--two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-grid--four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card__body { padding: 1.25rem; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card--dark { background: var(--surface); color: var(--text-light); border-color: rgba(255,255,255,.08); }
.card--cta { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.5rem; }
.card--featured { border-color: var(--primary); box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12); }
.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 82px; }
.site-branding { flex: 1 1 auto; }
.site-branding__title { font-weight: 800; font-size: 1.25rem; }
.site-branding__tagline { margin: 0; color: var(--muted); font-size: .875rem; }
.site-nav { display: flex; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.25rem; align-items: center; }
.menu a { font-weight: 600; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; }
.button-group { display: flex; gap: .75rem; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: .75rem 1.1rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
}
.button--primary { background: var(--primary); color: #fff; }
.button--primary:hover { background: var(--primary-dark); color: #fff; }
.button--secondary { background: #fff; border-color: var(--border); }
.hero { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.hero__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2rem; align-items: center; padding: 5rem 0; }
.hero__grid--single { grid-template-columns: 1fr; }
.eyebrow { display: inline-flex; margin-bottom: 1rem; font-size: .85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.hero__panel { padding: 1.5rem; }
.trust-bar { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: .75rem; text-align: center; }
.trust-bar span { border: 1px solid var(--border); border-radius: 999px; padding: .65rem .75rem; background: #fff; font-weight: 700; }
.section-title > p { max-width: 780px; color: var(--muted); }
.badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.badge { display: inline-flex; background: #e0e7ff; color: #3730a3; font-size: .75rem; font-weight: 700; border-radius: 999px; padding: .35rem .65rem; }
.badge--price { background: #d1fae5; color: #065f46; }
.meta-inline { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-weight: 600; }
.entry-header > p, .archive-description, .entry-subtitle { color: var(--muted); }
.entry-content > * + * { margin-top: 1rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.5rem; margin-bottom: .75rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.check-list--muted li::before { color: var(--muted); }
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 1rem 1.25rem; }
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item__content { padding-top: .75rem; color: var(--muted); }
.site-footer { background: var(--bg); color: var(--text-light); margin-top: 4rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.price-block .price, .product-card__bottom .price { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.product-card__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: start; }
.product-layout__gallery, .product-layout__summary .card { padding: 1.25rem; }
.meta-list { margin: 0; padding-left: 1rem; }
.card__title { margin-bottom: .5rem; }
.archive-header--services p, .archive-header--shop p { color: var(--muted); }
.woocommerce ul.products, .woocommerce-page ul.products { margin: 0; padding: 0; }

@media (max-width: 1024px) {
  .cards-grid--four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards-grid--three { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__grid, .product-layout, .site-footer__grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-header__cta { display: none; }
  .site-nav { margin-left: auto; }
  .menu--primary {
    display: none;
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu--primary.is-open { display: flex; }
  .cards-grid--two, .cards-grid--three, .cards-grid--four { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .card--cta { flex-direction: column; align-items: flex-start; }
  .hero__grid { padding: 4rem 0; }
}
