/* ============================================================
   Simuzo Marketing Site — original design system
   Ocean Ink palette · original cube mark · light theme
   Light theme only. Not derived from Webuzo marketing CSS.
   ============================================================ */

:root {
  /* Ocean Ink — Simuzo site palette */
  --sz-ink: #062a2e;
  --sz-ink-soft: #0d3d43;
  --sz-navy: #0f5c63;
  --sz-navy-mid: #147780;
  --sz-navy-soft: #e3f3f4;
  --sz-blue: #0e8a96;
  --sz-blue-deep: #0a6a73;
  --sz-blue-soft: #e7f7f8;
  --sz-teal: #d97706;
  --sz-teal-soft: #fff7e8;
  --sz-bg: #f2f8f8;
  --sz-bg-elevated: #ffffff;
  --sz-bg-muted: #e2efef;
  --sz-line: #cfe0e1;
  --sz-line-strong: #a9c5c8;
  --sz-text: #0b2c30;
  --sz-text-secondary: #3d5d62;
  --sz-text-muted: #5f7d82;
  --sz-success: #0f766e;
  --sz-radius: 12px;
  --sz-radius-sm: 8px;
  --sz-radius-lg: 20px;
  --sz-radius-pill: 999px;
  --sz-shadow: 0 1px 2px rgba(6, 42, 46, 0.05), 0 10px 28px rgba(15, 92, 99, 0.1);
  --sz-shadow-md: 0 8px 20px rgba(15, 92, 99, 0.12);
  --sz-shadow-lg: 0 20px 48px rgba(15, 92, 99, 0.14);
  --sz-font: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sz-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sz-container: 1120px;
  --sz-header-h: 70px;
  --sz-ease: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sz-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--sz-text-secondary);
  background: var(--sz-bg-elevated);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sz-blue); text-decoration: none; transition: color var(--sz-ease); }
a:hover { color: var(--sz-blue-deep); }
h1, h2, h3, h4, h5, h6 {
  color: var(--sz-ink);
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 0.55em;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.15rem); font-weight: 750; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
code {
  font-family: var(--sz-mono);
  font-size: 0.88em;
  background: var(--sz-navy-soft);
  color: var(--sz-navy);
  border-radius: 6px;
  padding: 0.12em 0.4em;
}
.container { width: min(100% - 2rem, var(--sz-container)); margin-inline: auto; }
.container-wide { width: min(100% - 2rem, 1240px); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.muted { color: var(--sz-text-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.35rem !important; }
.mb-2 { margin-bottom: 0.75rem !important; }
.mt-4 { margin-top: 1.75rem !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--sz-header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 230, 240, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--sz-header-h);
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none !important;
  line-height: 1;
  flex-shrink: 0;
  color: var(--sz-ink);
}
.logo .logo-mark,
.logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo .logo-text,
.logo-text {
  font-weight: 750;
  font-size: 1.28rem;
  letter-spacing: -0.035em;
  color: var(--sz-ink);
  line-height: 1;
}
.logo:hover { opacity: 0.92; }
.logo:hover .logo-text { color: var(--sz-navy); }
.logo-footer .logo-mark { width: 34px; height: 34px; }
.logo-footer .logo-text { font-size: 1.2rem; }
/* legacy img class if any */
.logo .logo-img,
.logo-img {
  height: 36px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav-desktop a {
  color: var(--sz-text-muted);
  font-size: 0.9rem;
  font-weight: 560;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none !important;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--sz-navy);
  background: var(--sz-navy-soft);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sz-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sz-ink);
  position: relative;
  border-radius: 2px;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--sz-header-h);
  background: #fff;
  border-bottom: 1px solid var(--sz-line);
  padding: 0.85rem 1rem 1.1rem;
  box-shadow: var(--sz-shadow-md);
}
.nav-mobile.open { display: grid; gap: 0.25rem; }
.nav-mobile a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: var(--sz-text);
  font-weight: 560;
  text-decoration: none !important;
}
.nav-mobile a:hover { background: var(--sz-bg-muted); }
.nav-mobile .btn { margin-top: 0.5rem; justify-content: center; }
@media (min-width: 1020px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}
@media (max-width: 520px) {
  .nav-actions .btn-secondary { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.6rem;
  padding: 0.55rem 1.15rem;
  border-radius: 10px;
  font-weight: 650;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--sz-ease), border-color var(--sz-ease), color var(--sz-ease), box-shadow var(--sz-ease), transform var(--sz-ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 2.3rem; padding: 0.4rem 0.95rem; font-size: 0.875rem; }
.btn-lg { min-height: 3rem; padding: 0.7rem 1.35rem; font-size: 1rem; }
.btn-primary {
  background: var(--sz-navy);
  color: #fff;
  border-color: var(--sz-navy);
  box-shadow: 0 8px 18px rgba(15, 92, 99, 0.28);
}
.btn-primary:hover {
  background: #0a4a50;
  color: #fff;
  border-color: #0a4a50;
}
.btn-secondary {
  background: #fff;
  color: var(--sz-navy);
  border-color: var(--sz-line-strong);
}
.btn-secondary:hover {
  background: var(--sz-navy-soft);
  color: var(--sz-navy);
  border-color: #b8c0d9;
}
.btn-ghost {
  background: transparent;
  color: var(--sz-navy);
  border-color: var(--sz-line-strong);
}
.btn-ghost:hover {
  background: var(--sz-bg-muted);
  color: var(--sz-ink);
}
.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--sz-blue);
  box-shadow: none;
  min-height: auto;
  padding: 0.45rem 0.35rem;
}
.btn-link:hover { color: var(--sz-blue-deep); background: transparent; transform: none; }
.gap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3.25rem;
  background:
    radial-gradient(900px 380px at 0% 0%, rgba(14, 138, 150, 0.12), transparent 55%),
    radial-gradient(700px 320px at 100% 0%, rgba(217, 119, 6, 0.08), transparent 50%),
    linear-gradient(180deg, #f7fcfc 0%, #eef6f6 100%);
  border-bottom: 1px solid var(--sz-line);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sz-navy);
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius-pill);
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--sz-shadow);
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sz-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}
.hero h1 {
  margin-bottom: 0.85rem;
  max-width: 14.5em;
  color: var(--sz-ink);
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--sz-text-secondary);
  max-width: 38rem;
  margin-bottom: 1.4rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sz-line);
  max-width: 34rem;
}
@media (min-width: 560px) {
  .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--sz-ink);
  letter-spacing: -0.02em;
  font-weight: 750;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--sz-text-muted);
  line-height: 1.35;
}
.hero-visual {
  position: relative;
  border-radius: var(--sz-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sz-line);
  box-shadow: var(--sz-shadow-lg);
  aspect-ratio: 16 / 10;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #0f5c63, #0e8a96, #d97706);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-visual .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  height: 100%;
  color: var(--sz-text-muted);
  background: var(--sz-bg-muted);
  text-align: center;
  padding: 1.5rem;
}

/* ---------- Sections ---------- */
.section { padding: 4.25rem 0; }
.section-sm { padding: 2.75rem 0; }
.section-alt {
  background: var(--sz-bg);
  border-top: 1px solid var(--sz-line);
  border-bottom: 1px solid var(--sz-line);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-head p {
  color: var(--sz-text-muted);
  font-size: 1.05rem;
  margin: 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sz-teal);
  margin-bottom: 0.55rem;
}
.section-head .eyebrow {
  color: var(--sz-navy);
  background: var(--sz-navy-soft);
  border-radius: var(--sz-radius-pill);
  padding: 0.28rem 0.7rem;
}

/* ---------- Cards / grids ---------- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.15rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: var(--sz-shadow);
  transition: transform var(--sz-ease), box-shadow var(--sz-ease), border-color var(--sz-ease);
  text-decoration: none !important;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
a.card:hover,
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sz-shadow-md);
  border-color: #c5cce3;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0f5c63, #d97706);
  opacity: 0;
  transition: opacity var(--sz-ease);
}
a.card:hover::before,
.card:hover::before { opacity: 1; }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sz-navy-soft);
  color: var(--sz-navy);
  font-size: 1.25rem;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(34, 41, 80, 0.08);
}
.card h3 { margin-bottom: 0.4rem; color: var(--sz-ink); }
.card p { color: var(--sz-text-muted); font-size: 0.95rem; margin: 0; }
.card p + p { margin-top: 0.75rem; }
.card a { font-weight: 650; font-size: 0.92rem; }

.feature-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.feature-list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.7rem;
  color: var(--sz-text-secondary);
  font-size: 0.96rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%230f5c63'/%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* Split */
.split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

/* Logo strip / chips */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: var(--sz-radius-pill);
  background: #fff;
  border: 1px solid var(--sz-line);
  color: var(--sz-ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  box-shadow: var(--sz-shadow);
}

/* Stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-box {
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: var(--sz-shadow);
}
.stat-box strong {
  display: block;
  font-size: 1.55rem;
  color: var(--sz-navy);
  letter-spacing: -0.03em;
  font-weight: 800;
}
.stat-box span {
  font-size: 0.82rem;
  color: var(--sz-text-muted);
}

/* Page hero */
.page-hero {
  padding: 2.75rem 0 2.25rem;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(14, 138, 150, 0.11), transparent 55%),
    radial-gradient(700px 280px at 90% 0%, rgba(217, 119, 6, 0.06), transparent 50%),
    linear-gradient(180deg, #f7fcfc 0%, var(--sz-bg) 100%);
  border-bottom: 1px solid var(--sz-line);
}
.page-hero .container {
  max-width: var(--sz-container);
}
.page-hero-inner {
  max-width: 46rem;
}
.page-hero h1 {
  margin-bottom: 0.55rem;
  max-width: 18em;
}
.page-hero .lead {
  color: var(--sz-text-secondary);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--sz-text-muted);
  margin-bottom: 0.95rem;
}
.breadcrumb a { color: var(--sz-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--sz-blue); }
.breadcrumb span { color: #9aa3bb; }

/* Feature deep-dive layouts */
.feature-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: center;
  width: 100%;
}
.feature-detail-grid > div { min-width: 0; }
.feature-detail-grid .hero-visual {
  width: 100%;
  max-width: none;
  margin: 0;
}
.feature-detail-grid h2 { margin-top: 0; }
.container.feature-detail-grid {
  /* when both classes on same element */
  display: grid;
}
@media (max-width: 900px) {
  .feature-detail-grid,
  .container.feature-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.toc-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}
.toc-inline a {
  font-size: 0.84rem;
  font-weight: 650;
  padding: 0.42rem 0.85rem;
  border-radius: var(--sz-radius-pill);
  background: #fff;
  color: var(--sz-navy);
  border: 1px solid var(--sz-line);
  text-decoration: none !important;
  box-shadow: var(--sz-shadow);
}
.toc-inline a:hover {
  background: var(--sz-navy-soft);
  border-color: #c5cce3;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.9rem;
}
.panel-card {
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: var(--sz-shadow);
}
.panel-card strong {
  display: block;
  color: var(--sz-ink);
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}
.panel-card span {
  font-size: 0.82rem;
  color: var(--sz-text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius-lg);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--sz-shadow);
  position: relative;
}
.price-card.featured {
  border-color: #aeb8db;
  box-shadow: var(--sz-shadow-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, var(--sz-navy), var(--sz-blue), var(--sz-teal)) border-box;
  border: 2px solid transparent;
}
.price-card .price {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--sz-ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.price-card .price span {
  font-size: 1rem;
  font-weight: 550;
  color: var(--sz-text-muted);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
}
.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sz-bg-muted);
  color: var(--sz-text-secondary);
  padding-left: 1.4rem;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sz-teal);
  font-weight: 800;
}

/* FAQ */
.faq-list details {
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  padding: 1rem 1.15rem;
  margin-bottom: 0.7rem;
  box-shadow: var(--sz-shadow);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--sz-ink);
}
.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--sz-text-secondary);
}

/* CTA band — light, Simuzo branded */
.cta-band {
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: var(--sz-radius-lg);
  color: var(--sz-text);
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(47, 111, 219, 0.12), transparent 60%),
    radial-gradient(500px 180px at 90% 100%, rgba(13, 148, 136, 0.1), transparent 55%),
    #fff;
  border: 1px solid var(--sz-line);
  box-shadow: var(--sz-shadow);
}
.cta-band h2 {
  color: var(--sz-ink);
  margin-bottom: 0.45rem;
}
.cta-band p {
  color: var(--sz-text-secondary);
  max-width: 34rem;
  margin: 0 auto 1.35rem;
}
.cta-band .gap-actions { justify-content: center; }

/* Newsletter */
.newsletter-band {
  background: var(--sz-navy-soft);
  border-top: 1px solid #d8dceb;
  border-bottom: 1px solid #d8dceb;
  padding: 2.4rem 0;
  color: var(--sz-text);
}
.newsletter-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 800px) {
  .newsletter-inner { grid-template-columns: 1.15fr 1fr; gap: 2rem; }
}
.newsletter-band h2 {
  color: var(--sz-ink);
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}
.newsletter-band p {
  color: var(--sz-text-secondary);
  margin: 0;
  max-width: 34rem;
}
.sz-newsletter-form,
.wz-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: 100%;
}
.sz-newsletter-form input[type="email"],
.wz-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--sz-line-strong);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--sz-ink);
}
.sz-newsletter-form input:focus,
.wz-newsletter-form input:focus {
  outline: none;
  border-color: var(--sz-blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 219, 0.15);
}
.sz-newsletter-submit,
.wz-newsletter-submit {
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 10px;
  background: var(--sz-navy);
  color: #fff;
  font-weight: 700;
  font: inherit;
  cursor: pointer;
}
.sz-newsletter-submit:hover,
.wz-newsletter-submit:hover { background: var(--sz-ink); }

/* Footer — light */
.site-footer {
  background: #fbfcfe;
  color: var(--sz-text-muted);
  padding: 3.25rem 0 1.4rem;
  border-top: 1px solid var(--sz-line);
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--sz-text-secondary);
  font-size: 0.95rem;
  max-width: 28rem;
  margin: 0;
}
.site-footer h4 {
  color: var(--sz-ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.site-footer a {
  display: block;
  color: var(--sz-text-muted);
  text-decoration: none;
  margin: 0.35rem 0;
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--sz-navy); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--sz-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--sz-text-muted);
}
.footer-bottom a {
  display: inline;
  margin: 0 0.85rem 0 0;
  color: var(--sz-text-muted);
}
.logo-footer .logo-img { height: 38px; max-width: 180px; }

/* Footer logo must stay horizontal (overrides .site-footer a { display:block }) */
.site-footer a.logo,
.site-footer .logo.logo-footer {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--sz-ink);
}
.site-footer a.logo .logo-text,
.site-footer .logo-text {
  display: inline-block;
  white-space: nowrap;
}
.footer-brand {
  min-width: 0;
}


/* Figures / screenshots */
figure {
  margin: 0;
  border-radius: var(--sz-radius);
  overflow: hidden;
  border: 1px solid var(--sz-line);
  background: #fff;
  box-shadow: var(--sz-shadow);
}
figure img { width: 100%; }
figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.84rem;
  color: var(--sz-text-muted);
  border-top: 1px solid var(--sz-line);
  background: var(--sz-bg);
}

/* Legal */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 1.25rem; margin-top: 1.75rem; }

/* Lightbox simple */
.sz-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 43, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}
.sz-lightbox.open { display: flex; }
.sz-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: var(--sz-shadow-lg);
}
.sz-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--sz-ink);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero { padding: 2.25rem 0 2rem; }
  .hero h1 { max-width: none; }
  .hero-cta .btn-lg { width: 100%; }
  .section { padding: 3rem 0; }
  .price-card.featured { transform: none; }
}


.faq-wrap { max-width: 820px; margin: 0 auto; }
.content-narrow { max-width: 820px; margin: 0 auto; }
.prose-block { max-width: 46rem; }
.section > .container > .feature-detail-grid {
  /* nested pattern */
}

main#main { display: block; }

/* Footer bottom links row */
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.footer-bottom-links a { display: inline; margin: 0; }

/* Force horizontal logo in footer brand */
.footer-brand .logo {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0.55rem !important;
  width: auto !important;
  max-width: 100%;
}
.footer-brand .logo .logo-mark {
  flex: 0 0 36px;
}
.footer-brand .logo .logo-text {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Hero visual full-width helper for feature pages */
.section .container > .hero-visual {
  width: 100%;
}
.feature-detail-grid + .feature-detail-grid { margin-top: 3rem; }
