.elementor-811 .elementor-element.elementor-element-23ab09b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* ==========================================================================
   Business Document Suite — Shared Stylesheet
   Responsive, mobile-first, modern SaaS aesthetic
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-muted: #eef2f9;
  --surface: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --brand-soft: #eef2ff;
  --accent: #0ea5e9;

  /* Per-page accent (overridden on body) */
  --page: #4f46e5;
  --page-dark: #3730a3;
  --page-soft: #eef2ff;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow: 0 10px 25px -5px rgba(15, 23, 42, .10), 0 8px 10px -6px rgba(15, 23, 42, .06);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, .22);
  --container: 1160px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--page);
  background: var(--page-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 16px;
}
.section-sub {
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 14px auto 0;
}
.lead { font-size: 1.08rem; color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--page);
  color: #fff;
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--page) 60%, transparent);
}
.btn-primary:hover { background: var(--page-dark); box-shadow: 0 12px 26px -6px color-mix(in srgb, var(--page) 70%, transparent); transform: translateY(-1px); }
.btn-ghost {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--page); color: var(--page); }
.btn-white { background: #fff; color: var(--page); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 14px -4px var(--brand);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile nav toggle */
.nav-toggle { display: none; }
.burger {
  width: 24px; height: 18px;
  position: relative;
}
.burger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: .25s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, var(--page-soft), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), #fff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 86px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.025em;
  margin-top: 18px;
}
.hero p.lead { margin-top: 20px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats {
  display: flex; gap: 34px; margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block;
  font-size: 1.6rem; font-weight: 800; color: var(--text);
  letter-spacing: -.02em;
}
.hero-stats .stat span { font-size: .85rem; color: var(--text-muted); }

/* Hero visual card */
.hero-visual {
  position: relative;
}
.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  transform: rotate(-1.2deg);
}
.doc-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.doc-card-head .logo-dot {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--page), var(--accent));
}
.doc-card-head .meta { text-align: right; font-size: .78rem; color: var(--text-muted); }
.doc-card-head .meta b { display: block; color: var(--text); font-size: 1.05rem; }
.doc-line { height: 9px; border-radius: 4px; background: var(--bg-muted); margin-bottom: 9px; }
.doc-line.w-60 { width: 60%; } .doc-line.w-40 { width: 40%; }
.doc-line.w-80 { width: 80%; } .doc-line.w-30 { width: 30%; } .doc-line.w-70 { width: 70%; }
.doc-table {
  margin-top: 16px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
}
.doc-table .row {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px;
  padding: 10px 12px; font-size: .82rem;
}
.doc-table .row.head { background: var(--page-soft); color: var(--page-dark); font-weight: 700; }
.doc-table .row + .row { border-top: 1px solid var(--border); }
.doc-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--bg-muted);
  font-weight: 800; font-size: 1.1rem;
}
.doc-total .amt { color: var(--page); }
.float-badge {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600;
}
.float-badge .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--page-soft); color: var(--page); display: grid; place-items: center; }
.float-1 { top: -18px; right: 8px; transform: rotate(2deg); }
.float-2 { bottom: -16px; left: -10px; transform: rotate(-2deg); }

/* ---------- Trust bar ---------- */
.trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 40px; padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.trust .t-label { width: 100%; text-align: center; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.trust .t-name { font-weight: 800; color: var(--text-muted); font-size: 1.05rem; letter-spacing: -.01em; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--page) 35%, var(--border)); }
.card .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--page-soft); color: var(--page);
  display: grid; place-items: center; font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -.01em; }
.card p { color: var(--text-soft); margin-top: 8px; font-size: .96rem; }

/* Product tile (used on hub) */
.product-tile {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.product-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--tile-soft));
  opacity: .5; pointer-events: none;
}
.product-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--tile); }
.product-tile .pt-ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--tile-soft); color: var(--tile);
  display: grid; place-items: center; font-size: 1.7rem;
  margin-bottom: 20px;
}
.product-tile h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.015em; }
.product-tile p { color: var(--text-soft); margin-top: 10px; }
.product-tile .pt-link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--tile); font-size: .95rem;
}
.product-tile:hover .pt-link { gap: 10px; }
.product-tile .pt-tag {
  position: absolute; top: 22px; right: 22px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--tile); background: var(--tile-soft);
  padding: 5px 11px; border-radius: 999px; z-index: 1;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding: 26px 0;
}
.step + .step { border-top: 1px solid var(--border); }
.step .num {
  counter-increment: step;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--page); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 8px 18px -6px var(--page);
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.18rem; font-weight: 700; }
.step p { color: var(--text-soft); margin-top: 6px; }

/* ---------- Showcase / split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split-visual {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 1rem; color: var(--text);
}
.check-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--page-soft); color: var(--page);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
  margin-top: 2px;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.price-card.featured {
  border-color: var(--page);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--page); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-card .plan { font-weight: 700; font-size: 1.05rem; }
.price-card .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; margin-top: 6px; }
.price-card .amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-card ul { margin: 22px 0; }
.price-card ul li { padding: 9px 0; color: var(--text-soft); display: flex; gap: 10px; align-items: center; }
.price-card ul li::before { content: "✓"; color: var(--page); font-weight: 800; }

/* ---------- Testimonial ---------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.quote p { font-size: 1.06rem; color: var(--text); line-height: 1.7; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--page), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-size: .83rem; color: var(--text-muted); }
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 12px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--page); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-soft); padding-bottom: 20px; max-width: 720px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--page), var(--page-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,.18), transparent 60%);
}
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; position: relative; }
.cta-band p { margin-top: 12px; opacity: .92; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0b1120;
  color: #cbd5e1;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer-grid .brand { color: #fff; margin-bottom: 14px; }
.footer-grid p { font-size: .92rem; color: #94a3b8; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; color: #94a3b8; font-size: .92rem; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: #64748b;
}
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { width: 34px; height: 34px; border-radius: 9px; background: #1e293b; color: #cbd5e1; display: grid; place-items: center; transition: background .2s, color .2s; }
.footer-bottom .socials a:hover { background: var(--brand); color: #fff; }

/* ---------- FAQ dedicated page ---------- */
.faq-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 26px auto 0;
}
.faq-search {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 15px 22px 15px 50px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.faq-search:focus {
  outline: none;
  border-color: var(--page);
  box-shadow: 0 0 0 4px var(--page-soft);
}
.faq-search-wrap .search-ic {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 1.05rem; pointer-events: none;
}

.faq-cats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin: 32px 0 8px;
}
.faq-cat {
  font-family: inherit; cursor: pointer;
  font-size: .9rem; font-weight: 600;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; color: var(--text-soft);
  border: 1px solid var(--border);
  transition: all .18s ease;
}
.faq-cat:hover { border-color: var(--page); color: var(--page); }
.faq-cat.active {
  background: var(--page); color: #fff; border-color: var(--page);
  box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--page) 60%, transparent);
}

.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.faq-side {
  position: sticky; top: 90px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.faq-side h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 14px; }
.faq-side a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 9px;
  font-size: .92rem; font-weight: 600; color: var(--text-soft);
  transition: background .15s, color .15s;
}
.faq-side a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); flex: none; }
.faq-side a:hover, .faq-side a.active { background: #fff; color: var(--page); }
.faq-side a.active .dot { background: var(--page); }
.faq-side .help-card { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.faq-side .help-card p { font-size: .85rem; color: var(--text-soft); margin-bottom: 12px; }

.faq-block { margin-bottom: 48px; scroll-margin-top: 90px; }
.faq-block:last-child { margin-bottom: 0; }
.faq-block > h2 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.015em;
  margin-bottom: 8px;
}
.faq-block > h2 .cat-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--page-soft); color: var(--page);
  display: grid; place-items: center; font-size: 1.1rem; flex: none;
}
.faq-block > p { color: var(--text-soft); margin-bottom: 18px; font-size: .98rem; }
.faq-item[hidden] { display: none; }

.faq-empty {
  display: none; text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.faq-empty.show { display: block; }
.faq-empty .big { font-size: 2.4rem; margin-bottom: 10px; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-side { position: static; }
}
@media (max-width: 540px) {
  .faq-cats { gap: 8px; }
  .faq-cat { padding: 9px 14px; font-size: .85rem; }
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 380px at 90% -10%, var(--page-soft), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), #fff);
}
.page-hero .container { padding: 70px 22px 64px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.1; font-weight: 800; letter-spacing: -.025em;
  margin-top: 16px; max-width: 760px;
}
.page-hero p.lead { margin-top: 18px; max-width: 600px; }
.page-hero .hero-actions { margin-top: 28px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px;
    border: 1px solid var(--border); background: #fff;
  }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 66px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 22px 18px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav-links.open a { padding: 12px 12px; font-size: 1rem; border-radius: 10px; }
  .nav-links.open a:hover { background: var(--bg-soft); }

  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .cta-band { padding: 40px 24px; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat b { font-size: 1.35rem; }
  .product-tile { padding: 24px; }
  .doc-card { transform: none; }
  .float-1, .float-2 { display: none; }
}

@media (max-width: 540px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .price-card { padding: 26px; }
  .cta-band .hero-actions { flex-direction: column; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}/* End custom CSS */