.home-band {
      position: relative;
      isolation: isolate;
      margin: 0;
      /*padding: clamp(24px, 4vw, 42px) 0;*/
    }

    .home-band::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 100vw;
      transform: translateX(-50%);
      z-index: -1;
      background: var(--band-bg, #fff);
    } 

    .hero {
      --band-bg: linear-gradient(105deg, #ec8b29 0%, #eba627 12%, #f0c819 100%);
      /*padding-top: clamp(28px, 5vw, 56px);
      padding-bottom: clamp(28px, 5vw, 56px);*/
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-4);
      align-items: center;
    }

    .hero-visual {
      position: relative;
      min-height: 400px;
      background: linear-gradient(145deg, rgba(31, 58, 95, 0.82), rgba(196, 106, 45, 0.45));
      background-size: cover;
      background-position: center;
      /*border-radius: var(--radius-lg);
      box-shadow: 0 24px 60px rgba(8, 14, 26, 0.38);
      border: 1px solid rgba(255, 255, 255, 0.22);*/
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
      /*border-radius: var(--radius-lg);*/
    }

    .hero-content {
        padding-top: 15px;
    }

    .hero-content h1 {
      margin: 0;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #000;
      font-size: 0.95rem;
    }

    .hero-content p {
      color: #333;
      max-width: 58ch;
    }

    .hero-content p.muted {
      margin-top: 0;
      font-size: clamp(2rem, 3vw, 2.7rem);
      color: #0066ae;
      letter-spacing: -0.02em;
      font-weight: 700;
    }

    .category-pills {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: var(--space-3);
      margin-top: var(--space-4);
    }

    .category-pill {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(230, 223, 210, 0.86));
      border: 1px solid rgba(255, 255, 255, 0.45);
      padding: var(--space-1);
      border-radius: var(--radius-md);
      box-shadow: 0 12px 30px rgba(11, 19, 33, 0.18);
      display: grid;
      gap: 1px;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      color: #2f3437;
    }

    .category-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    }

    .category-pill span {
      color: #3a4044;
      font-size: 0.9rem;
    }

    .trust,
    .trust-security,
    .brand-strip,
    .content-block {
      display: grid;
      gap: var(--space-3);
      padding-top: clamp(24px, 4vw, 40px);
      padding-bottom: clamp(24px, 4vw, 40px);
    }

    .trust {
      --band-bg: linear-gradient(180deg, #e6dfd2 0%, #f7f2e8 100%);
    }

    .trust-security {
        /*linear-gradient(115deg, #ec8b29 0%, #eba627 42%, #f0c819 100%)*/
      --band-bg: linear-gradient(105deg, #ec8b29 0%, #eba627 12%, #f0c819 100%);
      /*--band-bg: linear-gradient(180deg, #000000b3 0%, #000000b3 100%);*/
    }

    .brand-strip {
      --band-bg: linear-gradient(180deg, #f7f2e8 0%, #e6dfd2 100%);
    }

    .brand-slider { position: relative; padding: 0 48px; min-width: 0; }
    .brand-slider-viewport { overflow: hidden; border-radius: var(--radius-md); max-width: 100%; min-width: 0; }
    .brand-slider-track { display: flex; gap: var(--space-3); transition: transform 0.35s ease; will-change: transform; }

    .brand-slide {
      flex: 0 0 auto;
      width: 192px;
      height: 132px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-md);
      border: 1px solid rgba(47, 52, 55, 0.16);
      background: #fff;
      box-shadow: 0 10px 22px rgba(24, 36, 54, 0.1);
    }

    .brand-slide img { width: 192px; height: 132px; object-fit: contain; display: block; }
    .brand-slider-controls { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }

    .brand-slider-button {
      border: 1px solid rgba(47, 52, 55, 0.16);
      background: #fff;
      border-radius: 999px;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(31, 58, 95, 0.1);
      font-size: 1.1rem;
      color: #2f3437;
      pointer-events: auto;
    }

    .brand-slider-button:hover { transform: translateY(-1px); }

    .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-3); }
    .trust-grid a { display: flex; text-decoration: none; }

    .trust-card {
      background: #fff;
      border: 1px solid rgba(47, 52, 55, 0.16);
      border-radius: var(--radius-md);
      padding: var(--space-2);
      box-shadow: 0 10px 22px rgba(24, 36, 54, 0.08);
      display: flex;
      flex-direction: column;
      gap: var(--space-0);
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .trust-grid a:hover .trust-card { transform: translateY(-3px); box-shadow: 0 16px 28px rgba(18, 37, 63, 0.12); }
    .trust-card-content { margin: 0; line-height: 1.1; }

    .trust-security-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }

    .trust-security-card {
      background: #fff;
      border: 1px solid rgba(47, 52, 55, 0.16);
      border-radius: var(--radius-md);
      padding: var(--space-2);
      box-shadow: 0 10px 22px rgba(24, 36, 54, 0.08);
      display: grid;
      gap: var(--space-0);
      height: 100%;
    }

    .trust-security-card img { width: 36px; height: 36px; }

    .trust-card h3,
    .trust-security-card h3 {
      margin-top: 0;
      margin-bottom: var(--space-0);
      line-height: 1;
      font-size: 1.1rem;
      font-weight: 700;
      color: #2f3437;
    }

    .content-block {
      --band-bg: linear-gradient(180deg, #2f3437 0%, #1f3a5f 100%);
      color: #fff;
    }

    .content-block h2 { margin: 0; font-size: clamp(1.5rem, 2.4vw, 2rem); color: #fff; }
    .content-block p { margin: 0; line-height: 1.7; color: #333; }

    .content-intro { display: grid; gap: var(--space-2); padding-bottom: var(--space-3); border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
    .content-intro strong { color: #d9cbb3; }
    .content-intro p {
        color: #eee;
    }

    .faq-list { display: grid; gap: var(--space-2); }

    .faq-item {
      border: 1px solid rgba(47, 52, 55, 0.14);
      border-radius: var(--radius-md);
      padding: var(--space-2) var(--space-3);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 223, 210, 0.94));
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      font-weight: 600;
      color: #2f3437;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-2);
    }

    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; font-size: 1.4rem; color: #1f3a5f; transition: transform 0.2s ease; }
    .faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }

    .faq-answer { padding-top: var(--space-2); display: grid; gap: var(--space-2); }

    .content-block a { color: #e6dfd2; text-decoration: underline; text-underline-offset: 2px; }

    .trust h2,
    .trust-security h2,
    .brand-strip h2 { color: #2f3437; letter-spacing: 0.01em; }

    .trust .muted,
    .trust-security .muted,
    .brand-strip .muted { color: #3a4044; }

    @media (max-width: 720px) {
      .category-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .brand-slider { padding: 0 40px; }
      .trust-security-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-visual { min-height: 300px; }
    }

    @media (max-width: 520px) {
      .brand-slider { padding: 0 32px; }
      .brand-slider-button { width: 32px; height: 32px; }
      .hero-visual { min-height: 220px; }
    }

.home-margin-reset { margin: 0; }
.hero-visual-image { width:100%; height:100%; object-fit:cover; }
.section-margin-bottom { margin-bottom: var(--space-3); }
.section-heading-reset { margin: 0; }
.neutral-link { color: #333; }
.stars-image { width: 100px; }
.trust-item-copy { margin: 0; line-height: 1.15; }