/* ============================================================
     TOKENS
  ============================================================ */
  :root {
    --brand: #0d9488;          /* teal/emerald chrome accent */
    --brand-dark: #0f766e;
    --brand-light: #ccfbf1;
    --brand-tint: #f0fdfa;

    --ink: #0f172a;            /* near-black text */
    --ink-soft: #334155;
    --muted: #64748b;
    --muted-2: #94a3b8;

    --bg: #f7f8fa;             /* very-light-gray page bg */
    --surface: #ffffff;
    --line: #e8ebf0;
    --line-soft: #eef1f5;

    /* per-product accents */
    --c-speech: #2563eb;
    --c-ocr: #0052CC;
    --c-focus: #6366F1;
    --c-timer: #7c3aed;
    --c-locator: #10b981;
    --c-clicker: #ef4444;
    --c-shoonya: #f59e0b;

    --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
    --shadow-md: 0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
    --shadow-lg: 0 18px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
    --shadow-brand: 0 12px 28px rgba(13,148,136,.28);

    --radius: 16px;
    --radius-lg: 22px;
    --radius-sm: 10px;
    --maxw: 1200px;
    --header-h: 70px;
  }

  /* ============================================================
     RESET / BASE
  ============================================================ */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; color: var(--ink); letter-spacing: -.02em; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }

  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .section { padding: 84px 0; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--brand); background: var(--brand-tint);
    padding: 6px 14px; border-radius: 100px; border: 1px solid var(--brand-light);
  }
  .section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
  .section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 18px 0 12px; }
  .section-head p { color: var(--muted); font-size: 17px; }

  /* ============================================================
     BUTTONS
  ============================================================ */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px;
    padding: 13px 24px; border-radius: 12px; cursor: pointer; border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap; line-height: 1;
  }
  .btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
  .btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13,148,136,.36); }
  .btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
  .btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }
  .btn-light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
  .btn-white { background: #fff; color: var(--brand-dark); }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
  .btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 10px; }

  /* ============================================================
     HEADER / NAV (sticky)
  ============================================================ */
  .header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
  }
  .header.scrolled { box-shadow: var(--shadow-md); border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }

  .brand { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 19px; color: var(--ink); }
  .brand img { width: 36px; height: 36px; border-radius: 9px; }
  .brand span b { color: var(--brand); }

  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-item { position: relative; }
  .nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink-soft);
    padding: 9px 14px; border-radius: 9px; transition: background .15s, color .15s; cursor: pointer;
  }
  .nav-link:hover { color: var(--brand-dark); background: var(--brand-tint); }
  .nav-link i.caret { font-size: 11px; transition: transform .2s; color: var(--muted-2); }
  .nav-item:hover .nav-link i.caret { transform: rotate(180deg); }

  /* dropdown */
  .dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow-lg); padding: 10px; min-width: 320px;
    opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; z-index: 120;
  }
  .dropdown.dropdown-sm { min-width: 220px; }
  .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
  .ddrow { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 11px; transition: background .15s; }
  .ddrow:hover { background: var(--bg); }
  .ddrow .dd-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto; }
  .ddrow .dd-ico img { width: 26px; height: 26px; }
  .ddrow .dd-ico i { font-size: 16px; color: #fff; }
  .ddrow .dd-txt b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); }
  .ddrow .dd-txt small { color: var(--muted); font-size: 12.5px; }

  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .hamburger {
    display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line);
    background: var(--surface); cursor: pointer; align-items: center; justify-content: center; font-size: 19px; color: var(--ink);
  }

  /* mobile drawer */
  .mobile-menu { display: none; }
  .mobile-overlay { display: none; }

  /* ============================================================
     HERO (compact)
  ============================================================ */
  .hero {
    position: relative; overflow: hidden;
    background:
      radial-gradient(900px 420px at 88% -8%, rgba(13,148,136,.10), transparent 60%),
      radial-gradient(700px 360px at 6% 0%, rgba(37,99,235,.07), transparent 55%),
      var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .hero-inner { padding: 58px 0 46px; text-align: center; max-width: 800px; margin: 0 auto; }
  .hero h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 800; line-height: 1.06; }
  .hero h1 .grad {
    background: linear-gradient(100deg, var(--brand) 0%, #0ea5a4 55%, var(--c-speech) 130%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero p { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin: 18px auto 0; max-width: 620px; }
  .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
  .hero-trust { display: flex; gap: 10px 22px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
  .trust-pill {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
    background: var(--surface); border: 1px solid var(--line); padding: 8px 15px; border-radius: 100px; box-shadow: var(--shadow-sm);
  }
  .trust-pill i { color: var(--brand); }
  .trust-pill .star { color: #f59e0b; }

  /* ============================================================
     STICKY FILTER CHIPS
  ============================================================ */
  .filterbar {
    position: sticky; top: var(--header-h); z-index: 80;
    background: rgba(247,248,250,.86); backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line); padding: 14px 0;
  }
  .filterbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .chips { display: flex; gap: 10px; flex-wrap: wrap; }
  .chip {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-soft);
    background: var(--surface); border: 1.5px solid var(--line); padding: 9px 18px; border-radius: 100px;
    transition: all .18s ease;
  }
  .chip i { font-size: 13px; opacity: .8; }
  .chip:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-1px); }
  .chip.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
  .chip .chip-count { font-size: 12px; font-weight: 700; background: rgba(15,23,42,.07); color: var(--muted); padding: 1px 8px; border-radius: 100px; }
  .chip.active .chip-count { background: rgba(255,255,255,.22); color: #fff; }
  .result-count { font-size: 14px; color: var(--muted); font-weight: 600; }
  .result-count b { color: var(--ink); }

  /* ============================================================
     PRODUCTS GRID
  ============================================================ */
  .gallery { padding: 56px 0 84px; }
  .grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }

  .card {
    --accent: var(--brand);
    position: relative; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
  }
  .card::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
    background: var(--accent); opacity: 0; transition: opacity .22s ease;
  }
  .card::after {
    content: ""; position: absolute; right: -60px; top: -60px; width: 160px; height: 160px; border-radius: 50%;
    background: var(--accent); opacity: 0; filter: blur(8px); transition: opacity .22s ease;
  }
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
  .card:hover::before { opacity: 1; }
  .card:hover::after { opacity: .06; }
  .card.hide { display: none; }
  .card.fading { opacity: 0; transform: translateY(8px); }

  .card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
  .card-ico {
    width: 64px; height: 64px; border-radius: 16px; flex: 0 0 auto; display: grid; place-items: center;
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    transition: transform .22s ease;
  }
  .card:hover .card-ico { transform: scale(1.06) rotate(-3deg); }
  .card-ico img { width: 46px; height: 46px; }
  .card-ico.img-timer img { width: 44px; height: 44px; } /* timer.png is large — force small */
  .card-ico i { font-size: 26px; color: var(--accent); }

  .platform {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif; padding: 5px 11px; border-radius: 100px; line-height: 1;
    border: 1px solid var(--line); color: var(--ink-soft); background: var(--bg);
  }
  .platform.win { color: #1d4ed8; background: #eff4ff; border-color: #dbe6ff; }
  .platform.and { color: #047857; background: #ecfdf5; border-color: #cdeede; }
  .platform i { font-size: 12px; }

  .card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
  .card .tagline { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }

  .feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
  .feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); }
  .feats li i { color: var(--accent); font-size: 13px; margin-top: 4px; flex: 0 0 auto; }

  .card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px dashed var(--line-soft); }
  .price-hint { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.3; }
  .price-hint b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); font-size: 14.5px; font-weight: 700; }
  .card-btn {
    display: inline-flex; align-items: center; gap: 7px; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 14px; color: #fff; background: var(--accent);
    padding: 11px 18px; border-radius: 11px; line-height: 1; transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 28%, transparent); white-space: nowrap;
  }
  .card-btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 36%, transparent); }
  .card-btn i { transition: transform .18s ease; }
  .card-btn:hover i { transform: translateX(3px); }

  /* ============================================================
     POWER BUNDLE BAND
  ============================================================ */
  .bundle {
    background:
      radial-gradient(700px 300px at 85% 120%, rgba(255,255,255,.12), transparent 60%),
      linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 50%, #0ea5a4 100%);
    color: #fff;
  }
  .bundle-inner { display: grid; grid-template-columns: 1.3fr .9fr; gap: 44px; align-items: center; }
  .bundle .eyebrow { color: #fff; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); }
  .bundle h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin: 18px 0 14px; }
  .bundle p.lead { color: rgba(255,255,255,.9); font-size: 17px; max-width: 540px; }
  .bundle-includes { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
  .inc-chip {
    display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); padding: 7px 14px; border-radius: 100px;
  }
  .inc-chip i { font-size: 12px; color: #a7f3d0; }
  .bundle-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .bundle-meta { font-size: 13.5px; color: rgba(255,255,255,.85); font-weight: 500; }
  .bundle-card {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg);
    padding: 32px; text-align: center; backdrop-filter: blur(6px);
  }
  .bundle-card .price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 56px; font-weight: 800; line-height: 1; }
  .bundle-card .price small { font-size: 20px; font-weight: 600; opacity: .8; }
  .bundle-card .price-sub { color: rgba(255,255,255,.85); margin-top: 6px; font-size: 14px; }
  .bundle-card .ico-row { display: flex; justify-content: center; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
  .bundle-card .ico-row span {
    width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow-md);
  }
  .bundle-card .ico-row span img { width: 30px; height: 30px; }

  /* ============================================================
     WHY KAIZEN
  ============================================================ */
  .why { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  }
  .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-light); }
  .why-ico {
    width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
    background: var(--brand-tint); color: var(--brand); font-size: 23px; border: 1px solid var(--brand-light);
  }
  .why-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
  .why-card p { color: var(--muted); font-size: 15px; }

  /* ============================================================
     BLOG TEASER
  ============================================================ */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  }
  .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-light); }
  .blog-thumb { height: 150px; display: grid; place-items: center; font-size: 40px; color: #fff; position: relative; overflow: hidden; }
  .blog-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.06); }
  .blog-thumb.t1 { background: linear-gradient(135deg, #2563eb, #0ea5a4); }
  .blog-thumb.t2 { background: linear-gradient(135deg, #0052CC, #6366F1); }
  .blog-thumb.t3 { background: linear-gradient(135deg, #0d9488, #10b981); }
  .blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
  .blog-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
  .blog-card h3 { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 14px; }
  .blog-readmore { margin-top: auto; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--brand-dark); display: inline-flex; align-items: center; gap: 7px; }
  .blog-readmore i { transition: transform .18s; }
  .blog-card:hover .blog-readmore i { transform: translateX(4px); }

  /* ============================================================
     FOOTER
  ============================================================ */
  .footer { background: #0b1220; color: #cbd5e1; padding: 64px 0 36px; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px 32px; }
  .footer-brand .fbrand { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 19px; color: #fff; margin-bottom: 16px; }
  .footer-brand .fbrand img { width: 34px; height: 34px; border-radius: 9px; }
  .footer-brand p { font-size: 14px; color: #94a3b8; max-width: 320px; margin-bottom: 20px; }
  .footer-contact li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: #cbd5e1; margin-bottom: 11px; }
  .footer-contact li i { color: var(--brand); width: 16px; text-align: center; }
  .footer-contact a:hover { color: #fff; }
  .footer-col h4 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
  .footer-col ul li { margin-bottom: 11px; }
  .footer-col ul li a { font-size: 14px; color: #94a3b8; transition: color .15s, padding .15s; }
  .footer-col ul li a:hover { color: #fff; padding-left: 3px; }
  .soon-tag { font-size: 10px; font-weight: 700; color: #fbbf24; background: rgba(251,191,36,.12); padding: 1px 7px; border-radius: 100px; margin-left: 6px; vertical-align: middle; }

  /* after-footer strip */
  .strip { background: #070b14; color: #94a3b8; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }
  .strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }
  .strip a { color: var(--brand-light); }
  .strip a:hover { color: #fff; }
  .strip .armdot { font-size: 12.5px; color: #64748b; }
  .strip .armdot a { color: #94a3b8; }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .bundle-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 860px) {
    .nav-links, .nav-cta .btn { display: none; }
    .hamburger { display: inline-flex; }
    .why-grid, .blog-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .gallery { padding: 44px 0 64px; }

    /* mobile menu */
    .mobile-overlay {
      display: block; position: fixed; inset: 0; background: rgba(15,23,42,.5); z-index: 200;
      opacity: 0; visibility: hidden; transition: opacity .25s ease;
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; }
    .mobile-menu {
      display: block; position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
      background: var(--surface); z-index: 210; padding: 22px; overflow-y: auto;
      transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); box-shadow: -10px 0 40px rgba(0,0,0,.18);
    }
    .mobile-menu.open { transform: translateX(0); }
    .mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
    .mm-close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); cursor: pointer; font-size: 18px; color: var(--ink); }
    .mm-section { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
    .mm-section > .mm-label { font-family:'Plus Jakarta Sans',sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
    .mm-link { display: flex; align-items: center; gap: 11px; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink); padding: 11px 0; }
    .mm-link i { color: var(--brand); width: 18px; }
    .mm-prod { display: flex; align-items: center; gap: 11px; padding: 9px 0; font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }
    .mm-prod .mp-ico { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; }
    .mm-prod .mp-ico img { width: 22px; height: 22px; }
    .mm-prod .mp-ico i { color: #fff; font-size: 13px; }
    .mm-cta { margin-top: 18px; }
    .mm-cta .btn { width: 100%; }
  }

  @media (max-width: 560px) {
    .grid { grid-template-columns: 1fr; }
    .wrap { padding: 0 18px; }
    .hero-inner { padding: 44px 0 36px; }
    .hero-cta .btn { flex: 1; min-width: 150px; }
    .bundle-card .price { font-size: 46px; }
    .filterbar-inner { justify-content: center; }
    .result-count { width: 100%; text-align: center; }
    .section-head { margin-bottom: 36px; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  }
