:root {
  color-scheme: light;
  --ink: #1b2430;
  --muted-ink: #56616f;
  --line: #e5e8ee;
  --paper: #ffffff;
  --soft: #f4f6fa;
  --deep: #1c3a5e;
  --accent: #e3893a;
  --accent-2: #2a9d8f;
  --white: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-size: 18px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 40px)); }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 9px; background: var(--deep); color: var(--white); font-size: 22px; }
.brand-name { font-size: 21px; }
.main-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.main-nav a { color: var(--muted-ink); text-decoration: none; font-size: 15px; font-weight: 700; }
.main-nav a[aria-current="page"] { color: var(--deep); }

.hero, .page-hero { padding: 72px 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 480px); gap: 48px; align-items: center; }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 70px); max-width: 13ch; }
.page-hero h1 { max-width: 18ch; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 22px; }
.lead { font-size: 22px; color: var(--muted-ink); max-width: 760px; margin: 22px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 9px; text-decoration: none; font-weight: 800; border: 1px solid transparent; }
.button.primary { background: var(--deep); color: var(--white); }
.button.secondary { background: var(--white); color: var(--deep); border-color: var(--line); }
.hero-media { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(27,58,94,.10); }
.hero-media figcaption, figure figcaption { padding: 12px 16px; color: var(--muted-ink); font-size: 14px; }

.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 28px 0 0; }
.trust-row li { position: relative; padding-left: 22px; font-size: 15px; font-weight: 700; color: var(--muted-ink); }
.trust-row li::before { content: ""; position: absolute; left: 0; top: 50%; width: 13px; height: 8px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: translateY(-65%) rotate(-45deg); }

.section { padding: 72px 0; }
.muted { background: var(--soft); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; }
.text-stack p:first-child { margin-top: 0; }
.text-link { color: var(--deep); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.section-head { max-width: 760px; margin-bottom: 28px; }

.cards, .faq-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards article, .faq-grid article, .steps article { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 24px; box-shadow: 0 8px 24px rgba(27,58,94,.06); }
.steps span { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-2); color: var(--white); font-weight: 900; margin-bottom: 16px; }
.cards article h3, .faq-grid article h3 { margin-bottom: 8px; }
.cards article p, .faq-grid article p { margin: 0; color: var(--muted-ink); }

.product-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(27,58,94,.08); display: flex; flex-direction: column; }
.product-card figure { margin: 0; background: var(--soft); border-bottom: 1px solid var(--line); }
.product-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; }
.product-body h3 { font-size: 28px; }
.product-body p { margin: 0; color: var(--muted-ink); }
.product-body .check-list { margin: 4px 0; }
.product-body .hero-actions { margin-top: auto; }

.check-list { padding-left: 22px; }
.check-list li { margin: 9px 0; }

.feature-grid { display: grid; grid-template-columns: minmax(320px, 480px) 1fr; gap: 44px; align-items: center; }
.feature-grid figure { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: 0 8px 24px rgba(27,58,94,.06); }

.wide-figure { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--white); box-shadow: 0 8px 24px rgba(27,58,94,.06); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--white); box-shadow: 0 8px 24px rgba(27,58,94,.06); }

.stat-strip { background: var(--deep); color: var(--white); padding: 30px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; text-align: center; }
.stat-grid div { display: flex; flex-direction: column; gap: 4px; }
.stat-grid strong { font-size: 38px; line-height: 1; color: var(--accent); }
.stat-grid span { font-size: 15px; color: #d8e2ee; }

.cta-band { background: var(--deep); color: var(--white); }
.cta-band .eyebrow, .cta-band p { color: #d8e2ee; }
.cta-inner { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.cta-inner p { max-width: 720px; }
.cta-inner .button { background: var(--white); color: var(--deep); }

.breadcrumb { display: flex; gap: 10px; align-items: center; padding-top: 28px; color: var(--muted-ink); font-size: 14px; }
.breadcrumb a { color: var(--deep); font-weight: 800; text-decoration: none; }
.article-body { padding: 8px 0 40px; font-size: 19px; }
.article-body h2 { font-size: 30px; margin-top: 40px; margin-bottom: 12px; }
.article-body p, .article-body li { color: #2c3744; }

.site-footer { background: #141f2e; color: #f3f6fa; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 32px; }
.site-footer a { color: #f3f6fa; display: block; margin: 8px 0; }
.site-footer p { color: #c4d0de; margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 36px; padding-top: 20px; font-size: 14px; }

.mobile-cta { display: none; }

@media (max-width: 860px) {
  body { font-size: 17px; }
  .header-inner { flex-direction: column; align-items: stretch; gap: 8px; min-height: 0; padding: 10px 0; }
  .header-inner .brand { align-self: flex-start; }
  .main-nav { flex-wrap: nowrap; overflow-x: auto; width: 100%; gap: 16px; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { white-space: nowrap; }
  .hero, .page-hero { padding: 44px 0; }
  .hero-grid, .split, .feature-grid, .product-split, .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .cards, .faq-grid, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .stat-grid strong { font-size: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  body { padding-bottom: 76px; }
  .mobile-cta { display: flex; align-items: center; justify-content: center; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50; min-height: 52px; border-radius: 11px; background: var(--accent); color: var(--white); font-weight: 800; text-decoration: none; box-shadow: 0 10px 28px rgba(27,58,94,.30); }
  h1 { font-size: 42px; }
  .lead { font-size: 19px; }
}
