      *,
      *::before,
      *::after {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      }

      :root {
          --red: #e8192c;
          --red-dark: #b5121f;
          --red-light: #ff3a4e;
          --dark: #0f0f0f;
          --dark-2: #1a1a1a;
          --dark-3: #242424;
          --gray: #6b7280;
          --light-gray: #f3f4f6;
          --white: #ffffff;
          --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
          --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
          --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
          --radius: 12px;
          --radius-lg: 20px;
      }

      html {
          scroll-behavior: smooth;
      }



      /* ========== SEARCH BOX ========== */
      .search-wrap {
          animation: fadeUp 0.9s ease 0.4s both;
          width: 100%;
          max-width: 720px;
          margin: 0 auto;
      }

      .search-label {
          font-size: 0.8rem;
          font-weight: 600;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.45);
          margin-bottom: 12px;
      }

      .search-box {
          display: flex;
          align-items: center;
          background: rgba(255, 255, 255, 0.95);
          border-radius: var(--radius-lg);
          box-shadow:
              0 0 0 4px rgba(232, 25, 44, 0.25),
              var(--shadow-lg);
          overflow: hidden;
          transition: box-shadow 0.3s;
      }

      .search-box:focus-within {
          box-shadow:
              0 0 0 4px rgba(232, 25, 44, 0.5),
              var(--shadow-lg);
      }

      .search-icon {
          padding: 0 18px;
          color: var(--red);
          font-size: 1.15rem;
          flex-shrink: 0;
      }

      #hero-search {
          flex: 1;
          border: none;
          outline: none;
          background: transparent;
          font-size: 1rem;
          font-weight: 500;
          color: var(--dark);
          padding: 18px 0;
          font-family: "Jost", sans-serif;

      }

      #hero-search::placeholder {
          color: #9ca3af;
          font-weight: 400;
      }

      .search-btn {
          flex-shrink: 0;
          background: var(--red);
          color: var(--white);
          border: none;
          cursor: pointer;
          font-family: "Inter", sans-serif;
          font-size: 0.95rem;
          font-weight: 700;
          padding: 20px 28px;
          display: flex;
          align-items: center;
          gap: 8px;
          transition:
              background 0.2s,
              transform 0.1s;
          font-family: "Jost", sans-serif;

      }

      .search-btn:hover {
          background: var(--red-light);
      }

      .search-btn:active {
          transform: scale(0.97);
      }

      /* Autocomplete suggestions */
      .search-suggestions {
          position: absolute;
          left: 0;
          right: 0;
          top: calc(100% + 8px);
          background: var(--white);
          border-radius: var(--radius);
          box-shadow: var(--shadow-md);
          z-index: 50;
          overflow: hidden;
          display: none;
      }

      .search-suggestions.show {
          display: block;
      }

      .suggestion-item {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 11px 18px;
          cursor: pointer;
          transition: background 0.15s;
          color: var(--dark);
          font-size: 0.9rem;
      }

      .suggestion-item:hover {
          background: var(--light-gray);
      }

      .suggestion-item i {
          color: var(--red);
          width: 16px;
          text-align: center;
      }

      .suggestion-type {
          margin-left: auto;
          font-size: 0.72rem;
          font-weight: 600;
          color: var(--gray);
          letter-spacing: 0.05em;
          text-transform: uppercase;
      }

      .search-relative {
          position: relative;
      }

      .search-hint {
          margin-top: 14px;
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 8px;
      }

      .search-hint span {
          font-size: 0.78rem;
          color: rgba(255, 255, 255, 0.45);
      }

      .search-hint button {
          background: rgba(255, 255, 255, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.15);
          color: rgba(255, 255, 255, 0.7);
          padding: 4px 12px;
          border-radius: 100px;
          font-size: 0.78rem;
          font-family: "Inter", sans-serif;
          cursor: pointer;
          transition: all 0.2s;
      }

      .search-hint button:hover {
          background: rgba(232, 25, 44, 0.2);
          border-color: rgba(232, 25, 44, 0.4);
          color: var(--white);
      }

      /* ========== STATS ========== */
      .stats {
          position: relative;
          z-index: 2;
          display: flex;
          gap: 40px;
          margin-top: 64px;
          flex-wrap: wrap;
          justify-content: center;
          animation: fadeUp 1s ease 0.5s both;
      }

      .stat {
          text-align: center;
      }

      .stat-num {
          font-size: 2rem;
          font-weight: 800;
          color: var(--white);
          line-height: 1;
      }

      .stat-num span {
          color: var(--red);
      }

      .stat-label {
          font-size: 0.78rem;
          color: rgba(255, 255, 255, 0.5);
          margin-top: 4px;
          font-weight: 500;
          letter-spacing: 0.04em;
          text-transform: uppercase;
      }

      /* ========== SCROLL INDICATOR ========== */
      .scroll-indicator {
          position: absolute;
          bottom: 32px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 2;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 6px;
          animation: bounce 2s ease infinite;
      }

      .scroll-indicator span {
          font-size: 0.7rem;
          color: rgba(255, 255, 255, 0.35);
          text-transform: uppercase;
          letter-spacing: 0.1em;
      }

      .scroll-indicator i {
          color: rgba(255, 255, 255, 0.35);
          font-size: 0.85rem;
      }

      @keyframes bounce {

          0%,
          100% {
              transform: translateX(-50%) translateY(0);
          }

          50% {
              transform: translateX(-50%) translateY(6px);
          }
      }

      /* ========== BRANDS STRIP ========== */
      .brands-strip {
          background: var(--dark-2);
          border-top: 1px solid rgba(255, 255, 255, 0.06);
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          padding: 32px 24px;
      }

      .brands-strip-inner {
          max-width: 1280px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          gap: 40px;
          flex-wrap: wrap;
          justify-content: center;
      }

      .strip-label {
          font-size: 0.75rem;
          font-weight: 700;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: var(--gray);
          white-space: nowrap;
      }

      .brand-logos {
          display: flex;
          gap: 32px;
          align-items: center;
          flex-wrap: wrap;
          justify-content: center;
      }

      .brand-logo {
          padding: 8px 20px;
          border-radius: 10px;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.08);
          font-weight: 800;
          font-size: 0.95rem;
          letter-spacing: 0.04em;
          color: rgba(255, 255, 255, 0.5);
          cursor: pointer;
          transition: all 0.25s;
      }

      .brand-logo:hover {
          background: rgba(232, 25, 44, 0.15);
          border-color: rgba(232, 25, 44, 0.4);
          color: var(--white);
      }

      /* ========== CATEGORIES ========== */
      .section {
          padding: 80px 24px;
      }

      .section-inner {
          max-width: 1280px;
          margin: 0 auto;
      }

      .section-header {
          text-align: center;
          margin-bottom: 52px;
      }

      .section-tag {
          display: inline-block;
          background: rgba(232, 25, 44, 0.12);
          color: var(--red);
          padding: 5px 14px;
          border-radius: 100px;
          font-size: 0.75rem;
          font-weight: 700;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          margin-bottom: 16px;
          border: 1px solid rgba(232, 25, 44, 0.2);
      }

      .section-title {
          font-size: clamp(1.6rem, 4vw, 2.4rem);
          font-weight: 800;
          margin-bottom: 14px;
          letter-spacing: -0.02em;
      }

      .section-sub {
          font-size: 1rem;
          color: rgba(255, 255, 255, 0.5);
          max-width: 520px;
          margin: 0 auto;
          line-height: 1.7;
      }

      .category-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
          gap: 16px;
      }

      .cat-card {
          background: var(--dark-2);
          border: 1px solid rgba(255, 255, 255, 0.07);
          border-radius: var(--radius);
          padding: 28px 16px;
          text-align: center;
          cursor: pointer;
          transition: all 0.25s;
          text-decoration: none;
          color: inherit;
          display: block;
      }

      .cat-card:hover {
          background: rgba(232, 25, 44, 0.1);
          border-color: rgba(232, 25, 44, 0.35);
          transform: translateY(-4px);
          box-shadow: 0 12px 36px rgba(232, 25, 44, 0.15);
      }

      .cat-icon {
          width: 56px;
          height: 56px;
          border-radius: 14px;
          background: rgba(232, 25, 44, 0.12);
          border: 1px solid rgba(232, 25, 44, 0.2);
          display: grid;
          place-items: center;
          margin: 0 auto 16px;
          font-size: 1.4rem;
          color: var(--red);
          transition: all 0.25s;
      }

      .cat-card:hover .cat-icon {
          background: var(--red);
          color: var(--white);
          border-color: var(--red);
      }

      .cat-name {
          font-weight: 700;
          font-size: 0.95rem;
          margin-bottom: 4px;
      }

      .cat-desc {
          font-size: 0.75rem;
          color: rgba(255, 255, 255, 0.4);
      }

      /* ========== HOW IT WORKS ========== */
      .how-section {
          background: var(--dark-2);
      }

      .steps {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 24px;
      }

      .step-card {
          position: relative;
          background: var(--dark-3);
          border: 1px solid rgba(255, 255, 255, 0.07);
          border-radius: var(--radius);
          padding: 32px 24px;
      }

      .step-num {
          position: absolute;
          top: -16px;
          left: 24px;
          width: 36px;
          height: 36px;
          border-radius: 50%;
          background: var(--red);
          color: var(--white);
          font-size: 0.85rem;
          font-weight: 800;
          display: grid;
          place-items: center;
          box-shadow: 0 4px 16px rgba(232, 25, 44, 0.4);
      }

      .step-icon {
          font-size: 1.8rem;
          margin-bottom: 16px;
      }

      .step-title {
          font-weight: 700;
          font-size: 1rem;
          margin-bottom: 8px;
      }

      .step-text {
          font-size: 0.85rem;
          color: rgba(255, 255, 255, 0.5);
          line-height: 1.6;
      }

      /* ========== CTA ========== */
      .cta-section {
          padding: 80px 24px;
          background: linear-gradient(135deg,
                  rgba(232, 25, 44, 0.18) 0%,
                  rgba(0, 0, 0, 0) 60%);
          border-top: 1px solid rgba(232, 25, 44, 0.12);
      }

      .cta-inner {
          max-width: 700px;
          margin: 0 auto;
          text-align: center;
      }

      .cta-inner h2 {
          font-size: clamp(1.6rem, 3.5vw, 2.2rem);
          font-weight: 800;
          margin-bottom: 16px;
      }

      .cta-inner p {
          color: rgba(255, 255, 255, 0.55);
          margin-bottom: 36px;
          line-height: 1.7;
      }

      .cta-search-wrap {
          max-width: 560px;
          margin: 0 auto;
      }

      /* ========== FOOTER ========== */
      footer {
          background: #0a0a0a;
          border-top: 1px solid rgba(255, 255, 255, 0.06);
          padding: 40px 24px;
          text-align: center;
      }

      .footer-inner {
          max-width: 1280px;
          margin: 0 auto;
      }

      .footer-logo {
          font-size: 1.3rem;
          font-weight: 800;
          margin-bottom: 12px;
      }

      .footer-logo span {
          color: var(--red);
      }

      footer p {
          font-size: 0.82rem;
          color: rgba(255, 255, 255, 0.35);
      }

      footer a {
          color: var(--red);
          text-decoration: none;
      }

      /* ========== ANIMATIONS ========== */
      @keyframes fadeUp {
          from {
              opacity: 0;
              transform: translateY(24px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      /* ========== RESPONSIVE ========== */
      @media (max-width: 768px) {
          .nav-links {
              display: none;
          }

          .search-btn span {
              display: none;
          }

          .stats {
              gap: 24px;
          }

          .category-grid {
              grid-template-columns: repeat(2, 1fr);
          }
      }