/* ==========================================================================
   Home page (v7) - mirrors scanntoss.com/demos/home.html

   All selectors are scoped under .homev7 so this file never bleeds into the
   rest of the site (which uses brd-/console- prefixed classes). The wrapping
   element lives in templates/pages/home.phtml.
   ========================================================================== */

.homev7 {
  --hv-canvas: #ffffff;
  --hv-canvas-soft: #f7f8fb;
  --hv-canvas-sunk: #eef0f5;
  --hv-ink: #0b1020;
  --hv-ink-soft: #3a3f4e;
  --hv-ink-muted: #6b7280;
  --hv-line: #e5e7eb;
  --hv-line-strong: #d1d5db;
  --hv-marine: #0b4f8a;
  --hv-purple: #6d28d9;
  --hv-teal: #0d9488;
  --hv-success: #059669;
  --hv-grad: linear-gradient(135deg, #0b4f8a 0%, #6d28d9 52%, #0d9488 100%);
  --hv-grad-soft: linear-gradient(135deg, rgba(11,79,138,0.08), rgba(109,40,217,0.08), rgba(13,148,136,0.08));
  --hv-shadow-sm: 0 1px 2px rgba(11,16,32,0.05);
  --hv-shadow-md: 0 4px 6px rgba(11,16,32,0.05), 0 10px 20px rgba(11,16,32,0.06);
  --hv-shadow-lg: 0 10px 15px rgba(11,16,32,0.07), 0 25px 50px rgba(11,16,32,0.1);
  --hv-shadow-grad: 0 10px 30px rgba(109,40,217,0.3);
  --hv-r-md: 12px;
  --hv-r-lg: 16px;
  --hv-r-xl: 24px;
  --hv-r-pill: 999px;
  --hv-ease: cubic-bezier(.22,.61,.36,1);

  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--hv-ink);
  background: var(--hv-canvas);
  line-height: 1.6;
}

.homev7 *, .homev7 *::before, .homev7 *::after { box-sizing: border-box; }

.homev7 h1, .homev7 h2, .homev7 h3, .homev7 h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--hv-ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin: 0;
}
.homev7 h1 { font-size: clamp(2.3rem, 4.8vw, 3.8rem); letter-spacing: -.025em; font-weight: 400; }
.homev7 h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); letter-spacing: -.02em; font-weight: 400; }
.homev7 h3 { font-size: clamp(1.3rem, 1.9vw, 1.6rem); letter-spacing: -.01em; font-weight: 500; }
.homev7 h4 { font-size: 1.1rem; font-weight: 500; }
.homev7 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.homev7 p  { margin: 0; }
.homev7 a  { color: inherit; text-decoration: none; transition: color .2s var(--hv-ease); }

.homev7 .grad-text {
  background: var(--hv-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.homev7 .lead {
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.6;
  color: var(--hv-ink-soft);
  max-width: 640px;
}
.homev7 .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--hv-marine);
}
.homev7 .eyebrow-chip {
  background: var(--hv-grad); color: #fff;
  padding: 3px 10px; border-radius: var(--hv-r-pill);
  font-size: .68rem; letter-spacing: .08em;
}

/* Spec: 25px L/R on desktop & tablet (>=481px), 18px on mobile/PWA. */
.homev7 .wrap        { max-width: 1240px; margin: 0 auto; padding: 0 25px; }
.homev7 .wrap-narrow { max-width:  880px; margin: 0 auto; padding: 0 25px; }
@media (max-width: 480px) {
  .homev7 .wrap, .homev7 .wrap-narrow { padding: 0 18px; }
}
.homev7 .section     { padding: clamp(56px, 7vw, 96px) 0; }
.homev7 .bg-soft     { background: var(--hv-canvas-soft); }
.homev7 .section-head            { max-width: 720px; margin-bottom: 44px; }
.homev7 .section-head.center     { margin-left: auto; margin-right: auto; text-align: center; }
.homev7 .section-head.center .lead { margin-left: auto; margin-right: auto; }
.homev7 .section-head .eyebrow   { margin-bottom: 16px; }
.homev7 .section-head h1,
.homev7 .section-head h2         { margin-bottom: 18px; }

/* ---------- Buttons (home-page only) ---------- */
.homev7 .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; padding: 10px 20px; border-radius: var(--hv-r-pill);
  border: 1px solid transparent; cursor: pointer; font-size: .92rem;
  transition: all .2s var(--hv-ease); text-decoration: none; white-space: nowrap;
}
.homev7 .btn-primary { background: var(--hv-grad); color: #fff; box-shadow: var(--hv-shadow-sm); }
.homev7 .btn-primary:hover { box-shadow: var(--hv-shadow-grad); transform: translateY(-1px); color: #fff; }
.homev7 .btn-ghost   { background: #fff; color: var(--hv-ink); border-color: var(--hv-line-strong); }
.homev7 .btn-ghost:hover { background: var(--hv-canvas-soft); border-color: var(--hv-ink); color: var(--hv-ink); }
.homev7 .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.homev7 .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.homev7 .btn-dark    { background: var(--hv-ink); color: #fff; }
.homev7 .btn-dark:hover { background: #000; color: #fff; transform: translateY(-1px); }
.homev7 .btn-lg      { padding: 14px 26px; font-size: 1rem; }

/* ---------- Hero ---------- */
.homev7 .hero { position: relative; padding: clamp(56px, 8vw, 108px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.homev7 .hero-bg   { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.homev7 .hero-blob {
  position: absolute; width: 480px; height: 480px;
  border-radius: 50%; filter: blur(80px); opacity: .22;
}
.homev7 .hero-blob.b1 { background: #0b4f8a; top: -120px; left: -100px; }
.homev7 .hero-blob.b2 { background: #6d28d9; top: 15%; right: -140px; }
.homev7 .hero-blob.b3 { background: #0d9488; bottom: -160px; left: 30%; }
.homev7 .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,16,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,16,32,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.homev7 .hero-wrap   { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.homev7 .hero-copy .eyebrow { margin-bottom: 20px; }
.homev7 .hero-title  { font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 22px; font-weight: 400; }
.homev7 .hero .lead  { margin-bottom: 28px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.homev7 .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.homev7 .trust-list { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; margin: 0; }
.homev7 .trust-list li {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--hv-ink-muted); font-weight: 500;
}
.homev7 .trust-list li svg { color: var(--hv-success); }
.homev7 .trust-list li.trust-list__primary {
  padding: 4px 12px 4px 8px; border-radius: var(--hv-r-pill);
  background: linear-gradient(135deg, rgba(11,79,138,0.10), rgba(109,40,217,0.12), rgba(13,148,136,0.10));
  border: 1px solid rgba(109,40,217,0.22);
  color: var(--hv-purple); font-size: .85rem;
}
.homev7 .trust-list li.trust-list__primary svg { color: var(--hv-purple); }
.homev7 .trust-list li.trust-list__primary strong { font-weight: 700; letter-spacing: .01em; }

.homev7 .hero-visual { position: relative; aspect-ratio: 1 / 1.05; max-width: 480px; margin: 0 auto; width: 100%; }
.homev7 .hero-illust { width: 100%; height: 100%; display: block; border-radius: var(--hv-r-xl); box-shadow: var(--hv-shadow-lg); }

/* ---------- Logos ---------- */
.homev7 .logos { padding: 32px 0; background: var(--hv-canvas-soft); border-top: 1px solid var(--hv-line); border-bottom: 1px solid var(--hv-line); }
.homev7 .logos .label {
  text-align: center; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--hv-ink-muted); margin-bottom: 20px;
}
.homev7 .logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.homev7 .logo-wmark {
  font-family: "Fraunces", serif; font-size: 1.15rem;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--hv-ink-muted); opacity: .75;
}

/* ---------- Features ---------- */
.homev7 .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.homev7 .feature-card {
  background: #fff; border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg); padding: 28px 26px;
  transition: all .25s var(--hv-ease);
}
.homev7 .feature-card:hover { border-color: var(--hv-line-strong); box-shadow: var(--hv-shadow-md); transform: translateY(-2px); }
.homev7 .f-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--hv-grad); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: var(--hv-shadow-sm);
}
.homev7 .feature-card h3 { margin-bottom: 10px; }
.homev7 .feature-card p  { font-size: .92rem; color: var(--hv-ink-soft); line-height: 1.55; }

/* ---------- Pipeline ---------- */
.homev7 .pipe-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.homev7 .pipe-step  { background: #fff; border: 1px solid var(--hv-line); border-radius: var(--hv-r-lg); padding: 26px 22px; position: relative; }
.homev7 .pipe-step .num {
  position: absolute; top: -14px; left: 22px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--hv-grad); color: #fff;
  display: grid; place-items: center; font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif; font-size: .85rem;
  box-shadow: var(--hv-shadow-sm);
}
.homev7 .pipe-step .ico {
  width: 46px; height: 46px;
  background: var(--hv-grad-soft); color: var(--hv-marine);
  border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
}
.homev7 .pipe-step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.homev7 .pipe-step p  { font-size: .88rem; color: var(--hv-ink-soft); }

/* ---------- Quote ---------- */
.homev7 .quote-block { max-width: 860px; margin: 0 auto; text-align: center; padding: 40px 28px; }
.homev7 .quote-block .q-mark { color: var(--hv-purple); opacity: .2; margin: 0 auto 18px; }
.homev7 .quote-block p {
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-weight: 400; margin-bottom: 24px;
}
.homev7 .quote-block footer { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.homev7 .q-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--hv-grad); color: #fff;
  display: grid; place-items: center; font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif; font-size: .9rem;
}
.homev7 .quote-block footer strong { display: block; font-size: .92rem; font-weight: 600; }
.homev7 .quote-block footer em     { display: block; font-style: normal; font-size: .82rem; color: var(--hv-ink-muted); }

/* ---------- Stats ---------- */
.homev7 .stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--hv-canvas-soft); border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg); padding: 32px 24px;
}
.homev7 .stat-card { text-align: center; }
.homev7 .stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  background: var(--hv-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px; line-height: 1.1;
}
.homev7 .stat-label { font-size: .82rem; color: var(--hv-ink-soft); }

/* ---------- Pricing preview ---------- */
.homev7 .price-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.homev7 .tier-card {
  background: #fff; border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg); padding: 24px 18px;
  position: relative; transition: all .25s var(--hv-ease);
}
.homev7 .tier-card:hover { border-color: var(--hv-line-strong); transform: translateY(-2px); }
.homev7 .tier-card.selected { border-color: transparent; box-shadow: var(--hv-shadow-md); }
.homev7 .tier-card.selected::before {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--hv-r-lg); padding: 2px;
  background: var(--hv-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.homev7 .tier-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--hv-grad); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  padding: 4px 12px; border-radius: var(--hv-r-pill);
  text-transform: uppercase;
}
.homev7 .tier-icon {
  width: 42px; height: 42px; border-radius: 11px; color: #fff;
  display: grid; place-items: center; font-family: "Fraunces", serif;
  font-weight: 600; font-size: 1.15rem; margin-bottom: 14px;
  box-shadow: var(--hv-shadow-sm);
}
.homev7 .t-dirt      { background: linear-gradient(135deg, #8b6f47, #6b5335); }
.homev7 .t-stone     { background: linear-gradient(135deg, #9ca3af, #6b7280); }
.homev7 .t-bronze    { background: linear-gradient(135deg, #cd7f32, #a65e1f); }
.homev7 .t-tin       { background: linear-gradient(135deg, #d5dbe0, #9ca9b4); color: #0b1020; }
.homev7 .t-steel     { background: linear-gradient(135deg, #64748b, #334155); }
.homev7 .t-stainless { background: linear-gradient(135deg, #c0c9d4, #6b7a8a); }
.homev7 .t-titanium  { background: linear-gradient(135deg, #0b4f8a, #6d28d9 50%, #0d9488); }
.homev7 .tier-name {
  font-family: "Fraunces", serif; font-size: 1.15rem; font-weight: 500;
  margin-bottom: 4px; font-variation-settings: "opsz" 144, "SOFT" 60;
}
.homev7 .tier-tagline { font-size: .78rem; color: var(--hv-ink-muted); margin-bottom: 14px; min-height: 32px; line-height: 1.35; }
.homev7 .tier-price {
  font-family: "Fraunces", serif; font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  line-height: 1; margin-bottom: 6px;
}
.homev7 .tier-price .cur    { font-size: .85rem; color: var(--hv-ink-muted); vertical-align: top; margin-right: 2px; }
.homev7 .tier-price .amount { font-size: 1.7rem; letter-spacing: -.02em; }
.homev7 .tier-price .per    { font-family: "Plus Jakarta Sans", sans-serif; font-size: .7rem; color: var(--hv-ink-muted); font-weight: 500; margin-left: 4px; }
.homev7 .tier-tokens { font-size: .78rem; color: var(--hv-ink-soft); font-weight: 500; }

/* ---------- FAQ ---------- */
.homev7 .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.homev7 .faq-item { background: #fff; border: 1px solid var(--hv-line); border-radius: var(--hv-r-lg); overflow: hidden; transition: border-color .2s var(--hv-ease); }
.homev7 .faq-item:hover { border-color: var(--hv-line-strong); }
.homev7 .faq-item.open  { border-color: transparent; box-shadow: var(--hv-shadow-md); position: relative; }
.homev7 .faq-item.open::before {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--hv-r-lg); padding: 1.5px;
  background: var(--hv-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.homev7 .faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; width: 100%; text-align: left; font-weight: 600;
  font-size: 1rem; color: var(--hv-ink); cursor: pointer;
  background: none; border: 0; font-family: inherit;
}
.homev7 .faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--hv-canvas-soft); color: var(--hv-ink-muted);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .2s var(--hv-ease); font-size: 1.2rem; line-height: 1;
}
.homev7 .faq-item.open .plus { background: var(--hv-ink); color: #fff; transform: rotate(45deg); }
.homev7 .faq-a       { max-height: 0; overflow: hidden; transition: max-height .3s var(--hv-ease); }
.homev7 .faq-item.open .faq-a { max-height: 500px; }
.homev7 .faq-a-inner { padding: 0 22px 20px; font-size: .92rem; color: var(--hv-ink-soft); line-height: 1.6; }
.homev7 .faq-a-inner a { color: var(--hv-marine); font-weight: 600; }

/* ---------- CTA strip ---------- */
.homev7 .cta-strip {
  position: relative;
  background: linear-gradient(135deg, #0a1530, #1a1145 50%, #0a2823);
  color: #fff; border-radius: var(--hv-r-xl);
  padding: clamp(46px, 6vw, 76px) clamp(28px, 5vw, 56px);
  text-align: center; overflow: hidden; max-width: 1240px; margin: 0 auto;
}
.homev7 .cta-strip::before, .homev7 .cta-strip::after {
  content: ""; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; filter: blur(80px); opacity: .35; pointer-events: none;
}
.homev7 .cta-strip::before { background: #6d28d9; top: -180px; left: -100px; }
.homev7 .cta-strip::after  { background: #0d9488; bottom: -180px; right: -100px; }
.homev7 .cta-strip > *     { position: relative; z-index: 1; }
.homev7 .cta-strip .eyebrow { color: #a5d8ff; margin-bottom: 14px; }
.homev7 .cta-strip h2       { color: #fff; margin-bottom: 16px; }
.homev7 .cta-strip .lead    { color: rgba(255,255,255,.78); margin: 0 auto 26px; }
.homev7 .cta-actions        { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Security block (E2EE pitch) ---------- */
.homev7 #security { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
.homev7 .security-block {
  position: relative;
  display: grid; grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
  background: linear-gradient(135deg, rgba(11,79,138,0.05), rgba(109,40,217,0.07), rgba(13,148,136,0.05));
  border: 1px solid rgba(109,40,217,0.18);
  border-radius: var(--hv-r-xl);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 48px);
  overflow: hidden;
}
.homev7 .security-block::before,
.homev7 .security-block::after {
  content: ""; position: absolute; width: 360px; height: 360px;
  border-radius: 50%; filter: blur(70px); opacity: .25; pointer-events: none;
}
.homev7 .security-block::before { background: #6d28d9; top: -180px; right: -120px; }
.homev7 .security-block::after  { background: #0d9488; bottom: -180px; left: -120px; }
.homev7 .security-block > * { position: relative; z-index: 1; }
.homev7 .security-shield {
  display: grid; place-items: center;
  width: 200px; height: 200px; margin: 0 auto;
  border-radius: 50%;
  background: var(--hv-grad);
  color: #fff;
  box-shadow: 0 24px 48px rgba(109,40,217,0.32);
  position: relative;
}
.homev7 .security-shield::before {
  content: ""; position: absolute; inset: -10px;
  border-radius: 50%; border: 2px dashed rgba(109,40,217,0.35);
  animation: hv-spin 28s linear infinite;
}
@keyframes hv-spin { to { transform: rotate(360deg); } }
.homev7 .security-shield svg { filter: drop-shadow(0 6px 16px rgba(11,16,32,0.18)); }
.homev7 .security-copy .eyebrow { margin-bottom: 14px; flex-wrap: wrap; }
.homev7 .security-copy h2 { margin-bottom: 16px; }
.homev7 .security-copy .lead { margin-bottom: 28px; max-width: none; }
.homev7 .security-points {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px;
  list-style: none; padding: 0; margin: 0 0 28px;
}
.homev7 .security-points li {
  display: flex; gap: 12px; align-items: flex-start;
}
.homev7 .security-points__ico {
  flex: 0 0 auto;
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff; border: 1px solid rgba(109,40,217,0.25);
  color: var(--hv-purple);
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(11,16,32,0.06);
}
.homev7 .security-points li > div { display: flex; flex-direction: column; gap: 2px; }
.homev7 .security-points li strong { font-weight: 700; font-size: .95rem; color: var(--hv-ink); }
.homev7 .security-points li span { font-size: .85rem; color: var(--hv-ink-soft); line-height: 1.5; }
.homev7 .security-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.homev7 .security-cta { margin-top: 4px; }
.homev7 .security-cta .btn { background: #fff; }

/* ---------- Layout helpers (CSP-safe replacements for inline style=) ---------- */
.homev7 .section.section--flush-top { padding-top: 0; }
.homev7 .pricing-cta { text-align: center; margin-top: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .homev7 .hero-wrap     { grid-template-columns: 1fr; gap: 40px; }
  .homev7 .hero-visual   { max-width: 420px; }
  .homev7 .feature-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .homev7 .security-block  { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .homev7 .security-shield { width: 160px; height: 160px; }
  .homev7 .security-shield svg { width: 76px; height: 76px; }
  .homev7 .security-points { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .homev7 .security-badges { justify-content: center; }
  .homev7 .security-copy .lead { margin-left: auto; margin-right: auto; }
}
@media (max-width: 760px) {
  .homev7 .pipe-steps    { grid-template-columns: repeat(2, 1fr); }
  .homev7 .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .homev7 .price-preview { grid-template-columns: 1fr; }
  .homev7 .feature-grid  { grid-template-columns: 1fr; }
  .homev7 .logo-row      { gap: 24px; }
}
@media (max-width: 480px) {
  .homev7 .stats-grid    { grid-template-columns: 1fr; }
  .homev7 .cta-strip     { margin: 0 16px; padding: 40px 24px; }
}
