/* =====================================================================
   Bisa di Sewa — Design System (Black #0A0A0A + Electric Blue #2563EB)
   ===================================================================== */
:root {
  --black: #0A0A0A;
  --black-2: #111114;
  --surface: #16161a;
  --surface-2: #1d1d22;
  --border: #26262c;
  --blue: #2563EB;
  --blue-600: #1d4ed8;
  --blue-glow: rgba(37, 99, 235, .35);
  --white: #ffffff;
  --gray-100: #e6e7eb;
  --gray-200: #cfd2da;
  --gray-300: #b4b6c0;
  --gray-400: #8b8d99;
  --gray-500: #6b6d78;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0,0,0,.5);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ============ TEMA TERANG (siang) ============ */
html[data-theme="light"] {
  --black: #f4f6fb;
  --black-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #eef1f7;
  --border: #e2e6ef;
  --white: #131722;
  --gray-100: #29303d;
  --gray-200: #333b49;
  --gray-300: #454e60;
  --gray-400: #5c6274;
  --gray-500: #8b92a4;
  --shadow: 0 12px 30px rgba(23,42,80,.10);
}
html[data-theme="light"] body { background: var(--black); color: var(--gray-100); }
html[data-theme="light"] .floatbar { background: rgba(255,255,255,.95); }
html[data-theme="light"] .rms-topbar { background: rgba(255,255,255,.82); }
html[data-theme="light"] .navbar { background: rgba(255,255,255,.85); }
html[data-theme="light"] .searchbar { background: #ffffff; }
html[data-theme="light"] .slider__arrow,
html[data-theme="light"] .herobanner__arrow { background: rgba(0,0,0,.45); color:#fff; }
/* Logo swap */
.logo-light { display: none; }
html[data-theme="light"] .logo-dark { display: none; }
html[data-theme="light"] .logo-light { display: block; }
/* Tombol toggle tema */
.theme-toggle { background: var(--surface-2); border: 1px solid var(--border); color: var(--white); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; transition: .15s; flex: none; }
.theme-toggle:hover { border-color: var(--blue); color: var(--blue); }


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { color: var(--white); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
.section-title { font-size: 2rem; margin-bottom: .5rem; }
.section-sub { color: var(--gray-400); margin-bottom: 2rem; }
.text-blue { color: var(--blue); }
.text-muted { color: var(--gray-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 1px solid transparent; transition: .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px var(--blue-glow); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--gray-100); }
.btn-outline:hover { border-color: var(--blue); color: var(--white); }
.btn-ghost { background: var(--surface-2); color: var(--gray-100); }
.btn-ghost:hover { background: var(--border); }
.btn-danger { background: rgba(239,68,68,.12); color: var(--red); }
.btn-danger:hover { background: var(--red); color: #fff; }
.btn-sm { padding: .45rem .9rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Badges ---------- */
.badge { display: inline-block; padding: .25rem .7rem; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.badge-blue { background: rgba(37,99,235,.15); color: #6ea0ff; }
.badge-green { background: rgba(34,197,94,.15); color: #4ade80; }
.badge-amber { background: rgba(245,158,11,.15); color: #fbbf24; }
.badge-red { background: rgba(239,68,68,.15); color: #f87171; }
.badge-gray { background: rgba(139,141,153,.15); color: var(--gray-300); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.card-pad { padding: 1.5rem; }

/* =====================================================================
   LANDING — Navbar
   ===================================================================== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar .container { display: flex; align-items: center; gap: 2rem; height: 72px; }
.navbar__logo img { height: 34px; }
.navbar__menu { display: flex; gap: 1.6rem; margin-left: 1rem; }
.navbar__menu a { color: var(--gray-300); font-weight: 500; font-size: .95rem; transition: .15s; }
.navbar__menu a:hover, .navbar__menu a.active { color: var(--white); }
.navbar__right { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.nav-phone { color: var(--gray-300); font-weight: 600; font-size: .92rem; }
.nav-phone:hover { color: var(--white); }
.cart-link { position: relative; color: var(--gray-100); }
.cart-badge {
  position: absolute; top: -8px; right: -10px; background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 700; border-radius: 999px; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ---------- Header baru: topbar + search + navrow + catstrip ---------- */
.topbar { background: var(--black-2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 60; }
.topbar__inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.topbar__logo img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
.searchbar { flex: 1; display: flex; max-width: 620px; margin: 0 auto; background: var(--black); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; transition: .15s; }
.searchbar:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.searchbar input { flex: 1; background: transparent; border: none; outline: none; color: var(--white); padding: .75rem 1.2rem; font-size: .95rem; font-family: inherit; }
.searchbar input::placeholder { color: var(--gray-500); }
.searchbar button { background: var(--blue); color: #fff; border: none; padding: 0 1.6rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: .15s; }
.searchbar button:hover { background: var(--blue-600); }
.topbar__contact { display: flex; align-items: center; gap: 1rem; }
.topbar__phone { display: flex; flex-direction: column; line-height: 1.15; color: var(--white); font-weight: 700; font-size: 1.05rem; }
.topbar__phone small { color: var(--blue); font-size: .72rem; font-weight: 600; }

.navrow { background: var(--black); border-bottom: 1px solid var(--border); position: sticky; top: 76px; z-index: 55; }
.navrow__inner { display: flex; align-items: center; gap: 1rem; height: 52px; }
.navmenu { list-style: none; display: flex; gap: .3rem; align-items: center; height: 100%; }
.navmenu > li { position: relative; height: 100%; display: flex; align-items: center; }
.navmenu > li > a { color: var(--gray-300); font-weight: 600; font-size: .92rem; padding: 0 1rem; height: 100%; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: .15s; }
.navmenu > li > a:hover, .navmenu > li > a.active { color: var(--white); border-bottom-color: var(--blue); }
.navrow__cta { margin-left: auto; }
.navtoggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 38px; padding: 0 10px; background: transparent; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; }
.navtoggle span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: .22s; }
.navtoggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle.active span:nth-child(2) { opacity: 0; }
.navtoggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.has-dd .dd { position: absolute; top: 100%; left: 0; min-width: 230px; background: var(--surface); border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s; z-index: 70; max-height: 360px; overflow-y: auto; }
.has-dd:hover .dd { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dd .dd a { display: block; padding: .5rem .8rem; border-radius: var(--radius-sm); color: var(--gray-300); font-size: .9rem; border: none; }
.has-dd .dd a:hover { background: var(--surface-2); color: var(--white); }

.catstrip { background: var(--black-2); border-bottom: 1px solid var(--border); }
.catstrip__viewport { overflow: hidden; padding: .8rem 0; }
.catstrip__track { display: flex; gap: .4rem; width: max-content; padding: 0 .5rem; animation: catstrip-scroll 32s linear infinite; }
.catstrip:hover .catstrip__track { animation-play-state: paused; }
@keyframes catstrip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.catstrip__inner { display: flex; gap: .4rem; overflow-x: auto; padding: .8rem 0; scrollbar-width: thin; }
.catstrip__item { display: flex; flex-direction: column; align-items: center; gap: .4rem; min-width: 96px; padding: .7rem .5rem; border-radius: var(--radius); border: 1px solid transparent; transition: .15s; flex: none; }
.catstrip__item:hover { background: var(--surface); border-color: var(--border); }
.catstrip__item .ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(37,99,235,.12); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.catstrip__item .lbl { font-size: .72rem; color: var(--gray-300); text-align: center; line-height: 1.2; }

/* Floating WhatsApp button (FAB) */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .2s ease, box-shadow .2s ease; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px rgba(37,211,102,.55); }
.wa-fab svg { width: 30px; height: 30px; }
@media (max-width: 560px) { .wa-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; } }

/* Floating contact bar (lama, tidak dipakai) */
.has-floatbar { padding-bottom: 60px; }
.floatbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(17,17,20,.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .topbar__inner { flex-wrap: wrap; height: auto; padding-top: .8rem; padding-bottom: .8rem; gap: .8rem; }
  .searchbar { order: 3; flex-basis: 100%; max-width: none; }
  .topbar__phone { font-size: .95rem; }
  .navrow { top: 0; position: static; }
  /* Tablet: menu tetap horizontal, geser bila sempit */
  .navrow__inner { overflow-x: auto; height: 48px; }
  .navmenu { flex-wrap: nowrap; }
  .navrow__cta { display: none; }
  .has-dd .dd { display: none; }
  .floatbar__info .hide-sm { display: none; }
}

/* HP: menu jadi hamburger dropdown */
@media (max-width: 720px) {
  .navrow__inner { position: relative; overflow: visible; height: 52px; gap: .6rem; }
  .navtoggle { display: flex; }
  .navmenu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; height: auto; max-height: 0; overflow: hidden; background: var(--black-2);
    border-bottom: 1px solid var(--border); transition: max-height .25s ease; z-index: 70;
  }
  .navmenu.open { max-height: 82vh; overflow-y: auto; box-shadow: var(--shadow); }
  .navmenu > li { display: block; height: auto; width: 100%; }
  .navmenu > li > a { height: auto; padding: .9rem 1.2rem; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; }
  .navmenu > li > a:hover, .navmenu > li > a.active { border-bottom-color: var(--border); border-left-color: var(--blue); }
  /* Submenu kategori tampil inline di dalam dropdown */
  .has-dd .dd { position: static; opacity: 1; visibility: visible; transform: none; display: block; max-height: none; overflow: visible; background: var(--black); border: none; border-radius: 0; box-shadow: none; padding: 0; }
  .has-dd .dd a { padding: .7rem 1.2rem .7rem 2.4rem; font-size: .86rem; }
}
.floatbar__inner { display: flex; align-items: center; gap: 1.2rem; height: 56px; }
.floatbar__wa { background: #25D366; color: #fff; font-weight: 700; padding: .55rem 1.2rem; border-radius: 999px; font-size: .9rem; }
.floatbar__wa:hover { background: #1eb658; }
.floatbar__info { display: flex; gap: 1.6rem; margin-left: auto; color: var(--gray-400); font-size: .85rem; align-items: center; }

/* ---------- Hero Slider ---------- */
.hero-slider { padding: 1.5rem 0 2.5rem; }
.slider { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--black-2); }
.slider__track { position: relative; width: 100%; aspect-ratio: 1774 / 887; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; display: block; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; transition: .15s; }
.slider__arrow:hover { background: var(--blue); border-color: var(--blue); }
.slider__arrow.left { left: 16px; }
.slider__arrow.right { right: 16px; }
.slider__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .5rem; }
.slider__dots .dot { width: 10px; height: 10px; border-radius: 999px; border: none; background: rgba(255,255,255,.45); cursor: pointer; transition: .2s; padding: 0; }
.slider__dots .dot.active { background: var(--blue); width: 26px; }
@media (max-width: 600px) { .slider__arrow { width: 34px; height: 34px; font-size: 1.3rem; } }

/* ---------- Hero Banner (ala referensi) ---------- */
.herobanner { padding: 2rem 0 3rem; }
.herobanner__box {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, #0d0d10 0%, #14141a 55%, #0b1220 100%);
  border: 1px solid var(--border); border-radius: 18px; padding: 3rem 3.5rem; overflow: hidden;
  box-shadow: var(--shadow);
}
.herobanner__box::before { content:''; position:absolute; right:-80px; top:-80px; width:340px; height:340px; border-radius:50%; background: radial-gradient(circle, var(--blue-glow), transparent 70%); }
.herobanner__content { position: relative; z-index: 2; }
.herobanner__content h1 { font-size: 2.6rem; margin-bottom: 1rem; }
.herobanner__content h1 span { color: var(--blue); }
.herobanner__content p { color: var(--gray-300); font-size: 1.05rem; max-width: 480px; margin-bottom: 1.8rem; }
.herobanner__media { position: relative; z-index: 2; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/11; background: var(--black-2); }
.herobanner__media img { width: 100%; height: 100%; object-fit: cover; }
.herobanner__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid var(--border); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; cursor: pointer; transition: .15s; }
.herobanner__arrow:hover { background: var(--blue); border-color: var(--blue); }
.herobanner__arrow.left { left: 14px; }
.herobanner__arrow.right { right: 14px; }
.herobanner .hero__stats { display: flex; gap: 3rem; margin-top: 2rem; justify-content: center; }
.herobanner .hero__stats .num { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.herobanner .hero__stats .lbl { color: var(--gray-400); font-size: .85rem; text-align: center; }

@media (max-width: 900px) {
  .herobanner__box { grid-template-columns: 1fr; padding: 2rem; }
  .herobanner__media { display: none; }
  .herobanner__content h1 { font-size: 2rem; }
  .herobanner .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* ---------- Hero (lama) ---------- */
.hero {
  position: relative; padding: 5rem 0 4rem;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(37,99,235,.22), transparent 60%),
    radial-gradient(700px 400px at 0% 20%, rgba(37,99,235,.1), transparent 55%);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem;
  border: 1px solid var(--border); border-radius: 999px; color: var(--gray-300);
  font-size: .8rem; margin-bottom: 1.5rem;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.hero h1 { font-size: 3.2rem; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--blue); }
.hero p { color: var(--gray-300); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 3rem; }
.hero__stats .num { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero__stats .lbl { color: var(--gray-400); font-size: .85rem; }
.hero__visual {
  aspect-ratio: 1/1; border-radius: 20px; border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface), var(--black-2));
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: var(--shadow);
}
.hero__visual img { width: 70%; filter: drop-shadow(0 0 40px var(--blue-glow)); }

/* ---------- Section ---------- */
.section { padding: 4.5rem 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; transition: .2s; display: flex; flex-direction: column; gap: .6rem;
}
.cat-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card .ico { width: 46px; height: 46px; border-radius: 10px; background: rgba(37,99,235,.12); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.cat-card h4 { font-size: 1rem; }
.cat-card .count { color: var(--gray-400); font-size: .82rem; }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.prod-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: .2s; display: flex; flex-direction: column;
}
.prod-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-card__img { aspect-ratio: 4/3; background: var(--black-2); overflow: hidden; position: relative; }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card__img .ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color: var(--gray-500); font-size:2rem; }
.prod-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.prod-card__cat { color: var(--blue); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.prod-card__title { font-size: 1rem; color: var(--white); font-weight: 600; }
.prod-card__price { margin-top: auto; font-weight: 700; color: var(--white); }
.prod-card__price small { color: var(--gray-400); font-weight: 400; }

/* ---------- Filter bar ---------- */
.toolbar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.catalog-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; }
.sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); margin-bottom: 1rem; }
.sidebar a { display: block; padding: .5rem .8rem; border-radius: var(--radius-sm); color: var(--gray-300); font-size: .92rem; }
.sidebar a:hover, .sidebar a.active { background: var(--surface-2); color: var(--white); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; margin-bottom: .45rem; font-size: .88rem; color: var(--gray-300); font-weight: 500; }
.input, select.input, textarea.input {
  width: 100%; padding: .75rem .9rem; background: var(--black-2);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--white); font-family: inherit; font-size: .95rem; transition: .15s;
}
.input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.input::placeholder { color: var(--gray-500); }
textarea.input { resize: vertical; min-height: 100px; }
/* Panah dropdown kustom + jarak dari kotak (biar tidak dempet garis) */
select.input, .dataTables_wrapper select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b8d99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 15px;
  padding-right: 2.3rem;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Product detail ---------- */
.breadcrumb { color: var(--gray-500); font-size: .85rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-200); }
.pd-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; }
.pd-gallery { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--black-2); aspect-ratio: 4/3; }
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pd-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:5rem; color: var(--gray-500); }
.pd-thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.pd-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); cursor: pointer; transition: .15s; }
.pd-thumb:hover { border-color: var(--blue); }
.pd-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--gray-400); font-size: .85rem; margin-bottom: .8rem; }
.pd-meta b { color: var(--gray-200); }
.pd-title { font-size: 2rem; margin-bottom: .6rem; }
.pd-lead { color: var(--gray-300); margin-bottom: .5rem; }
.pd-price { font-size: 2rem; font-weight: 800; color: var(--blue); margin: 1rem 0; }
.pd-price small { font-size: 1rem; color: var(--gray-400); font-weight: 400; }
.pd-specs { list-style: none; margin: 1.2rem 0; display: grid; gap: .5rem; }
.pd-specs li { position: relative; padding-left: 1.6rem; color: var(--gray-200); font-size: .95rem; }
.pd-specs li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.pd-actions { display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0 1rem; max-width: 380px; }
.btn-wa { background: #25D366; color: #fff; font-size: 1.05rem; padding: .9rem 1.4rem; }
.btn-wa:hover { background: #1eb658; transform: translateY(-1px); }
.btn-wa .wa-ic { font-size: 1.2rem; }
.pd-share { display: flex; gap: 1rem; align-items: center; font-size: .85rem; }
.pd-share a { color: var(--gray-400); }
.pd-share a:hover { color: var(--blue); }
.pd-desc { margin-top: 3rem; max-width: 900px; }
.pd-tabbar { border-bottom: 1px solid var(--border); margin-bottom: 1.2rem; }
.pd-tabbar span { display: inline-block; padding: .7rem 1.2rem; color: var(--white); font-weight: 600; border-bottom: 2px solid var(--blue); }
.avail-pill { display: inline-flex; gap: .5rem; align-items: center; padding: .4rem .9rem; border-radius: 999px; background: var(--surface-2); font-size: .85rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.tbl { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.tbl th { text-align: left; padding: .9rem 1rem; background: var(--black-2); color: var(--gray-400); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; border-bottom: 1px solid var(--border); }
table.tbl td { padding: .9rem 1rem; border-bottom: 1px solid var(--border); color: var(--gray-100); }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl tr:hover td { background: rgba(255,255,255,.02); }

/* ---------- Alerts ---------- */
.alert { padding: .9rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .92rem; border: 1px solid transparent; }
.alert-success { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: #86efac; }
.alert-error { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: #fca5a5; }

/* =====================================================================
   HALAMAN INTERIOR (About, Services, Portfolio, News, Career)
   ===================================================================== */
.page-hero { position: relative; padding: 4.5rem 0 3rem; text-align: center; overflow: hidden;
  background: radial-gradient(900px 380px at 50% -20%, rgba(37,99,235,.20), transparent 65%); }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem; border: 1px solid var(--border); border-radius: 999px; color: var(--gray-300); font-size: .8rem; margin-bottom: 1.3rem; }
.page-hero .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.page-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; letter-spacing: -.02em; }
.page-hero h1 span { color: var(--blue); }
.page-hero p { color: var(--gray-300); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb-c { display: flex; gap: .4rem; justify-content: center; margin-top: 1.2rem; font-size: .82rem; color: var(--gray-500); }
.breadcrumb-c a { color: var(--gray-400); } .breadcrumb-c a:hover { color: var(--blue); }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.stat-box { text-align: center; padding: 1.8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--black-2)); transition: .2s; }
.stat-box:hover { border-color: var(--blue); transform: translateY(-3px); }
.stat-box .n { font-size: 2.3rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-box .l { color: var(--gray-400); font-size: .88rem; margin-top: .5rem; }

/* Split (teks + media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.split.reverse .split__media { order: 2; }
.split__media { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; background: var(--black-2); position: relative; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .glow { position: absolute; inset: 0; background: radial-gradient(400px 200px at 80% 10%, var(--blue-glow), transparent 60%); pointer-events: none; }
.split h2 { font-size: 2rem; margin-bottom: 1rem; }
.split h2 span { color: var(--blue); }
.split p { color: var(--gray-300); margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: .7rem; margin-top: 1.2rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--gray-200); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(37,99,235,.15); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; }

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.value-card { padding: 2rem 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: .2s; }
.value-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 14px 34px rgba(37,99,235,.14); }
.value-card .ic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(140deg, var(--blue), #4f46e5); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.1rem; box-shadow: 0 8px 20px var(--blue-glow); }
.value-card h4 { font-size: 1.15rem; margin-bottom: .5rem; }
.value-card p { color: var(--gray-400); font-size: .92rem; }
.value-card--link { display: block; cursor: pointer; }
.value-card--link:hover h4 { color: var(--blue); }
.value-card__more { display: inline-block; margin-top: .9rem; color: var(--blue); font-weight: 700; font-size: .88rem; opacity: .85; transition: .2s; }
.value-card--link:hover .value-card__more { opacity: 1; transform: translateX(3px); }

/* Steps / process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step { position: relative; padding: 1.8rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.step__n { position: absolute; top: -16px; left: 1.4rem; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(140deg, var(--blue), #4f46e5); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: 0 8px 18px var(--blue-glow); }
.step h4 { margin: 1.2rem 0 .4rem; font-size: 1.05rem; }
.step p { color: var(--gray-400); font-size: .88rem; }

/* Tabs (filter portfolio) */
.tabs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.tab { padding: .5rem 1.1rem; border: 1px solid var(--border); border-radius: 999px; color: var(--gray-300); font-size: .88rem; font-weight: 600; cursor: pointer; transition: .15s; background: transparent; }
.tab:hover { color: var(--white); border-color: var(--gray-500); }
.tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Portfolio grid */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pf-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); cursor: pointer; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.pf-item:hover img { transform: scale(1.09); }
.pf-item__ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; background: linear-gradient(to top, rgba(5,8,16,.92), rgba(5,8,16,.15) 55%, transparent); opacity: .85; transition: .25s; }
.pf-item:hover .pf-item__ov { opacity: 1; }
.pf-item__ov .cat { color: #6ea0ff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.pf-item__ov h4 { color: #fff; font-size: 1.1rem; margin-top: .2rem; }
.pf-item__ov .client { color: var(--gray-300); font-size: .84rem; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.news-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .2s; display: flex; flex-direction: column; }
.news-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--black-2); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.news-card__meta { display: flex; gap: .8rem; align-items: center; font-size: .78rem; }
.news-card__meta .cat { color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.news-card__meta .date { color: var(--gray-500); }
.news-card h4 { font-size: 1.1rem; line-height: 1.35; }
.news-card p { color: var(--gray-400); font-size: .9rem; }
.news-card .more { margin-top: auto; color: var(--blue); font-weight: 600; font-size: .88rem; }

/* Career */
.job-list { display: grid; gap: 1rem; }
.job-card { display: flex; align-items: center; gap: 1.2rem; padding: 1.5rem 1.7rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: .2s; }
.job-card:hover { border-color: var(--blue); transform: translateX(4px); }
.job-card__ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: rgba(37,99,235,.12); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.job-card__info { flex: 1; }
.job-card__info h4 { font-size: 1.1rem; margin-bottom: .3rem; }
.job-card__tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.job-tag { font-size: .74rem; padding: .2rem .7rem; border-radius: 999px; background: var(--surface-2); color: var(--gray-300); }

/* CTA band putih-biru reuse sudah ada (.cta-band) */

@media (max-width: 980px) {
  .page-hero h1 { font-size: 2.1rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .split, .split.reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .value-grid, .steps, .pf-grid, .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .value-grid, .steps, .pf-grid, .news-grid, .stats-row { grid-template-columns: 1fr; }
  .job-card { flex-wrap: wrap; }
}

/* ---------- Footer (modern) ---------- */
.footer { position: relative; background: linear-gradient(180deg, var(--black-2), var(--black)); border-top: 1px solid var(--border); padding: 4.5rem 0 1.6rem; margin-top: 5rem; overflow: hidden; }
.footer__accent { position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.footer::before { content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 720px; height: 300px; background: radial-gradient(circle, rgba(37,99,235,.12), transparent 62%); pointer-events: none; }
.footer .container { position: relative; z-index: 1; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 2.6rem; padding-bottom: 2.6rem; border-bottom: 1px solid var(--border); }
.footer__brand .flogo { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.footer__brand p { color: var(--gray-400); font-size: .92rem; max-width: 300px; margin-top: 1rem; line-height: 1.7; }
.footer__brand .company { margin-top: .8rem; color: var(--gray-500); font-size: .82rem; }
.footer__socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer__socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--gray-300); transition: .2s; }
.footer__socials a:hover { border-color: var(--blue); color: #fff; background: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 20px var(--blue-glow); }
.footer__socials svg { width: 19px; height: 19px; }
.footer__col h5 { color: var(--white); font-size: 1rem; margin-bottom: 1.2rem; position: relative; padding-bottom: .7rem; }
.footer__col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--blue); border-radius: 2px; }
.footer__col a { display: flex; align-items: center; gap: .4rem; color: var(--gray-400); font-size: .9rem; padding: .38rem 0; transition: .15s; }
.footer__col a::before { content: '›'; color: var(--blue); opacity: 0; transform: translateX(-6px); transition: .15s; }
.footer__col a:hover { color: var(--white); }
.footer__col a:hover::before { opacity: 1; transform: translateX(0); }
.footer__contact p { color: var(--gray-400); font-size: .9rem; margin-bottom: .8rem; display: flex; gap: .6rem; line-height: 1.5; }
.footer__contact p .ic { color: var(--blue); flex: none; margin-top: .1rem; }
.footer__contact b { color: var(--white); display: block; font-weight: 600; }
.footer__contact .footer__wa { display: inline-flex; width: -moz-fit-content; width: fit-content; align-items: center; gap: .5rem; margin-top: .6rem; padding: .6rem 1.2rem; background: #25D366; color: #fff; font-weight: 700; border-radius: 10px; font-size: .88rem; box-shadow: 0 6px 16px rgba(37,211,102,.3); }
.footer__contact .footer__wa::before { content: none; }
.footer__contact .footer__wa:hover { background: #1eb658; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37,211,102,.4); }
.footer__contact .footer__wa svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; color: var(--gray-500); font-size: .84rem; }
.footer__bottom a { color: var(--gray-400); }
.footer__bottom a:hover { color: var(--blue); }
.footer__bottom .badges { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.footer__bottom .badges span { padding: .25rem .7rem; border: 1px solid var(--border); border-radius: 999px; font-size: .72rem; color: var(--gray-400); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { justify-content: center; text-align: center; } }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.testi { padding: 1.6rem; }
.testi .stars { color: var(--amber); margin-bottom: .8rem; }
.testi p { color: var(--gray-200); font-style: italic; margin-bottom: 1rem; }
.testi .who { display: flex; gap: .8rem; align-items: center; }
.testi .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue), #4f46e5);
  border-radius: 20px; padding: 3rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: 2rem; margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 1.6rem; }
.cta-band .btn-primary { background: #fff; color: var(--blue); }

/* ---------- Feature strip ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.feat { display: flex; gap: 1rem; padding: 1.4rem; }
.feat .ico { flex: none; width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,235,.12); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feat h4 { font-size: 1rem; margin-bottom: .2rem; }
.feat p { color: var(--gray-400); font-size: .88rem; }

/* ---------- Section title tengah ---------- */
.sec-title-center { text-align: center; max-width: 660px; margin: 0 auto 2.6rem; position: relative; padding-top: 2.4rem; }
/* Ornamen pemisah di atas judul: garis gradient + belah ketupat menyala */
.sec-title-center::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 220px; height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,.7), transparent); }
.sec-title-center::after { content: ''; position: absolute; top: 2px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 9px; height: 9px; background: var(--blue); border-radius: 2px; box-shadow: 0 0 14px var(--blue); }
.sec-title-center h2 { font-size: 2rem; margin-bottom: .6rem; }
.sec-title-center h2 span { color: var(--blue); }
.sec-title-center h2::after { content: ''; display: block; width: 56px; height: 3px; margin: .9rem auto 0; background: linear-gradient(90deg, var(--blue), #4f46e5); border-radius: 3px; }
.sec-title-center p { color: var(--gray-400); }
/* Judul rata-kiri (.section-head) diberi aksen batang biru */
.section-head .section-title { position: relative; padding-left: 16px; }
.section-head .section-title::before { content: ''; position: absolute; left: 0; top: .12em; bottom: .12em; width: 4px; border-radius: 3px; background: linear-gradient(180deg, var(--blue), #4f46e5); box-shadow: 0 0 12px var(--blue-glow); }

/* ---------- Produk Terlaris ---------- */
.best-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.best-card { position: relative; background: linear-gradient(180deg, var(--surface), var(--black-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.2rem 1.3rem; text-align: center; transition: .2s; overflow: hidden; }
.best-card::after { content:''; position:absolute; left:50%; bottom:-40%; transform:translateX(-50%); width:180px; height:180px; border-radius:50%; background: radial-gradient(circle, var(--blue-glow), transparent 70%); opacity:.5; transition:.2s; }
.best-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow); }
.best-card:hover::after { opacity: 1; }
.best-badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--blue); color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .05em; padding: .3rem .6rem; border-radius: 999px; box-shadow: 0 4px 12px var(--blue-glow); }
.best-card__img { position: relative; z-index: 1; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; margin-bottom: 1rem; background: var(--black); }
.best-card__img img { width: 100%; height: 100%; object-fit: cover; }
.best-card__cat { position: relative; z-index: 1; color: var(--blue); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.best-card__title { position: relative; z-index: 1; color: var(--white); font-weight: 600; margin: .3rem 0 .5rem; font-size: 1rem; }
.best-card__price { position: relative; z-index: 1; color: var(--white); font-weight: 700; }
.best-card__price small { color: var(--gray-400); font-weight: 400; }

/* ---------- Keunggulan & Benefit ---------- */
.benefit-sec { background:
  radial-gradient(700px 300px at 100% 0%, rgba(37,99,235,.1), transparent 60%),
  radial-gradient(700px 300px at 0% 100%, rgba(37,99,235,.08), transparent 60%); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.benefit-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: .2s; }
.benefit-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(37,99,235,.15); }
.benefit-ic { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 18px; background: linear-gradient(140deg, var(--blue), #4f46e5); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 8px 20px var(--blue-glow); }
.benefit-card h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.benefit-card p { color: var(--gray-400); font-size: .9rem; }

/* ---------- Promo bands ---------- */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.promo-band { position: relative; border-radius: 16px; overflow: hidden; min-height: 220px; border: 1px solid var(--border); display: flex; align-items: center; }
.promo-band::before { content:''; position:absolute; inset:0; z-index:0; }
.promo-a::before { background: linear-gradient(120deg, #1d4ed8, #0b1220); }
.promo-b::before { background: linear-gradient(120deg, #4f46e5, #0b1220); }
.promo-band__body { position: relative; z-index: 1; padding: 2.5rem; }
.promo-band__body h3 { font-size: 1.7rem; color: #fff; margin-bottom: .6rem; }
.promo-band__body p { color: rgba(255,255,255,.85); margin-bottom: 1.2rem; max-width: 340px; }

/* ---------- Marquee klien ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; background: var(--black-2); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { color: var(--gray-500); font-weight: 800; font-size: 1.4rem; letter-spacing: .05em; white-space: nowrap; transition: .2s; }
.marquee__item:hover { color: var(--blue); }
.marquee__logo { display: inline-flex; align-items: center; }
.marquee__logo img { height: 40px; max-width: 150px; object-fit: contain; opacity: .85; transition: .2s; }
.marquee__logo:hover img { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Instagram grid ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.ig-tile { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile .ig-ic { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(37,99,235,.35); opacity: 0; transition: .2s; font-size: 1.4rem; }
.ig-tile:hover .ig-ic { opacity: 1; }

@media (max-width: 980px) {
  .best-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .best-grid, .benefit-grid { grid-template-columns: 1fr; }
}

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: 4rem 1rem; color: var(--gray-400); }
.empty .big { font-size: 3rem; margin-bottom: 1rem; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; }
.pagination a, .pagination span { padding: .5rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--gray-300); }
.pagination .active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .pd-layout, .catalog-layout { grid-template-columns: 1fr; }
  .cat-grid, .prod-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid, .feat-grid, .footer__grid { grid-template-columns: 1fr 1fr; }
  .navbar__menu { display: none; }
  .nav-toggle { display: block; }
  .hero__visual { display: none; }
  .hero h1 { font-size: 2.3rem; }
}
@media (max-width: 560px) {
  .cat-grid, .prod-grid, .testi-grid, .feat-grid, .footer__grid, .grid-2 { grid-template-columns: 1fr; }
}
