
    .trust .wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 26px 24px;
      gap: 16px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
    }

    .trust-item .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    /* SECTION HEAD */
    .sec-head {
      max-width: 600px;
      margin-bottom: 40px;
    }

    .sec-head h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .sec-head p {
      color: var(--muted);
      font-size: 18px;
    }

    /* CATEGORIES */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .cat-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .cat-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }

    .cat-img {
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
    }

    body:not(.light-mode) .cat-img {
      background: rgba(255, 255, 255, 0.05) !important;
    }

    .cat-body {
      padding: 18px 20px 22px;
    }

    .cat-body h3 {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .cat-body p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .cat-price {
      font-size: 16px;
      font-weight: 600;
      color: var(--accent-dark);
    }



    /* HOW IT WORKS */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .step {
      padding: 0 18px;
      position: relative;
      text-align: left;
    }

    .step::before {
      content: '';
      position: absolute;
      top: 22px;
      left: -18px;
      right: 18px;
      border-top: 2px dashed var(--line);
      z-index: 0;
    }

    .step:first-child::before {
      display: none;
    }

    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .step h4 {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .step p {
      font-size: 16px;
      color: var(--muted);
    }

    /* WHY US */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .why-card {
      padding: 8px 0;
    }

    .why-card .icon {
      font-size: 26px;
      margin-bottom: 12px;
    }

    .why-card h4 {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .why-card p {
      font-size: 16px;
      color: var(--muted);
    }

    /* TESTIMONIALS */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .test-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
    }

    .test-card p {
      font-size: 18px;
      color: var(--ink-soft);
      margin-bottom: 18px;
    }

    .test-who {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }

    .test-who strong {
      display: block;
      font-size: 16px;
    }

    .test-who span {
      font-size: 14px;
      color: var(--muted);
    }

    /* CTA BANNER */
    .cta-banner {
      background: var(--accent);
      border-radius: 16px;
      padding: 48px;
      text-align: center;
      color: #fff;
    }

    .cta-banner h2 {
      color: #fff;
      font-size: 40px;
      margin-bottom: 10px;
    }

    .cta-banner p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 24px;
    }

    .cta-banner .btn-primary {
      background: #fff;
      color: var(--accent-dark);
    }

    .cta-banner .btn-primary:hover {
      background: var(--ink);
      color: var(--bg-card);
    }

