/* MySafeSecurity — shared design system (new full design, translated from _design-full).
   Tokens: cream bg, deep ink, signature amber gradient, serenity green.
   Fonts: Bricolage Grotesque (headings/display) + Inter Tight (body/UI) + JetBrains Mono (labels). */

:root {
  /* palette */
  --amber-1: #fbb040;
  --amber-2: #f6851b;
  --amber-grad: linear-gradient(135deg, #fbb040, #f6851b);
  --ink: #16243d;          /* titles, depth */
  --ink-2: #2e3c54;        /* strong body */
  --slate: #51607a;        /* running text */
  --muted: #9aa6b8;        /* captions */
  --green: #2f9e6f;        /* success, verified */
  --green-soft: #e4f4ec;
  --green-line: #bfe6d3;
  --amber-tint: #fdf1de;   /* soft surfaces */
  --cream-50: #fefcf8;     /* cards */
  --cream-100: #fbf5ec;    /* page bg */
  --cream-200: #f4ead8;    /* section bands */
  --cream-300: #f6ecd9;    /* warmer band */
  --line: #ece1cf;         /* hairlines on cream */
  --line-2: #f0e6d6;       /* softer hairline */
  --input-border: #d9cdb8;
  --shadow-card: 0 18px 40px -28px rgba(22, 36, 61, .3);
  /* fonts */
  --font-display: 'Bricolage Grotesque', 'Hanken Grotesk', sans-serif;
  --font-body: 'Inter Tight', 'Manrope', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  /* easings */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-std: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
body {
  background: var(--cream-100);
  font-family: var(--font-body);
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ---- motion language (from the design @keyframes) ---- */
@keyframes mss-shieldPop { 0% { opacity: 0; transform: scale(.6); } 60% { transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
@keyframes mss-drawCheck { to { stroke-dashoffset: 0; } }
@keyframes mss-fadeRise { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes mss-meshA { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(5%, -4%) scale(1.1); } 100% { transform: translate(0, 0) scale(1); } }
@keyframes mss-meshB { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-6%, 5%) scale(1.12); } 100% { transform: translate(0, 0) scale(1); } }
@keyframes mss-pulse { 0% { transform: scale(.85); opacity: .55; } 70% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }
@keyframes mss-pulseDot { 0% { box-shadow: 0 0 0 0 rgba(47,158,111,.5); } 70% { box-shadow: 0 0 0 7px rgba(47,158,111,0); } 100% { box-shadow: 0 0 0 0 rgba(47,158,111,0); } }
@keyframes mss-float { 0% { transform: translateY(0); } 50% { transform: translateY(-9px); } 100% { transform: translateY(0); } }
@keyframes mss-recGlow {
  0%, 100% { box-shadow: 0 28px 60px -28px rgba(246, 133, 27, .55), 0 0 0 1.5px rgba(246, 133, 27, .5); }
  50% { box-shadow: 0 34px 72px -26px rgba(246, 133, 27, .75), 0 0 0 1.5px rgba(246, 133, 27, .85); }
}
@keyframes mss-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes mss-confetti { 0% { transform: translateY(0) rotate(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(120px) rotate(220deg); opacity: 0; } }
@keyframes mss-bannerRise { 0% { opacity: 0; transform: translateY(24px); } 100% { opacity: 1; transform: translateY(0); } }

/* scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- layout ---- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section-band { background: var(--cream-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-warm { background: var(--cream-300); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber-2); padding: 8px 16px; border: 1px solid rgba(246,133,27,.32); background: var(--amber-tint); border-radius: 999px; }
.h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; color: var(--ink); line-height: 1.05; }
.h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin: 0; }
.h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0; }
.lead { font-size: 18px; line-height: 1.6; color: var(--slate); }
.card { background: var(--cream-50); border: 1px solid var(--line); border-radius: 20px; }
.mono { font-family: var(--font-mono); }
.hidden { display: none !important; }
.center { text-align: center; }
.num { font-variant-numeric: tabular-nums lining-nums; }

/* generic responsive grids used by the design pages */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* card hover lift used across feature/service/blog cards */
.lift { transition: transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease; }
.lift:hover { transform: translateY(-3px); border-color: var(--amber-2); }

/* ---- nav (shared, injected) ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(251, 245, 236, .82);
  border-bottom: 1px solid rgba(224, 212, 191, .7);
}
.site-nav .inner { max-width: 1180px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 24px; }
.site-nav .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; animation: mss-fadeRise .6s var(--ease-out) both; }
.site-nav .brand svg { animation: mss-shieldPop .55s var(--ease-spring) both; }
.site-nav .brand .draw { stroke-dasharray: 46; stroke-dashoffset: 46; animation: mss-drawCheck .55s var(--ease-out) .35s forwards; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--ink); }
.brand-name .s { color: var(--amber-2); }
.site-nav .links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-nav .links a.lnk { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--slate); transition: color .2s; }
.site-nav .links a.lnk:hover { color: var(--amber-2); }
.site-nav .links a.lnk.active { color: var(--ink); }
.nav-cta {
  text-decoration: none; font-weight: 700; font-size: 15px; color: #fff;
  background: var(--amber-grad); padding: 11px 20px; border-radius: 12px;
  box-shadow: 0 8px 20px -8px rgba(246, 133, 27, .6);
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(246, 133, 27, .7); }
.lang-btn { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #e6dac4; border-radius: 10px; padding: 7px 10px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink); transition: border-color .2s ease; }
.lang-btn:hover { border-color: var(--amber-2); }
.lang-btn .code { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; }
.nav-burger { display: none; margin-left: auto; background: #fff; border: 1px solid #e6dac4; border-radius: 10px; width: 42px; height: 40px; cursor: pointer; align-items: center; justify-content: center; }
.nav-mobile { display: none; }
@media (max-width: 980px) {
  .site-nav .links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile.open { display: block; border-top: 1px solid var(--line); background: rgba(251,245,236,.97); }
  .nav-mobile .inner-m { max-width: 1180px; margin: 0 auto; padding: 12px 22px 18px; display: flex; flex-direction: column; gap: 4px; }
  .nav-mobile a { text-decoration: none; font-weight: 600; font-size: 16px; color: var(--ink); padding: 11px 8px; border-radius: 10px; }
  .nav-mobile a:hover { background: var(--amber-tint); color: var(--amber-2); }
  .nav-mobile .m-cta { background: var(--amber-grad); color: #fff; text-align: center; margin-top: 8px; }
}

/* ---- buttons ---- */
.btn { border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .25s var(--ease-spring), box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease; }
.btn-primary { color: #fff; background: var(--amber-grad); padding: 15px 26px; border-radius: 14px; font-size: 16px; box-shadow: 0 14px 30px -10px rgba(246, 133, 27, .6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -10px rgba(246, 133, 27, .72); }
.btn-secondary { color: var(--ink); background: #fff; border: 1.5px solid var(--input-border); padding: 14px 24px; border-radius: 14px; font-size: 16px; }
.btn-secondary:hover { border-color: var(--amber-2); color: var(--amber-2); background: var(--amber-tint); }
.btn-block { width: 100%; }
.btn[disabled], .btn:disabled { cursor: not-allowed; color: var(--muted); background: var(--line-2); box-shadow: none; transform: none; }
.btn-ghost { background: #fff; border: 1.5px solid var(--input-border); color: var(--ink); padding: 13px 22px; border-radius: 13px; font-size: 15px; }
.btn-ghost:hover { border-color: var(--amber-2); color: var(--amber-2); background: var(--amber-tint); transform: none; }
.btn-light { background: #fff; color: var(--ink); padding: 16px 32px; border-radius: 14px; font-size: 17px; box-shadow: 0 16px 34px -12px rgba(0,0,0,.4); }
.btn-light:hover { transform: translateY(-3px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); padding: 15px 28px; border-radius: 14px; font-size: 17px; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-weight: 700; font-size: 14.5px; color: var(--amber-2); }
.link-arrow:hover { gap: 10px; }

/* ---- inputs ---- */
.field { display: flex; flex-direction: column; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field-req::after { content: ' *'; color: var(--amber-2); }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--input-border); border-radius: 11px;
  padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s;
}
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--amber-2); box-shadow: 0 0 0 4px rgba(246, 133, 27, .15); }

/* ---- chips / segmented ---- */
.seg-group { display: inline-flex; background: var(--cream-200); border: 1px solid var(--line); border-radius: 16px; padding: 6px; gap: 3px; flex-wrap: wrap; }
.seg-btn { padding: 12px 22px; border-radius: 11px; cursor: pointer; border: none; font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--slate); background: transparent; transition: all .3s var(--ease-out); white-space: nowrap; }
.seg-btn.is-active { font-weight: 700; color: #fff; background: var(--amber-grad); box-shadow: 0 8px 18px -6px rgba(246, 133, 27, .55); }
.chip { padding: 11px 18px; border-radius: 999px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 15px; border: 1.5px solid #e0d4bf; background: #fff; color: var(--slate); transition: all .25s var(--ease-spring); }
.chip.is-active { border-color: var(--amber-2); background: var(--amber-grad); color: #fff; box-shadow: 0 8px 18px -6px rgba(246, 133, 27, .5); }
.chip .ct { opacity: .55; }
.chip.is-active .ct { opacity: .8; }

/* badges */
.badge-rec { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--amber-grad); padding: 7px 14px; border-radius: 999px; }
.badge-save { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--green); padding: 7px 14px; border-radius: 999px; }
.badge-verified { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 7px 12px; border-radius: 999px; }

/* feature row */
.feat-row { display: flex; align-items: center; gap: 12px; }
.feat-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--amber-tint); display: flex; align-items: center; justify-content: center; }

/* trust pill (hero floats / status) */
.pill { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 16px -10px rgba(22,36,61,.3); }

/* hero shared (home + tiers + comparison) */
.hero { position: relative; overflow: hidden; }
.hero-grid { max-width: 1180px; margin: 0 auto; padding: 70px 28px 60px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; position: relative; }
.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: 24px; overflow: hidden; background: var(--ink); box-shadow: 0 40px 80px -36px rgba(22,36,61,.6); }
.hero-floats { position: absolute; background: #fff; border-radius: 16px; box-shadow: 0 20px 40px -18px rgba(22,36,61,.4); display: flex; align-items: center; gap: 12px; }

/* steps grid (how it works) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: var(--cream-50); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--line-2); }
.step-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--amber-grad); display: flex; align-items: center; justify-content: center; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream-50); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; border: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); }
.faq-q span:first-child { font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-icon { display: flex; flex: none; transition: transform .3s ease; }
.faq-panel { overflow: hidden; transition: max-height .4s var(--ease-out), opacity .3s ease, padding .3s ease; max-height: 0; opacity: 0; padding: 0 24px 0; }
.faq-panel > div { font-size: 15.5px; line-height: 1.6; color: var(--slate); }

/* cta band */
.cta-band { position: relative; overflow: hidden; border-radius: 28px; background: linear-gradient(150deg, #16243d, #1d3050); padding: 64px 48px; text-align: center; }
.cta-band-amber { position: relative; overflow: hidden; border-radius: 0; background: var(--amber-grad); padding: 72px 28px; text-align: center; }

/* tier cards (comparison / home pricing) */
.pricing { max-width: 1180px; margin: 0 auto; padding: 84px 28px 40px; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; margin-top: 24px; padding: 10px 0; }
.tier-card { background: var(--cream-50); border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; display: flex; flex-direction: column; box-shadow: 0 18px 40px -28px rgba(22,36,61,.3); }
.tier-card.is-featured { background: #fff; border: none; border-radius: 24px; padding: 36px 30px; position: relative; z-index: 2; margin-top: -10px; animation: mss-recGlow 3.4s ease-in-out infinite; }
.tier-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.tier-card.is-featured .tier-tag { color: var(--amber-2); margin-top: 6px; }
.tier-name { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); margin-top: 4px; }
.tier-desc { font-size: 14.5px; color: var(--slate); margin-top: 6px; line-height: 1.5; }
.tier-price-row { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.tier-price { font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -.02em; color: var(--ink); }
.tier-card.is-featured .tier-price { font-size: 52px; }
.tier-price-suffix { font-weight: 700; font-size: 18px; color: var(--slate); }
.tier-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.tier-once { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 6px; }
.tier-feats { display: flex; flex-direction: column; gap: 14px; }
.tier-feats .feat-row span:last-child { font-size: 14.5px; color: var(--ink-2); }
.ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--amber-grad); padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(246,133,27,.6); white-space: nowrap; }

/* trust bar */
.trust-bar { max-width: 1180px; margin: 0 auto; padding: 22px 28px; display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; }
.trust-bar > div { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* avatar (testimonials) */
.avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--amber-grad); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.avatar-ink { background: var(--ink); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 6px, transparent 6px 12px); color: transparent; }

/* image-slot fallback styling (filled <img> or styled placeholder) */
.img-slot { position: relative; overflow: hidden; background: var(--ink); border-radius: 16px; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot.ph { background: linear-gradient(135deg, #1b2c49, #16243d); display: flex; align-items: center; justify-content: center; }
.img-slot.ph::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px); }
.img-slot .ph-cap { position: relative; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.45); text-transform: uppercase; text-align: center; padding: 0 16px; }

/* ---- footer (shared, injected) ---- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .7); font-family: var(--font-body); }
.site-footer .inner { max-width: 1180px; margin: 0 auto; padding: 56px 28px 40px; }
.site-footer .top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.site-footer .brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.site-footer .brand-name { color: #fff; font-size: 19px; }
.site-footer .brand-name .s { color: var(--amber-1); }
.site-footer p { font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.site-footer .entity { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, .55); }
.site-footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer .col-h { font-weight: 700; font-size: 13px; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer .col-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: rgba(255, 255, 255, .5); }

/* cookie banner (shared, injected) */
.cookie-wrap { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; justify-content: center; padding: 14px; pointer-events: none; }
.cookie-card { pointer-events: auto; width: 100%; max-width: 980px; background: rgba(254,252,248,.97); backdrop-filter: saturate(140%) blur(14px); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 24px 60px -24px rgba(22,36,61,.45); padding: 22px 24px; animation: mss-bannerRise .45s var(--ease-out) both; }
.cookie-row { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.ck-pref { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--cream-50); border: 1px solid var(--line); border-radius: 13px; cursor: pointer; transition: border-color .2s ease; }
.ck-pref:hover { border-color: var(--amber-2); }
.ck-mini { flex: none; width: 18px; height: 18px; border-radius: 5px; display: flex; align-items: center; justify-content: center; margin-top: 1px; border: 1.5px solid var(--input-border); background: #fff; transition: all .2s ease; }
.ck-mini.on { background: var(--amber-2); border-color: var(--amber-2); }
.ck-mini svg { display: none; }
.ck-mini.on svg { display: block; }

/* shared hero mesh blobs */
.mesh { position: absolute; pointer-events: none; }
.mesh-a { background: radial-gradient(closest-side, rgba(251, 176, 64, .35), transparent); filter: blur(40px); animation: mss-meshA 18s ease-in-out infinite; }
.mesh-b { background: radial-gradient(closest-side, rgba(246, 133, 27, .22), transparent); filter: blur(50px); animation: mss-meshB 22s ease-in-out infinite; }

/* sticky buy bar (tier + product pages) */
.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(254,252,248,.93); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 11px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 -8px 24px -16px rgba(22,36,61,.45); }

/* responsive helpers */
.hide-sm { }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-2x2, .tier-grid, .steps-grid { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .h1 { font-size: 38px !important; }
  .tier-card.is-featured { margin-top: 0; }
  .hide-sm { display: none !important; }
  .reverse-sm > *:first-child { order: 2; }
  .reverse-sm > *:last-child { order: 1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
}
