/* ============================================================
   PT. PRIMAJAYA ANUGERAH PERKASA — Stylesheet
   Version  : 1.0.0
   Author   : PAP Web Team
   Framework: Vanilla CSS3
   ============================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── CSS VARIABLES ── */
:root {
  --bg: #03182E;
  --bg2: #04203D;
  --bg3: #072C52;
  --accent: #38BDF8;
  --accent-light: #7DD3FC;
  --accent-dark: #1E40AF;
  --accent-mid: #0EA5E9;
  --green: #00E676;
  --white: #E8F4FD;
  --muted: #7EB8D8;
  --border: #0E3A60;
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

/* ── GLOBAL ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 24, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-btn {
  background: var(--accent);
  color: #03182E;
  border: none;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.nav-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ── HAMBURGER (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(3, 24, 46, 0.98);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#beranda {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.1;
}

.hero-rings {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.ring {
  border-radius: 50%;
  border: 1.5px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 500px;
  height: 500px;
  border-color: rgba(56, 189, 248, 0.2);
  animation: spin 20s linear infinite;
}

.ring2 {
  width: 380px;
  height: 380px;
  border-color: rgba(14, 165, 233, 0.18);
  animation: spin 15s linear infinite reverse;
}

.ring3 {
  width: 260px;
  height: 260px;
  border-color: rgba(125, 211, 252, 0.15);
  animation: spin 10s linear infinite;
}

.ring4 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent);
  border-color: transparent;
}

.gear-icon {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.06;
  font-size: 28rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

h1.hero-title .line2 {
  color: var(--accent);
}

h1.hero-title .line3 {
  -webkit-text-stroke: 1px rgba(232, 244, 253, 0.3);
  color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-main {
  background: var(--accent);
  color: #03182E;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  display: inline-block;
}

.btn-main:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.hstat p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.45rem 0;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 2rem;
  color: #03182E;
}

.ticker-item::before {
  content: '⚙';
  margin-right: 0.6rem;
  font-size: 0.8rem;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
#brands {
  padding: 3.5rem 5%;
  background: var(--bg2);
}

.brands-label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.brand-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
  filter: grayscale(30%);
}

.brand-logo-item:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#tentang {
  padding: 6rem 5%;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.about-visual {
  position: relative;
}

.about-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 3rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.1), transparent 60%);
}

.about-gear {
  font-size: 9rem;
  opacity: 0.15;
  animation: spin 30s linear infinite;
  display: block;
  line-height: 1;
}

.about-stat-overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  padding: 1.2rem 1.8rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.about-stat-overlay strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  display: block;
  color: #03182E;
  line-height: 1;
}

.about-stat-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(3, 24, 46, 0.7);
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  transition: transform 0.2s;
}

.about-point:hover {
  transform: translateX(4px);
}

.ap-icon {
  width: 36px;
  height: 36px;
  background: rgba(56, 189, 248, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ap-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ap-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.section-title span {
  color: var(--accent-light);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
#produk {
  padding: 6rem 5%;
  background: var(--bg2);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tab {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 20px;
}

.tab.active,
.tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #03182E;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5px;
  background: var(--border);
}

.product-card {
  background: var(--bg2);
  padding: 1.8rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.product-card:hover {
  background: var(--bg3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-visual {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 30% 30%, #072C52 0%, #03182E 60%, #020d1e 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(56, 189, 248, 0.1), transparent 65%);
}

.p-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--accent);
  color: #03182E;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  z-index: 1;
}

.p-badge.blue {
  background: #1d4ed8;
  color: #bfdbfe;
}

.p-badge.yellow {
  background: #0369a1;
  color: #bae6fd;
}

.product-brand {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-code {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: monospace;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.product-price small {
  font-family: var(--font-main);
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: -0.25rem;
}

.add-btn {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border: none;
  color: #03182E;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
  flex-shrink: 0;
}

.add-btn:hover {
  background: var(--accent-light);
  transform: scale(1.1);
}

.add-btn.selected {
  background: var(--green);
  color: #03182E;
}

#inquiry-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: none;
}

#inquiry-note a {
  color: var(--accent);
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
#keunggulan {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #1e40af 0%, #0369a1 50%, #0284c7 100%);
  position: relative;
  overflow: hidden;
}

#keunggulan::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -50%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-8deg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.why-item {
  text-align: center;
}

.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.why-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#kontak {
  padding: 6rem 5%;
  background: var(--bg);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.cinfo-item:hover {
  border-color: var(--accent);
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cinfo-text label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.cinfo-text p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.cinfo-text a {
  color: var(--white);
  transition: color 0.2s;
}

.cinfo-text a:hover {
  color: var(--accent);
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
  width: 100%;
  border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.form-group select option {
  background: var(--bg3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-send {
  background: var(--accent);
  color: #03182E;
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-send:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

#form-success {
  display: none;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid var(--green);
  padding: 1rem;
  color: var(--green);
  font-size: 0.85rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
}

.footer-logo span {
  color: var(--accent);
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinSingle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.22s;
}

.d3 {
  animation-delay: 0.34s;
}

.d4 {
  animation-delay: 0.46s;
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-rings {
    display: none;
  }

  .gear-icon {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  /* Grids */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About visual */
  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Products */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* Sections padding */
  #beranda,
  #tentang,
  #produk,
  #kontak,
  #keunggulan {
    padding: 4rem 5%;
  }

  #brands {
    padding: 2.5rem 5%;
  }

  /* Hero */
  #beranda {
    padding-top: 5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hstat strong {
    font-size: 1.8rem;
  }

  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* Products grid */
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Filter tabs */
  .filter-tabs {
    gap: 0.4rem;
  }

  .tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.68rem;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-send {
    width: 100%;
    text-align: center;
  }

  /* About stat overlay */
  .about-stat-overlay {
    bottom: -1rem;
    right: -0.5rem;
  }

  /* Brands */
  .brands-grid {
    gap: 1rem;
  }

  /* Footer */
  footer {
    gap: 0.75rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE SMALL (max 400px)
   ============================================================ */
@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================
   NEW CLASSES — moved from inline styles
   ============================================================ */

/* ── Nav Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.nav-logo-sub {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* ── About Section ── */
.about-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.about-desc-primary {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-desc-secondary {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* ── Kontak Section ── */
.kontak-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Footer Brand ── */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* ── Mobile Nav CTA link ── */
.mobile-nav-cta {
  color: var(--accent) !important;
  font-weight: 700;
}

/* ── Bearing SVG Illustrations ── */
.bearing-svg,
.bearing-img {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.45));
}

.bearing-svg--wide {
  width: 135px;
  height: 100px;
}

/* ── Inquiry Note ── */
.inquiry-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: none;
}

/* ── Brand Logo Hover (moved from onmouseover) ── */
.brand-logo-item:hover {
  transform: scale(1.1);
  filter: grayscale(0) !important;
}

/* ── Responsive additions ── */
@media (max-width: 600px) {
  .nav-logo-text {
    font-size: 0.75rem;
  }

  .nav-logo-img {
    height: 36px;
  }

  .bearing-svg,
  .bearing-img {
    width: 85px;
    height: 85px;
  }

  .bearing-svg--wide {
    width: 105px;
    height: 78px;
  }
}

/* ── Brand Logo SVG size ── */
.brand-svg {
  height: 32px;
  width: auto;
  display: block;
}

/* ============================================================
   NEW SECTIONS & COMPONENTS (Search, Testimonials, Clients, WA)
   ============================================================ */

/* -- SEARCH BAR -- */
.header-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.search-container input {
  width: 100%;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-container input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
}

/* -- TESTIMONIALS -- */
.testimonials {
  padding: 6rem 5%;
  background: var(--bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg2);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(56, 189, 248, 0.3);
}

.testi-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* -- CLIENT LOGOS -- */
#klien {
  padding: 4rem 5%;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.client-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.client-marquee::before,
.client-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg3), transparent);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg3), transparent);
}

.client-marquee-inner {
  display: inline-flex;
  gap: 4rem;
  padding: 1rem 0;
  animation: marqueeScroll 20s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 2rem));
  }
}

.client-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
  user-select: none;
  cursor: pointer;
}

.client-logo:hover {
  color: var(--accent);
  transform: scale(1.05);
}

/* -- WHATSAPP FLOATING -- */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
}

@media (max-width: 900px) {
  .header-right {
    align-items: flex-start;
  }
}

.brand-img,
.brand-svg {
  height: 60px;
  max-width: 210px;
  object-fit: contain;
}

/* Screen reader only for SEO/Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   NEW PREMIUM FOOTER & BACK TO TOP OVERRIDES
   ============================================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
  display: flex;
  flex-direction: column;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-socials a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
  width: fit-content;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* -- BACK TO TOP BUTTON -- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-light);
  transform: translateY(-5px);
}

/* Micro-animations */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.testi-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* -- LANG TOGGLE -- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--bg2);
  border-color: var(--accent);
}

.lang-btn-mobile {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-actions {
    display: none;
  }
}

/* ============================================================
   BREADCRUMB NAVIGATION
   ============================================================ */
.breadcrumb-nav {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 5%;
  position: relative;
  z-index: 5;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.breadcrumb li:not(:last-child)::after {
  content: 'chevron_right';
  color: var(--muted);
  font-size: 1rem;
}

.breadcrumb li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb li a:hover {
  color: var(--accent);
}

.breadcrumb li[aria-current='page'] {
  color: var(--accent);
  font-weight: 600;
}

/* Brand logo item as link */
a.brand-logo-item {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.brand-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

/* ============================================================
   SKELETON LOADER
   ============================================================ */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.skeleton-card {
  pointer-events: none;
  cursor: default;
}

.skeleton-visual {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--bg3) 25%, rgba(255, 255, 255, 0.04) 50%, var(--bg3) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-body {
  padding: 1rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.skeleton-line {
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg3) 25%, rgba(255, 255, 255, 0.05) 50%, var(--bg3) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-brand-line {
  height: 12px;
  width: 40%;
}

.skeleton-name-line {
  height: 16px;
  width: 80%;
}

.skeleton-code-line {
  height: 12px;
  width: 65%;
}

.skeleton-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
}

.skeleton-price-line {
  height: 14px;
  width: 50%;
}

.skeleton-btn-ph {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--bg3) 25%, rgba(255, 255, 255, 0.05) 50%, var(--bg3) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

/* ============================================================
   LOAD MORE BUTTON
   ============================================================ */
.load-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 1rem;
  margin-top: 1rem;
}

.load-more-info {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.btn-load-more {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-load-more:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.25);
}

.btn-load-more:active {
  transform: translateY(0);
}

/* No results state */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 3rem;
  font-size: 0.95rem;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Mobile-First improvements covering all sections
   ============================================================ */

/* ── TABLET: ≤ 900px ── */
@media (max-width: 900px) {

  /* Hero */
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* Products section header */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .header-right {
    width: 100%;
    align-items: flex-start;
  }

  .search-container {
    max-width: 100%;
  }

  .filter-tabs {
    flex-wrap: wrap;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col {
    min-width: unset;
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Brands grid */
  .brands-grid {
    gap: 1.5rem;
  }

  .brand-img,
  .brand-svg {
    height: 45px;
    max-width: 160px;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── MOBILE: ≤ 600px ── */
@media (max-width: 600px) {

  /* Nav */
  nav {
    padding: 0 5%;
  }

  .nav-logo-text {
    font-size: 0.7rem;
    max-width: 160px;
    line-height: 1.2;
  }

  .nav-logo-img {
    height: 34px;
  }

  /* Hero */
  #beranda {
    padding: 5rem 5% 3rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1.05;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
  }

  /* Hero stats */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .hstat {
    text-align: center;
  }

  .hstat strong {
    font-size: 1.8rem;
  }

  .hstat p {
    font-size: 0.7rem;
  }

  /* Sections padding */
  #tentang,
  #produk,
  #kontak,
  #keunggulan,
  .testimonials,
  #klien,
  #brands {
    padding: 3.5rem 5%;
  }

  /* Section title */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .section-label {
    font-size: 0.7rem;
  }

  /* Brands */
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .brand-img,
  .brand-svg {
    height: 35px;
    max-width: 120px;
  }

  .brand-logo-item {
    padding: 0.75rem;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-card {
    padding: 0.85rem;
  }

  .product-visual {
    height: 110px;
  }

  .bearing-img,
  .bearing-svg {
    width: 80px;
    height: 80px;
  }

  .bearing-svg--wide {
    width: 100px;
    height: 72px;
  }

  .product-brand {
    font-size: 0.65rem;
  }

  .product-name {
    font-size: 0.85rem;
  }

  .product-code {
    font-size: 0.7rem;
  }

  .product-price {
    font-size: 0.8rem;
  }

  .product-price small {
    font-size: 0.6rem;
  }

  .add-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  /* Filter tabs */
  .filter-tabs {
    gap: 0.35rem;
    flex-wrap: wrap;
  }

  .tab {
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
  }

  /* Search */
  .search-container {
    max-width: 100%;
  }

  .search-container input {
    font-size: 0.8rem;
  }

  /* About */
  .about-points {
    gap: 1rem;
  }

  .about-point {
    padding: 1rem 1.2rem;
  }

  .about-exp {
    width: 90px;
    height: 90px;
    font-size: 1.6rem;
  }

  /* Why */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-item {
    padding: 1.25rem 1rem;
  }

  .why-num {
    font-size: 2rem;
  }

  .why-icon {
    font-size: 1.5rem;
  }

  .why-title {
    font-size: 0.9rem;
  }

  .why-desc {
    font-size: 0.78rem;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testi-card {
    padding: 1.5rem;
  }

  .testi-text {
    font-size: 0.85rem;
  }

  /* Contact */
  .kontak-desc {
    font-size: 0.9rem;
  }

  .cinfo-item {
    gap: 0.75rem;
  }

  .cinfo-icon {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer-logo {
    font-size: 1rem;
  }

  .footer-desc {
    font-size: 0.8rem;
  }

  .footer-col h4 {
    font-size: 0.85rem;
  }

  .footer-links a,
  .footer-socials a {
    font-size: 0.8rem;
  }

  /* Floating buttons */
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 82px;
    right: 16px;
    font-size: 1.2rem;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.72rem;
  }

  /* Load more */
  .btn-load-more {
    font-size: 0.82rem;
    padding: 0.65rem 1.75rem;
  }

  .load-more-info {
    font-size: 0.72rem;
  }

  /* Inquiry note */
  .inquiry-note {
    font-size: 0.8rem;
  }
}

/* ── SMALL MOBILE: ≤ 400px ── */
@media (max-width: 400px) {

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .nav-logo-text {
    display: none;
  }
}