/* ============================================
   TABLE OF CONTENTS
   1.  Reset & Base
   2.  Page Layout
   3.  Navbar
   4.  Logo
   5.  Navigation Dropdowns
   6.  Quick Tools
   7.  Theme Switch
   8.  Mobile Sidebar
   9.  Hero / Search
   10. Tools Grid
   11. Features Box
   12. Product Cards
   13. Quality Section
   14. Bar Section
   15. Footer
   16. Search Dropdown
   17. Dark Mode
   18. Responsive
============================================ */

/* ============================================
   1. RESET & BASE
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f8ff;
}

h1 {
  font-size: 42px;
  margin: 10px 0;
}

h2 {
  font-size: 38px;
  color: #6c5ce7;
  margin: 0;
}

p {
  color: #666;
  max-width: 500px;
  margin: 15px auto 30px;
}

a {
  text-decoration: none;
}

/* ============================================
   2. PAGE LAYOUT
============================================ */
.body {
  margin: 0;
  padding: 0 60px;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
/* ============================================
   3. NAVBAR
============================================ */
.navbar {
  height: 75px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ececec;
  overflow: visible;
}

.navbar {
  height: var(--nav-h);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid #e2e4f0;
  box-shadow:
    0 1px 3px rgba(15, 16, 33, 0.06),
    0 1px 2px rgba(15, 16, 33, 0.04);
  padding: 0 30px;
  gap: 6px;
  overflow: visible;
}

.cat {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: visible;
}

.cat a {
  text-decoration: none;
  color: #333;
  font-weight: 550;
}

/* ============================================
   4. LOGO
============================================ */
.logo {
  background-image: url("../../image/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  width: 140px;
  height: 70px;
}

/* ============================================
   5. NAVIGATION DROPDOWNS
============================================ */

/* --- Shared Dropdown Button --- */
.tools-btn,
.categories-btn {
  height: 44px;
  padding: 0 18px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s;
}

.tools-btn:hover,
.categories-btn:hover {
  background: #f5f5f5;
}

.tools-btn svg,
.categories-btn svg {
  transition: transform 0.25s;
}

/* --- Shared Dropdown Menu --- */
.tools-dropdown,
.categories-dropdown {
  position: relative;
  display: inline-block;
}

.tools-menu,
.categories-menu {
  position: fixed;
  top: 78px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 980px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
  z-index: 999999;
}

.tools-menu,
.categories-menu {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.tools-menu,
.categories-menu {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.tools-menu::-webkit-scrollbar,
.categories-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.tools-dropdown:hover .tools-menu,
.categories-dropdown:hover .categories-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tools-dropdown:hover .tools-btn svg,
.categories-dropdown:hover .categories-btn svg {
  transform: rotate(180deg);
}

/* --- Tools Column Links --- */
.tools-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tools-column a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.tools-column a i {
  width: 18px;
  font-size: 16px;
  color: #e5322d;
  transition: transform 0.22s ease;
}

.tools-column a span {
  flex: 1;
}

.tools-column a:hover {
  background: #f4f7fb;
  transform: translateX(4px);
}

.tools-column a:hover i {
  transform: scale(1.1);
}

/* --- Category Box --- */
.category-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-box h3 {
  margin: 0 0 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.category-box a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.category-box a i {
  width: 18px;
  font-size: 16px;
  color: #e5322d;
  transition: transform 0.22s ease;
}

.category-box a:hover {
  background: #f4f7fb;
  transform: translateX(4px);
}

.category-box a:hover i {
  transform: scale(1.08);
}

/* ============================================
   6. QUICK TOOLS
============================================ */
.quick-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-tool a {
  height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #222;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.nav-tool a:hover {
  background: #f4f7fb;
  color: #e5322d;
}

/* ============================================
   7. THEME SWITCH
============================================ */
/* ============================================
   7. THEME SWITCH
============================================ */
.theme-switch {
  width: 150px;
  height: 40px;
  /* margin-right: 15px; <-- REMOVE THIS LINE */
  position: relative;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf2ff, #cfe0ff);
  box-shadow:
    inset 1px 1px 4px rgba(255, 255, 255, 0.8),
    inset -1px -1px 4px rgba(0, 0, 0, 0.08),
    0 3px 10px rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
}

.theme-switch:hover .slider {
  transform: scale(1.03);
}

.slider {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25);
  transition:
    left 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.slider i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  width: 100%;
  height: 100%;
}

.fa-sun {
  color: #fbbf24;
  text-shadow: 0 0 6px rgba(251, 191, 36, 0.5);
}

.fa-moon {
  color: white;
}

.theme-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.theme-switch:not(.active) .theme-text {
  transform: translate(-50%, -50%) translateX(12px);
}

.theme-switch.active .theme-text {
  transform: translate(-50%, -50%) translateX(-10px);
}

.theme-switch.active .slider {
  left: 114px;
}

/* ============================================
   8. MOBILE SIDEBAR
============================================ */

/* --- Desktop: hidden --- */
.mobile-sidebar {
  display: none;
}

.menu-btn {
  display: none;
}

/* ============================================
   9. HERO / SEARCH
============================================ */
.hero {
  text-align: center;
  padding: 30px 20px 70px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f7f8ff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1efff;
  color: #6c63ff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.search-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-wrapper {
  position: relative;
  width: 500px;
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 0 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.search-wrapper img {
  width: 18px;
  height: 18px;
  margin-left: 15px;
  opacity: 0.6;
}

.search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 10px 16px 20px !important;
  font-size: 15px;
  background: transparent;
}

.clear-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.clear-btn:hover {
  background: #d1d5db;
  color: #374151;
}

/* ============================================
   10. TOOLS GRID
============================================ */
.tools-section {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.tools-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.left-title {
  position: relative;
}

.left-title h2 {
  font-size: 25px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}

.left-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 30px;
  background: #6c63ff;
}

.view-tools {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6c63ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.view-tools:hover {
  background: #f4f3fb;
}

.view-tools .btn-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  line-height: 1;
}

.view-tools.active .btn-arrow {
  transform: rotate(180deg);
}

.view-tools .btn-text {
  transition: opacity 0.3s ease;
}

/* --- Grid --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: hidden !important;
  max-height: 155px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-top: -14px;
  margin-bottom: -14px;
}

/* --- Tool Card --- */
a.tool-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  background: white;
  border: 1px solid #ececf4;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

a.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.tool-left {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.icon-box i {
  font-size: 18px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.tool-card:hover .icon-box {
  transform: scale(1.08) rotate(-4deg);
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  pointer-events: none;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.icon-box.red {
  background: linear-gradient(145deg, #ffe9ea, #ffd5d7);
  color: #ff5c63;
  box-shadow: 0 4px 12px rgba(255, 92, 99, 0.1);
}

.icon-box.orange {
  background: linear-gradient(145deg, #fff5e8, #ffeacc);
  color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.icon-box.purple {
  background: linear-gradient(145deg, #f2efff, #e4e0ff);
  color: #6b63ff;
  box-shadow: 0 4px 12px rgba(107, 99, 255, 0.1);
}

.icon-box.blue {
  background: linear-gradient(145deg, #eef4ff, #dceaff);
  color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.icon-box.green {
  background: linear-gradient(145deg, #ecfff3, #d5f5e3);
  color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.icon-box.yellow {
  background: linear-gradient(145deg, #fff8e8, #ffeebf);
  color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

/* --- Card Text --- */
.tool-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tool-content h3 {
  font-size: 13px;
  font-weight: 700;
  color: #202939;
  margin: 0;
  line-height: 1.2;
}

.tool-content p {
  font-size: 11.5px;
  color: #7b8190;
  margin: 2px 0 0;
  line-height: 1.3;
}

/* --- Arrow --- */
.arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a7b3;
  font-size: 15px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

a.tool-card:hover .arrow {
  transform: translateX(2px);
}

/* ============================================
   11. FEATURES BOX (below search)
============================================ */
.features-box {
  max-width: 1280px;
  width: 100%;
  margin: 50px auto;
  background: #f4f3fb;
  border-radius: 18px;
  padding: 22px 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.features-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(25px, 5vw, 120px);
  flex-wrap: wrap;
  height: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

/* Feature item icon-wraps (circular) */
.feature-item .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .icon-wrap svg {
  width: 27px;
  height: 27px;
}

.feature-item .icon-wrap.purple {
  background: #ece7ff;
  color: #7c5cff;
}
.feature-item .icon-wrap.green {
  background: #e7faef;
  color: #22c55e;
}
.feature-item .icon-wrap.red {
  background: #ffe9ea;
  color: #ff5c63;
}

.feature-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #202939;
  margin-bottom: 0px;
}

.feature-content p {
  font-size: 13px;
  color: #6b7280;
  max-width: 240px;
  margin-top: 5px;
  margin-bottom: 10px;
}

/* =========================================
   WRAPPER
========================================= */
.nx72-wrap {
  max-width: 1300px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
}

/* =========================================
   CARDS — SHARED
========================================= */
.nx72-card {
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 30px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  animation: cardEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition:
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dot grid pattern on left card */
.nx72-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(
    rgba(108, 99, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at top right,
    black 0%,
    transparent 70%
  );
}

/* =========================================
   PILL BADGE
========================================= */
.nx72-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1eeff;
  color: #6c63ff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.nx72-pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  65%,
  100% {
    left: -100%;
  }
  35% {
    left: 150%;
  }
}

.nx72-pill i {
  font-size: 11px;
}

/* =========================================
   LEFT — HEADING
========================================= */
.nx72-left h2 {
  margin-top: 20px;
  font-size: 42px;
  line-height: 1.1;
  color: #17203a;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nx72-left h2 span {
  color: #6c63ff;
}

/* =========================================
   LEFT — DESCRIPTION
========================================= */
.nx72-left p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: #70778b;
  max-width: 520px;
  margin-left: 0px;
}

/* =========================================
   FEATURES GRID
========================================= */
.nx72-features {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.nx72-box {
  background: transparent;
  border: 1px solid #f0eeff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(14px);
  animation: boxEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nx72-box:nth-child(1) {
  animation-delay: 0.3s;
}
.nx72-box:nth-child(2) {
  animation-delay: 0.4s;
}
.nx72-box:nth-child(3) {
  animation-delay: 0.5s;
}
.nx72-box:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes boxEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover color-matched fills */
.nx72-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nx72-box:nth-child(1)::before {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.02),
    rgba(108, 99, 255, 0.05)
  );
}
.nx72-box:nth-child(2)::before {
  background: linear-gradient(
    135deg,
    rgba(37, 131, 255, 0.02),
    rgba(37, 131, 255, 0.05)
  );
}
.nx72-box:nth-child(3)::before {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.02),
    rgba(34, 197, 94, 0.05)
  );
}
.nx72-box:nth-child(4)::before {
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.02),
    rgba(255, 152, 0, 0.05)
  );
}

.nx72-box:hover::before {
  opacity: 1;
}

.nx72-box:hover {
  transform: translateY(-3px);
}
.nx72-box:nth-child(1):hover {
  border-color: rgba(108, 99, 255, 0.22);
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.07);
}
.nx72-box:nth-child(2):hover {
  border-color: rgba(37, 131, 255, 0.22);
  box-shadow: 0 8px 24px rgba(37, 131, 255, 0.07);
}
.nx72-box:nth-child(3):hover {
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.07);
}
.nx72-box:nth-child(4):hover {
  border-color: rgba(255, 152, 0, 0.22);
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.07);
}

.nx72-box strong {
  display: block;
  font-size: 15px;
  color: #1f2a44;
  position: relative;
  z-index: 1;
}

.nx72-box span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #7b8193;
  position: relative;
  z-index: 1;
}

/* =========================================
   ICON CONTAINERS
========================================= */
.nx72-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1;
}

.nx72-box:hover .nx72-icon {
  transform: scale(1.08) rotate(-3deg);
}

.nx72-icon.purple {
  background: #f2edff;
  color: #6c63ff;
  box-shadow: 0 4px 14px rgba(108, 99, 255, 0.1);
}

.nx72-icon.blue {
  background: #eaf4ff;
  color: #2583ff;
  box-shadow: 0 4px 14px rgba(37, 131, 255, 0.1);
}

.nx72-icon.green {
  background: #e9fff2;
  color: #22c55e;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.1);
}

.nx72-icon.orange {
  background: #fff3e8;
  color: #ff9800;
  box-shadow: 0 4px 14px rgba(255, 152, 0, 0.1);
}

/* =========================================
   RIGHT CARD — TOP
========================================= */
.nx72-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nx72-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1eeff;
  color: #6c63ff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.nx72-small i {
  font-size: 11px;
}

.nx72-right h3 {
  margin-top: 18px;
  font-size: 38px;
  line-height: 1.1;
  color: #17203a;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nx72-right h3 span {
  color: #6c63ff;
}

/* =========================================
   RIGHT — CHECK POINTS
========================================= */
.nx72-points {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.nx72-point {
  background: transparent;
  border: 1px solid #f0eeff;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1f2a44;
  cursor: default;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: boxEnter 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nx72-point:nth-child(1) {
  animation-delay: 0.45s;
}
.nx72-point:nth-child(2) {
  animation-delay: 0.55s;
}
.nx72-point:nth-child(3) {
  animation-delay: 0.65s;
}
.nx72-point:nth-child(4) {
  animation-delay: 0.75s;
}

.nx72-point:hover {
  background: #faf9ff;
  border-color: #ddd8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(108, 99, 255, 0.05);
}

.nx72-point i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #edeaff;
  color: #6c63ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.nx72-point:hover i {
  background: #ddd8ff;
  transform: scale(1.1);
}

/* =========================================
   RIGHT — STATS
========================================= */
.nx72-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.nx72-stat {
  background: transparent;
  border: 1px solid #f0eeff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  cursor: default;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: boxEnter 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nx72-stat:nth-child(1) {
  animation-delay: 0.8s;
}
.nx72-stat:nth-child(2) {
  animation-delay: 0.9s;
}
.nx72-stat:nth-child(3) {
  animation-delay: 1s;
}

.nx72-stat:hover {
  background: #faf9ff;
  border-color: #ddd8ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.06);
}

.nx72-stat strong {
  display: block;
  font-size: 22px;
  color: #6c63ff;
  font-weight: 800;
}

.nx72-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #70778b;
}

/* =========================================
   RESPONSIVE
========================================= */
/* =========================================
   REDUCED MOTION
========================================= */
/* ============================================
   13. QUALITY SECTION
============================================ */
.wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 340px;
  background: #fff;
  border: 1px solid #edf0ff;
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 30px;
}

.heading {
  font-size: 25px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.line {
  width: 42px;
  height: 4px;
  background: #5b5cf0;
  border-radius: 50px;
  margin-bottom: 35px;
}

/* --- Features Grid (inside .card) --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch; /* Forces all grid items in the same row to be the exact same height */
}

.feature-box {
  border: 1px solid #eef1ff;
  border-radius: 22px;
  padding: 9px;
  text-align: center;
  background: #fff;

  /* REMOVED: height: fit-content; (This was causing the different sizes) */

  /* ADDED: Flexbox to align internal content nicely when boxes stretch */
  display: flex;
  flex-direction: column;
  align-items: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 92, 240, 0.08);
}

/* Feature box icon-wraps (rounded square) */
/* --- Icon Wraps --- */
.feature-box .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-box:hover .icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.feature-box .icon-wrap.red {
  background: linear-gradient(145deg, #ffe9ea, #ffd5d7);
  color: #ff5c63;
  box-shadow: 0 4px 12px rgba(255, 92, 99, 0.1);
}

.feature-box .icon-wrap.purple {
  background: linear-gradient(145deg, #f2efff, #e4e0ff);
  color: #6b63ff;
  box-shadow: 0 4px 12px rgba(107, 99, 255, 0.1);
}

.feature-box .icon-wrap.green {
  background: linear-gradient(145deg, #ecfff3, #d5f5e3);
  color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.feature-box .icon-wrap.blue {
  background: linear-gradient(145deg, #eef4ff, #dceaff);
  color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.feature-box .icon-wrap.orange {
  background: linear-gradient(145deg, #fff5e8, #ffeacc);
  color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.feature-box .icon-wrap.pink {
  background: linear-gradient(145deg, #fff0f5, #ffd9e6);
  color: #ff4d8d;
  box-shadow: 0 4px 12px rgba(255, 77, 141, 0.1);
}

.feature-box .icon-wrap.lime {
  background: linear-gradient(145deg, #effff2, #d5f5d9);
  color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

/* --- Feature Text --- */
.feature-box h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
  position: relative;
  z-index: 1;
}

.feature-box p {
  font-size: 11.5px;
  line-height: 1.5;
  color: #7b8190;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
/* --- Steps --- */
.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  width: 100%;
  border: 1px solid #eef1ff;
  border-radius: 24px;
  padding: 18px 16px;
  text-align: center;
  background: #fff;
  position: relative;
}
.step-icon {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 12px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Purple */
.step-icon.purple {
  background: linear-gradient(145deg, #f2efff, #e4e0ff);
  color: #6b63ff;
  box-shadow: 0 4px 12px rgba(107, 99, 255, 0.1);
}

/* Green */
.step-icon.green {
  background: linear-gradient(145deg, #ecfff3, #d5f5e3);
  color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

/* Blue */
.step-icon.blue {
  background: linear-gradient(145deg, #eef4ff, #dceaff);
  color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}
.step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.step p {
  font-size: 11px;
  color: #7b8190;
  line-height: 1.4;
  margin: 10px;
}

.number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #635bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin: 10px auto 0;
}

.steps .arrow {
  font-size: 26px;
  color: #b8bfd3;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: auto;
  height: auto;
}

/* --- Badges --- */
.badges {
  display: flex;
  justify-content: center;
}

.fast {
  margin-top: 25px;
  height: 80%;
  width: 80%;
}

/* ============================================
   14. BAR SECTION
============================================ */
.bar {
  position: relative;
  width: 100%;
  max-width: 1300px;
  min-height: 96px;
  margin: 0 auto 40px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(247, 247, 255, 0.96)
  );
  border: none;
  box-shadow:
    0 10px 26px rgba(90, 82, 170, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  padding: 14px;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  padding: 10px 30px;
  flex-wrap: wrap;
}

.item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 10px 12px;
  position: relative;
}

.item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(216, 219, 245, 0.95),
    transparent
  );
}

/* Bar icons */
.bar .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  position: relative;
}

.bar .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.14;
  background: currentColor;
}

.bar .icon i {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: currentColor;
}

.bar .icon.cube svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: block;
}

.bar .icon.purple {
  color: #6b5cff;
  background: rgba(107, 92, 255, 0.06);
}
.bar .icon.green {
  color: #21c17a;
  background: rgba(33, 193, 122, 0.06);
}
.bar .icon.orange {
  color: #ff8b13;
  background: rgba(255, 139, 19, 0.06);
}
.bar .icon.blue {
  color: #3b7bff;
  background: rgba(59, 123, 255, 0.06);
}

.txt h3 {
  margin: 0 0 5px 0;
  font-size: 13px;
  font-weight: 700;
  color: #1e2230;
  white-space: nowrap;
}

.txt p {
  margin: 0;
  font-size: 10.5px;
  color: #6f7487;
  max-width: 160px;
}

/* ============================================
   FOOTER CSS — Improved Classic Layout
   Same color theme: #d9deff/#b8c2ff gradient,
   #4b3dff accent, #1f2847 headings, #7b7f9f text
============================================ */

/* ============================================
   15. FOOTER — BASE STYLES
============================================ */

.info {
  background: linear-gradient(180deg, #d9deff 0%, #b8c2ff 100%);
  padding: 0 20px 20px;
}

/* Thin accent bar at the very top of the footer */
.rb-top-accent {
  height: 3px;
  background: linear-gradient(90deg, #4b3dff 0%, #a78bfa 50%, #b8c2ff 100%);
  margin: 0 -20px 0;
}

.rb-footer-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 55px;
  padding-top: 40px;
  padding-bottom: 32px;
}

/* ── Brand column ── */
.rb-brand-box {
  width: 100%;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -10px;
  margin-left: 10px;
}

.rb-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.logos {
  background-size: contain;
  background-position-y: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 55px;
}

.rb-brand-text {
  color: #7b7f9f;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 18px;
  text-align: left;
}

.rb-social-row {
  display: flex;
  gap: 10px;
}

.rb-social-row a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(75, 61, 255, 0.2);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1e2648;
  font-size: 14px;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.rb-social-row a:hover {
  color: #4b3dff;
  background: rgba(75, 61, 255, 0.1);
  border-color: #4b3dff;
  transform: translateY(-2px);
}

/* ── Link columns ── */
.rb-link-column {
  display: flex;
  flex-direction: column;
}

.rb-link-column h3 {
  font-size: 11px;
  color: #1f2847;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rb-link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rb-link-column ul li a {
  text-decoration: none;
  color: #7b7f9f;
  font-size: 13.5px;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: inline-block;
}

.rb-link-column ul li a:hover {
  color: #4b3dff;
  padding-left: 4px;
}

/* ── Footer bottom ── */
.rb-footer-bottom {
  max-width: 1250px;
  margin: 0 auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 90, 200, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rb-copy-text {
  color: #7b7f9f;
  font-size: 13px;
  margin: 0 !important;
}

.rb-feature-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.rb-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #37415f;
}

.rb-feature-item i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.rb-feature-item:nth-child(1) i {
  background: #e7fff4;
  color: #14c98b;
}
.rb-feature-item:nth-child(2) i {
  background: #eef1ff;
  color: #4f67ff;
}
.rb-feature-item:nth-child(3) i {
  background: #eefcff;
  color: #34c7e7;
}
.rb-feature-item:nth-child(4) i {
  background: #f1f3ff;
  color: #5f6dff;
}

/* ============================================
   17. DARK MODE — FOOTER
============================================ */
body.dark .info {
  background: linear-gradient(180deg, #070c1a 0%, #020408 100%);
}

body.dark .rb-top-accent {
  background: linear-gradient(90deg, #4b3dff 0%, #6d5fff 50%, #2a2060 100%);
  opacity: 0.8;
}

body.dark .rb-footer-grid {
  border-bottom-color: rgba(165, 180, 252, 0.1);
}

body.dark .rb-logo-area img,
body.dark .logos {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

body.dark .rb-brand-text {
  color: #94a3b8;
}

body.dark .rb-social-row a {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(165, 180, 252, 0.2);
}

body.dark .rb-social-row a:hover {
  color: #a5b4fc;
  background: rgba(75, 61, 255, 0.15);
  border-color: #a5b4fc;
}

body.dark .rb-link-column h3 {
  color: #f1f5f9;
}

body.dark .rb-link-column ul li a {
  color: #94a3b8;
}

body.dark .rb-link-column ul li a:hover {
  color: #a5b4fc;
}

body.dark .rb-copy-text {
  color: #94a3b8;
}

body.dark .rb-feature-item {
  color: #e2e8f0;
}

body.dark .rb-feature-item span {
  color: #e2e8f0;
}

body.dark .rb-feature-item:nth-child(1) i {
  background: rgba(20, 201, 139, 0.15);
  color: #4ade80;
}
body.dark .rb-feature-item:nth-child(2) i {
  background: rgba(79, 103, 255, 0.15);
  color: #818cf8;
}
body.dark .rb-feature-item:nth-child(3) i {
  background: rgba(52, 199, 231, 0.15);
  color: #67e8f9;
}
body.dark .rb-feature-item:nth-child(4) i {
  background: rgba(95, 109, 255, 0.15);
  color: #a5b4fc;
}

/* ============================================
   18. RESPONSIVE — FOOTER MEDIA QUERIES
============================================ */

/* --- ≤ 1100px --- */
@media (max-width: 1100px) {
  .rb-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .rb-brand-box {
    grid-column: 1 / -1;
    align-items: center;
  }
  .rb-brand-text {
    text-align: center;
  }
  .rb-social-row {
    justify-content: center;
  }
}

/* --- 768px to 1024px (Tablet) --- */
@media (min-width: 769px) and (max-width: 1100px) {
  .rb-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-areas:
      "brand brand brand brand"
      "legal tools company resources" !important;
    justify-items: center !important;
    align-items: start !important;
    text-align: center !important;
    gap: 40px 20px !important;
  }
  .rb-brand-box {
    grid-area: brand !important;
    width: 100% !important;
    max-width: 500px !important;
    justify-self: center !important;
    text-align: center !important;
    align-items: center !important;
    margin-bottom: 20px;
  }
  .rb-brand-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .rb-logo-area,
  .rb-social-row {
    justify-content: center !important;
  }
  .rb-link-column:nth-child(2) {
    grid-area: legal !important;
  }
  .rb-link-column:nth-child(3) {
    grid-area: tools !important;
  }
  .rb-link-column:nth-child(4) {
    grid-area: company !important;
  }
  .rb-link-column:nth-child(5) {
    grid-area: resources !important;
  }
  .rb-link-column {
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }
  .rb-link-column ul {
    align-items: center !important;
  }
}

/* --- 769px to 900px --- */
@media (min-width: 769px) and (max-width: 900px) {
  .rb-footer-grid {
    gap: 24px 14px !important;
  }
  .rb-link-column ul li a {
    font-size: 12px !important;
  }
  .rb-link-column h3 {
    font-size: 10px !important;
  }
}

/* --- ≤ 768px (mobile) --- */
@media (max-width: 768px) {
  .info {
    padding: 0 14px 18px;
  }
  .rb-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .rb-feature-row {
    gap: 18px;
    justify-content: center;
  }
  .rb-footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .rb-brand-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .rb-brand-text {
    text-align: center !important;
  }
  .rb-link-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .rb-link-column ul li a:hover {
    padding-left: 0;
  }
  .rb-logo-area {
    justify-content: center !important;
  }
  .rb-social-row {
    justify-content: center !important;
  }
  .rb-link-column h3 {
    text-align: center !important;
    width: 100%;
  }
  .rb-link-column ul {
    align-items: center !important;
  }
}

/* --- ≤ 995px — hide 4th feature item --- */
@media (max-width: 995px) {
  .rb-feature-item:nth-child(4) {
    display: none;
  }
}

/* --- ≤ 798px --- */
@media (max-width: 800px) {
  .rb-footer-bottom {
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .rb-feature-row {
    margin: auto;
    justify-content: center;
  }
  .rb-feature-item:nth-child(4) {
    display: flex;
  }
  .rb-copy-text {
    text-align: center !important;
    display: block;
    margin: auto !important;
  }
}

/* --- ≤ 690px --- */
@media (max-width: 690px) {
  .rb-feature-item:nth-child(4) {
    display: none;
  }
}

/* --- ≤ 480px --- */
@media (max-width: 480px) {
  .info {
    padding: 0 10px 16px;
  }
  .rb-brand-box,
  .rb-link-column {
    align-items: center !important;
  }
  .rb-brand-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* --- ≤ 320px --- */
@media (max-width: 320px) {
  .info {
    padding: 0 8px 12px !important;
  }
  .rb-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    text-align: center;
  }
  .rb-brand-box,
  .rb-link-column {
    align-items: center !important;
    text-align: center !important;
  }
  .logos {
    width: 140px !important;
    height: 40px !important;
  }
  .rb-brand-text {
    font-size: 11px !important;
  }
  .rb-social-row {
    gap: 8px !important;
    justify-content: center !important;
  }
  .rb-social-row a {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
  .rb-link-column h3 {
    font-size: 10px !important;
    margin-bottom: 10px !important;
  }
  .rb-link-column ul li a {
    font-size: 11px !important;
  }
  .rb-footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 0 !important;
  }
  .rb-copy-text {
    font-size: 10px !important;
  }
  .rb-feature-row {
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .rb-feature-item {
    font-size: 10px !important;
    gap: 6px !important;
  }
  .rb-feature-item i {
    width: 22px !important;
    height: 22px !important;
    font-size: 9px !important;
  }
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
}

/* ============================================
   LARGE SCREEN MEDIA QUERIES — FOOTER
============================================ */

@media (min-width: 1360px) {
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 1440px;
  }
  .rb-footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 42px;
  }
  .rb-link-column h3 {
    font-size: 11px;
  }
  .rb-link-column ul li a {
    font-size: 14px;
  }
}

@media (min-width: 1600px) {
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 1600px;
  }
  .rb-footer-grid {
    gap: 48px;
  }
}

@media (min-width: 1920px) {
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 1820px;
  }
  .rb-footer-grid {
    gap: 54px;
  }
}

@media (min-width: 2560px) {
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 2200px;
  }
  .rb-footer-grid {
    gap: 60px !important;
    padding-top: 50px !important;
    padding-bottom: 42px !important;
  }
  .rb-brand-text {
    font-size: 20px !important;
    line-height: 1.9 !important;
  }
  .rb-link-column h3 {
    font-size: 14px !important;
    margin-bottom: 22px !important;
  }
  .rb-link-column ul li a {
    font-size: 18px !important;
  }
  .rb-social-row a {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
  }
  .rb-copy-text {
    font-size: 18px !important;
  }
  .rb-feature-item {
    font-size: 18px !important;
    gap: 14px !important;
  }
  .rb-feature-item i {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }
  .logos {
    width: 260px !important;
    height: 72px !important;
  }
}

@media (min-width: 798px) and (max-width: 884px) {
  .rb-feature-row {
    gap: 18px !important;
  }
}

/* ============================================
   16. SEARCH DROPDOWN
============================================ */
.search-results {
  position: fixed;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
  display: none;
  border: 1px solid #eee;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 20px;
}

.search-result-item {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.search-result-item:first-child {
  border-radius: 16px 16px 0 0;
}

.search-result-item:last-child {
  border-radius: 0 0 16px 16px;
}

.search-result-item:only-child {
  border-radius: 16px;
}

.search-result-item:hover {
  background: #f4f7fb;
  color: #6c63ff;
}

.search-result-item i {
  color: #e5322d;
  width: 18px;
  text-align: center;
}

.search-no-results {
  padding: 16px 20px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* ============================================
   17. DARK MODE
============================================ */
body.dark {
  background: #0f172a;
  color: #e2e8f0;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4 {
  color: #f1f5f9;
}

body.dark h2 {
  color: #a5b4fc;
}

body.dark p {
  color: #94a3b8;
}

/* Navbar */
body.dark .navbar {
  background: rgba(30, 41, 59, 0.95);
  border-bottom-color: #334155;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark .logo {
  filter: brightness(0) invert(1);
}

body.dark .cat a,
body.dark .tools-btn,
body.dark .categories-btn,
body.dark .nav-tool a {
  color: #e2e8f0 !important;
}

body.dark .tools-btn svg,
body.dark .categories-btn svg {
  stroke: #e2e8f0;
}

body.dark .tools-btn:hover,
body.dark .categories-btn:hover,
body.dark .nav-tool a:hover {
  background: #334155;
  color: #a5b4fc !important;
}

/* Dropdown Menus */
body.dark .tools-menu,
body.dark .categories-menu {
  background: #1e293b;
  border: 1px solid #334155;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

body.dark .tools-column a,
body.dark .category-box a {
  color: #e2e8f0;
}

body.dark .tools-column a i,
body.dark .category-box a i {
  color: #f87171;
}

body.dark .tools-column a:hover,
body.dark .category-box a:hover {
  background: #334155;
  color: #e2e8f0;
}

body.dark .category-box h3 {
  color: #f1f5f9;
  border-bottom-color: #334155;
}

/* Theme Switch */
body.dark .theme-switch {
  background: linear-gradient(145deg, #1d4ed8, #0f172a);
  box-shadow:
    inset 1px 1px 4px rgba(255, 255, 255, 0.04),
    inset -1px -1px 4px rgba(0, 0, 0, 0.4),
    0 3px 10px rgba(37, 99, 235, 0.25);
}

body.dark .theme-text {
  color: #dbeafe;
}

body.dark .slider {
  background: #2563eb;
  color: white;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.4);
}

/* Hero */
body.dark .hero {
  background-image: none !important;
  background-color: #0f172a;
}

body.dark .search-wrapper {
  background: #1e293b;
  border-color: #4b5563;
}

body.dark .search-wrapper input {
  color: #f1f5f9;
}

body.dark .search-wrapper input::placeholder {
  color: #64748b;
}

body.dark .search-box button {
  background: #4f46e5;
}

/* Tool Cards */
body.dark a.tool-card {
  background: #1e293b;
  border-color: #334155;
}

body.dark a.tool-card:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

body.dark .tool-content h3 {
  color: #f1f5f9;
}

body.dark .tool-content p {
  color: #94a3b8;
}

body.dark .arrow {
  color: #64748b;
}

body.dark .icon-box {
  background: #1e293b;
}

/* Icon Boxes Dark */
body.dark .icon-box.red {
  background: rgba(255, 75, 110, 0.15);
  color: #ff7b93;
}
body.dark .icon-box.orange {
  background: rgba(255, 122, 26, 0.15);
  color: #ffa04d;
}
body.dark .icon-box.purple {
  background: rgba(122, 92, 255, 0.15);
  color: #a78bfa;
}
body.dark .icon-box.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}
body.dark .icon-box.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
body.dark .icon-box.yellow {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

/* View More Button */
body.dark .view-tools {
  color: #a5b4fc;
}

body.dark .view-tools:hover {
  background: #334155;
}

/* Features Box */
body.dark .features-box {
  background: #1e293b;
}

body.dark .feature-item .icon-wrap.purple {
  background: rgba(122, 92, 255, 0.15);
  color: #a78bfa;
}
body.dark .feature-item .icon-wrap.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
body.dark .feature-item .icon-wrap.red {
  background: rgba(255, 92, 99, 0.15);
  color: #ff7b93;
}

body.dark .feature-content h3 {
  color: #f1f5f9;
}

body.dark .feature-content p {
  color: #94a3b8;
}

/* Product Cards */
body.dark .hero-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark .hero-title,
body.dark .right-title {
  color: #f1f5f9;
}

body.dark .hero-title span,
body.dark .right-title span {
  color: #a5b4fc;
}

body.dark .hero-desc,
body.dark .right-desc {
  color: #94a3b8;
}

body.dark .badge {
  background: #312e81;
  color: #a5b4fc;
}

body.dark .list-item {
  color: #e2e8f0;
}

body.dark .check {
  background: #312e81;
  color: #a5b4fc;
}

/* Quality Section */
body.dark .card {
  background: #1e293b;
  border-color: #334155;
}

body.dark .heading {
  color: #f1f5f9;
}

body.dark .line {
  background: #6366f1;
}

body.dark .feature-box {
  background: #1e293b;
  border-color: #334155;
}

body.dark .feature-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body.dark .feature-box .icon-wrap.purple {
  background: rgba(122, 92, 255, 0.15);
  color: #a78bfa;
}
body.dark .feature-box .icon-wrap.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
body.dark .feature-box .icon-wrap.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}
body.dark .feature-box .icon-wrap.orange {
  background: rgba(255, 139, 19, 0.15);
  color: #ffa04d;
}
body.dark .feature-box .icon-wrap.pink {
  background: rgba(255, 77, 141, 0.15);
  color: #ff7b93;
}
body.dark .feature-box .icon-wrap.lime {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

body.dark .step {
  background: #1e293b;
  border-color: #334155;
}

body.dark .step-icon.purple {
  background: rgba(122, 92, 255, 0.15);
  color: #a78bfa;
}
body.dark .step-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
body.dark .step-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

body.dark .step h4 {
  color: #f1f5f9;
}

body.dark .number {
  background: #4f46e5;
}

body.dark .steps .arrow i {
  color: #64748b;
}

/* Bar */
body.dark .bar {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  border-top: 1px solid #334155;
}

body.dark .item:not(:last-child)::after {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

body.dark .bar .icon {
  background: transparent;
}

body.dark .bar .icon.purple {
  color: #a78bfa;
}
body.dark .bar .icon.green {
  color: #4ade80;
}
body.dark .bar .icon.orange {
  color: #ffa04d;
}
body.dark .bar .icon.blue {
  color: #60a5fa;
}

body.dark .txt h3 {
  color: #f1f5f9;
}

body.dark .txt p {
  color: #94a3b8;
}

body.dark .left-title::after {
  background: #a5b4fc;
}

/* Footer */
body.dark .info {
  background: linear-gradient(180deg, #070c1a 0%, #020408 100%);
}

body.dark .rb-logo-area img,
body.dark .logos {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

body.dark .rb-brand-text {
  color: #94a3b8;
}

body.dark .rb-social-row a {
  color: #e2e8f0;
}

body.dark .rb-social-row a:hover {
  color: #a5b4fc;
}

body.dark .rb-link-column h3 {
  color: #f1f5f9;
}

body.dark .rb-link-column ul li a {
  color: #94a3b8;
}

body.dark .rb-link-column ul li a:hover {
  color: #a5b4fc;
}

body.dark .rb-copy-text {
  color: #94a3b8;
}

body.dark .rb-feature-item {
  color: #e2e8f0;
}

body.dark .rb-feature-item span {
  color: #e2e8f0;
}

body.dark .rb-feature-item:nth-child(1) i {
  background: rgba(20, 201, 139, 0.15);
  color: #4ade80;
}
body.dark .rb-feature-item:nth-child(2) i {
  background: rgba(79, 103, 255, 0.15);
  color: #818cf8;
}
body.dark .rb-feature-item:nth-child(3) i {
  background: rgba(52, 199, 231, 0.15);
  color: #67e8f9;
}
body.dark .rb-feature-item:nth-child(4) i {
  background: rgba(95, 109, 255, 0.15);
  color: #a5b4fc;
}

/* Search Dropdown Dark */
body.dark .search-results {
  background: #1e2230;
  border-color: #2a2e3f;
}

body.dark .search-result-item {
  color: #e5e7eb;
}

body.dark .search-result-item:hover {
  background: #282d3e;
  color: #a5b4fc;
}

body.dark .search-no-results {
  color: #777;
}

body.dark .search-results::-webkit-scrollbar-track {
  background: #1e293b;
}

body.dark .search-results::-webkit-scrollbar-thumb {
  background-color: #475569;
  border-radius: 20px;
}

body.dark .search-results::-webkit-scrollbar-thumb:hover {
  background-color: #64748b;
}

/* ============================================
   FEATURE BOXES - DARK MODE
============================================ */

body.dark .feature-box {
  background: #1e293b;
  border-color: #334155;
}

body.dark .feature-box h3 {
  color: #f1f5f9;
}

body.dark .feature-box p {
  color: #94a3b8;
}

body.dark .feature-box:hover {
  border-color: #475569;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Purple */
body.dark .feature-box .icon-wrap.purple {
  background: rgba(122, 92, 255, 0.15);
  color: #a78bfa;
}

/* Green */
body.dark .feature-box .icon-wrap.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* Blue */
body.dark .feature-box .icon-wrap.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

/* Pink */
body.dark .feature-box .icon-wrap.pink {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
}

/* Red */
body.dark .feature-box .icon-wrap.red {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* ============================================
   17. DARK MODE — NX72 SECTION
============================================ */

/* Cards */
body.dark .nx72-card {
  background: #1e293b;
  border-color: #334155;
}

body.dark .nx72-left::before {
  background-image: radial-gradient(
    rgba(165, 180, 252, 0.04) 1px,
    transparent 1px
  );
}

/* Pill Badge */
body.dark .nx72-pill {
  background: #312e81;
  color: #a5b4fc;
}

body.dark .nx72-pill::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

/* Left Card — Heading */
body.dark .nx72-left h2 {
  color: #f1f5f9;
}

body.dark .nx72-left h2 span {
  color: #a5b4fc;
}

/* Left Card — Description */
body.dark .nx72-left p {
  color: #94a3b8;
}

/* Feature Boxes */
body.dark .nx72-box {
  border-color: #334155;
}

body.dark .nx72-box:nth-child(1)::before {
  background: linear-gradient(
    135deg,
    rgba(122, 92, 255, 0.02),
    rgba(122, 92, 255, 0.06)
  );
}
body.dark .nx72-box:nth-child(2)::before {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.02),
    rgba(59, 130, 246, 0.06)
  );
}
body.dark .nx72-box:nth-child(3)::before {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.02),
    rgba(34, 197, 94, 0.06)
  );
}
body.dark .nx72-box:nth-child(4)::before {
  background: linear-gradient(
    135deg,
    rgba(255, 139, 19, 0.02),
    rgba(255, 139, 19, 0.06)
  );
}

body.dark .nx72-box:nth-child(1):hover {
  border-color: rgba(122, 92, 255, 0.3);
  box-shadow: 0 8px 24px rgba(122, 92, 255, 0.1);
}
body.dark .nx72-box:nth-child(2):hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}
body.dark .nx72-box:nth-child(3):hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
}
body.dark .nx72-box:nth-child(4):hover {
  border-color: rgba(255, 139, 19, 0.3);
  box-shadow: 0 8px 24px rgba(255, 139, 19, 0.1);
}

body.dark .nx72-box strong {
  color: #f1f5f9;
}

body.dark .nx72-box span {
  color: #94a3b8;
}

/* Icon Containers */
body.dark .nx72-icon.purple {
  background: rgba(122, 92, 255, 0.15);
  color: #a78bfa;
  box-shadow: 0 4px 14px rgba(122, 92, 255, 0.1);
}

body.dark .nx72-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.1);
}

body.dark .nx72-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.1);
}

body.dark .nx72-icon.orange {
  background: rgba(255, 139, 19, 0.15);
  color: #ffa04d;
  box-shadow: 0 4px 14px rgba(255, 139, 19, 0.1);
}

/* Right Card — Top */
body.dark .nx72-small {
  background: #312e81;
  color: #a5b4fc;
}

body.dark .nx72-right h3 {
  color: #f1f5f9;
}

body.dark .nx72-right h3 span {
  color: #a5b4fc;
}

/* Check Points */
body.dark .nx72-point {
  border-color: #334155;
  color: #e2e8f0;
}

body.dark .nx72-point:hover {
  background: #0f172a;
  border-color: #475569;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

body.dark .nx72-point i {
  background: rgba(122, 92, 255, 0.15);
  color: #a5b4fc;
}

body.dark .nx72-point:hover i {
  background: rgba(122, 92, 255, 0.25);
}

/* Stats */
body.dark .nx72-stat {
  border-color: #334155;
}

body.dark .nx72-stat:hover {
  background: #0f172a;
  border-color: #475569;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.dark .nx72-stat strong {
  color: #a5b4fc;
}

body.dark .nx72-stat span {
  color: #94a3b8;
}

/* ============================================
   18. RESPONSIVE
============================================ */

/* --- ≤ 1400px --- */
/* --- ≤ 1200px --- */
/* --- ≤ 1100px --- */
/* --- ≤ 1024px --- */
/* --- ≤ 1000px --- */
/* --- ≤ 992px --- */
/* --- ≤ 980px --- */
/* --- ≤ 950px --- */
/* --- ≤ 900px --- */
/* --- ≤ 768px --- */
/* --- ≤ 650px --- */
/* --- ≤ 620px --- */
/* --- ≤ 520px --- */
/* --- ≤ 480px --- */
/* --- ≤ 380px --- */
/* --- Retina / High DPI --- */
/* =========================
   TABLET-ONLY FEATURE BOXES
========================= */

/* Hide the extra boxes on all screen sizes by default */
.tablet-only-box {
  display: none;
}

/* Show the extra boxes ONLY between 768px and 1000px */
.search {
  overflow: hidden; /* prevents horizontal scroll */
}

.search .hero {
  position: relative;
  overflow: visible; /* lets icons show fully */
}

.search .hero .search-bg-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px !important; /* fixed, never scales */
  aspect-ratio: 1000 / 270;
  z-index: 0;
  pointer-events: none;
}

.search .hero .search-bg-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.search .hero > *:not(.search-bg-container) {
  position: relative;
  z-index: 1;
}

/* Make the SVG feel lighter and more elegant in dark mode */
body.dark .search-bg-container svg {
  opacity: 0.95;
  filter: saturate(0.95) brightness(0.98);
}

/* Decorative dotted lines and small shapes */
body.dark .search-bg-container svg path[stroke="#b493eb"] {
  stroke: rgb(92, 62, 163) !important;
}

body.dark .search-bg-container svg path[stroke="#5c3ea3"] {
  stroke: rgb(92, 62, 163) !important;
}

/* Icon tiles */
body.dark .search-bg-container .icon-wrap.red rect {
  fill: rgba(244, 63, 94, 0.14) !important;
}
body.dark .search-bg-container .icon-wrap.blue rect {
  fill: rgba(59, 130, 246, 0.14) !important;
}
body.dark .search-bg-container .icon-wrap.green rect {
  fill: rgba(16, 185, 129, 0.14) !important;
}
body.dark .search-bg-container .icon-wrap.orange rect {
  fill: rgba(245, 158, 11, 0.14) !important;
}

/* Icon colors */
body.dark .search-bg-container .icon-wrap.red i {
  color: #fb7185 !important;
}
body.dark .search-bg-container .icon-wrap.blue i {
  color: #60a5fa !important;
}
body.dark .search-bg-container .icon-wrap.green i {
  color: #4ade80 !important;
}
body.dark .search-bg-container .icon-wrap.orange i {
  color: #fbbf24 !important;
}

/* --- 920px to 1100px: 4 columns --- */
/* --- 768px to 920px: 3 columns --- */
/* Hide SVG on desktop */
.btn-arrow svg {
  display: none;
}

/* Desktop (>450px) */
/* Mobile (≤450px) */
body.dark .btn-arrow svg {
  stroke: #a5b4fc;
}

body.dark .btn-arrow {
  color: #a5b4fc;
}

body.dark .clear-btn {
  background: #334155;
  color: #94a3b8;
}

body.dark .clear-btn:hover {
  background: #475569;
  color: #e2e8f0;
}

/* Large tablets */
/* Tablets */
/* Phones */
/* ============================================
   19. LARGE SCREEN OPTIMIZATION
   1360px → 4K / Ultrawide
   Keeps 1358px and below unchanged
============================================ */

/* Global fluid tuning for bigger displays */
/* Make the hero background responsive at all sizes */
.search .hero .search-bg-container {
  max-width: none !important;
  aspect-ratio: 1000 / 270;
}

/* ============================================
   1360px → 1600px
   Show only first 6 boxes (3 × 2)
============================================ */
/* ============================================
   1601px+
   Show all 8 boxes (4 × 2)
============================================ */
/* ============================================
   FEATURE ICON BOX
============================================ */

.feature-box .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-box:hover .icon-wrap {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(90, 92, 240, 0.15);
}

/* Large screens */
/* Base */
.hero .search-bg-container {
  width: min(100%, 1000px);
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.rb-brand-box {
  justify-self: start;
  display: flex;
  flex-direction: column;
}

.rb-link-column {
  display: flex;
  flex-direction: column;
}

.rb-link-column ul {
  display: flex;
  flex-direction: column;
}

.rb-logo-area {
  justify-content: center;
}

.rb-social-row {
  justify-content: center;
}

/* Tablet range (600px - 1100px) */
/* Mobile (≤768px) - already has center but reinforcing */
/* Small mobile (≤480px) */
/* Extra small (≤320px) */
/* ============================================
   TABLET FOOTER LAYOUT
   First row: Brand (centered)
   Second row: All 4 link columns
============================================ */

/* Slightly smaller tablets */
/* ============================================
   MOBILE FOOTER - Changed from 768px to 767px
   to prevent conflict with tablet query
============================================ */

/* ============================================
   2560px+ - INCREASE FOOTER INFO TEXT SIZES
============================================ */

.search .hero .search-bg-container {
  width: min(100%, 1000px);
}

/* ============================================
1360px - 1600px - INCREASE SEARCH BG CONTAINER
============================================ */

/* ============================================
1360px - 1600px - AUTO SCALE SEARCH BG CONTAINER
============================================ */

/* ============================================
   RESPONSIVE MEDIA QUERIES (moved to bottom)
============================================ */

@media (max-width: 1100px) {
  .nx72-wrap {
    grid-template-columns: 1fr;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .nx72-card {
    padding: 24px;
  }

  .nx72-features,
  .nx72-points {
    grid-template-columns: 1fr;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: 28px;
  }

  .nx72-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 17px;
  }

  .nx72-box {
    padding: 14px 12px;
  }
}

@media (max-width: 480px) {
  .body {
    padding: 16px 12px;
  }

  .nx72-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: 24px;
  }

  .nx72-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .nx72-stat {
    padding: 14px 8px;
  }

  .nx72-stat strong {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .nx72-card,
  .nx72-box,
  .nx72-point,
  .nx72-stat {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1400px) {
  .features-box {
    padding: 20px 25px;
  }

  .features-grid {
    gap: 60px 40px;
    justify-content: space-evenly;
  }
}

@media (max-width: 1200px) {
  .body {
    padding: 0 40px;
  }
}

@media (max-width: 1100px) {
  .logo {
    width: 135px;
  }

  .tools-menu,
  .categories-menu {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  .rb-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .rb-brand-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .features-box {
    padding: 22px 25px;
    margin: 40px auto;
  }

  .features-grid {
    gap: 40px 30px;
    justify-content: center;
  }

  .feature-content h3 {
    font-size: 14px;
  }

  .feature-content p {
    font-size: 12px;
    max-width: 200px;
  }

  .feature-item .icon-wrap {
    width: 52px;
    height: 52px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .body {
    padding: 0 25px;
  }
}

@media (max-width: 980px) {
  .bar .content {
    justify-content: center;
    gap: 16px;
    padding: 10px 20px;
  }

  .item {
    flex: 1 1 45%;
  }
}

@media (max-width: 950px) {
  .quick-tools {
    display: none;
  }
}

@media (max-width: 900px) {
  .navbar {
    height: 70px;
  }

  .cat {
    gap: 18px;
  }

  .cat a {
    font-size: 13px;
  }

  .logo {
    width: 120px;
    height: 65px;
  }

  .theme-switch {
    width: 125px;
    height: 36px;
  }

  .slider {
    width: 28px;
    height: 28px;
    top: 4px;
    left: 4px;
  }

  .slider i {
    font-size: 13px;
  }

  .theme-text {
    font-size: 11px;
  }

  .theme-switch:not(.active) .theme-text {
    transform: translate(-50%, -50%) translateX(10px);
  }

  .theme-switch.active .theme-text {
    transform: translate(-50%, -50%) translateX(-12px);
  }

  .theme-switch.active .slider {
    left: 93px;
  }
}

@media (max-width: 768px) {
  .body {
    padding: 0 18px;
  }

  .navbar {
    height: 62px;
    padding: 0 12px;
    justify-content: space-between;
  }

  .cat {
    display: none !important;
  }

  .logo {
    width: 110px;
    height: 50px;
    margin-left: 0;
  }

  .theme-switch {
    width: 100px;
    height: 32px;
    margin-right: 0;
    margin-left: auto;
  }

  .slider {
    width: 24px;
    height: 24px;
    top: 4px;
    left: 4px;
  }

  .slider i {
    font-size: 11px;
  }

  .theme-text {
    font-size: 10px;
  }

  .theme-switch:not(.active) .theme-text {
    transform: translate(-50%, -50%) translateX(10px);
  }

  .theme-switch.active .theme-text {
    transform: translate(-50%, -50%) translateX(-10px);
  }

  .theme-switch.active .slider {
    left: 72px;
  }

  /* Hamburger Icon */
  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    margin-right: 10px;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1010;
  }

  .hamburger-line {
    display: block;
    width: 22px;
    height: 2.4px;
    background: #222;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }

  .menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7.4px) rotate(45deg);
  }

  .menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.4px) rotate(-45deg);
  }

  body.dark .hamburger-line {
    background: #e2e8f0;
  }

  /* Full-Page Sidebar */
  .mobile-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .mobile-sidebar.active {
    transform: translateX(0);
  }

  body.dark .mobile-sidebar {
    background: #1e293b;
  }

  .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    height: 62px;
    min-height: 62px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
  }

  body.dark .sidebar-header {
    border-bottom-color: #334155;
    background: #1e293b;
  }

  .sidebar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .sidebar-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
  }

  body.dark .sidebar-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  .sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    transition: background 0.2s ease;
  }

  .sidebar-close:hover {
    background: #f5f5f5;
  }

  body.dark .sidebar-close:hover {
    background: #334155;
  }

  .close-line {
    display: block;
    width: 20px;
    height: 2.6px;
    background: #333;
    border-radius: 2px;
    position: absolute;
  }

  .close-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .close-line:nth-child(2) {
    transform: rotate(-45deg);
  }

  body.dark .close-line {
    background: #e2e8f0;
  }

  .sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0 40px;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar-body::-webkit-scrollbar {
    width: 4px;
  }

  .sidebar-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
  }

  body.dark .sidebar-body::-webkit-scrollbar-thumb {
    background: #475569;
  }

  .sidebar-category {
    padding: 4px 0;
  }

  .sidebar-category + .sidebar-category {
    border-top: 1px solid #f0f0f0;
  }

  body.dark .sidebar-category + .sidebar-category {
    border-top-color: #2a3040;
  }

  .sidebar-category h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    padding: 18px 26px 8px;
    margin: 0;
  }

  body.dark .sidebar-category h3 {
    color: #64748b;
  }

  .sidebar-category a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 26px;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      padding-left 0.2s ease;
  }

  .sidebar-category a:hover {
    background: #f7f7fb;
    color: #e5322d;
    padding-left: 30px;
  }

  body.dark .sidebar-category a {
    color: #e2e8f0;
  }

  body.dark .sidebar-category a:hover {
    background: #282d3e;
    color: #f87171;
  }

  .sidebar-category a i {
    width: 22px;
    font-size: 18px;
    color: #e5322d;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .sidebar-category a:hover i {
    transform: scale(1.12);
  }

  body.dark .sidebar-category a i {
    color: #f87171;
  }

  body.dark .sidebar-category a:hover i {
    color: #fca5a5;
  }

  .sidebar-category a span {
    flex: 1;
  }

  /* Tools Grid Mobile */
  .tools-section {
    padding: 20px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  /* Features Box Mobile */
  .features-box {
    padding: 20px 18px;
    margin: 30px auto;
    border-radius: 14px;
  }

  .features-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .feature-item {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .feature-content h3 {
    font-size: 13px;
  }

  .feature-content p {
    font-size: 12px;
    max-width: 100%;
  }

  .feature-item .icon-wrap {
    width: 48px;
    height: 48px;
  }

  /* Quality Section Mobile */
  .card {
    padding: 24px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 25px;
  }

  .steps {
    align-items: center;
  }

  .steps .arrow {
    margin: 8px 0;
  }

  /* Bar Mobile */
  .bar .content {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .item {
    width: 100%;
  }

  .item::after {
    display: none;
  }

  .txt p {
    max-width: 100%;
  }

  /* Footer Mobile */
  .info {
    padding: 0 14px 18px;
  }

  .rb-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .rb-feature-row {
    gap: 18px;
  }
}

@media (max-width: 650px) {
  .card {
    padding: 24px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 25px;
  }

  .steps {
    align-items: center;
  }

  .steps .arrow {
    margin: 8px 0;
  }
}

@media (max-width: 620px) {
  .bar .content {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .item {
    width: 100%;
  }

  .item::after {
    display: none;
  }

  .txt p {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .body {
    padding: 0 12px;
  }

  .info {
    padding: 0 10px 16px;
  }

  .features-box {
    padding: 16px 14px;
  }

  .features-grid {
    gap: 20px 0;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-content h3 {
    font-size: 12px;
  }

  .feature-content p {
    font-size: 11px;
  }

  .feature-item .icon-wrap {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .body {
    padding: 0 12px;
  }

  .navbar {
    height: 58px;
    padding: 0 10px;
  }

  .logo {
    width: 95px;
    height: 44px;
  }

  .theme-switch {
    width: 88px;
    height: 28px;
  }

  .slider {
    width: 20px;
    height: 20px;
    top: 4px;
    left: 4px;
  }

  .slider i {
    font-size: 10px;
  }

  .theme-text {
    font-size: 9px;
  }

  .theme-switch:not(.active) .theme-text {
    transform: translate(-50%, -50%) translateX(10px);
  }

  .theme-switch.active .theme-text {
    transform: translate(-50%, -50%) translateX(-10px);
  }

  .theme-switch.active .slider {
    left: 64px;
  }

  .hamburger-line {
    width: 19px;
    height: 2.2px;
  }

  .menu-btn {
    gap: 4.5px;
    width: 34px;
    height: 34px;
    margin-right: 6px;
  }

  /* Sidebar Small Mobile */
  .sidebar-header {
    padding: 0 16px;
    height: 56px;
    min-height: 56px;
  }

  .sidebar-logo-img {
    height: 28px;
  }

  .sidebar-close {
    width: 36px;
    height: 36px;
  }

  .close-line {
    width: 18px;
    height: 2.4px;
  }

  .sidebar-category a {
    font-size: 15px;
    padding: 11px 20px;
    gap: 12px;
  }

  .sidebar-category a i {
    font-size: 16px;
    width: 20px;
  }

  .sidebar-category h3 {
    font-size: 10px;
    padding: 14px 20px 6px;
  }
}

@media (max-width: 380px) {
  .body {
    padding: 0 10px;
  }

  .item {
    gap: 10px;
    padding: 8px;
  }

  .bar .icon {
    width: 38px;
    height: 38px;
  }

  .txt h3 {
    font-size: 11px;
  }

  .txt p {
    font-size: 9px;
  }
}

@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5) {
  .hero {
    background-image: none;
  }
}

@media (min-width: 769px) and (max-width: 1044px) {
  .tablet-only-box {
    display: flex; /* Matches your .feature-box flex layout */
    flex-direction: column;
    align-items: center;
  }

  /* Also ensure the grid is set to 2 columns in this range 
     so the boxes fill the space nicely (2 columns x 4 rows) */
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .search .hero .search-bg-container {
    display: none;
  }
}

@media (min-width: 921px) and (max-width: 1310px) {
  .tools-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: 160px;
  }
}

@media (min-width: 769px) and (max-width: 996px) {
  .tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 160px;
  }
}

@media (min-width: 450px) and (max-width: 1100px) {
  .tools-top {
    flex-direction: row !important;
    align-items: center !important;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    max-height: none;
  }
}

@media (min-width: 744px) and (max-width: 1100px) {
  .wrapper {
    flex-direction: column;
    gap: 0px !important;
  }

  .card {
    width: 100%;
    min-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1044px) {
  .features .feature-box:nth-child(7),
  .features .feature-box:nth-child(8) {
    display: none;
  }
}

@media (max-width: 560px) {
  .features-box {
    padding: 20px;
  }

  .features-grid {
    justify-content: center;
    align-items: center;
  }

  .feature-item {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .feature-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }

  .feature-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .steps {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .step {
    flex: 1;
    min-width: 0;
  }

  .fast {
    display: block;
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 20px auto 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .steps .arrow {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .steps {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
  }

  .step {
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }

  .steps .arrow {
    display: flex !important;
  }

  .fast {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .fast {
    width: 90%;
    max-width: 500px;
    height: auto;
  }
}

@media (max-width: 500px) {
  .steps {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .step {
    width: 100%;
  }

  .steps .arrow {
    transform: rotate(90deg);
  }

  .fast {
    display: none;
  }
}

@media (max-width: 744px) {
  .wrapper {
    flex-direction: column;
    gap: 0px !important;
  }
}

@media (min-width: 550px) and (max-width: 1115px) {
  .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .item {
    position: relative;
    padding-right: 14px;
  }

  /* vertical divider like right border */
  .item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(216, 219, 245, 0.95),
      transparent
    );
  }
}

@media (max-width: 550px) {
  .content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .item {
    width: 100%;
  }

  .item::after {
    display: none;
  }
}

@media (min-width: 600px) and (max-width: 1100px) {
  .rb-footer-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 10px;
  }

  .rb-brand-box,
  .rb-link-column {
    flex: 0 1 auto;
    width: auto;
    white-space: nowrap;
    font-size: 10px; /* reduces width */
  }

  .rb-link-column ul li a {
    font-size: 12px !important;
  }
}

@media (max-width: 768px) {
  .rb-footer-grid {
    display: grid; /* 🔥 THIS WAS MISSING */
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "link1"
      "link2"
      "link3"
      "link4"
      "link5";
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .rb-brand-box,
  .rb-link-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .rb-brand-box {
    grid-area: brand;
  }

  .rb-link-column:nth-of-type(1) {
    grid-area: link1;
  }
  .rb-link-column:nth-of-type(2) {
    grid-area: link2;
  }
  .rb-link-column:nth-of-type(3) {
    grid-area: link3;
  }
  .rb-link-column:nth-of-type(4) {
    grid-area: link4;
  }
  .rb-link-column:nth-of-type(5) {
    grid-area: link5;
  }
  .rb-link-column ul li a {
    font-size: 14px !important;
  }
}

@media (max-width: 995px) {
  .rb-feature-item:nth-child(4) {
    display: none;
  }
}

@media (max-width: 798px) {
  .rb-footer-bottom {
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .rb-feature-item:nth-child(4) {
    display: flex;
  }

  .rb-copy-text {
    text-align: center;
    display: block;
    margin: auto;
  }
}

@media (max-width: 690px) {
  .rb-feature-item:nth-child(4) {
    display: none;
  }
}

@media (max-width: 500px) {
  .rb-feature-item:nth-child(4) {
    display: flex;
  }

  .rb-features {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 20px;
    justify-content: center; /* centers the whole grid */
    width: 100%;
  }

  .rb-feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    margin: 0 auto;
  }
}

@media (max-width: 410px) {
  .rb-features {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .rb-feature-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .rb-features {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 12px;
    justify-content: center;
  }
}

@media (min-width: 451px) {
  .btn-arrow svg {
    display: none;
  }
}

@media (max-width: 450px) {
  .btn-text {
    display: none;
  }
  .ba {
    display: none;
  }

  .btn-arrow {
    color: #222222;
  }

  /* Hide the ↓ character */
  .btn-arrow {
    font-size: 0;
  }

  /* Show SVG only */
  .btn-arrow svg {
    display: block;
    stroke: #222;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
  }
}

@media (max-width: 450px) {
  body.dark .btn-arrow svg {
    stroke: #a5b4fc !important;
  }
}

@media (max-width: 1100px) {
  .tools-menu,
  .categories-menu {
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .tools-menu,
  .categories-menu {
    width: 92%;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .tools-menu,
  .categories-menu {
    width: calc(100vw - 20px);
    top: 70px;
    left: 10px;
    transform: translateY(10px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    max-height: 75vh;
    overflow-y: auto;
    border-radius: 18px;
  }

  .tools-dropdown:hover .tools-menu,
  .categories-dropdown:hover .categories-menu {
    transform: translateY(0);
  }

  .tools-column a,
  .category-box a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .category-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1360px) {
  .body {
    padding-left: clamp(56px, 3.8vw, 96px);
    padding-right: clamp(56px, 3.8vw, 96px);
  }

  h1 {
    font-size: clamp(44px, 2.15vw, 58px);
  }

  h2 {
    font-size: clamp(40px, 1.85vw, 54px);
  }

  p {
    font-size: clamp(14px, 0.68vw, 18px);
  }

  .navbar {
    height: 82px;
  }

  .logo {
    width: 156px;
    height: 78px;
  }

  .tools-btn,
  .categories-btn,
  .nav-tool a {
    font-size: 15px;
    height: 46px;
  }

  .theme-switch {
    width: 162px;
    height: 42px;
  }

  .theme-switch.active .slider {
    left: 122px;
  }

  .search-wrapper {
    width: min(100%, 620px);
  }

  .search-wrapper input {
    font-size: 16px;
  }

  .tools-section,
  .features-box,
  .wrapper,
  .nx72-wrap,
  .bar,
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 1440px;
  }

  .features-box {
    padding: 26px 42px;
  }

  .tools-top {
    margin-bottom: 30px;
  }

  .left-title h2 {
    font-size: 28px;
  }

  .tools-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    max-height: 180px;
  }

  .tools-menu,
  .categories-menu {
    width: min(1100px, 88vw);
    padding: 30px 32px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .features-grid {
    gap: clamp(28px, 3vw, 64px);
    justify-content: space-between;
  }

  .feature-item {
    gap: 16px;
  }

  .feature-content p {
    max-width: 260px;
  }

  .wrapper {
    gap: 32px;
  }

  .card {
    min-width: 0;
  }

  .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .steps {
    gap: 16px;
  }

  .bar {
    min-height: 104px;
    margin-bottom: 44px;
  }

  .content {
    padding: 12px 24px;
    gap: 18px;
  }

  .item {
    min-width: 0;
  }

  .rb-footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 42px;
  }

  .rb-link-column h3 {
    font-size: 15px;
  }

  .rb-link-column ul li a {
    font-size: 14px;
  }

  .nx72-card {
    padding: 36px;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: clamp(38px, 2vw, 56px);
  }

  .nx72-left p {
    font-size: 15px;
    max-width: 580px;
  }

  .nx72-features,
  .nx72-points {
    gap: 16px;
  }

  .nx72-stats {
    gap: 16px;
  }

  .nx72-box {
    padding: 20px;
  }

  .nx72-point {
    padding: 16px;
  }

  .nx72-stat {
    padding: 20px;
  }

  .search .hero .search-bg-container {
    width: min(1100px, 70vw) !important;
  }
}

@media (min-width: 1600px) {
  .body {
    padding-left: clamp(64px, 4vw, 112px);
    padding-right: clamp(64px, 4vw, 112px);
  }

  .navbar {
    height: 88px;
  }

  .logo {
    width: 170px;
    height: 84px;
  }

  .tools-section,
  .features-box,
  .wrapper,
  .nx72-wrap,
  .bar,
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 1600px;
  }

  .search-wrapper {
    width: min(100%, 680px);
  }

  .tools-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    max-height: 190px;
  }

  .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tools-menu,
  .categories-menu {
    width: min(1240px, 86vw);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .features-box {
    padding: 28px 48px;
  }

  .rb-footer-grid {
    gap: 48px;
  }

  .content {
    padding: 12px 28px;
  }

  .nx72-card {
    padding: 40px;
  }

  .search .hero .search-bg-container {
    width: min(1240px, 68vw) !important;
  }
}

@media (min-width: 1920px) {
  .body {
    padding-left: clamp(72px, 4vw, 132px);
    padding-right: clamp(72px, 4vw, 132px);
  }

  .navbar {
    height: 92px;
  }

  .logo {
    width: 182px;
    height: 90px;
  }

  .tools-section,
  .features-box,
  .wrapper,
  .nx72-wrap,
  .bar,
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 1820px;
  }

  .search-wrapper {
    width: min(100%, 760px);
  }

  .tools-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
    max-height: 200px;
  }

  .tools-menu,
  .categories-menu {
    width: min(1450px, 84vw);
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .features-grid {
    gap: 48px 80px;
  }

  .features-box {
    padding: 30px 56px;
  }

  .wrapper {
    gap: 36px;
  }

  .bar {
    min-height: 112px;
  }

  .content {
    padding: 14px 34px;
  }

  .rb-footer-grid {
    gap: 54px;
  }

  .nx72-card {
    padding: 44px;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: clamp(44px, 1.9vw, 64px);
  }

  .search .hero .search-bg-container {
    width: min(1400px, 65vw) !important;
  }
}

@media (min-width: 2560px) {
  .body {
    padding-left: clamp(88px, 4vw, 160px);
    padding-right: clamp(88px, 4vw, 160px);
  }

  .navbar {
    height: 100px;
  }

  .logo {
    width: 198px;
    height: 96px;
  }

  .tools-section,
  .features-box,
  .wrapper,
  .nx72-wrap,
  .bar,
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 2200px;
  }

  .search-wrapper {
    width: min(100%, 880px);
  }

  .tools-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
    max-height: 220px;
  }

  .features {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .tools-menu,
  .categories-menu {
    width: min(1800px, 82vw);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 34px 36px;
  }

  .features-box {
    padding: 34px 70px;
  }

  .rb-footer-grid {
    gap: 60px;
  }

  .content {
    padding: 16px 40px;
  }

  .nx72-card {
    padding: 50px;
  }

  .nx72-box {
    padding: 22px;
  }

  .nx72-point {
    padding: 18px;
  }

  .nx72-stat {
    padding: 22px;
  }

  .search .hero .search-bg-container {
    width: min(1700px, 62vw) !important;
  }
}

@media (min-width: 3200px) {
  .body {
    padding-left: clamp(100px, 4vw, 180px);
    padding-right: clamp(100px, 4vw, 180px);
  }

  .tools-section,
  .features-box,
  .wrapper,
  .nx72-wrap,
  .bar,
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 2600px;
  }

  .navbar {
    height: 108px;
  }

  .logo {
    width: 220px;
    height: 106px;
  }

  .search-wrapper {
    width: min(100%, 980px);
  }

  .tools-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 22px;
    max-height: 240px;
  }

  .tools-menu,
  .categories-menu {
    width: min(2100px, 80vw);
  }

  .features {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .features-box {
    padding: 38px 84px;
  }

  .rb-footer-grid {
    gap: 72px;
  }

  .nx72-card {
    padding: 56px;
  }
}

@media (min-width: 3840px) {
  .body {
    padding-left: clamp(120px, 4vw, 220px);
    padding-right: clamp(120px, 4vw, 220px);
  }

  .tools-section,
  .features-box,
  .wrapper,
  .nx72-wrap,
  .bar,
  .rb-footer-grid,
  .rb-footer-bottom {
    max-width: 3000px;
  }

  .navbar {
    height: 116px;
  }

  .logo {
    width: 240px;
    height: 114px;
  }

  .search-wrapper {
    width: min(100%, 1120px);
  }

  .tools-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 24px;
    max-height: 260px;
  }

  .tools-menu,
  .categories-menu {
    width: min(2400px, 78vw);
  }

  .features {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .features-box {
    padding: 42px 96px;
  }

  .content {
    padding: 18px 48px;
  }

  .rb-footer-grid {
    gap: 84px;
  }

  .nx72-card {
    padding: 64px;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: clamp(48px, 1.55vw, 72px);
  }
}

@media (min-width: 1360px) and (max-width: 1600px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .tablet-only-box {
    display: none !important;
  }
}

@media (min-width: 1601px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .feature-box h3 {
    font-size: clamp(15px, 0.35vw + 10px, 22px) !important;
  }

  .feature-box p {
    font-size: clamp(12px, 0.25vw + 9px, 16px) !important;
    line-height: 1.6;
  }
  .tablet-only-box {
    display: flex !important;
    flex-direction: column;
  }
}

@media (min-width: 1600px) {
  .feature-box .icon-wrap {
    width: 58px;
    height: 58px;
    font-size: 26px;
    border-radius: 20px;
  }
}

@media (min-width: 1920px) {
  .feature-box .icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 28px;
    border-radius: 22px;
  }
}

@media (min-width: 2560px) {
  .feature-box .icon-wrap {
    width: 72px;
    height: 72px;
    font-size: 32px;
    border-radius: 24px;
  }
}

@media (min-width: 3840px) {
  .feature-box .icon-wrap {
    width: 82px;
    height: 82px;
    font-size: 36px;
    border-radius: 28px;
  }
}

@media (min-width: 1360px) {
  .hero .search-bg-container {
    width: min(100%, 1100px);
  }
}

@media (min-width: 1600px) {
  .hero .search-bg-container {
    width: min(100%, 1250px);
  }
}

@media (min-width: 1920px) {
  .search .hero .search-bg-container {
    max-width: 1000px;
  }
}

@media (min-width: 2560px) {
  .search .hero .search-bg-container {
    max-width: 900px;
  }
}

@media (min-width: 1360px) {
  .tool-card {
    padding: 18px;
  }

  .icon-box svg {
    width: 26px;
    height: 26px;
  }

  .tool-content h3 {
    font-size: 16px;
  }

  .tool-content p {
    font-size: 13px;
  }
}

@media (min-width: 1600px) {
  .tool-card {
    padding: 20px;
  }

  .icon-box {
    width: 58px;
    height: 58px;
  }

  .icon-box svg {
    width: 28px;
    height: 28px;
  }

  .tool-content h3 {
    font-size: 17px;
  }

  .tool-content p {
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  .tool-card {
    padding: 22px;
  }

  .icon-box svg {
    width: 30px;
    height: 30px;
  }

  .tool-content h3 {
    font-size: 18px !important;
  }

  .tool-content p {
    font-size: 15px !important;
  }
}

@media (min-width: 2560px) {
  .tool-card {
    padding: 26px;
  }

  .icon-box svg {
    width: 34px;
    height: 34px;
  }

  .tool-content h3 {
    font-size: 20px !important;
  }

  .tool-content p {
    font-size: 16px !important;
  }
}

@media (min-width: 3840px) {
  .tool-card {
    padding: 30px;
  }

  .icon-box svg {
    width: 40px;
    height: 40px;
  }

  .tool-content h3 {
    font-size: 24px !important;
  }

  .tool-content p {
    font-size: 18px !important;
  }
}

@media (min-width: 1600px) {
  .tools-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .tool-card {
    padding: 18px;
  }

  .icon-box {
    width: 56px;
    height: 56px;
  }

  .icon-box svg {
    width: 26px;
    height: 26px;
  }

  .tool-content h3 {
    font-size: 16px;
  }

  .tool-content p {
    font-size: 13px;
  }
}

@media (min-width: 1600px) {
  .features-box {
    padding: 30px;
  }

  .feature-item {
    gap: 16px;
  }

  .feature-item h3 {
    font-size: 17px;
  }

  .feature-item p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .feature-item .icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .features-box {
    padding: 34px;
  }

  .feature-item {
    gap: 18px;
  }

  .feature-item h3 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .feature-item .icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

@media (min-width: 2560px) {
  .features-box {
    padding: 40px;
  }

  .feature-item {
    gap: 20px;
  }

  .feature-item h3 {
    font-size: 20px;
  }

  .feature-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .feature-item .icon-wrap {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

@media (min-width: 3840px) {
  .features-box {
    padding: 50px;
  }

  .feature-item {
    gap: 24px;
  }

  .feature-item h3 {
    font-size: 22px;
  }

  .feature-item p {
    font-size: 16px;
    line-height: 1.8;
  }

  .feature-item .icon-wrap {
    width: 78px;
    height: 78px;
    font-size: 32px;
  }
}

@media (min-width: 1600px) {
  .nx72-box {
    gap: 14px !important;
  }

  .nx72-box strong {
    font-size: 15px !important;
  }

  .nx72-box span {
    font-size: 12.5px !important;
  }

  .nx72-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 22px !important;
  }
}

@media (min-width: 1920px) {
  .nx72-box {
    gap: 16px !important;
  }

  .nx72-box strong {
    font-size: 16px !important;
  }

  .nx72-box span {
    font-size: 13px !important;
  }

  .nx72-icon {
    width: 58px !important;
    height: 58px !important;
    font-size: 24px !important;
  }
}

@media (min-width: 2560px) {
  .nx72-box {
    gap: 18px !important;
  }

  .nx72-box strong {
    font-size: 18px !important;
  }

  .nx72-box span {
    font-size: 14px !important;
  }

  .nx72-icon {
    width: 66px !important;
    height: 66px !important;
    font-size: 28px !important;
  }
}

@media (min-width: 3840px) {
  .nx72-box {
    gap: 22px !important;
  }

  .nx72-box strong {
    font-size: 20px !important;
  }

  .nx72-box span {
    font-size: 16px !important;
  }

  .nx72-icon {
    width: 78px !important;
    height: 78px !important;
    font-size: 32px !important;
  }
}

@media (min-width: 1600px) {
  .nx72-point {
    font-size: 13.5px !important;
    gap: 10px !important;
  }

  .nx72-point i {
    font-size: 14px !important;
  }

  .nx72-stat strong {
    font-size: 20px !important;
  }

  .nx72-stat span {
    font-size: 12.5px !important;
  }
}

@media (min-width: 1920px) {
  .nx72-point {
    font-size: 14.5px !important;
    gap: 12px !important;
  }

  .nx72-point i {
    font-size: 15px !important;
  }

  .nx72-stat strong {
    font-size: 22px !important;
  }

  .nx72-stat span {
    font-size: 13px !important;
  }
}

@media (min-width: 2560px) {
  .nx72-point {
    font-size: 16px !important;
    gap: 14px !important;
  }

  .nx72-point i {
    font-size: 16px !important;
  }

  .nx72-stat strong {
    font-size: 26px !important;
  }

  .nx72-stat span {
    font-size: 14px !important;
  }
}

@media (min-width: 3840px) {
  .nx72-point {
    font-size: 18px !important;
    gap: 16px !important;
  }

  .nx72-point i {
    font-size: 18px !important;
  }

  .nx72-stat strong {
    font-size: 30px !important;
  }

  .nx72-stat span {
    font-size: 16px !important;
  }
}

@media (min-width: 1600px) {
  .step {
    padding: 18px !important;
  }

  .step h4 {
    font-size: 16px !important;
  }

  .step p {
    font-size: 13px !important;
  }

  .step-icon {
    width: 54px !important;
    height: 54px !important;
    font-size: 22px !important;
  }

  .steps .arrow {
    font-size: 18px !important;
  }
}

@media (min-width: 1920px) {
  .step {
    padding: 20px !important;
  }

  .step h4 {
    font-size: 18px !important;
  }

  .step p {
    font-size: 14px !important;
  }

  .step-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
  }

  .steps .arrow {
    font-size: 20px !important;
  }
}

@media (min-width: 2560px) {
  .step {
    padding: 24px !important;
  }

  .step h4 {
    font-size: 20px !important;
  }

  .step p {
    font-size: 15px !important;
  }

  .step-icon {
    width: 68px !important;
    height: 68px !important;
    font-size: 28px !important;
  }

  .steps .arrow {
    font-size: 22px !important;
  }
}

@media (min-width: 3840px) {
  .step {
    padding: 30px !important;
  }

  .step h4 {
    font-size: 24px !important;
  }

  .step p {
    font-size: 17px !important;
  }

  .step-icon {
    width: 82px !important;
    height: 82px !important;
    font-size: 32px !important;
  }

  .steps .arrow {
    font-size: 26px !important;
  }
}

@media (min-width: 1600px) {
  .bar .content {
    gap: 18px !important;
  }

  .bar .item {
    padding: 16px !important;
  }

  .bar .item h3 {
    font-size: 16px !important;
  }

  .bar .item p {
    font-size: 13px !important;
  }

  .bar .icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }
}

@media (min-width: 1920px) {
  .bar .content {
    gap: 20px !important;
  }

  .bar .item {
    padding: 18px !important;
  }

  .bar .item h3 {
    font-size: 18px !important;
  }

  .bar .item p {
    font-size: 14px !important;
  }

  .bar .icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 22px !important;
  }
}

@media (min-width: 2560px) {
  .bar .content {
    gap: 24px !important;
  }

  .bar .item {
    padding: 22px !important;
  }

  .bar .item h3 {
    font-size: 20px !important;
  }

  .bar .item p {
    font-size: 15px !important;
  }

  .bar .icon {
    width: 64px !important;
    height: 64px !important;
    font-size: 26px !important;
  }
}

@media (min-width: 3840px) {
  .bar .content {
    gap: 30px !important;
  }

  .bar .item {
    padding: 26px !important;
  }

  .bar .item h3 {
    font-size: 24px !important;
  }

  .bar .item p {
    font-size: 17px !important;
  }

  .bar .icon {
    width: 78px !important;
    height: 78px !important;
    font-size: 30px !important;
  }
}

@media (min-width: 1600px) {
  /* =========================
     SEARCH BOX
  ========================== */
  .search-box input {
    font-size: 18px !important;
    padding: 18px 20px !important;
  }

  .search-wrapper {
    padding: 6px 10px !important;
  }

  .search-box img {
    width: 22px !important;
    height: 22px !important;
  }

  .clear-btn {
    font-size: 22px !important;
  }

  /* =========================
     BADGE
  ========================== */
  .badge {
    font-size: 18px !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
  }

  /* =========================
     NX72 PILL
  ========================== */
  .nx72-pill {
    font-size: 16px !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    gap: 10px !important;
  }

  .nx72-pill i {
    font-size: 16px !important;
  }
}

@media (min-width: 2000px) {
  .search-box input {
    font-size: 20px !important;
    padding: 20px 22px !important;
  }

  .badge {
    font-size: 20px !important;
    padding: 12px 22px !important;
  }

  .nx72-pill {
    font-size: 18px !important;
    padding: 12px 22px !important;
  }

  .nx72-pill i {
    font-size: 18px !important;
  }
}

@media (min-width: 3000px) {
  .search-box input {
    font-size: 24px !important;
    padding: 26px 28px !important;
  }

  .badge {
    font-size: 24px !important;
    padding: 16px 30px !important;
  }

  .nx72-pill {
    font-size: 22px !important;
    padding: 14px 28px !important;
  }

  .nx72-pill i {
    font-size: 22px !important;
  }
}

@media (min-width: 1600px) {
  /* Navbar height + spacing */
  .navbar {
    padding: 18px 40px !important;
  }

  /* Logo */
  .logo {
    font-size: 22px !important;
  }

  /* Buttons (All Tools / Categories) */
  .tools-btn,
  .categories-btn {
    font-size: 16px !important;
    padding: 10px 18px !important;
  }

  /* Quick tools links */
  .nav-tool a {
    font-size: 15px !important;
  }

  /* Theme switch */
  .theme-switch {
    transform: scale(1.05);
  }
}

@media (min-width: 2000px) {
  .navbar {
    padding: 22px 60px !important;
  }

  .tools-btn,
  .categories-btn {
    font-size: 18px !important;
    padding: 12px 22px !important;
  }

  .nav-tool a {
    font-size: 17px !important;
  }

  .logo {
    font-size: 26px !important;
  }
}

@media (min-width: 3000px) {
  .navbar {
    padding: 28px 80px !important;
  }

  .tools-btn,
  .categories-btn {
    font-size: 22px !important;
    padding: 14px 26px !important;
  }

  .nav-tool a {
    font-size: 20px !important;
  }

  .logo {
    font-size: 30px !important;
  }
}

@media (min-width: 1600px) {
  /* Search input */
  .search-wrapper input {
    font-size: 18px !important;
    padding: 16px 18px !important;
  }

  /* Search icon */
  .search-wrapper img {
    width: 22px !important;
    height: 22px !important;
  }

  /* Search results container */
  .search-results {
    font-size: 16px !important;
    padding: 10px !important;
  }

  /* Each result item */
  .search-result-item {
    font-size: 16px !important;
    padding: 12px 14px !important;
  }
}

@media (min-width: 3000px) {
  .search-wrapper input {
    font-size: 24px !important;
    padding: 22px 26px !important;
  }

  .search-result-item {
    font-size: 22px !important;
    padding: 16px 20px !important;
  }
}

@media (min-width: 1600px) {
  .nx72-small {
    font-size: 15px !important;
    padding: 10px 14px !important;
    gap: 10px !important;
  }

  .nx72-small i {
    font-size: 16px !important;
  }
}

@media (min-width: 2000px) {
  .nx72-small {
    font-size: 17px !important;
    padding: 12px 16px !important;
    gap: 12px !important;
  }

  .nx72-small i {
    font-size: 18px !important;
  }
}

@media (min-width: 3000px) {
  .nx72-small {
    font-size: 20px !important;
    padding: 14px 20px !important;
    gap: 14px !important;
  }

  .nx72-small i {
    font-size: 22px !important;
  }
}

@media (min-width: 1600px) {
  /* ================= STEP CONTAINER ================= */
  .steps {
    gap: 30px !important;
  }

  /* ================= STEP BOX ================= */
  .step {
    padding: 18px !important;
  }

  /* ================= ICON BOX ================= */
  .step-icon {
    width: 62px !important;
    height: 62px !important;
    font-size: 26px !important;
    border-radius: 18px !important;
  }

  /* ================= TITLE ================= */
  .step h4 {
    font-size: 18px !important;
    margin-top: 12px !important;
  }

  /* ================= TEXT ================= */
  .step p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  /* ================= STEP NUMBER ================= */
  .step .number {
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
  }

  /* ================= ARROWS ================= */
  .steps .arrow i {
    font-size: 18px !important;
  }
}

@media (min-width: 2000px) {
  .steps {
    gap: 40px !important;
  }

  .step {
    padding: 22px !important;
  }

  .step-icon {
    width: 72px !important;
    height: 72px !important;
    font-size: 30px !important;
    border-radius: 20px !important;
  }

  .step h4 {
    font-size: 20px !important;
  }

  .step p {
    font-size: 16px !important;
  }

  .step .number {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  .steps .arrow i {
    font-size: 22px !important;
  }
}

@media (min-width: 3000px) {
  .steps {
    gap: 55px !important;
  }

  .step {
    padding: 28px !important;
  }

  .step-icon {
    width: 90px !important;
    height: 90px !important;
    font-size: 36px !important;
    border-radius: 24px !important;
  }

  .step h4 {
    font-size: 26px !important;
  }

  .step p {
    font-size: 20px !important;
    line-height: 1.6 !important;
  }

  .step .number {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
  }

  .steps .arrow i {
    font-size: 28px !important;
  }
}

@media (min-width: 1600px) {
  .view-tools {
    padding: 10px 18px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    gap: 10px !important;
  }

  .view-tools .btn-text {
    font-size: 15px !important;
  }

  .view-tools .btn-arrow {
    gap: 6px !important;
  }

  .view-tools svg {
    width: 16px !important;
    height: 16px !important;
  }

  .view-tools .ba {
    font-size: 14px !important;
  }
}

@media (min-width: 2000px) {
  .view-tools {
    padding: 12px 22px !important;
    font-size: 17px !important;
    border-radius: 14px !important;
  }

  .view-tools .btn-text {
    font-size: 17px !important;
  }

  .view-tools svg {
    width: 18px !important;
    height: 18px !important;
  }

  .view-tools .ba {
    font-size: 16px !important;
  }
}

@media (min-width: 3000px) {
  .view-tools {
    padding: 14px 26px !important;
    font-size: 20px !important;
    border-radius: 16px !important;
  }

  .view-tools .btn-text {
    font-size: 20px !important;
  }

  .view-tools svg {
    width: 22px !important;
    height: 22px !important;
  }

  .view-tools .ba {
    font-size: 18px !important;
  }
}

@media (min-width: 1360px) and (max-width: 1600px) {
  .tools-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
  }

  .tool-card {
    padding: 14px 16px !important;
    border-radius: 14px !important;
  }

  .tool-card .tool-content h3 {
    font-size: 14px !important;
  }

  .tool-card .tool-content p {
    font-size: 12px !important;
  }

  .tool-card .icon-box {
    width: 38px !important;
    height: 38px !important;
  }

  .tool-card .icon-box svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 320px) {
  /* Remove body padding to prevent horizontal scroll/gaps */
  .body {
    padding: 0 8px !important;
  }

  /* Footer padding */
  .info {
    padding: 0 8px 12px !important;
  }

  /* Navbar adjustments */
  .navbar {
    height: 50px !important;
    padding: 0 6px !important;
  }

  .logo {
    width: 80px !important;
    height: 38px !important;
  }

  /* Theme switch smaller */
  .theme-switch {
    width: 72px !important;
    height: 24px !important;
  }

  .slider {
    width: 18px !important;
    height: 18px !important;
  }

  .slider i {
    font-size: 8px !important;
  }

  .theme-text {
    font-size: 7px !important;
  }

  .theme-switch.active .slider {
    left: 50px !important;
  }

  /* Hamburger smaller */
  .menu-btn {
    width: 30px !important;
    height: 30px !important;
    margin-right: 4px !important;
  }

  .hamburger-line {
    width: 16px !important;
    height: 2px !important;
  }

  /* Hero section */
  .hero {
    padding: 40px 10px 50px !important;
  }

  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  p {
    font-size: 12px !important;
    max-width: 100% !important;
  }

  .badge {
    font-size: 9px !important;
    padding: 4px 8px !important;
  }

  /* Search box */
  .search-wrapper {
    width: 100% !important;
    padding: 0 3px !important;
  }

  .search-wrapper input {
    font-size: 12px !important;
    padding: 10px 8px !important;
  }

  .search-wrapper img {
    width: 14px !important;
    height: 14px !important;
    margin-left: 10px !important;
  }

  .clear-btn {
    width: 24px !important;
    height: 24px !important;
    font-size: 16px !important;
  }

  /* Tools grid */
  .tools-grid {
    grid-template-columns: 1fr !important;
    max-height: none !important;
    gap: 8px !important;
  }

  .tool-card {
    padding: 10px !important;
  }

  .icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  .icon-box svg {
    width: 16px !important;
    height: 16px !important;
  }

  .tool-content h3 {
    font-size: 12px !important;
  }

  .tool-content p {
    font-size: 10px !important;
    margin: 1px 0 0 !important;
  }

  .arrow {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
  }

  /* Tools top */
  .tools-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .left-title h2 {
    font-size: 20px !important;
  }

  .view-tools {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  /* Features box */
  .features-box {
    padding: 12px 10px !important;
    margin: 20px auto !important;
    border-radius: 12px !important;
  }

  .features-grid {
    gap: 12px !important;
  }

  .feature-item {
    gap: 10px !important;
  }

  .feature-item .icon-wrap {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }

  .feature-item .icon-wrap svg {
    width: 18px !important;
    height: 18px !important;
  }

  .feature-content h3 {
    font-size: 12px !important;
  }

  .feature-content p {
    font-size: 10px !important;
    max-width: 100% !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
  }

  /* NX72 wrap */
  .nx72-wrap {
    margin: 20px auto !important;
    gap: 16px !important;
  }

  .nx72-card {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .nx72-pill {
    font-size: 9px !important;
    padding: 6px 10px !important;
  }

  .nx72-pill i {
    font-size: 9px !important;
  }

  .nx72-left h2,
  .nx72-right h3 {
    font-size: 20px !important;
  }

  .nx72-left p {
    font-size: 11px !important;
  }

  .nx72-features,
  .nx72-points {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .nx72-box {
    padding: 10px !important;
  }

  .nx72-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .nx72-box strong {
    font-size: 12px !important;
  }

  .nx72-box span {
    font-size: 10px !important;
  }

  .nx72-point {
    padding: 8px !important;
    font-size: 11px !important;
    gap: 8px !important;
  }

  .nx72-point i {
    width: 18px !important;
    height: 18px !important;
    font-size: 8px !important;
  }

  .nx72-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .nx72-stat {
    padding: 10px 6px !important;
    border-radius: 12px !important;
  }

  .nx72-stat strong {
    font-size: 16px !important;
  }

  .nx72-stat span {
    font-size: 9px !important;
  }

  .nx72-small {
    font-size: 9px !important;
    padding: 5px 8px !important;
  }

  .nx72-small i {
    font-size: 9px !important;
  }

  /* Quality section */
  .wrapper {
    gap: 0 !important;
  }

  .card {
    padding: 16px 12px !important;
    border-radius: 18px !important;
    margin-bottom: 16px !important;
    min-width: 100% !important;
  }

  .heading {
    font-size: 18px !important;
  }

  .line {
    width: 30px !important;
    height: 3px !important;
    margin-bottom: 20px !important;
  }

  .features {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .feature-box {
    padding: 10px !important;
    border-radius: 14px !important;
  }

  .feature-box .icon-wrap {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .feature-box h3 {
    font-size: 12px !important;
  }

  .feature-box p {
    font-size: 10px !important;
  }

  /* Steps */
  .steps {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .step {
    padding: 12px 10px !important;
    border-radius: 16px !important;
  }

  .step-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .step h4 {
    font-size: 13px !important;
    margin-bottom: 4px !important;
  }

  .step p {
    font-size: 10px !important;
    margin: 6px !important;
  }

  .number {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }

  .steps .arrow {
    transform: rotate(90deg) !important;
    font-size: 16px !important;
    margin: 0 !important;
  }

  .fast {
    display: none !important;
  }

  /* Bar section */
  .bar {
    margin-bottom: 20px !important;
    border-radius: 12px !important;
    padding: 10px !important;
  }

  .content {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  .item {
    width: 100% !important;
    padding: 6px 8px !important;
    gap: 10px !important;
  }

  .item::after {
    display: none !important;
  }

  .bar .icon {
    width: 34px !important;
    height: 34px !important;
  }

  .bar .icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .bar .icon i {
    font-size: 14px !important;
  }

  .txt h3 {
    font-size: 11px !important;
    white-space: normal !important;
  }

  .txt p {
    font-size: 9px !important;
    max-width: 100% !important;
  }

  /* Footer */
  .rb-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    text-align: center;
  }

  .rb-brand-box,
  .rb-link-column {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .logos {
    width: 140px !important;
    height: 40px !important;
  }

  .rb-brand-text {
    font-size: 11px !important;
  }

  .rb-social-row {
    gap: 10px !important;
  }

  .rb-social-row a {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  .rb-link-column h3 {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }

  .rb-link-column ul li {
    margin-bottom: 8px !important;
  }

  .rb-link-column ul li a {
    font-size: 11px !important;
  }

  .rb-footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }

  .rb-copy-text {
    font-size: 10px !important;
  }

  .rb-feature-row {
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .rb-feature-item {
    font-size: 10px !important;
    gap: 6px !important;
  }

  .rb-feature-item i {
    width: 20px !important;
    height: 20px !important;
    font-size: 9px !important;
  }

  /* Sidebar */
  .sidebar-header {
    padding: 0 12px !important;
    height: 50px !important;
    min-height: 50px !important;
  }

  .sidebar-logo-img {
    height: 24px !important;
  }

  .sidebar-close {
    width: 30px !important;
    height: 30px !important;
  }

  .close-line {
    width: 14px !important;
    height: 2px !important;
  }

  .sidebar-category h3 {
    font-size: 9px !important;
    padding: 12px 16px 6px !important;
  }

  .sidebar-category a {
    font-size: 13px !important;
    padding: 10px 16px !important;
    gap: 10px !important;
  }

  .sidebar-category a i {
    width: 18px !important;
    font-size: 14px !important;
  }

  /* Search results dropdown */
  .search-results {
    width: calc(100vw - 16px) !important;
    left: 8px !important;
  }

  .search-result-item {
    font-size: 12px !important;
    padding: 10px 12px !important;
    gap: 8px !important;
  }

  .search-result-item i {
    font-size: 12px !important;
    width: 14px !important;
  }

  .search-no-results {
    font-size: 11px !important;
    padding: 12px !important;
  }

  /* Prevent any horizontal overflow */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
}

@media (min-width: 600px) and (max-width: 1100px) {
  .rb-footer-grid {
    align-items: flex-start !important;
  }
}

@media (max-width: 768px) {
  .rb-footer-grid {
    justify-items: center !important;
    text-align: center !important;
  }

  .rb-brand-box,
  .rb-link-column {
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
  }

  .rb-logo-area {
    justify-content: center !important;
  }

  .rb-brand-text {
    text-align: center !important;
  }

  .rb-social-row {
    justify-content: center !important;
  }

  .rb-link-column h3 {
    text-align: center !important;
  }

  .rb-link-column ul {
    align-items: center !important;
  }

  .rb-link-column ul li a {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .rb-brand-box,
  .rb-link-column {
    align-items: center !important;
  }

  .rb-brand-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 320px) {
  .rb-brand-box,
  .rb-link-column {
    align-items: center !important;
    text-align: center !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .rb-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: auto auto;
    grid-template-areas:
      "brand brand brand brand"
      "link1 link2 link3 link4";
    justify-items: center;
    text-align: center;
    gap: 30px 20px !important;
    max-width: 100%;
  }

  /* Brand box - first row, centered */
  .rb-brand-box {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
  }

  .rb-logo-area {
    justify-content: center;
  }

  .rb-brand-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .rb-social-row {
    justify-content: center;
  }

  .rb-link-column:nth-of-type(1) {
    grid-area: link1;
  }

  .rb-link-column:nth-of-type(2) {
    grid-area: link2;
  }

  .rb-link-column:nth-of-type(3) {
    grid-area: link3;
  }

  .rb-link-column:nth-of-type(4) {
    grid-area: link4;
  }

  /* Center link column content */
  .rb-link-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rb-link-column h3 {
    text-align: center;
  }

  .rb-link-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rb-link-column ul li a {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .rb-footer-grid {
    gap: 24px 14px !important;
  }

  .rb-link-column ul li a {
    font-size: 12px !important;
  }

  .rb-link-column h3 {
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .rb-footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "brand"
      "link1"
      "link2"
      "link3"
      "link4"
      "link5" !important;
    justify-items: center;
    text-align: center;
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .rb-brand-box,
  .rb-link-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .rb-brand-box {
    grid-area: brand;
  }

  .rb-link-column:nth-of-type(1) {
    grid-area: link1;
  }
  .rb-link-column:nth-of-type(2) {
    grid-area: link2;
  }
  .rb-link-column:nth-of-type(3) {
    grid-area: link3;
  }
  .rb-link-column:nth-of-type(4) {
    grid-area: link4;
  }
  .rb-link-column:nth-of-type(5) {
    grid-area: link5;
  }

  .rb-link-column ul li a {
    font-size: 14px !important;
  }

  .rb-logo-area {
    justify-content: center;
  }

  .rb-brand-text {
    text-align: center;
  }

  .rb-social-row {
    justify-content: center;
  }

  .rb-link-column h3 {
    text-align: center;
  }

  .rb-link-column ul {
    align-items: center;
  }
}

@media (min-width: 2560px) {
  /* Brand text */
  .rb-brand-text {
    font-size: 20px !important;
    line-height: 1.9 !important;
  }

  /* Link column headings */
  .rb-link-column h3 {
    font-size: 20px !important;
    margin-bottom: 22px !important;
  }

  /* Link items */
  .rb-link-column ul li a {
    font-size: 18px !important;
  }

  .rb-link-column ul li {
    margin-bottom: 16px !important;
  }

  /* Social icons */
  .rb-social-row a {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
  }

  .rb-social-row {
    gap: 18px !important;
  }

  /* Footer bottom */
  .rb-copy-text {
    font-size: 18px !important;
  }

  .rb-feature-item {
    font-size: 18px !important;
    gap: 14px !important;
  }

  .rb-feature-item i {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }

  .rb-feature-row {
    gap: 40px !important;
  }

  /* Logo size */
  .logos {
    width: 260px !important;
    height: 72px !important;
  }

  /* Footer bottom padding */
  .rb-footer-bottom {
    padding: 24px 0px !important;
  }

  /* Footer grid gap */
  .rb-footer-grid {
    gap: 60px !important;
    padding-top: 35px !important;
    padding-bottom: 38px !important;
  }
}

@media (min-width: 3840px) {
  .rb-brand-text {
    font-size: 24px !important;
    line-height: 2 !important;
  }

  .rb-link-column h3 {
    font-size: 24px !important;
    margin-bottom: 26px !important;
  }

  .rb-link-column ul li a {
    font-size: 22px !important;
  }

  .rb-link-column ul li {
    margin-bottom: 18px !important;
  }

  .rb-social-row a {
    width: 52px !important;
    height: 52px !important;
    font-size: 24px !important;
  }

  .rb-social-row {
    gap: 22px !important;
  }

  .rb-copy-text {
    font-size: 22px !important;
  }

  .rb-feature-item {
    font-size: 22px !important;
    gap: 16px !important;
  }

  .rb-feature-item i {
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
  }

  .rb-feature-row {
    gap: 50px !important;
  }

  .logos {
    width: 320px !important;
    height: 88px !important;
  }

  .rb-footer-bottom {
    padding: 28px 38px !important;
  }

  .rb-footer-grid {
    gap: 72px !important;
    padding-top: 42px !important;
    padding-bottom: 45px !important;
  }
}

@media (min-width: 1360px) and (max-width: 1600px) {
  .search .hero .search-bg-container {
    width: min(100%, 1100px);
  }
}

@media (min-width: 1600px) and (max-width: 1600px) {
  .hero .search-bg-container {
    width: min(100%, 1250px);
  }
}

@media (min-width: 1360px) and (max-width: 1600px) {
  .search .hero .search-bg-container {
    width: min(1100px, 70vw) !important;
  }
}

@media (min-width: 1360px) and (max-width: 1600px) {
  .search .hero .search-bg-container {
    width: min(1300px, 85vw) !important;
  }
}

@media (min-width: 1360px) and (max-width: 1600px) {
  .search .hero .search-bg-container {
    width: 80vw !important;
  }
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 92, 240, 0.08);
}

.feature-box:hover .icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.bar .icon {
  width: clamp(40px, 3.2vw, 52px);
  height: clamp(40px, 3.2vw, 52px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}

.bar .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.14;
  background: currentColor;
}

/* ============================================
   SEARCH BG CONTAINER — UNIFIED MEDIA QUERIES
   Replaces all scattered .search-bg-container rules
============================================ */

/* --- BASE: Hidden on mobile, visible on desktop --- */
.search .hero .search-bg-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  aspect-ratio: 1000 / 270;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Hide below tablet landscape — SVG too small to read */
@media (max-width: 920px) {
  .search .hero .search-bg-container {
    display: none !important;
  }
}

/* ============================================
   921px — 1100px   Tablet Landscape
============================================ */
@media (min-width: 921px) and (max-width: 1100px) {
  .search .hero .search-bg-container {
    display: block;
    width: 92vw;
    max-width: 1020px;
  }
}

/* ============================================
   1101px — 1360px   Small Desktop
============================================ */
@media (min-width: 1101px) and (max-width: 1360px) {
  .search .hero .search-bg-container {
    display: block;
    width: 1000px;
    max-width: 90vw;
  }
}

/* ============================================
   1361px — 1600px   Large Desktop
============================================ */
@media (min-width: 1361px) and (max-width: 1600px) {
  .search .hero .search-bg-container {
    display: block;
    width: 1100px;
    max-width: 80vw;
  }
}

/* ============================================
   1601px — 1920px   Full HD
============================================ */
@media (min-width: 1601px) and (max-width: 1920px) {
  .search .hero .search-bg-container {
    display: block;
    width: 1250px;
    max-width: 75vw;
  }
}

/* ============================================
   1921px — 2560px   2K / QHD
============================================ */
@media (min-width: 1921px) and (max-width: 2560px) {
  .search .hero .search-bg-container {
    display: block;
    width: 1400px;
    max-width: 70vw;
  }
}

/* ============================================
   2561px — 3840px   4K UHD
============================================ */
@media (min-width: 2561px) and (max-width: 3840px) {
  .search .hero .search-bg-container {
    display: block;
    width: 1700px;
    max-width: 65vw;
  }
}

/* ============================================
   3841px — 5120px   5K
============================================ */
@media (min-width: 3841px) and (max-width: 5120px) {
  .search .hero .search-bg-container {
    display: block;
    width: 2000px;
    max-width: 55vw;
  }
}

/* ============================================
   5121px+   6K / 8K
============================================ */
@media (min-width: 5121px) {
  .search .hero .search-bg-container {
    display: block;
    width: 2400px;
    max-width: 50vw;
  }
}

/* ============================================
   DARK MODE — SEARCH BG OVERRIDES
============================================ */
body.dark .search .hero .search-bg-container svg {
  opacity: 0.92;
  filter: saturate(0.9) brightness(0.95);
}

/* Dotted decorative lines */
body.dark .search-bg-container svg path[stroke="#b493eb"] {
  stroke: rgb(92, 62, 163) !important;
}

body.dark .search-bg-container svg path[stroke="#5c3ea3"] {
  stroke: rgb(92, 62, 163) !important;
}

/* Icon tile backgrounds */
body.dark .search-bg-container .icon-wrap.red rect {
  fill: rgba(244, 63, 94, 0.14) !important;
}
body.dark .search-bg-container .icon-wrap.blue rect {
  fill: rgba(59, 130, 246, 0.14) !important;
}
body.dark .search-bg-container .icon-wrap.green rect {
  fill: rgba(16, 185, 129, 0.14) !important;
}
body.dark .search-bg-container .icon-wrap.orange rect {
  fill: rgba(245, 158, 11, 0.14) !important;
}

/* Icon colors */
body.dark .search-bg-container .icon-wrap.red i {
  color: #fb7185 !important;
}
body.dark .search-bg-container .icon-wrap.blue i {
  color: #60a5fa !important;
}
body.dark .search-bg-container .icon-wrap.green i {
  color: #4ade80 !important;
}
body.dark .search-bg-container .icon-wrap.orange i {
  color: #fbbf24 !important;
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
  .search .hero .search-bg-container svg * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .rb-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-areas:
      "brand brand brand brand"
      "legal tools company resources" !important;

    justify-items: center !important;
    align-items: start !important;
    text-align: center !important;
    gap: 40px 20px !important;
  }

  .rb-brand-box {
    grid-area: brand !important;
    width: 100% !important;
    max-width: 500px !important;
    justify-self: center !important;
    text-align: center !important;
    align-items: center !important;
  }

  .rb-logo-area,
  .rb-social-row {
    justify-content: center !important;
  }

  .rb-brand-text {
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* Assign columns */
  .rb-link-column:nth-child(2) {
    grid-area: legal !important;
  }

  .rb-link-column:nth-child(3) {
    grid-area: tools !important;
  }

  .rb-link-column:nth-child(4) {
    grid-area: company !important;
  }

  .rb-link-column:nth-child(5) {
    grid-area: resources !important;
  }

  .rb-link-column {
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }

  .rb-link-column ul {
    align-items: center !important;
  }
}

@media (min-width: 798px) and (max-width: 884px) {
  .rb-feature-row {
    gap: 18px !important;
  }
  .rb-feature-item:nth-child(3) {
    display: none;
  }
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

/* ============================================
   MOBILE OVERLAY
============================================ */
.mobile-overlay,
.menu-overlay {
  display: none;
}
