/* roulang page: index */
:root {
      --ink: #101214;
      --ink-soft: #303735;
      --muted: #66706d;
      --paper: #f6f7f2;
      --paper-2: #ffffff;
      --mint: #e8fff7;
      --brand: #00d7a7;
      --brand-2: #16f0c0;
      --accent: #ffb84d;
      --violet: #725cff;
      --line: rgba(16,18,20,.12);
      --line-strong: rgba(16,18,20,.2);
      --dark: #111816;
      --dark-2: #17211e;
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --shadow: 0 18px 50px rgba(16,18,20,.08), 0 1px 0 rgba(255,255,255,.7);
      --shadow-hover: 0 24px 70px rgba(0,215,167,.18), 0 10px 28px rgba(16,18,20,.08);
      --focus: 0 0 0 4px rgba(0,215,167,.18);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(232,255,247,.9) 0, rgba(246,247,242,0) 420px),
        var(--paper);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      line-height: 1.7;
      letter-spacing: 0;
    }
    a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }
    button, .button { min-height: 44px; }
    :focus-visible { outline: none; box-shadow: var(--focus); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(246,247,242,.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(16,18,20,.1);
    }
    .nav-shell {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--ink);
      white-space: nowrap;
    }
    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,.7);
      background: linear-gradient(135deg, #101214 0%, #18332e 48%, #00d7a7 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 24px rgba(0,0,0,.12);
      position: relative;
      overflow: hidden;
    }
    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,.88);
    }
    .brand-mark::before { top: 15px; }
    .brand-mark::after { top: 25px; width: 16px; right: auto; }
    .brand-text { font-size: 17px; }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-link {
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--ink-soft);
      font-weight: 700;
      font-size: 15px;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--ink);
      background: rgba(0,215,167,.13);
    }
    .mega-wrap { position: relative; }
    .mega-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .mega-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 14px);
      width: min(760px, 92vw);
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255,255,255,.96);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .2s ease;
    }
    .mega-wrap:hover .mega-panel,
    .mega-wrap:focus-within .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-card {
      height: 100%;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fff, #f7fbf7);
    }
    .mega-card strong { display: block; margin-bottom: 6px; }
    .mega-card span { color: var(--muted); font-size: 14px; }

    .mobile-menu-button { display: none; }
    .mobile-panel {
      display: none;
      padding: 0 0 16px;
      border-top: 1px solid var(--line);
    }
    .mobile-panel a {
      display: block;
      padding: 13px 4px;
      font-weight: 700;
    }

    .section { padding: 86px 0; }
    .section-tight { padding: 56px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(0,215,167,.12);
      color: #087f67;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(0,215,167,.24);
    }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }
    .section-head h2 {
      margin: 10px 0 0;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 900;
    }
    .section-head p {
      max-width: 650px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 15px;
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      line-height: 1.2;
    }
    .btn-primary {
      color: #071312;
      background: linear-gradient(135deg, var(--brand), #bfffee);
      box-shadow: 0 14px 30px rgba(0,215,167,.26);
    }
    .btn-primary:hover {
      color: #071312;
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }
    .btn-secondary {
      color: var(--ink);
      background: rgba(255,255,255,.76);
      border-color: var(--line-strong);
    }
    .btn-secondary:hover {
      background: var(--mint);
      border-color: rgba(0,215,167,.35);
      color: var(--ink);
      transform: translateY(-2px);
    }

    .hero {
      position: relative;
      min-height: 680px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        linear-gradient(115deg, rgba(16,18,20,.92), rgba(17,33,30,.82)),
        radial-gradient(circle at 82% 22%, rgba(0,215,167,.42), transparent 34%),
        linear-gradient(135deg, #121816, #26342e);
      color: #fff;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.2));
    }
    .hero-stage {
      position: relative;
      width: 100%;
      padding: 92px 0 76px;
    }
    .hero-kv {
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 32px;
      padding: clamp(24px, 5vw, 52px);
      background:
        linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.04)),
        linear-gradient(145deg, rgba(0,215,167,.14), rgba(255,184,77,.08));
      box-shadow: 0 30px 90px rgba(0,0,0,.28);
      position: relative;
      overflow: hidden;
    }
    .hero-kv::after {
      content: "";
      position: absolute;
      right: -80px;
      top: 40px;
      width: 360px;
      height: 360px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 52px;
      transform: rotate(18deg);
      background: linear-gradient(135deg, rgba(0,215,167,.12), rgba(255,255,255,.02));
    }
    .hero-content { position: relative; z-index: 1; max-width: 860px; }
    .hero h1 {
      max-width: 820px;
      margin: 18px 0;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.12;
      font-weight: 950;
      letter-spacing: 0;
    }
    .hero-desc {
      max-width: 760px;
      color: rgba(255,255,255,.82);
      font-size: 18px;
      margin-bottom: 26px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }
    .count-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 20px;
      background: rgba(0,0,0,.18);
      max-width: 760px;
    }
    .count-item {
      flex: 1 1 160px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
    }
    .count-item b {
      display: block;
      font-size: 20px;
      color: var(--brand-2);
    }
    .count-item span {
      color: rgba(255,255,255,.76);
      font-size: 13px;
    }

    .dashboard-band {
      margin-top: 28px;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
    }
    .search-panel,
    .signal-panel {
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
      background: rgba(255,255,255,.1);
      padding: 18px;
    }
    .search-box {
      display: flex;
      gap: 10px;
      padding: 8px;
      border-radius: 18px;
      background: rgba(255,255,255,.95);
    }
    .search-box input {
      flex: 1;
      min-width: 0;
      border: 0;
      height: 42px;
      padding: 0 12px;
      background: transparent;
      color: var(--ink);
    }
    .search-box input:focus { outline: none; }
    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 14px;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.16);
      color: rgba(255,255,255,.86);
      font-size: 13px;
      font-weight: 700;
    }
    .metric-line {
      display: grid;
      grid-template-columns: 96px 1fr 54px;
      gap: 10px;
      align-items: center;
      margin: 12px 0;
      font-size: 14px;
      color: rgba(255,255,255,.8);
    }
    .bar {
      height: 9px;
      border-radius: 999px;
      background: rgba(255,255,255,.15);
      overflow: hidden;
    }
    .bar i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--brand), #d9fff3);
    }

    .product-card,
    .review-card,
    .news-list,
    .faq-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: var(--paper-2);
      box-shadow: var(--shadow);
    }
    .product-card {
      min-height: 260px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(0,215,167,.3);
    }
    .product-card.featured {
      min-height: 360px;
      background:
        linear-gradient(135deg, rgba(0,215,167,.18), rgba(255,255,255,.9) 52%),
        #fff;
    }
    .product-card::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      top: 0;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand), var(--accent));
    }
    .card-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(0,215,167,.12);
      color: #087f67;
      font-weight: 800;
      font-size: 13px;
      border: 1px solid rgba(0,215,167,.2);
    }
    .badge.orange {
      background: rgba(255,184,77,.15);
      color: #8a5400;
      border-color: rgba(255,184,77,.34);
    }
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 4px rgba(0,215,167,.16);
    }
    .product-card h3 {
      margin: 0 0 10px;
      font-size: 21px;
      line-height: 1.28;
      font-weight: 900;
    }
    .product-card p {
      color: var(--muted);
      margin: 0 0 18px;
      font-size: 15px;
    }
    .card-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 9px 13px;
      border-radius: 13px;
      color: var(--ink);
      background: #f1faf6;
      border: 1px solid rgba(0,215,167,.22);
      font-weight: 800;
    }
    .card-link:hover { background: var(--brand); color: #071312; }

    .rail-wrap {
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: thin;
    }
    .rail {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(250px, 1fr);
      gap: 18px;
    }
    .vertical-card {
      min-height: 380px;
      padding: 22px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.16);
      color: #fff;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.5)),
        linear-gradient(135deg, #1b2925, #00a783);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: 0 18px 46px rgba(16,18,20,.12);
    }
    .vertical-card:nth-child(2) { background: linear-gradient(135deg, #191d1c, #6f5aff); }
    .vertical-card:nth-child(3) { background: linear-gradient(135deg, #202018, #ffb84d); color: #111; }
    .vertical-card:nth-child(4) { background: linear-gradient(135deg, #13201d, #12d0ad); }
    .vertical-card h3 { margin: 12px 0 8px; font-size: 22px; font-weight: 900; }
    .vertical-card p { margin: 0 0 16px; opacity: .86; }

    .reviews-band {
      background: var(--dark);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .reviews-band .section-head p { color: rgba(255,255,255,.7); }
    .review-card {
      padding: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
      border-color: rgba(255,255,255,.12);
      color: #fff;
      min-height: 260px;
    }
    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--brand), #f4fff9);
      color: #071312;
      font-weight: 900;
    }
    .review-card p { color: rgba(255,255,255,.82); margin-bottom: 18px; }
    .orbit-bullets button {
      width: 10px;
      height: 10px;
      background: rgba(255,255,255,.32);
    }
    .orbit-bullets button.is-active { background: var(--brand); }

    .guarantee {
      padding: 30px;
      border-radius: 30px;
      background:
        linear-gradient(135deg, #101214, #19372f 68%, #00d7a7);
      color: #fff;
      box-shadow: 0 24px 70px rgba(16,18,20,.14);
    }
    .guarantee-item {
      display: flex;
      gap: 14px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      height: 100%;
    }
    .icon-box {
      flex: 0 0 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #071312;
      background: linear-gradient(135deg, var(--brand), #e6fff7);
      font-weight: 900;
    }
    .guarantee-item h3 { margin: 0 0 4px; font-size: 17px; }
    .guarantee-item p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

    .news-list {
      padding: 26px;
    }
    .news-item {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }
    .news-item:last-child { border-bottom: 0; }
    .news-date {
      color: #087f67;
      font-weight: 900;
      font-size: 14px;
    }
    .news-item h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 900;
    }
    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .side-pick {
      height: 100%;
      padding: 26px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--mint), #fff);
      border: 1px solid rgba(0,215,167,.24);
      box-shadow: var(--shadow);
    }

    .catalog-card {
      padding: 24px;
      height: 100%;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .catalog-card h3 { margin: 14px 0 8px; font-size: 20px; font-weight: 900; }
    .catalog-card p { color: var(--muted); margin-bottom: 16px; }

    .faq-card {
      overflow: hidden;
      padding: 8px;
    }
    .accordion {
      margin: 0;
      background: transparent;
    }
    .accordion-item {
      border-bottom: 1px solid var(--line);
    }
    .accordion-item:last-child { border-bottom: 0; }
    .accordion-title {
      border: 0;
      color: var(--ink);
      font-weight: 900;
      font-size: 16px;
      padding: 19px 48px 19px 18px;
    }
    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--mint);
      color: var(--ink);
    }
    .accordion-content {
      border: 0;
      color: var(--muted);
      padding: 0 18px 20px;
      background: #fff;
    }

    .cta-card {
      padding: clamp(26px, 5vw, 52px);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(0,215,167,.95), rgba(232,255,247,.98)),
        #00d7a7;
      box-shadow: 0 28px 80px rgba(0,215,167,.24);
      position: relative;
      overflow: hidden;
    }
    .cta-card::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -80px;
      width: 280px;
      height: 280px;
      border-radius: 42px;
      border: 1px solid rgba(16,18,20,.12);
      transform: rotate(22deg);
    }
    .cta-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 12px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.18;
      font-weight: 950;
    }
    .cta-card p {
      position: relative;
      z-index: 1;
      color: rgba(16,18,20,.72);
      max-width: 720px;
      margin-bottom: 24px;
    }
    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .site-footer {
      padding: 54px 0 28px;
      background: #101816;
      color: rgba(255,255,255,.76);
    }
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }
    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }
    .footer-links a {
      display: block;
      padding: 6px 0;
      color: rgba(255,255,255,.7);
    }
    .footer-links a:hover { color: var(--brand); }
    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.12);
      font-size: 13px;
      color: rgba(255,255,255,.58);
    }

    @media screen and (max-width: 1024px) {
      .section { padding: 68px 0; }
      .dashboard-band { grid-template-columns: 1fr; }
      .desktop-nav { gap: 4px; }
      .nav-link { padding: 9px 10px; }
    }
    @media screen and (max-width: 768px) {
      .nav-shell { min-height: 68px; }
      .desktop-nav { display: none; }
      .mobile-menu-button {
        display: inline-flex;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 10px 13px;
        background: #fff;
        font-weight: 900;
      }
      .mobile-panel.is-open { display: block; }
      .hero { min-height: auto; }
      .hero-stage { padding: 64px 0 46px; }
      .hero-kv { border-radius: 26px; }
      .section-head {
        display: block;
      }
      .section-head p { margin-top: 10px; }
      .search-box { flex-direction: column; }
      .search-box .btn { width: 100%; }
      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .rail { grid-auto-columns: 82%; }
    }
    @media screen and (max-width: 520px) {
      .brand-text { font-size: 15px; }
      .brand-mark { width: 40px; height: 40px; }
      .section { padding: 52px 0; }
      .hero-desc { font-size: 16px; }
      .hero-actions .btn,
      .cta-actions .btn { width: 100%; }
      .count-item { flex-basis: 100%; }
      .metric-line { grid-template-columns: 82px 1fr 44px; font-size: 13px; }
      .product-card,
      .review-card,
      .catalog-card,
      .news-list,
      .side-pick { border-radius: 22px; padding: 20px; }
      .guarantee { padding: 18px; border-radius: 24px; }
    }

/* roulang page: category1 */
:root{
      --bg:#f6f7f2;
      --bg-soft:#eef4ef;
      --surface:#ffffff;
      --surface-2:#f8fbf8;
      --surface-dark:#0f1314;
      --surface-dark-2:#171c1d;
      --text:#101214;
      --muted:#5d666c;
      --muted-2:#778188;
      --border:#d9e1d8;
      --line:rgba(16,18,20,.08);
      --brand:#00d7a7;
      --brand-2:#b8ffe8;
      --brand-3:#2fbf8f;
      --accent:#ffb84d;
      --accent-2:#ffe3ad;
      --deep:#0b0d0f;
      --shadow:0 18px 50px rgba(0,0,0,.08);
      --shadow-2:0 10px 28px rgba(0,0,0,.12);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        linear-gradient(180deg,#f7f8f3 0%,#f4f6f0 45%,#edf2ee 100%);
      line-height:1.7;
      letter-spacing:0;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,summary{font:inherit}
    ::selection{background:rgba(0,215,167,.2)}
    :focus-visible{outline:3px solid rgba(0,215,167,.28);outline-offset:2px}

    .grid-container{
      max-width:1240px;
      padding-left:20px;
      padding-right:20px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(246,247,242,.88);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(16,18,20,.08);
      box-shadow:0 6px 24px rgba(0,0,0,.03);
    }
    .nav-shell{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:16px 0;
      position:relative;
    }
    .brand,
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:0;
    }
    .brand-mark{
      width:40px;
      height:40px;
      border-radius:14px;
      border:1px solid rgba(16,18,20,.12);
      background:linear-gradient(145deg,#eafff8,#d9fff4 46%,#ffffff);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.85),0 12px 30px rgba(0,0,0,.06);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      left:8px;
      right:8px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--brand),rgba(0,215,167,.34));
    }
    .brand-mark::before{top:12px}
    .brand-mark::after{top:22px;background:linear-gradient(90deg,var(--brand-3),rgba(47,191,143,.25))}
    .brand-text,
    .footer-brand span:last-child{
      font-size:1.02rem;
      color:var(--deep);
      line-height:1.2;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      position:relative;
      z-index:10;
    }
    .nav-link{
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      transition:transform .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .nav-link:hover,
    .nav-link:focus-visible{
      color:var(--text);
      background:rgba(0,215,167,.09);
      border-color:rgba(0,215,167,.14);
      outline:none;
    }
    .nav-link.active{
      color:#08382f;
      background:linear-gradient(135deg,rgba(0,215,167,.18),rgba(255,255,255,.84));
      border-color:rgba(0,215,167,.28);
      box-shadow:0 8px 22px rgba(0,215,167,.12);
    }

    .mega-wrap{position:relative}
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:min(760px,calc(100vw - 48px));
      padding:18px;
      border-radius:24px;
      background:rgba(255,255,255,.98);
      border:1px solid rgba(16,18,20,.08);
      box-shadow:var(--shadow);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:.2s ease;
      pointer-events:none;
    }
    .mega-wrap:hover .mega-panel,
    .mega-wrap:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
      pointer-events:auto;
    }
    .mega-card{
      display:block;
      height:100%;
      padding:18px;
      border-radius:18px;
      background:linear-gradient(180deg,#fff,#f7faf8);
      border:1px solid rgba(16,18,20,.08);
      transition:.2s ease;
    }
    .mega-card strong{
      display:block;
      font-size:1rem;
      margin-bottom:8px;
      color:var(--text);
    }
    .mega-card span{
      display:block;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.6;
    }
    .mega-card:hover{
      transform:translateY(-2px);
      border-color:rgba(0,215,167,.26);
      box-shadow:0 14px 28px rgba(0,0,0,.08);
    }

    .mobile-menu-button{
      display:none;
      align-items:center;
      gap:8px;
      height:46px;
      padding:0 16px;
      border-radius:14px;
      border:1px solid rgba(16,18,20,.12);
      background:linear-gradient(180deg,#fff,#f3f7f3);
      color:var(--text);
      box-shadow:0 8px 20px rgba(0,0,0,.05);
      cursor:pointer;
    }
    .mobile-menu-button:hover{
      border-color:rgba(0,215,167,.25);
      background:#fff;
    }
    .mobile-panel{
      display:none;
      padding:0 0 16px;
    }
    .mobile-panel a{
      display:block;
      padding:14px 0;
      border-top:1px solid rgba(16,18,20,.08);
      color:var(--text);
      font-weight:600;
    }
    .mobile-panel.is-open{display:block}

    .hero-section{
      position:relative;
      padding:34px 0 26px;
      overflow:hidden;
    }
    .hero-section::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        linear-gradient(115deg,rgba(0,215,167,.08) 0 24%,transparent 24%),
        linear-gradient(0deg,transparent 0 78%,rgba(255,184,77,.08) 78% 100%);
      pointer-events:none;
    }
    .hero-card{
      position:relative;
      padding:28px;
      border-radius:28px;
      background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(246,250,247,.98));
      border:1px solid rgba(16,18,20,.08);
      box-shadow:var(--shadow);
    }
    .hero-crumb{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
      color:var(--muted);
      font-size:.92rem;
    }
    .hero-crumb span{
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .hero-eyebrow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      height:30px;
      padding:0 12px;
      border-radius:999px;
      font-size:.85rem;
      font-weight:700;
      background:rgba(0,215,167,.1);
      color:#0b4f41;
      border:1px solid rgba(0,215,167,.18);
    }
    .tag.accent{
      background:rgba(255,184,77,.16);
      color:#7d4c00;
      border-color:rgba(255,184,77,.24);
    }
    .hero-title{
      margin:0 0 14px;
      font-size:54px;
      line-height:1.12;
      letter-spacing:0;
      color:var(--deep);
      font-weight:800;
    }
    .hero-copy{
      margin:0;
      font-size:1.05rem;
      color:var(--muted);
      max-width:44rem;
      line-height:1.8;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn-brand,
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:0 18px;
      border-radius:14px;
      font-weight:700;
      border:1px solid transparent;
      transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease;
      cursor:pointer;
    }
    .btn-brand{
      background:linear-gradient(135deg,var(--brand),#95f2d8 55%,#fff5d8);
      color:#08372f;
      box-shadow:0 16px 32px rgba(0,215,167,.18);
    }
    .btn-brand:hover,
    .btn-brand:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 20px 38px rgba(0,215,167,.24);
      outline:none;
    }
    .btn-ghost{
      background:rgba(255,255,255,.94);
      border-color:rgba(16,18,20,.1);
      color:var(--text);
    }
    .btn-ghost:hover,
    .btn-ghost:focus-visible{
      background:rgba(0,215,167,.08);
      border-color:rgba(0,215,167,.22);
      outline:none;
    }
    .btn-icon{
      width:18px;
      height:18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .btn-icon svg{width:18px;height:18px;display:block}
    .hero-stats{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .stat-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(16,18,20,.04);
      border:1px solid rgba(16,18,20,.08);
      color:var(--text);
      font-weight:600;
      font-size:.9rem;
    }
    .stat-pill b{
      font-size:1rem;
      color:#0b4f41;
    }

    .hero-panel{
      padding:22px;
      border-radius:24px;
      background:linear-gradient(180deg,#0f1314,#171c1d 72%,#111617);
      color:#f5f7f6;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 24px 54px rgba(6,10,8,.22);
      position:relative;
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(140deg,rgba(0,215,167,.14),transparent 26%,transparent 72%,rgba(255,184,77,.16));
      pointer-events:none;
    }
    .panel-title{
      position:relative;
      font-size:1.02rem;
      font-weight:700;
      margin-bottom:14px;
    }
    .search-box{
      position:relative;
      display:flex;
      gap:10px;
      z-index:1;
    }
    .search-box input{
      flex:1;
      min-height:50px;
      padding:0 14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      color:#fff;
      outline:none;
    }
    .search-box input::placeholder{color:rgba(255,255,255,.55)}
    .search-box input:focus{
      border-color:rgba(0,215,167,.55);
      box-shadow:0 0 0 3px rgba(0,215,167,.18);
    }
    .search-box button{
      min-width:104px;
      border:none;
      border-radius:16px;
      background:linear-gradient(135deg,var(--brand),#b9ffe9);
      color:#08372f;
      font-weight:800;
      cursor:pointer;
      transition:transform .2s ease,box-shadow .2s ease;
    }
    .search-box button:hover{transform:translateY(-1px)}
    .panel-chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 18px;
      position:relative;
      z-index:1;
    }
    .panel-chip{
      height:32px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      font-size:.86rem;
      color:#eef6f2;
    }
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
      position:relative;
      z-index:1;
    }
    .metric{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .metric .label{
      font-size:.8rem;
      color:rgba(255,255,255,.62);
    }
    .metric .value{
      display:block;
      margin-top:6px;
      font-size:1.2rem;
      font-weight:800;
      line-height:1.2;
    }
    .barset{
      margin-top:16px;
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .barline{
      display:grid;
      grid-template-columns:96px 1fr 48px;
      gap:10px;
      align-items:center;
      font-size:.88rem;
      color:#dbe8e2;
    }
    .track{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--brand),#9bf0d9 65%,#ffe0a1);
    }

    .filter-section{
      margin-top:-2px;
      padding:18px 0 8px;
    }
    .filter-card{
      padding:20px;
      border-radius:24px;
      background:var(--surface);
      border:1px solid rgba(16,18,20,.08);
      box-shadow:0 10px 28px rgba(0,0,0,.05);
    }
    .filter-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:14px;
      align-items:end;
    }
    .filter-title{
      font-size:1rem;
      font-weight:700;
      margin-bottom:10px;
      color:var(--text);
    }
    .filter-inline{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(16,18,20,.1);
      background:#f8faf7;
      color:var(--muted);
      font-weight:600;
      font-size:.92rem;
    }
    .filter-chip.active{
      background:rgba(0,215,167,.12);
      border-color:rgba(0,215,167,.22);
      color:#0b4f41;
    }
    .filter-input{
      width:100%;
      min-height:50px;
      padding:0 16px;
      border-radius:16px;
      border:1px solid rgba(16,18,20,.12);
      background:#fff;
      outline:none;
      color:var(--text);
    }
    .filter-input::placeholder{color:#8a949b}
    .filter-input:focus{
      border-color:rgba(0,215,167,.55);
      box-shadow:0 0 0 3px rgba(0,215,167,.12);
    }

    .section-block{
      padding:92px 0;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:18px;
      margin-bottom:22px;
    }
    .section-head h2{
      margin:0;
      font-size:34px;
      line-height:1.18;
      color:var(--deep);
      font-weight:800;
    }
    .section-head p{
      margin:0;
      max-width:40rem;
      color:var(--muted);
      line-height:1.75;
    }

    .catalog-grid .cell{
      display:flex;
    }
    .catalog-card{
      flex:1;
      padding:24px;
      border-radius:24px;
      background:linear-gradient(180deg,#fff,#f8fbf9);
      border:1px solid rgba(16,18,20,.08);
      box-shadow:0 12px 30px rgba(0,0,0,.05);
      display:flex;
      flex-direction:column;
      gap:14px;
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
      min-height:100%;
    }
    .catalog-card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 36px rgba(0,0,0,.08);
      border-color:rgba(0,215,167,.24);
    }
    .catalog-card.feature{
      background:linear-gradient(135deg,#0f1514,#18201f 60%,#111616);
      color:#f4f8f6;
      border-color:rgba(255,255,255,.08);
      box-shadow:0 20px 44px rgba(7,10,9,.22);
    }
    .catalog-card.feature .card-desc,
    .catalog-card.feature .card-note{
      color:rgba(244,248,246,.72);
    }
    .card-top{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .small-badge{
      display:inline-flex;
      align-items:center;
      height:28px;
      padding:0 10px;
      border-radius:999px;
      font-size:.8rem;
      font-weight:700;
      background:rgba(0,215,167,.1);
      color:#0b4f41;
      border:1px solid rgba(0,215,167,.16);
    }
    .catalog-card.feature .small-badge{
      background:rgba(255,255,255,.08);
      color:#eaf5f0;
      border-color:rgba(255,255,255,.12);
    }
    .card-title{
      margin:0;
      font-size:1.18rem;
      line-height:1.35;
      font-weight:800;
      color:inherit;
    }
    .card-desc{
      margin:0;
      color:var(--muted);
      font-size:.97rem;
      line-height:1.75;
    }
    .inline-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .inline-list .tag{
      height:28px;
      padding:0 10px;
      font-size:.8rem;
    }
    .card-footer{
      margin-top:auto;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding-top:6px;
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#0b4f41;
      font-weight:700;
      min-height:44px;
    }
    .catalog-card.feature .card-link{color:#8ff3d5}
    .card-note{
      font-size:.84rem;
      color:var(--muted);
      text-align:right;
    }

    .side-stack{
      display:grid;
      gap:14px;
      width:100%;
    }
    .side-card{
      padding:22px;
      border-radius:24px;
      background:var(--surface);
      border:1px solid rgba(16,18,20,.08);
      box-shadow:0 10px 24px rgba(0,0,0,.05);
    }
    .side-card.dark{
      background:linear-gradient(180deg,#101617,#171d1d);
      color:#f4f7f5;
      border-color:rgba(255,255,255,.08);
      box-shadow:0 16px 34px rgba(4,7,7,.18);
    }
    .side-title{
      margin:0 0 12px;
      font-size:1rem;
      font-weight:800;
      color:inherit;
    }
    .side-text{
      margin:0;
      color:inherit;
      opacity:.76;
      line-height:1.78;
      font-size:.95rem;
    }
    .side-list{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .side-list a,
    .side-list .side-row{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(16,18,20,.03);
      border:1px solid rgba(16,18,20,.06);
      color:var(--text);
      gap:12px;
    }
    .side-card.dark .side-list a,
    .side-card.dark .side-list .side-row{
      background:rgba(255,255,255,.05);
      border-color:rgba(255,255,255,.08);
      color:#f4f7f5;
    }
    .side-list a:hover{
      background:rgba(0,215,167,.08);
      border-color:rgba(0,215,167,.18);
    }
    .side-meta{
      font-size:.82rem;
      color:var(--muted);
      white-space:nowrap;
    }
    .side-card.dark .side-meta{color:rgba(244,247,245,.66)}

    .review-section{
      padding:92px 0;
      background:linear-gradient(180deg,#101415,#0d1011 100%);
      color:#f4f7f5;
      position:relative;
      overflow:hidden;
    }
    .review-section::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
      background-size:64px 64px;
      opacity:.35;
      pointer-events:none;
    }
    .review-section .section-head p{
      color:rgba(244,247,245,.72);
    }
    .review-track{
      position:relative;
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:minmax(280px,1fr);
      gap:16px;
      overflow-x:auto;
      padding-bottom:8px;
      scroll-snap-type:x proximity;
      z-index:1;
    }
    .review-card{
      scroll-snap-align:start;
      padding:24px;
      border-radius:24px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.1);
      box-shadow:0 10px 28px rgba(0,0,0,.18);
      min-height:100%;
    }
    .review-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--brand),#baf6e5);
      color:#082c24;
      font-weight:800;
      flex:0 0 auto;
    }
    .review-user{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .review-name{
      font-weight:800;
      line-height:1.2;
    }
    .review-meta{
      font-size:.86rem;
      color:rgba(244,247,245,.65);
      margin-top:3px;
    }
    .review-score{
      display:inline-flex;
      align-items:center;
      height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(0,215,167,.14);
      color:#8ef0d3;
      font-weight:700;
      font-size:.85rem;
      border:1px solid rgba(0,215,167,.16);
      white-space:nowrap;
    }
    .review-text{
      margin:0;
      color:rgba(244,247,245,.84);
      line-height:1.8;
      font-size:.98rem;
    }

    .trust-band{
      padding:18px;
      border-radius:28px;
      background:linear-gradient(135deg,#effaf6,#fff8ea);
      border:1px solid rgba(16,18,20,.08);
      box-shadow:0 12px 28px rgba(0,0,0,.05);
    }
    .trust-item{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(16,18,20,.06);
      height:100%;
    }
    .trust-item svg{
      width:28px;
      height:28px;
      color:#0b4f41;
      margin-bottom:10px;
    }
    .trust-item h3{
      margin:0 0 6px;
      font-size:1rem;
      font-weight:800;
      color:var(--text);
    }
    .trust-item p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
      line-height:1.7;
    }

    .faq-wrap{
      display:grid;
      gap:12px;
    }
    .faq-item{
      padding:0;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(16,18,20,.08);
      box-shadow:0 10px 24px rgba(0,0,0,.04);
      overflow:hidden;
    }
    .faq-item summary{
      list-style:none;
      padding:18px 20px;
      cursor:pointer;
      font-weight:800;
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      color:var(--text);
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      width:28px;
      height:28px;
      display:grid;
      place-items:center;
      border-radius:999px;
      background:rgba(0,215,167,.1);
      color:#0b4f41;
      font-size:1.1rem;
      font-weight:800;
      flex:0 0 auto;
    }
    .faq-item[open] summary::after{content:"–"}
    .faq-body{
      padding:0 20px 18px;
      color:var(--muted);
      line-height:1.78;
    }

    .cta-banner{
      padding:28px;
      border-radius:28px;
      background:linear-gradient(135deg,#0f1514,#16695a 55%,#0f1514);
      color:#f4f8f6;
      box-shadow:0 22px 48px rgba(7,10,9,.22);
      border:1px solid rgba(255,255,255,.08);
    }
    .cta-banner h2{
      margin:0 0 10px;
      font-size:30px;
      line-height:1.18;
      color:#fff;
      font-weight:800;
    }
    .cta-banner p{
      margin:0;
      color:rgba(244,247,245,.78);
      max-width:44rem;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .cta-actions .btn-brand{
      background:linear-gradient(135deg,#00d7a7,#bef9e8);
      color:#07342b;
    }
    .cta-actions .btn-ghost{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      color:#f5f8f6;
    }
    .cta-chiprow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .cta-chip{
      height:32px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      color:#eaf5f0;
      font-size:.85rem;
      display:inline-flex;
      align-items:center;
    }

    .site-footer{
      background:linear-gradient(180deg,#0f1314,#0b0d0e);
      color:#eef2ef;
      padding:54px 0 26px;
      margin-top:0;
    }
    .site-footer p,
    .footer-links a,
    .copyright{
      color:rgba(238,242,239,.74);
    }
    .footer-brand{
      color:#fff;
      margin-bottom:12px;
    }
    .footer-title{
      font-size:.92rem;
      font-weight:700;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a:hover{color:#8ef0d3}
    .copyright{
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      font-size:.9rem;
    }

    @media screen and (max-width: 64em){
      .mega-panel{display:none}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .filter-grid{
        grid-template-columns:1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
    }

    @media screen and (max-width: 52em){
      .desktop-nav{display:none}
      .mobile-menu-button{display:inline-flex}
      .nav-shell{align-items:flex-start}
      .hero-section{padding-top:22px}
      .hero-card,
      .filter-card,
      .catalog-card,
      .side-card,
      .cta-banner,
      .trust-band{
        border-radius:22px;
      }
      .section-block,
      .review-section{
        padding:64px 0;
      }
      .hero-title{font-size:42px}
      .section-head h2{font-size:28px}
      .metric-grid{grid-template-columns:1fr}
      .barline{grid-template-columns:84px 1fr 42px}
      .review-track{grid-auto-columns:minmax(260px,82vw)}
      .cta-actions .btn-brand,
      .cta-actions .btn-ghost,
      .hero-actions .btn-brand,
      .hero-actions .btn-ghost{
        width:100%;
      }
      .search-box{
        flex-direction:column;
      }
      .search-box button{
        width:100%;
      }
    }

    @media screen and (max-width: 34em){
      .grid-container{
        padding-left:16px;
        padding-right:16px;
      }
      .nav-shell{
        padding:14px 0 10px;
      }
      .brand-text,
      .footer-brand span:last-child{
        font-size:.95rem;
      }
      .brand-mark{
        width:36px;
        height:36px;
      }
      .hero-title{font-size:32px}
      .hero-copy{font-size:1rem}
      .hero-card,
      .filter-card,
      .catalog-card,
      .side-card,
      .review-card,
      .faq-item,
      .cta-banner,
      .trust-band{
        padding-left:18px;
        padding-right:18px;
      }
      .btn-brand,
      .btn-ghost,
      .filter-chip{
        width:100%;
      }
      .hero-actions,
      .hero-stats,
      .panel-chips,
      .filter-inline,
      .cta-chiprow{
        gap:8px;
      }
      .stat-pill,
      .panel-chip,
      .cta-chip{
        width:100%;
        justify-content:flex-start;
      }
      .filter-grid{
        gap:12px;
      }
      .trust-band{
        padding:14px;
      }
      .trust-item{
        padding:16px;
      }
      .card-footer{
        flex-direction:column;
        align-items:flex-start;
      }
      .card-note{
        text-align:left;
      }
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        transition:none !important;
        animation:none !important;
      }
    }
