/* ============================================================
   א. רובין דגלים — Premium Hebrew RTL site (reference-style)
============================================================ */

:root {
  --blue: #0B2D5C;
  --blue-700: #103a73;
  --blue-900: #061a36;
  --red: #D62839;
  --red-600: #b81e2d;
  --white: #FFFFFF;
  --bg: #F5F7FA;
  --bg-2: #EEF2F7;
  --text: #1A1A1A;
  --text-2: #4A5360;
  --text-3: #7A8493;
  --border: #DCE2EA;
  --border-2: #E8ECF2;

  --shadow-sm: 0 1px 2px rgba(11, 45, 92, 0.04), 0 1px 3px rgba(11, 45, 92, 0.05);
  --shadow-md: 0 4px 14px rgba(11, 45, 92, 0.07), 0 2px 6px rgba(11, 45, 92, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(11, 45, 92, 0.20), 0 8px 24px rgba(11, 45, 92, 0.08);
  --shadow-xl: 0 40px 90px -30px rgba(11, 45, 92, 0.35);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --container: 1240px;
  --topbar-h: 44px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Heebo", "Assistant", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
}
body { }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue);
  margin: 0;
  line-height: 1.18;
  text-wrap: balance;
}

/* ---------- Eyebrow & headers ---------- */
.section-title {
  text-align: center;
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 12px;
  color: var(--blue);
}
.section-title + .section-rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 48px;
}
.section-lead {
  text-align: center;
  color: var(--text-2);
  max-width: 62ch;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: inherit;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -10px rgba(214,40,57,0.5); }
.btn-primary:hover { background: var(--red-600); box-shadow: 0 12px 28px -10px rgba(214,40,57,0.65); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-700); }
.btn-dark-outline {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-dark-outline:hover { background: rgba(0,0,0,0.45); }
.btn-light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-light-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); }
.btn-whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 20px -10px rgba(37,211,102,0.55);
}
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ============================================================
   TOP UTILITY BAR
============================================================ */
.topbar {
  height: var(--topbar-h);
  background: #fff;
  border-bottom: 1px solid var(--border-2);
  display: flex; align-items: center;
  position: relative;
  z-index: 49;
}
.topbar-inner {
  display: flex; align-items: center;
  height: 100%;
  gap: 18px;
}
.topbar .red-cta {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 0 18px;
  height: 100%;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s var(--ease);
}
.topbar .red-cta:hover { background: var(--red-600); }
.topbar .wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
}
.topbar .contact-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--blue);
}
.topbar .contact-item .ic { color: var(--red); }
.topbar .spacer { flex: 1; }
.topbar .top-meta {
  font-size: 13px; color: var(--text-3);
  margin-inline-start: auto;
  display: flex; gap: 14px; align-items: center;
  white-space: nowrap;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-2);
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.nav {
  display: flex;
  justify-content: center;
  gap: 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--blue);
  font-weight: 800;
}
.logo-mark {
  width: 48px; height: 38px;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 17px; letter-spacing: -0.01em; }
.logo-text small { font-size: 11.5px; color: var(--text-3); font-weight: 500; }

.nav {
  display: flex;
  justify-content: center;
  gap: 0;
}
.nav a {
  position: relative;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--red); }
.nav a.active { color: var(--blue); font-weight: 600; }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0; right: 16px; left: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg);
  align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
  .topbar-inner > .top-meta { display: none; }
  .topbar .contact-item span:not(.ic) { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: clamp(540px, 70vh, 720px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #061a36;
  z-index: -2;
}
/* Industrial scene placeholder: machine + flag fabric */
.hero-scene {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 80% at 15% 50%, rgba(214, 40, 57, 0.18) 0%, transparent 60%),
    radial-gradient(80% 60% at 10% 30%, rgba(11, 45, 92, 0) 0%, rgba(8, 28, 60, 0.0) 60%),
    linear-gradient(120deg, #051327 0%, #0a1d3a 40%, #0e2546 100%);
  overflow: hidden;
}
.hero-scene::before {
  /* Industrial vertical stripes — suggests fabric */
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(180deg,
      transparent 0 80px,
      rgba(255,255,255,0.03) 80px 160px);
  mask-image: linear-gradient(120deg, transparent 0%, #000 30%, transparent 80%);
  opacity: 0.6;
}
.hero-illust {
  position: absolute;
  inset: 0 45% 0 0;
  width: 55%;
  height: 100%;
  z-index: -1;
  mask-image: linear-gradient(90deg, #000 0%, #000 60%, transparent 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(6,21,40,0.1) 40%, rgba(6,21,40,0.78) 100%);
  z-index: -1;
}
.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* in RTL, flex-start = right */
}
.hero-content {
  max-width: 620px;
  text-align: right;
}
.hero h1 {
  font-size: clamp(34px, 4.8vw, 56px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 50ch;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust {
  padding-block: 56px;
  background: #fff;
  border-bottom: 1px solid var(--border-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 8px 12px;
}
.trust-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: var(--blue);
}
.trust-item strong { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.4; max-width: 16ch; }

@media (max-width: 980px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CATALOG (white product cards, like reference)
============================================================ */
.section { padding-block: 80px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,45,92,0.15);
}
.cat-img {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8edf3 100%);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.cat-img svg { width: 78%; height: 78%; }
.cat-meta {
  padding: 22px 22px 24px;
  text-align: center;
}
.cat-meta h3 {
  font-size: 19px;
  color: var(--blue);
  font-weight: 700;
  margin: 0;
}
.cat-meta .link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--red);
  font-weight: 500;
  transition: gap .2s var(--ease);
}
.cat-card:hover .cat-meta .link { gap: 10px; }

@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY US (split)
============================================================ */
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.whyus-text h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--blue);
  text-align: right;
  margin-bottom: 18px;
  line-height: 1.25;
}
.whyus-text > p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 32px;
  max-width: 52ch;
}
.whyus-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.whyus-feat { text-align: right; }
.whyus-feat .ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--blue);
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 14px;
}
.whyus-feat strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.whyus-feat span {
  display: block;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.5;
}

.whyus-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
}
.whyus-collage > div:nth-child(1) { grid-column: 1 / 3; }
.whyus-collage .ph {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

@media (max-width: 980px) {
  .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
  .whyus-collage { height: 420px; }
}

/* ============================================================
   STICKY ASIDE (floating catalog navigator)
============================================================ */
.sticky-aside {
  position: fixed;
  top: 100px;
  left: 24px;
  width: 230px;
  z-index: 45;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sticky-aside.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.sticky-aside-head {
  padding: 16px;
  border-bottom: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 12px;
}
.sticky-aside-head .mini-logo {
  display: flex; align-items: center; gap: 10px;
}
.sticky-aside-head .mini-logo svg { width: 38px; height: 30px; }
.sticky-aside-head .mini-logo strong { font-size: 14px; color: var(--blue); }
.sticky-aside-head .mini-logo small { display: block; font-size: 10px; color: var(--text-3); }
.sticky-aside-head .mini-cta {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 8px;
}
.sticky-aside-head .mini-cta .btn { width: 100%; padding: 9px 14px; font-size: 13px; }
.sticky-aside-cats {
  padding: 10px;
}
.sticky-aside-title {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 10px;
}
.aside-cat {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s;
}
.aside-cat:hover { background: var(--bg); }
.aside-cat .mini-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bg);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--blue);
}
.aside-cat .mini-thumb svg { width: 26px; height: 26px; }
.aside-cat .l strong { display: block; font-size: 12.5px; color: var(--blue); font-weight: 600; }
.aside-cat .l small { display: block; font-size: 10.5px; color: var(--red); }
.aside-cat .l small::after { content: " ›"; }

@media (max-width: 1280px) {
  .sticky-aside { display: none; }
}

/* ============================================================
   WORKS GALLERY
============================================================ */
.works-bg { background: #fff; }
.filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.filter {
  padding: 9px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s var(--ease);
}
.filter:hover { border-color: var(--blue); color: var(--blue); }
.filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
.work-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.work-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.work-tile .ph { width: 100%; height: 100%; }
.work-tile .label-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: end;
  padding: 14px;
  background: linear-gradient(180deg, transparent 50%, rgba(6,21,40,0.85) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.work-tile:hover .label-overlay { opacity: 1; }
.work-tile .label-overlay strong { font-size: 15px; }
.work-tile .label-overlay span { font-size: 12px; color: rgba(255,255,255,0.75); }

.work-tile.w2 { grid-column: span 2; }
.work-tile.w3 { grid-column: span 3; }
.work-tile.h2 { grid-row: span 2; }

@media (max-width: 980px) {
  .works-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; }
  .work-tile.w2, .work-tile.w3 { grid-column: span 1; }
}
@media (max-width: 560px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}

.works-more {
  display: flex; justify-content: center; margin-top: 40px;
}

/* ============================================================
   CLIENTS STRIP
============================================================ */
.clients {
  background: var(--blue);
  color: #fff;
  padding-block: 70px;
  position: relative;
  overflow: hidden;
}
.clients::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 100% 0%, rgba(214,40,57,0.15), transparent 60%);
  pointer-events: none;
}
.clients .section-title { color: #fff; }
.clients .section-rule { background: var(--red); }
.clients-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 0;
  position: relative;
}
.client-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 12px;
  position: relative;
  min-height: 100px;
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.client-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%; bottom: 25%; left: 0;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.client-cell .logo-svg { width: 100%; max-width: 96px; height: 60px; opacity: 0.85; transition: opacity .2s; color: #fff; }
.client-cell:hover .logo-svg { opacity: 1; }

@media (max-width: 980px) { .clients-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clients-row { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi { background: #fff; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  text-align: center;
  align-items: center;
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(11,45,92,0.15); }
.t-stars { display: flex; gap: 2px; color: #f5a623; }
.t-quote {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  text-wrap: pretty;
  font-weight: 400;
  margin: 0;
}
.t-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
  width: 100%; justify-content: center;
}
.t-author-info { text-align: center; }
.t-author-info strong { display: block; font-size: 14px; color: var(--blue); font-weight: 700; }
.t-author-info span { display: block; font-size: 12.5px; color: var(--text-3); }
.t-author .t-logo {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--blue);
}

@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS (red circles)
============================================================ */
.process { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 8%; left: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.step-num {
  width: 58px; height: 58px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 22px;
  margin-bottom: 18px;
  transition: all .25s var(--ease);
  box-shadow: 0 8px 18px -6px rgba(214,40,57,0.5);
}
.process-step:hover .step-num { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 28px -6px rgba(214,40,57,0.6); }
.process-step h4 { font-size: 16px; color: var(--blue); margin-bottom: 6px; font-weight: 700; }
.process-step p { font-size: 13px; color: var(--text-3); margin: 0; line-height: 1.55; max-width: 18ch; }

@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA (red gradient with flag)
============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: 80px;
}
.final-bg {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, #061a36 0%, #0B2D5C 30%, #b81e2d 75%, #D62839 100%);
  z-index: -2;
}
/* Israeli flag visual on left side */
.final-flag {
  position: absolute;
  inset: 0 auto 0 0;
  width: 35%;
  background:
    linear-gradient(90deg, transparent 0%, #061a36 100%),
    repeating-linear-gradient(180deg,
      transparent 0% 18%,
      #1F3A8A 18% 28%,
      transparent 28% 72%,
      #1F3A8A 72% 82%,
      transparent 82%
    ),
    linear-gradient(180deg, #f5f7fa 0%, #e8edf3 100%);
  background-blend-mode: multiply, normal, normal;
  mask-image: linear-gradient(90deg, #000 0%, #000 60%, transparent 100%);
  z-index: -1;
  opacity: 0.7;
}
.final-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin-inline: auto;
}
.final-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: #fff;
  margin-bottom: 16px;
}
.final-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 32px;
  max-width: 56ch;
  line-height: 1.7;
}
.final-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #061a36;
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.55); }
.footer-desc {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 38ch;
}
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h5 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.footer-contact-item .ic { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STICKY WHATSAPP
============================================================ */
.sticky-wa {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .25s var(--ease);
}
.sticky-wa::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
}
.sticky-wa:hover { transform: scale(1.06); }

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,26,54,0.97);
  z-index: 80;
  display: flex; flex-direction: column;
  padding: 80px 28px 28px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  color: #fff;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  padding: 16px 0;
  font-size: 20px; font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .mm-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-close {
  position: absolute; top: 20px; left: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
}

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js-reveal .reveal:not(.in) { opacity: 0; transform: translateY(20px); }
html.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   PAGE HEADER (subpages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, #061a36 0%, #0B2D5C 60%, #103a73 100%);
  color: #fff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 0% 100%, rgba(214,40,57,0.25), transparent 60%),
    repeating-linear-gradient(180deg, transparent 0 60px, rgba(255,255,255,0.03) 60px 120px);
  z-index: -1;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb .sep { opacity: 0.5; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   CATEGORY PRODUCT LISTING (cream cards like reference)
============================================================ */
.cat-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-2);
}
.cat-toolbar .results-count {
  color: var(--text-3);
  font-size: 14px;
}
.cat-toolbar .results-count strong { color: var(--blue); font-weight: 700; }
.cat-toolbar .sort-group {
  display: inline-flex; gap: 8px; align-items: center;
}
.cat-toolbar .sort-group select {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.cat-subnav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.cat-subnav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s var(--ease);
}
.cat-subnav a:hover { border-color: var(--blue); color: var(--blue); }
.cat-subnav a.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  position: relative;
  display: block;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11,45,92,0.15);
}
.product-card .pc-img {
  aspect-ratio: 1;
  background: linear-gradient(180deg, #fff5ec 0%, #fadcc7 100%);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.product-card .pc-quickview {
  position: absolute;
  top: 12px; left: 12px;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--blue);
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.product-card:hover .pc-quickview { opacity: 1; transform: translateY(0); }
.product-card .pc-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
}
.product-card .pc-badge.muted { background: rgba(11,45,92,0.85); }
.product-card .pc-meta {
  padding: 18px 18px 22px;
  text-align: center;
}
.product-card .pc-code {
  font-size: 14px;
  font-weight: 700;
  color: #0a8ad8;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.product-card .pc-desc {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  text-wrap: balance;
  min-height: 60px;
}
.product-card .pc-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
  opacity: 0;
  max-height: 0;
  transition: opacity .25s var(--ease), max-height .25s var(--ease), padding .25s var(--ease);
}
.product-card:hover .pc-cta { opacity: 1; max-height: 60px; }
.product-card .pc-cta .small-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  background: var(--bg);
  color: var(--blue);
  transition: background .2s;
}
.product-card .pc-cta .small-btn:hover { background: var(--blue); color: #fff; }
.product-card .pc-cta .small-btn.red { background: var(--red); color: #fff; }
.product-card .pc-cta .small-btn.red:hover { background: var(--red-600); }

/* Category sidebar layout */
.cat-page-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.cat-sidebar {
  position: sticky;
  top: 130px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.cat-sidebar h4 {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cat-sidebar .cat-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-2);
  transition: background .2s, color .2s;
  margin-bottom: 4px;
}
.cat-sidebar .cat-link:hover { background: var(--bg); color: var(--blue); }
.cat-sidebar .cat-link.active { background: var(--blue); color: #fff; }
.cat-sidebar .cat-link .num { font-size: 12px; color: var(--text-3); }
.cat-sidebar .cat-link.active .num { color: rgba(255,255,255,0.7); }
.cat-sidebar hr { border: none; border-top: 1px solid var(--border-2); margin: 18px 0; }

.sidebar-cta {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 4px;
}
.sidebar-cta .help-block {
  padding: 18px;
  background: linear-gradient(135deg, #0B2D5C 0%, #103a73 100%);
  border-radius: 12px;
  color: #fff;
}
.sidebar-cta .help-block strong { display: block; font-size: 15px; margin-bottom: 6px; }
.sidebar-cta .help-block p { font-size: 12.5px; color: rgba(255,255,255,0.75); margin: 0 0 12px; line-height: 1.5; }
.sidebar-cta .help-block .btn { width: 100%; }

@media (max-width: 980px) {
  .cat-page-grid { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
}

.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 4px;
  margin-top: 48px;
}
.pagination button {
  min-width: 38px; height: 38px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s var(--ease);
}
.pagination button:hover { border-color: var(--blue); color: var(--blue); }
.pagination button.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.pd-gallery .pd-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8edf3 100%);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.pd-gallery .pd-main svg { width: 60%; height: 60%; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pd-thumb {
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8edf3 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color .2s;
}
.pd-thumb.active { border-color: var(--blue); }
.pd-thumb svg { width: 60%; height: 60%; opacity: 0.7; }
.pd-info h1 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--blue);
  margin-bottom: 8px;
}
.pd-info .pd-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11,45,92,0.06);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.pd-info .pd-lead { color: var(--text-2); font-size: 16.5px; line-height: 1.8; margin: 16px 0 24px; }
.pd-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 28px;
}
.pd-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px; background: var(--bg);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text);
}
.pd-feature .ic { color: var(--red); margin-top: 2px; }
.pd-feature strong { display: block; color: var(--blue); font-weight: 700; }
.pd-feature span { color: var(--text-3); font-size: 12.5px; }
.pd-specs {
  border-top: 1px solid var(--border-2);
  padding-top: 24px;
  margin-bottom: 28px;
}
.pd-specs h3 { font-size: 14px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.pd-spec-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 14px;
}
.pd-spec-row strong { color: var(--blue); font-weight: 600; }
.pd-spec-row span { color: var(--text-3); }
.pd-cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 980px) { .pd-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   ABOUT page
============================================================ */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-intro h2 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 18px; }
.about-intro p { color: var(--text-2); font-size: 16px; line-height: 1.85; margin: 0 0 16px; }
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 480px;
}
.about-visual > div:nth-child(1) { grid-row: 1 / 3; }
.about-visual .ph { border-radius: var(--radius); }
@media (max-width: 980px) { .about-intro { grid-template-columns: 1fr; } }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  margin: 56px 0;
}
.about-stats::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(214,40,57,0.2), transparent 60%);
}
.about-stat { position: relative; text-align: center; }
.about-stat strong { display: block; font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.about-stat span { font-size: 13.5px; color: rgba(255,255,255,0.7); }
@media (max-width: 980px) { .about-stats { grid-template-columns: repeat(2, 1fr); padding: 32px; } }

.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 32px;
}
.value-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card .ic {
  width: 48px; height: 48px;
  background: rgba(214,40,57,0.10);
  color: var(--red);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; color: var(--blue); margin-bottom: 8px; }
.value-card p { color: var(--text-2); font-size: 14.5px; margin: 0; line-height: 1.7; }
@media (max-width: 980px) { .about-values { grid-template-columns: 1fr; } }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 32px;
}
.team-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
}
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin: 0 auto 16px;
}
.team-card strong { display: block; color: var(--blue); font-size: 16px; }
.team-card span { display: block; color: var(--text-3); font-size: 13px; margin-top: 4px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CONTACT page
============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form p { color: var(--text-3); margin: 0 0 24px; font-size: 14.5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--text-2); font-weight: 500; }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }

.contact-info {
  display: flex; flex-direction: column; gap: 14px;
}
.info-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  transition: transform .2s var(--ease), border-color .2s;
}
.info-card:hover { transform: translateY(-2px); border-color: rgba(11,45,92,0.15); }
.info-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-card strong { display: block; color: var(--blue); font-size: 15px; }
.info-card span { display: block; color: var(--text-3); font-size: 13.5px; line-height: 1.5; }
.map-box {
  height: 240px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(40% 60% at 50% 50%, rgba(214,40,57,0.2), transparent 70%),
    repeating-linear-gradient(0deg, rgba(11,45,92,0.05) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(11,45,92,0.05) 0 1px, transparent 1px 24px),
    var(--bg);
  position: relative;
  display: grid; place-items: center;
}
.map-pin {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--red);
  display: grid; place-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.map-pin::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(214,40,57,0.45);
  animation: wa-pulse 2.5s ease-out infinite;
}

@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG list
============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .ph { aspect-ratio: 16/10; }
.blog-meta { padding: 22px; }
.blog-meta .tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(214,40,57,0.10); color: var(--red);
  border-radius: 999px; font-size: 11.5px; font-weight: 600;
  margin-bottom: 10px;
}
.blog-meta h3 { font-size: 18px; color: var(--blue); margin-bottom: 8px; line-height: 1.3; }
.blog-meta p { color: var(--text-2); font-size: 14px; margin: 0 0 14px; line-height: 1.6; }
.blog-meta .row { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border-2); font-size: 12.5px; color: var(--text-3); }
.blog-meta .read { color: var(--red); font-weight: 600; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PHOTO PLACEHOLDERS
============================================================ */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0B2D5C 0%, #1a4d8c 55%, #2a6cb8 100%);
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 12px 10px auto;
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.3);
  padding: 4px 8px;
  border-radius: 4px;
}
.ph[data-label=""]::after { display: none; }
.ph.warm { background: linear-gradient(135deg, #6b1418 0%, #b81e2d 50%, #D62839 100%); }
.ph.light {
  background: linear-gradient(135deg, #e6ecf4 0%, #f5f7fa 60%, #d8e1ee 100%);
}
.ph.light::after { color: rgba(11,45,92,0.55); background: rgba(255,255,255,0.65); }
.ph.dark { background: linear-gradient(135deg, #061a36 0%, #0B2D5C 50%, #103a73 100%); }
.ph.stripes::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(180deg, transparent 0 22%, rgba(255,255,255,0.05) 22% 28%, transparent 28% 72%, rgba(255,255,255,0.05) 72% 78%, transparent 78%);
}
.ph.weave::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px);
}
