:root {
  --navy: #0a1e46;
  --navy-2: #10295f;
  --blue: #2457e6;
  --gold: #e8bb56;
  --gold-dark: #b97d11;
  --ink: #15213a;
  --muted: #62708d;
  --line: #dfe5ef;
  --soft: #f6f8fc;
  --white: #ffffff;
  --green: #0b9f6e;
  --shadow-sm: 0 10px 30px rgba(10, 30, 70, .08);
  --shadow-lg: 0 28px 80px rgba(10, 30, 70, .18);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 9999; padding: 10px 14px;
  background: var(--navy); color: white; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.topbar {
  background: var(--navy); color: #dbe6ff; font-size: 13px;
}
.topbar .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar strong { color: var(--gold); }
.topbar a { color: white; font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(223,229,239,.86); backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { width: 176px; flex: 0 0 auto; }
.main-nav { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link, .nav-trigger {
  border: 0; background: transparent; color: var(--ink); padding: 12px 14px; border-radius: 10px;
  font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
}
.nav-link:hover, .nav-trigger:hover, .nav-trigger[aria-expanded="true"] { background: var(--soft); color: var(--navy); }
.chevron { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: .2s; }
.nav-trigger[aria-expanded="true"] .chevron { transform: rotate(225deg) translate(-1px,-1px); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 12px; padding: 11px 18px; font-weight: 800; border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: white; box-shadow: 0 10px 28px rgba(10,30,70,.2); }
.btn-primary:hover { background: var(--navy-2); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 28px rgba(232,187,86,.28); }
.btn-gold:hover { background: #f0c76d; }
.btn-outline { background: white; color: var(--navy); border-color: #cbd4e4; }
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); }
.icon-arrow { font-size: 18px; line-height: 1; }
.mobile-toggle { display: none; border: 0; background: var(--soft); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; }

.mega-menu {
  position: absolute; left: 50%; top: calc(100% + 1px); transform: translateX(-50%) translateY(8px);
  width: min(1100px, calc(100vw - 40px)); padding: 22px; border: 1px solid var(--line); border-radius: 0 0 24px 24px;
  background: white; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; pointer-events: none; transition: .2s;
}
.mega-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 18px; }
.mega-col { padding: 12px; }
.mega-col + .mega-col { border-left: 1px solid var(--line); }
.mega-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 900; margin: 0 0 12px; }
.mega-product {
  display: grid; grid-template-columns: 46px 1fr; gap: 12px; padding: 12px; border-radius: 14px; transition: .2s;
}
.mega-product:hover { background: var(--soft); transform: translateX(2px); }
.mega-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: #eef3ff; color: var(--blue); font-weight: 900; }
.mega-product:nth-of-type(3n+1) .mega-icon { background: #fff7e5; color: var(--gold-dark); }
.mega-product:nth-of-type(3n+2) .mega-icon { background: #e9fbf5; color: var(--green); }
.mega-product strong { display: block; color: var(--navy); font-size: 15px; }
.mega-product span { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 3px; }
.mega-spotlight { min-height: 100%; padding: 20px; background: linear-gradient(145deg, var(--navy), #173c84); border-radius: 18px; color: white; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.mega-spotlight::after { content: "UP"; position: absolute; right: -12px; bottom: -38px; font-size: 100px; font-weight: 900; color: rgba(255,255,255,.07); }
.mega-spotlight p { color: #dce6fb; font-size: 14px; }

.hero {
  position: relative; overflow: hidden; padding: 88px 0 78px; background:
    radial-gradient(circle at 86% 16%, rgba(232,187,86,.22), transparent 24%),
    radial-gradient(circle at 10% 18%, rgba(36,87,230,.12), transparent 22%),
    linear-gradient(180deg, #fbfcff 0%, #f5f8ff 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,30,70,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10,30,70,.035) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; border: 1px solid #d9e2f2; background: rgba(255,255,255,.82); border-radius: 999px; padding: 7px 12px; color: var(--navy); font-size: 13px; font-weight: 900; box-shadow: var(--shadow-sm); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(232,187,86,.18); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 24px 0 22px; font-size: clamp(44px, 5.8vw, 72px); letter-spacing: -.045em; line-height: 1.03; color: var(--navy); }
.text-gold { color: var(--gold-dark); }
.hero-copy > p { max-width: 650px; font-size: 19px; color: var(--muted); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-proof span::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 7px; }

.hero-visual { position: relative; min-height: 540px; }
.dashboard-card {
  position: absolute; border: 1px solid rgba(219,226,239,.9); border-radius: 22px; background: white; box-shadow: var(--shadow-lg); overflow: hidden;
}
.dashboard-main { inset: 30px 12px 55px 38px; transform: rotate(-1.8deg); }
.browser-bar { height: 46px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 15px; background: #fbfcfe; }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: #d9dfeb; }
.mock-app { display: grid; grid-template-columns: 112px 1fr; min-height: 400px; }
.mock-sidebar { background: var(--navy); padding: 22px 13px; }
.mock-logo { width: 70px; height: 13px; border-radius: 4px; background: rgba(255,255,255,.88); margin-bottom: 26px; }
.mock-nav { height: 9px; width: 68px; border-radius: 5px; background: rgba(255,255,255,.18); margin: 13px 0; }
.mock-nav.active { background: var(--gold); width: 78px; }
.mock-content { padding: 22px; background: #f6f8fc; }
.mock-title { width: 174px; height: 19px; border-radius: 7px; background: var(--navy); margin-bottom: 9px; }
.mock-subtitle { width: 240px; height: 9px; border-radius: 5px; background: #cfd7e5; margin-bottom: 22px; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-stat { height: 74px; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.mock-stat::before { content: ""; display: block; width: 30px; height: 8px; border-radius: 4px; background: #dfe5ef; }
.mock-stat::after { content: ""; display: block; width: 54px; height: 18px; border-radius: 6px; background: var(--navy); margin-top: 12px; }
.mock-chart { height: 150px; background: white; border: 1px solid var(--line); border-radius: 15px; margin-top: 13px; padding: 16px; display: flex; align-items: end; gap: 9px; }
.mock-chart i { display: block; flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(to top, #2457e6, #8fa9f5); }
.mock-chart i:nth-child(1){height:38%}.mock-chart i:nth-child(2){height:58%}.mock-chart i:nth-child(3){height:44%}.mock-chart i:nth-child(4){height:82%}.mock-chart i:nth-child(5){height:67%}.mock-chart i:nth-child(6){height:92%}.mock-chart i:nth-child(7){height:74%}
.floating-card { padding: 16px; width: 220px; }
.floating-one { top: 2px; right: -8px; transform: rotate(3deg); }
.floating-two { bottom: 8px; left: 0; transform: rotate(-3deg); }
.floating-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.floating-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #eef3ff; color: var(--blue); font-weight: 900; }
.floating-card strong { color: var(--navy); font-size: 14px; }
.floating-card p { color: var(--muted); font-size: 12px; line-height: 1.4; margin: 0; }
.mini-progress { height: 8px; background: #e7ecf4; border-radius: 999px; overflow: hidden; margin-top: 12px; }
.mini-progress span { display: block; height: 100%; width: 78%; background: var(--gold); border-radius: inherit; }

.logo-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.logo-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 22px; color: var(--muted); }
.logo-strip strong { color: var(--navy); }
.logo-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.logo-pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; background: var(--soft); }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: white; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-inline: auto; }
.kicker { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; }
h2 { margin: 12px 0 16px; font-size: clamp(34px, 4vw, 52px); line-height: 1.13; letter-spacing: -.035em; color: var(--navy); }
.section-dark h2, .section-dark h3 { color: white; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: #c7d4ef; }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { position: relative; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; overflow: hidden; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: #c8d2e3; }
.product-card.featured { grid-column: span 2; background: linear-gradient(145deg, var(--navy), #173d86); color: white; border: 0; }
.product-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; background: #fff3d5; color: #8a5900; font-size: 11px; font-weight: 900; }
.product-card.featured .product-badge { background: rgba(232,187,86,.18); color: #ffd882; border: 1px solid rgba(232,187,86,.35); }
.product-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: #edf2ff; color: var(--blue); font-size: 24px; font-weight: 900; margin-bottom: 22px; }
.product-card.featured .product-icon { background: rgba(255,255,255,.1); color: var(--gold); }
.product-card h3 { font-size: 23px; color: var(--navy); margin-bottom: 10px; }
.product-card.featured h3 { color: white; }
.product-card p { color: var(--muted); }
.product-card.featured p { color: #d3def3; max-width: 580px; }
.feature-list { display: grid; gap: 8px; margin: 18px 0 24px; padding: 0; list-style: none; }
.feature-list li { font-size: 14px; color: var(--muted); }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; }
.product-card.featured .feature-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
.product-card.featured .feature-list li { color: #e3ebfb; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.card-link { color: var(--navy); font-weight: 900; display: inline-flex; align-items: center; gap: 6px; }
.product-card.featured .card-link { color: var(--gold); }

.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.solution-card { border: 1px solid var(--line); border-radius: 18px; padding: 23px; background: white; }
.solution-number { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: var(--navy); background: #fff4d9; font-weight: 900; margin-bottom: 18px; }
.solution-card h3 { color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.solution-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: steps; }
.step { position: relative; }
.step::before { counter-increment: steps; content: "0" counter(steps); display: block; color: var(--gold); font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 18px; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 72px; right: -10px; top: 22px; border-top: 1px dashed rgba(255,255,255,.28); }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: #c5d2ed; font-size: 14px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.quote-card { border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: white; box-shadow: var(--shadow-sm); }
.quote-stars { color: #e2a72f; letter-spacing: 2px; }
.quote-card blockquote { margin: 16px 0 20px; color: var(--ink); font-size: 16px; }
.quote-user { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: white; font-size: 13px; font-weight: 900; }
.quote-user strong { display: block; color: var(--navy); font-size: 14px; }
.quote-user span { color: var(--muted); font-size: 12px; }

.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.resource-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; }
.resource-cover { height: 170px; padding: 22px; background: linear-gradient(135deg, var(--navy), #244b9c); color: white; display: flex; flex-direction: column; justify-content: space-between; }
.resource-card:nth-child(2) .resource-cover { background: linear-gradient(135deg, #845c0c, #e0ad42); }
.resource-card:nth-child(3) .resource-cover { background: linear-gradient(135deg, #086e54, #15ad7e); }
.resource-cover small { text-transform: uppercase; letter-spacing: .12em; font-weight: 900; opacity: .78; }
.resource-cover strong { font-size: 24px; line-height: 1.15; }
.resource-body { padding: 20px; }
.resource-body p { color: var(--muted); font-size: 14px; }

.cta-panel { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 54px; background: linear-gradient(125deg, var(--navy), #16408c); color: white; box-shadow: var(--shadow-lg); }
.cta-panel::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; right: -90px; top: -120px; background: rgba(232,187,86,.18); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta-panel h2 { color: white; margin-top: 0; }
.cta-panel p { color: #d4def3; max-width: 680px; margin-bottom: 0; }

.site-footer { background: #071632; color: #bac8e5; padding: 68px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; }
.footer-brand { width: 180px; filter: brightness(0) invert(1); opacity: .95; }
.footer-about { max-width: 360px; font-size: 14px; margin-top: 18px; }
.footer-col h3 { color: white; font-size: 15px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }

/* product detail pages */
.inner-hero { padding: 80px 0 68px; background: linear-gradient(180deg,#f7f9ff,#fff); border-bottom: 1px solid var(--line); }
.inner-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 55px; align-items: center; }
.inner-hero h1 { font-size: clamp(42px,5vw,66px); }
.product-demo { background: var(--navy); border-radius: 28px; min-height: 390px; padding: 24px; box-shadow: var(--shadow-lg); }
.product-demo-window { min-height: 340px; border-radius: 18px; background: white; overflow: hidden; }
.demo-top { height: 44px; background: #f4f6fa; border-bottom: 1px solid var(--line); }
.demo-body { padding: 24px; }
.demo-chip { width: 120px; height: 12px; background: #d9e0ec; border-radius: 6px; margin-bottom: 16px; }
.demo-heading { width: 70%; height: 25px; background: var(--navy); border-radius: 7px; }
.demo-panel { margin-top: 22px; padding: 20px; border-radius: 16px; background: var(--soft); }
.demo-line { height: 10px; border-radius: 5px; background: #d4dbe8; margin: 11px 0; }
.demo-line:nth-child(2) { width: 84%; }.demo-line:nth-child(3){width:62%}
.detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.sticky-summary { position: sticky; top: 110px; border-radius: 22px; background: var(--navy); color: white; padding: 30px; }
.sticky-summary h3 { color: white; font-size: 25px; }
.sticky-summary p { color: #cfdbf2; }
.detail-block { padding: 26px 0; border-bottom: 1px solid var(--line); }
.detail-block:first-child { padding-top: 0; }
.detail-block h3 { color: var(--navy); font-size: 25px; }
.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; background: white; overflow: hidden; }
.faq-q { width: 100%; padding: 18px 20px; border: 0; background: white; display: flex; justify-content: space-between; text-align: left; font-weight: 800; color: var(--navy); cursor: pointer; }
.faq-a { padding: 0 20px 18px; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }

@media (max-width: 980px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand { width: 154px; }
  .main-nav, .header-actions .btn-outline { display: none; }
  .header-actions { margin-left: auto; }
  .mobile-toggle { display: block; }
  .site-header.mobile-open .main-nav {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; padding: 18px 20px 22px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); flex-direction: column; align-items: stretch; margin: 0;
  }
  .site-header.mobile-open .main-nav .nav-link, .site-header.mobile-open .main-nav .nav-trigger { width: 100%; justify-content: space-between; }
  .mega-menu { position: static; width: 100%; transform: none; box-shadow: none; border-radius: 14px; display: none; opacity: 1; visibility: visible; pointer-events: auto; padding: 10px; }
  .mega-menu.open { display: block; transform: none; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-col + .mega-col { border-left: 0; border-top: 1px solid var(--line); }
  .mega-spotlight { display: none; }
  .hero-grid, .inner-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-visual { min-height: 470px; max-width: 650px; width: 100%; margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card.featured { grid-column: span 2; }
  .solutions-grid, .testimonial-grid, .resource-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .sticky-summary { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-actions .btn-primary { display: none; }
  .hero { padding: 48px 0 50px; }
  h1 { font-size: 44px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; gap: 8px; }
  .hero-visual { min-height: 390px; margin-top: 4px; }
  .dashboard-main { inset: 35px 0 40px 8px; }
  .floating-card { width: 170px; padding: 12px; }
  .floating-one { right: -3px; }
  .floating-two { left: -2px; }
  .mock-app { grid-template-columns: 78px 1fr; min-height: 300px; }
  .mock-sidebar { padding-inline: 9px; }
  .mock-content { padding: 14px; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .mock-stats .mock-stat:last-child { display: none; }
  .mock-chart { height: 110px; }
  .logo-strip .container { align-items: flex-start; flex-direction: column; }
  .logo-items { justify-content: flex-start; }
  .section { padding: 68px 0; }
  h2 { font-size: 36px; }
  .product-grid, .solutions-grid, .testimonial-grid, .resource-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; }
  .product-card.featured .feature-list { grid-template-columns: 1fr; }
  .cta-panel { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .inner-hero { padding: 55px 0; }
  .product-demo { min-height: 330px; padding: 14px; }
  .product-demo-window { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
