/* ═══════════════════════════════════════════════════
   JREMD Technologies — Light Mode Design System
   Palette: Navy · Ocean · Sky · Ice · White · Amber
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  /* ── BRAND PALETTE ── */
  --navy: #03045E;
  --ocean: #0077B6;
  --sky: #00B4D8;
  --ice: #90E0EF;
  --frost: #CAF0F8;
  --white: #FFFFFF;
  --amber: #FFB703;
  --amber-dk: #E6A600;

  /* ── GRAYS ── */
  --gray-900: #0f1923;
  --gray-800: #1e2a35;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;

  /* ── SEMANTIC ── */
  --text-primary: var(--navy);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --bg-main: var(--white);
  --bg-soft: #F7FCFE;
  --bg-card: var(--white);
  --border: #E0F2F8;
  --border-md: #B3DEF0;
  --shadow-sm: 0 1px 3px rgba(0, 119, 182, 0.08), 0 1px 2px rgba(0, 119, 182, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 119, 182, 0.10), 0 2px 6px rgba(0, 119, 182, 0.06);
  --shadow-lg: 0 12px 40px rgba(3, 4, 94, 0.12), 0 4px 12px rgba(0, 119, 182, 0.08);

  /* ── TYPE ── */
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fb);
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 5px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--ocean);
  border-radius: 3px;
}

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

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

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.cfluid {
  max-width: 100%;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ── STATS ROW (shared) ── */
.works-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ws-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.ws-num {
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 800;
  color: var(--ocean);
  display: block;
  line-height: 1;
}

.ws-lbl {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* ── TYPOGRAPHY ── */
.eyb {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 12px;
}

.dxl {
  font-family: var(--fd);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -2px;
  color: var(--navy);
}

.dlg {
  font-family: var(--fd);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -1.5px;
  color: var(--navy);
}

.dmd {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--navy);
}

.dsm {
  font-family: var(--fd);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

.blg {
  font-size: 17px;
  line-height: 1.78;
  font-weight: 400;
  color: var(--gray-600);
}

.bmd {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--gray-500);
}

.bsml {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--gray-500);
}

.sky {
  color: var(--sky);
}

.ocean {
  color: var(--ocean);
}

.amber {
  color: var(--amber);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--ocean);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, .3);
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.btn-amber:hover {
  background: var(--amber-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, .35);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}

.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-ghost {
  background: transparent;
  color: var(--ocean);
  padding: 10px 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  color: var(--navy);
  border-bottom-color: var(--ocean);
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.ftab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s var(--ease);
}

.ftab:hover {
  border-color: var(--ocean);
  color: var(--ocean);
  background: var(--frost);
}

.ftab.active {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.ftab.active img {
  filter: brightness(0) invert(1) !important;
}

.ftab img {
  flex-shrink: 0;
}

/* ── TOPBAR ── */
#topbar / {
  background: var(--navy);
  padding: 8px 0;
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/ .tbi {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tbl {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tbl span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tbr {
  display: flex;
  gap: 20px;
}

.tbr a {
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  transition: color .2s;
}

.tbr a:hover {
  color: var(--amber);
}

.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ── NAVBAR ── */
#nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}

.ni {
  display: flex;
  align-items: center;
  width: 100%;
  height: 65px;
  gap: 0;
  justify-content: flex-start;
}

/* LOGO */
.nlogo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 32px;
  border-right: 0px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lmark {
  width: 38px;
  height: 38px;
  background: var(--ocean);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.lw strong {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  letter-spacing: .3px;
  line-height: 1.1;
}

.lw small {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* NAV LINKS */
.nl {
  display: flex;
  align-items: stretch;
  flex: 1;
  list-style: none;
  margin-left: 8px;
  height: 100%;
}

.nl>li {
  position: relative;
  display: flex;
  align-items: center;
}

.nl>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.nl>li>a:hover,
.nl>li>a.act {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
}

.nl>li>a svg {
  width: 10px;
  height: 10px;
  transition: transform .2s;
}

.nl>li:hover>a svg {
  transform: rotate(180deg);
}

/* DROPDOWN */
.drop {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-top: 3px solid var(--ocean);
  border-radius: 0 0 10px 10px;
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .2s var(--ease);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.nl>li:hover .drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  transition: all .15s;
}

.drop a:hover {
  color: var(--ocean);
  background: var(--frost);
  padding-left: 22px;
}

.drop a .di {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--frost);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .15s;
}

.drop a:hover .di {
  background: var(--ice);
}

.drop hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 6px 0;
}

.drop .dh {
  padding: 6px 18px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean);
}

/* NAV ACTIONS */
.na {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}

.hbtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hbtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* MOBILE OVERLAY */
.mobov {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1000;
  flex-direction: column;
  overflow-y: auto;
}

.mobov.open {
  display: flex;
}

.mobt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobc {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
}

.moblinks {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.moblinks a {
  padding: 14px 0;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .15s;
}

.moblinks a:hover {
  color: var(--ocean);
}

.moblinks .mob-sub {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 0 9px 16px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
}

.moblinks .mob-sub:hover {
  color: var(--ocean);
}

.mobf {
  padding: 24px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── DIVIDERS & ACCENTS ── */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.rule-ocean {
  border: none;
  border-top: 3px solid var(--ocean);
  width: 48px;
  margin: 16px 0 24px;
}

.rule-amber {
  border: none;
  border-top: 3px solid var(--amber);
  width: 48px;
  margin: 16px 0 24px;
}

/* ── CHIPS / TAGS ── */
.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--frost);
  border: 1px solid var(--ice);
  color: var(--ocean);
  display: inline-block;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--ocean);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.tag-amber {
  background: var(--amber);
  color: var(--navy);
}

.tag-frost {
  background: var(--frost);
  color: var(--ocean);
  border: 1px solid var(--ice);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}

.card:hover {
  border-color: var(--ice);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-frost {
  background: var(--frost);
  border: 1px solid var(--ice);
  border-radius: 12px;
}

/* ── SCROLL REVEAL ── */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.rev.in {
  opacity: 1;
  transform: none;
}




/* ── PAGE HERO (service pages) ── */
.pg-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #052566 40%, var(--ocean) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.pg-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, .2) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hero .container {
  position: relative;
  z-index: 2;
}

.pg-hero .dlg {
  color: var(--white);
}

.pg-hero .blg {
  color: rgba(255, 255, 255, .75);
}

.pg-hero .eyb {
  color: var(--ice);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
  letter-spacing: .5px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
  transition: color .15s;
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
}

.breadcrumb svg {
  opacity: .4;
}

.pg-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vis-box {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

/* ── FEATURE GRID ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .22s var(--ease);
}

.feat-cell:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feat-cell:hover .feat-icon-wrap {
  background: var(--ocean);
}

.feat-cell:hover .feat-icon-wrap span {
  filter: brightness(10);
}

.feat-cell:hover .feat-icon-wrap img {
  filter: brightness(0) invert(1) !important;
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--frost);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: background .22s;
}

.feat-icon-wrap span {
  font-size: 22px;
}

.feat-cell h4 {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.feat-cell p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── SPEC TABLE ── */
.spec-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  width: 160px;
  color: var(--gray-500);
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: .3px;
}

.spec-val {
  color: var(--gray-700);
  font-weight: 500;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, .15) 0%, transparent 70%);
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .22s var(--ease);
  text-decoration: none;
  color: inherit;
}

.rel-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.rel-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--frost);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.rel-icon-wrap img {
  display: block;
}

.rel-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.rel-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}

.rel-arrow {
  font-size: 12px;
  color: var(--ocean);
  font-weight: 600;
  margin-top: auto;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all .3s var(--ease);
  box-shadow:
    0 8px 32px rgba(3, 4, 94, 0.08),
    0 4px 16px rgba(0, 119, 182, 0.04);
  border: 1px solid rgba(144, 224, 239, 0.2);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 224, 239, 0.3), transparent);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 48px rgba(3, 4, 94, 0.12),
    0 6px 24px rgba(0, 119, 182, 0.06);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--frost);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.02);
}

.product-card h4 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 20px 12px;
  line-height: 1.3;
}

.product-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 20px 16px;
}

.product-features {
  list-style: none;
  margin: 0 20px 20px;
  padding: 0;
}

.product-features li {
  font-size: 12px;
  color: var(--gray-500);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 12px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-weight: bold;
}

.product-features li:last-child {
  border-bottom: none;
}

/* ── BRANDS STRIP ── */
.brands-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--frost);
  overflow: hidden;
  padding: 22px 0;
}

.brands-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollbr 40s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes scrollbr {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-75%)
  }
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  min-height: 60px;
  border-right: 1px solid var(--border);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color .2s;
  white-space: nowrap;
}

.brand-pill:hover {
  color: var(--ocean);
}

.brand-pill img {
  max-height: 40px;
  width: auto;
  display: block;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}

.brand-pill:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--white);
}

.footer-slim {
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.fsc-slim {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .3px;
}

.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fcw {
  padding: 52px 36px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.fcw:last-child {
  border-right: none;
}

.fdesc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  max-width: 280px;
  margin: 16px 0 24px;
}

.fsoc {
  display: flex;
  gap: 8px;
}

.fsc {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  transition: all .15s;
  text-decoration: none;
}

.fsc:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(255, 183, 3, .1);
}

.fcw h6 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 16px;
}

.fcw ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fcw ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fcw ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 36px;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.fbot p {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}

.fbotl {
  display: flex;
  gap: 20px;
}

.fbotl a {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  transition: color .15s;
}

.fbotl a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ── PHOTO GRID (documentation) ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  background: var(--frost);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
  display: block;
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(3, 4, 94, .85));
  padding: 24px 14px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transition: opacity .3s;
}

.photo-item:hover .photo-caption {
  opacity: 1;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ice);
  font-size: 32px;
}

.photo-placeholder span {
  font-size: 11px;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:1024px) {
  .ftop {
    grid-template-columns: 1fr 1fr;
  }

  .fcw:nth-child(2) {
    border-right: none;
  }

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

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

  .pg-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .hbtn {
    display: flex;
  }

  .na {
    margin-left: auto;
    border-left: none;
    padding-left: 0;
  }

  .na .btn-primary {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .cfluid {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

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

  .fcw {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 36px 24px;
  }

  .fbot {
    padding: 18px 24px;
  }
}

@media(max-width:600px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }

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

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

  .works-stats {
    grid-template-columns: 1fr 1fr;
  }

  .flbtn span:not(.plse) {
    display: none;
  }

  .flbtn {
    padding: 14px;
    border-radius: 50%;
  }

  .tbl,
  .tbr {
    display: none;
  }
}