/*  IceBerg Tech — style.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

:root,
[data-theme="dark"] {
  --navy:    #0a0e1a;
  --navy2:   #0d1321;
  --navy3:   #111827;
  --cyan:    #00c8ff;
  --cyan2:   #009ec8;
  --white:   #ffffff;
  --gray:    #8898a8;
  --gray2:   #1e2d3d;
  --red:     #ff3b5c;
  --green:   #00e090;

  --bg-body:      var(--navy);
  --bg-surface:   var(--navy2);
  --bg-surface2:  var(--navy3);
  --text-primary: var(--white);
  --text-muted:   var(--gray);
  --border:       rgba(255,255,255,.07);
  --border-cyan:  rgba(0,200,255,.18);
  --topbar-bg:    var(--navy2);
  --card-bg:      var(--navy2);
  --input-bg:     var(--navy3);
  --input-border: rgba(255,255,255,.1);

  --radius:  8px;
  --radius2: 14px;
  --shadow:  0 6px 32px rgba(0,0,0,.45);
  --glow:    0 0 28px rgba(0,200,255,.22);
  --nav-h:   82px;
  --top-h:   38px;
}

[data-theme="light"] {
  --bg-body:      #f0f4f8;
  --bg-surface:   #ffffff;
  --bg-surface2:  #e8edf3;
  --text-primary: #0a0e1a;
  --text-muted:   #5a6a7a;
  --border:       rgba(0,0,0,.09);
  --border-cyan:  rgba(0,158,200,.3);
  --topbar-bg:    #0d1321;
  --card-bg:      #ffffff;
  --input-bg:     #f4f7fb;
  --input-border: rgba(0,0,0,.12);
  --shadow:       0 6px 32px rgba(0,0,0,.12);
  --glow:         0 0 28px rgba(0,158,200,.18);
  --cyan:    #0099cc;
  --cyan2:   #007aa3;
  --gray:    #5a6a7a;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: clip;
  line-height: 1.65;
  transition: background .3s, color .3s;
  padding-bottom: env(safe-area-inset-bottom);
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.topbar {
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--border-cyan);
  height: var(--top-h);
  display: flex;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar__left a, .topbar__left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.82);
  font-weight: 600;
  transition: color .2s;
}
[data-theme="light"] .topbar__left a,
[data-theme="light"] .topbar__left span { color: rgba(255,255,255,.9); }
.topbar__left a:hover { color: var(--cyan); }
.topbar__left i {
  color: var(--cyan);
  font-size: .82rem;
}
.topbar__right {
  display: flex;
  gap: 12px;
}
.topbar__right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.topbar__right a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-cyan);
  transition: box-shadow .3s, background .3s;
}
[data-theme="light"] .navbar {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(0,153,204,.2);
}
.navbar.scrolled {
  background: rgba(10,14,26,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
  border-bottom-color: rgba(0,200,255,.25);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: none;
  mix-blend-mode: normal;
  transition: filter .3s;
}
[data-theme="light"] .navbar__logo img {
  mix-blend-mode: multiply;
  filter: none;
}
.navbar__logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  border: 2px dashed rgba(0,200,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  color: var(--cyan);
  text-align: center;
  line-height: 1.3;
  padding: 4px;
  flex-shrink: 0;
}
.navbar__logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.navbar__logo-text .ice  { color: var(--cyan); }
.navbar__logo-text .berg { color: var(--text-primary); }
.navbar__logo-text .tech { color: var(--cyan); }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.navbar__menu li a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
[data-theme="light"] .navbar__menu li a { color: rgba(10,14,26,.7); }
.navbar__menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.navbar__menu li a:hover, .navbar__menu li a.active { color: var(--text-primary); }
.navbar__menu li a:hover::after, .navbar__menu li a.active::after { transform: scaleX(1); }

.navbar__theme-li {
  display: flex;
  align-items: center;
}
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-cyan);
  background: transparent;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.theme-toggle:hover {
  background: rgba(0,200,255,.1);
  border-color: var(--cyan);
  transform: rotate(20deg);
}
[data-theme="light"] .theme-toggle {
  color: #e5a800;
  border-color: rgba(229,168,0,.4);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(229,168,0,.1);
  border-color: #e5a800;
}

.navbar__close-li { display: none; }
.navbar__close {
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 4px 8px;
  transition: color .2s;
  line-height: 1;
}
.navbar__close:hover { color: var(--text-primary); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
  position: relative;
  z-index: 500;
}
.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .3px;
  transition: all .22s ease;
}
.btn-cyan    { background: var(--cyan); color: #0a0e1a; }
.btn-cyan:hover {
  background: #33d4ff;
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid rgba(0,200,255,.45);
  color: var(--cyan);
}
.btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(0,200,255,.08);
}
.btn-white   { background: var(--text-primary); color: var(--bg-body); }
.btn-white:hover {
  opacity: .88;
  transform: translateY(-2px);
}
.btn-wa      { background: #25d366; color: #fff; }
.btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
}

.section { padding: 88px 0; }
.section--dark    { background: var(--bg-surface); }
.section--darker  { background: var(--bg-surface2); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem,3.5vw,2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.section-sub {
  font-size: .93rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.text-cyan { color: var(--cyan); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.hero {
  min-height: calc(100vh - var(--nav-h) - var(--top-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 55% at 65% 50%, rgba(0,158,200,.08) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 10% 85%, rgba(0,200,255,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(0,200,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: .4;
}
[data-theme="light"] .hero::after { opacity: .1; }
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 72px 0;
}
.hero__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cyan);
}
.hero__title {
  font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero__title em {
  font-style: normal;
  color: var(--cyan);
}
.hero__desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.hero__visual-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.2) 0%, transparent 70%);
  filter: blur(32px);
  animation: pulse 4s ease-in-out infinite;
}
[data-theme="light"] .hero__visual-bg { background: radial-gradient(circle, rgba(0,153,204,.15) 0%, transparent 70%); }
@keyframes pulse { 0%,100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }
.hero__visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,.2);
}
.hero__visual-ring1 {
  width: 390px;
  height: 390px;
  animation: spin 22s linear infinite;
}
.hero__visual-ring2 {
  width: 295px;
  height: 295px;
  border-style: dashed;
  border-color: rgba(0,200,255,.14);
  animation: spin 15s linear infinite reverse;
}
[data-theme="light"] .hero__visual-ring  { border-color: rgba(0,153,204,.25); }
[data-theme="light"] .hero__visual-ring2 { border-color: rgba(0,153,204,.18); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__visual-scene {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 260px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 40px rgba(0,200,255,.3));
}
[data-theme="light"] .hero__visual-scene { filter: drop-shadow(0 8px 40px rgba(0,153,204,.25)); }
.hero-svg {
  width: 100%;
  height: 100%;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.svg-body-rect   { fill: url(#bodyGrad); }
.svg-body-accent { fill: #0d2a45; }
.svg-body-cap    { fill: #1a3550; }
.svg-body-fin    { fill: #112238; }
.svg-mount       { fill: #0d1f35; }
.svg-cable       { stroke: #1e3a5f; }
.svg-ir-cone     { opacity: 1; }
[data-theme="light"] .svg-body-rect   { fill: url(#bodyGradLight); }
[data-theme="light"] .svg-body-accent { fill: #90b8d0; }
[data-theme="light"] .svg-body-cap    { fill: #aacce0; }
[data-theme="light"] .svg-body-fin    { fill: #85aec6; }
[data-theme="light"] .svg-mount       { fill: #7aaec8; }
[data-theme="light"] .svg-cable       { stroke: #7aaec8; }
[data-theme="light"] .svg-ir-cone     { opacity: .7; }

.hero__visual-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,200,255,.1) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

#services .services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 26px;
  text-align: center;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  border-color: rgba(0,200,255,.35);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
.service-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--cyan);
  margin-bottom: 18px;
  transition: all .3s;
}
.service-card:hover .service-card__icon {
  background: var(--cyan);
  color: #0a0e1a;
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card__desc  {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.service-card__link  {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap .2s;
}
.service-card:hover .service-card__link { gap: 10px; }

.security-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.security-split__img { position: relative; }
.security-split__img img {
  width: 100%;
  border-radius: var(--radius2);
  border: 1px solid var(--border-cyan);
}
.security-split__img::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(0,200,255,.07);
  border-radius: calc(var(--radius2) + 10px);
  pointer-events: none;
}
.security-split > div > p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.security-split > div > p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  align-items: stretch;
}
.pkg-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.pkg-card--featured {
  border-color: rgba(0,200,255,.4);
  box-shadow: var(--glow);
}
.pkg-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,200,255,.4);
  box-shadow: var(--glow);
}
.pkg-card__top {
  background: linear-gradient(135deg, rgba(0,200,255,.12) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 28px 22px 22px;
  text-align: center;
}
.pkg-card__num {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 2px;
}
.pkg-card__num-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.pkg-card__title {
  font-size: .95rem;
  font-weight: 700;
  margin-top: 12px;
  color: var(--text-primary);
}
.pkg-card__badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--cyan);
  color: #0a0e1a;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.pkg-card__body {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pkg-card__desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}
.pkg-card__cta  {
  display: block;
  text-align: center;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-split__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-split__img img {
  max-width: 280px;
  width: 100%;
  border-radius: var(--radius2);
  border: none;
  filter: none;
  mix-blend-mode: normal;
  transition: filter .3s;
}
[data-theme="light"] .about-split__img img {
  mix-blend-mode: multiply;
  filter: none;
}
.about-text p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.about-feature  {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--text-primary);
}
.about-feature i {
  color: var(--cyan);
  font-size: .85rem;
  flex-shrink: 0;
}

.stats-bar {
  background: var(--bg-surface2);
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
  padding: 44px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label  {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.page-hero {
  padding: 56px 0 48px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-cyan);
}
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 {
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.page-hero p  {
  color: var(--text-muted);
  font-size: .92rem;
  max-width: 520px;
}

.prod-filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.prod-filter-bar__search {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.prod-filter-bar__search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .8rem;
  pointer-events: none;
}
.prod-filter-bar__search input {
  width: 100%;
  padding: .75rem 1rem .75rem 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.prod-filter-bar__search input::placeholder { color: var(--text-muted); }
.prod-filter-bar__search input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,255,.08);
}
.prod-filter-bar__select {
  position: relative;
  min-width: 200px;
  flex-shrink: 0;
}
.pf-selected {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 2.8rem .75rem 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all .2s;
  white-space: nowrap;
}
.pf-selected i {
  color: var(--cyan);
  font-size: .8rem;
  flex-shrink: 0;
}
.pf-selected:hover, .pf-selected.open {
  border-color: var(--cyan);
  background: rgba(0,200,255,.06);
}
.pf-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--cyan);
  font-size: .72rem;
  transition: transform .25s;
}
.pf-arrow.open { transform: translateY(-50%) rotate(180deg); }
.pf-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  width: max-content;
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius2);
  overflow: hidden;
  z-index: 200;
  box-shadow: var(--shadow);
  animation: pfDrop .15s ease;
}
.pf-dropdown.open { display: block; }
@keyframes pfDrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.pf-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .18s;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.pf-option:last-child { border-bottom: none; }
.pf-option i {
  width: 16px;
  text-align: center;
  font-size: .8rem;
  color: var(--cyan);
  opacity: .7;
}
.pf-option:hover {
  background: rgba(0,200,255,.07);
  color: var(--text-primary);
}
.pf-option.selected {
  color: var(--cyan);
  background: rgba(0,200,255,.06);
  font-weight: 600;
}
.prod-filter-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--cyan);
  color: #0a0e1a;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  flex-shrink: 0;
}
.prod-filter-bar__btn:hover {
  background: #33d4ff;
  box-shadow: var(--glow);
  transform: translateY(-1px);
}
.prod-filter-bar__clear {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.2rem;
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(255,59,92,.35);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
  flex-shrink: 0;
}
.prod-filter-bar__clear:hover {
  background: rgba(255,59,92,.08);
  border-color: var(--red);
}

.prod-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.prod-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.prod-stat__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0,200,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: .82rem;
  flex-shrink: 0;
}
.prod-stat__val {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}
.prod-stat__label {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(0,200,255,.3);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.product-card__img {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  background: var(--bg-surface2);
  border-radius: var(--radius2) var(--radius2) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s;
  display: block;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__no-img {
  font-size: 3.5rem;
  color: rgba(0,200,255,.15);
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--cyan);
  color: #0a0e1a;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  z-index: 2;
}

.card-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(0,200,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: all .18s;
  backdrop-filter: blur(4px);
}
.product-card__img:hover .card-img-nav { opacity: 1; }
.card-img-nav:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #0a0e1a;
}
.card-img-nav--prev { left: 5px; }
.card-img-nav--next { right: 5px; }

.card-img-dots {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 5;
}
.card-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .18s;
}
.card-img-dot.active {
  background: var(--cyan);
  transform: scale(1.2);
}

.product-card__body {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.product-card__cat  {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 4px;
  font-weight: 700;
}
.product-card__name {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  font-size: .88rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 10px;
}

.product-card__actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.product-card__actions a,
.product-card__actions button {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
  line-height: 1;
  white-space: nowrap;
}
.btn-detail  {
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.25);
  color: var(--cyan);
}
.btn-detail:hover {
  background: var(--cyan);
  color: #0a0e1a;
}
.btn-wa-sm   {
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  color: #25d366;
}
.btn-wa-sm:hover {
  background: #25d366;
  color: #fff;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  grid-column: 1/-1;
}
.no-results i {
  font-size: 2.5rem;
  color: rgba(0,200,255,.2);
  margin-bottom: 14px;
  display: block;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,10,20,.88);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.prod-view-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius2);
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .25s ease;
}
.prod-view-modal::-webkit-scrollbar { width: 5px; }
.prod-view-modal::-webkit-scrollbar-track { background: var(--bg-surface); }
.prod-view-modal::-webkit-scrollbar-thumb {
  background: var(--border-cyan);
  border-radius: 10px;
}
.prod-view-modal::-webkit-scrollbar-thumb:hover { background: var(--cyan); }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } }

.prod-view-modal__layout {
  display: flex;
  min-height: 400px;
}

.prod-view-modal__left {
  width: 300px;
  flex-shrink: 0;
  background: rgba(0,0,0,.25);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem 1rem;
  gap: 1rem;
}
.prod-view-modal__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0,200,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pvm-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: 1px solid var(--border);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  cursor: pointer;
  z-index: 3;
  transition: all .18s;
}
.pvm-img-nav:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}
.pvm-img-nav--prev { left: 6px; }
.pvm-img-nav--next { right: 6px; }
.pvm-img-nav.hidden { display: none; }

.pvm-counter {
  font-size: .72rem;
  color: var(--grey, #8b9ab0);
  text-align: center;
}
.pvm-thumbs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.pvm-thumb {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s;
  opacity: .6;
}
.pvm-thumb:hover {
  opacity: 1;
  border-color: var(--border);
}
.pvm-thumb.active {
  opacity: 1;
  border-color: var(--cyan);
}

.prod-view-modal__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.prod-view-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 3.2rem 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.prod-view-modal__title { flex: 1; min-width: 0; }
.prod-view-modal__title h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.prod-view-modal__meta {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  align-items: center;
}
.prod-view-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
  z-index: 10;
}
.prod-view-modal__close:hover {
  background: var(--red);
  color: #fff;
}

.prod-view-modal__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pvm-section-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .65rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pvm-desc {
  font-size: .855rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.pvm-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.pvm-specs-table tr { border-bottom: 1px solid var(--border); }
.pvm-specs-table tr:last-child { border-bottom: none; }
.pvm-specs-table td {
  padding: .5rem .4rem;
  font-size: .8rem;
  vertical-align: top;
}
.pvm-specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 42%;
  white-space: nowrap;
}
.pvm-specs-table td:last-child { color: var(--text-primary); }
.prod-view-modal__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.specs-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
}
.spec-row {
  display: flex;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .83rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  min-width: 180px;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
  padding-right: 12px;
}
.spec-val {
  color: var(--text-muted);
  flex: 1;
}

@media (max-width: 640px) {
  .prod-view-modal__layout { flex-direction: column; }
  .prod-view-modal__left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .prod-view-modal__img-wrap {
    max-width: 240px;
    margin: 0 auto;
  }
}

#imgLightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#imgLightbox.open { display: flex; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
}
.lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  gap: 12px;
}
.lb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
  z-index: 10;
}
.lb-close:hover {
  background: var(--red);
  border-color: var(--red);
}
.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 80vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius2);
  border: 1px solid rgba(0,200,255,.2);
  background: rgba(10,14,26,.5);
  display: block;
  animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  z-index: 10;
}
.lb-nav--prev { left: 10px; }
.lb-nav--next { right: 10px; }
.lb-nav:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #0a0e1a;
}
.lb-counter {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-top: -4px;
}
.lb-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80vw;
}
.lb-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .55;
  transition: all .18s;
}
.lb-thumb:hover {
  opacity: .85;
  border-color: rgba(0,200,255,.4);
}
.lb-thumb.active {
  opacity: 1;
  border-color: var(--cyan);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse .service-detail__img { order: -1; }
.service-detail__img img {
  width: 100%;
  border-radius: var(--radius2);
  border: 1px solid var(--border-cyan);
}
.service-detail__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cyan);
  margin-bottom: 18px;
}
.service-detail h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.service-detail p  {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-detail .btn { margin-top: 8px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.contact-info p  {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-cards   {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: rgba(0,200,255,.25); }
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cyan);
}
.contact-card__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card__val   { font-size: .9rem; color: var(--text-primary); }
.contact-card__val a {
  color: var(--text-muted);
  transition: color .2s;
}
.contact-card__val a:hover { color: var(--text-primary); }
.contact-form-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px;
}
.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--text-primary);
}
.form-group       { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: var(--text-primary);
  outline: none;
  transition: border .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: .5;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(0,200,255,.4); }
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row  {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-msg  {
  display: none;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: .86rem;
  margin-bottom: 14px;
}
.form-msg--ok  {
  background: rgba(0,224,144,.1);
  border: 1px solid rgba(0,224,144,.3);
  color: #00e090;
}
.form-msg--err {
  background: rgba(255,59,92,.1);
  border: 1px solid rgba(255,59,92,.3);
  color: #ff3b5c;
}

.cta-banner {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,158,200,.15) 0%, rgba(0,200,255,.04) 100%);
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
}
.cta-banner h2 {
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.cta-banner p  {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 28px;
}
.cta-banner .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 14px 0 18px;
}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer__logo-wrap img {
  height: 90px;
  width: auto;
  display: block;
  filter: none;
  mix-blend-mode: normal;
  transition: filter .3s;
}
[data-theme="light"] .footer__logo-wrap img {
  mix-blend-mode: multiply;
  filter: none;
}
.footer__logo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  border: 2px dashed rgba(0,200,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--cyan);
  text-align: center;
  line-height: 1.2;
  padding: 4px;
  flex-shrink: 0;
}
.footer__logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.footer__logo-text .ice  { color: var(--cyan); }
.footer__logo-text .berg { color: var(--text-primary); }
.footer__logo-text .tech { color: var(--cyan); }
.footer__social  {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--text-muted);
  transition: all .2s;
}
.footer__social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.footer__col h4 {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__col ul a {
  font-size: .84rem;
  color: var(--text-muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__col ul a i {
  font-size: .65rem;
  color: var(--cyan);
}
.footer__col ul a:hover { color: var(--text-primary); }
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px !important;
}
.footer__contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--text-muted);
}
.footer__contact-list li i {
  color: var(--cyan);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer__contact-list li a { color: var(--text-muted); }
.footer__contact-list li a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cyan);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,200,255,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-3px); }

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.client-logo {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  transition: border-color .2s;
}
.client-logo:hover { border-color: rgba(0,200,255,.3); }
.client-logo img {
  height: 36px;
  width: auto;
  filter: grayscale(1) brightness(1.5);
  opacity:.7;
  transition: all .2s;
}
.client-logo:hover img {
  filter: none;
  opacity: 1;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all .2s;
}
.page-btn:hover:not(:disabled) {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,200,255,.06);
}
.page-btn.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #0a0e1a;
}
.page-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}
.page-btn i { font-size: .72rem; }
.pagination-info {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #0d1321;
    border-left: 2px solid rgba(0,200,255,.3);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    transition: right .32s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -12px 0 48px rgba(0,0,0,.7);
  }
  [data-theme="light"] .navbar__menu {
    background: #ffffff;
    border-left-color: rgba(0,153,204,.3);
    box-shadow: -12px 0 48px rgba(0,0,0,.15);
  }
  .navbar__menu.open { right: 0; }
  .navbar__close-li {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 22px 18px;
    border-bottom: 1px solid rgba(0,200,255,.18);
    flex-shrink: 0;
    background: rgba(0,200,255,.04);
  }
  [data-theme="light"] .navbar__close-li {
    border-bottom-color: rgba(0,153,204,.2);
    background: rgba(0,153,204,.04);
  }
  .navbar__close-li::before {
    content: 'IceBergTech';
    font-size: 1rem;
    font-weight: 800;
    color: #00c8ff;
    letter-spacing: .5px;
  }
  [data-theme="light"] .navbar__close-li::before { color: #0099cc; }
  .navbar__close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(0,200,255,.3);
    background: rgba(0,200,255,.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    transition: all .2s;
    line-height: 1;
  }
  [data-theme="light"] .navbar__close {
    color: #0a0e1a;
    border-color: rgba(0,153,204,.3);
  }
  .navbar__close:hover {
    background: rgba(255,59,92,.15);
    border-color: #ff3b5c;
    color: #ff3b5c;
  }
  .navbar__menu li { width: 100%; }
  .navbar__menu > li:not(.navbar__close-li):not(.navbar__theme-li) a {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .97rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color .2s, background .2s, padding-left .2s;
  }
  [data-theme="light"] .navbar__menu > li:not(.navbar__close-li):not(.navbar__theme-li) a {
    color: #0a0e1a;
    border-bottom-color: rgba(0,0,0,.07);
  }
  .navbar__menu > li:not(.navbar__close-li):not(.navbar__theme-li) a:hover,
  .navbar__menu > li:not(.navbar__close-li):not(.navbar__theme-li) a.active {
    color: #00c8ff;
    background: rgba(0,200,255,.07);
    padding-left: 28px;
  }
  [data-theme="light"] .navbar__menu > li:not(.navbar__close-li):not(.navbar__theme-li) a:hover,
  [data-theme="light"] .navbar__menu > li:not(.navbar__close-li):not(.navbar__theme-li) a.active { color: #0099cc; }
  .navbar__menu li a::after { display: none; }
  .navbar__theme-li {
    width: 100%;
    padding: 18px 22px;
    border-top: 1px solid rgba(0,200,255,.18);
    margin-top: auto;
    display: flex !important;
    align-items: center;
    gap: 12px;
    background: rgba(0,200,255,.03);
    flex-shrink: 0;
  }
  [data-theme="light"] .navbar__theme-li { border-top-color: rgba(0,153,204,.2); }
  .navbar__theme-li::before {
    content: 'Ndrysho Temën';
    font-size: .83rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    flex: 1;
  }
  [data-theme="light"] .navbar__theme-li::before { color: rgba(10,14,26,.5); }
  .theme-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .navbar__hamburger { display: flex; }
  .hero__inner  {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__label  { justify-content: center; }
  .hero__desc   {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  #services .services-grid { grid-template-columns: repeat(2,1fr); }
  .security-split { grid-template-columns: 1fr; }
  .security-split__img { display: none; }
  .about-split    { grid-template-columns: 1fr; }
  .about-split__img { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse .service-detail__img { order: 0; }
  .spec-key { min-width: 130px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-filter-bar__select { min-width: 160px; }
  .prod-filter-bar__btn { padding: .75rem 1rem; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .section { padding: 60px 0; }
  #services .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .spec-key {
    min-width: 110px;
    font-size: .78rem;
  }
  .spec-val { font-size: .78rem; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; }
  .product-card__img {
    height: 200px;
    width: 100%;
    border-radius: var(--radius2) var(--radius2) 0 0;
  }
  .product-card__body {
    width: 100%;
    padding: 14px 14px 16px;
  }
  .product-card__name {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: .92rem;
  }
  .product-card__desc { display: none; }
  .product-card__actions a,
  .product-card__actions button { font-size: .76rem; padding: 9px 8px; }
}
@media (max-width: 640px) { html { scroll-padding-top: 98px; } }

.service-detail:first-child { padding-top: 0; }

.service-svg-placeholder {
  width: 100%;
  border-radius: var(--radius2);
  border: 1px solid var(--border-cyan);
  background: var(--bg-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  aspect-ratio: 4/3;
}
.service-svg-placeholder svg {
  width: 100%;
  height: 100%;
}