/* ============================================================
   PRIMAX TECH — Premium CCTV Security Website
   Matte Black (#111111) · Premium Red (#E10600) · Gold accents
   ============================================================ */

:root {
  --black: #111111;
  --black-2: #181818;
  --black-3: #1f1f1f;
  --black-4: #2a2a2a;
  --red: #e10600;
  --red-dark: #b80500;
  --red-glow: rgba(225, 6, 0, 0.45);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.35);
  --white: #ffffff;
  --gray: #b8b8b8;
  --gray-dim: #8a8a8a;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(212, 175, 55, 0.25);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 12px 40px rgba(225, 6, 0, 0.3);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Gold accent line utility */
.gold-line { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ============ TYPOGRAPHY ============ */
.text-gradient {
  background: linear-gradient(135deg, var(--red), #ff5a4d 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section__eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 20px; height: 1px; background: var(--gold);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section__subtitle { color: var(--gray); font-size: 1.05rem; }

.section { padding: 96px 0; position: relative; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(225, 6, 0, 0.5); }

.btn--whatsapp {
  background: #25d366;
  color: #04210f;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { background: #1fb857; transform: translateY(-3px); }

.btn--ghost { background: var(--glass); border-color: var(--glass-border); color: var(--white); backdrop-filter: blur(10px); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--light { background: var(--white); color: var(--black); font-weight: 700; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,255,255,0.25); }

/* ============ TOP BAR ============ */
.topbar {
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--gray);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__link:hover { color: var(--gold); }
.topbar__divider { color: var(--line); }
.topbar__badge { color: var(--gold); font-weight: 600; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.header.scrolled { background: rgba(10, 10, 10, 0.95); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: grid; place-items: center; color: var(--white);
  box-shadow: var(--shadow-red);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 19px; font-weight: 900; letter-spacing: 0.5px; }
.brand__accent { color: var(--red); }
.brand__tag { font-size: 10px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }

.nav { display: flex; gap: 4px; }
.nav__link {
  padding: 9px 14px; border-radius: 8px; font-size: 14.5px; font-weight: 500;
  color: var(--gray); transition: all 0.25s var(--ease); position: relative;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--red); border-radius: 2px;
}
.nav__link.active { color: var(--white); }
.nav__link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--red); border-radius: 2px;
}

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

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(225, 6, 0, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, #0d0d0d, #1a0808 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, var(--black)); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 8px 16px; border-radius: 50px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 1px;
  color: var(--gold); margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 var(--red-glow); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,6,0,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(225,6,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,6,0,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero__subtitle { font-size: 1.15rem; color: var(--gray); max-width: 540px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats { display: flex; gap: 36px; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-size: 2rem; font-weight: 800; color: var(--white); font-family: var(--font-display); }
.hero__stat span { font-size: 13px; color: var(--gray-dim); }

/* Hero visual: monitor */
.hero__visual { position: relative; min-height: 380px; }
.hero__card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); backdrop-filter: blur(12px); }
.hero__card--main { padding: 18px; box-shadow: var(--shadow); border: 1px solid var(--line-gold); }

.monitor { position: relative; }
.monitor__screen {
  background: #050505; border-radius: 10px; aspect-ratio: 16/10;
  padding: 10px; border: 1px solid #1a1a1a; overflow: hidden; position: relative;
}
.monitor__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; height: 100%; }
.monitor__feed {
  background-size: cover; background-position: center; border-radius: 6px;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 8px 10px; font-size: 10px; color: #4ade80; font-weight: 700; letter-spacing: 1px;
  position: relative; overflow: hidden; min-height: 90px;
}
.monitor__feed::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.65) 100%);
}
.monitor__feed > * { position: relative; z-index: 2; }
.monitor__feed::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px);
}
.monitor__feed--1 { background-image: url('../images/cam1-lobby.jpg'); }
.monitor__feed--2 { background-image: url('../images/cam2-parking.jpg'); }
.monitor__feed--3 { background-image: url('../images/cam3-warehouse.jpg'); }
.monitor__feed--4 { background-image: url('../images/cam4-office.jpg'); }
.monitor__feed:nth-child(2) span:first-child { color: #60a5fa; }
.monitor__feed:nth-child(3) span:first-child { color: #facc15; }
.monitor__feed:nth-child(4) span:first-child { color: #f472b6; }
.rec { color: var(--red); }
.scan-line {
  position: absolute; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(74,222,128,0.06), transparent);
  animation: scan 4s linear infinite;
}
@keyframes scan { 0% { top: -60px; } 100% { top: 100%; } }
.monitor__base { width: 30%; height: 14px; background: #1a1a1a; margin: 10px auto 0; border-radius: 0 0 8px 8px; }

.hero__card--floating {
  position: absolute; padding: 12px 18px; border-radius: 50px;
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow); animation: float 4s ease-in-out infinite;
}
.hero__card--live { top: 6%; right: -8%; background: rgba(225,6,0,0.15); border-color: var(--red); color: #ff8a82; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.5s infinite; }
.hero__card--rating { bottom: 8%; left: -6%; animation-delay: 1.5s; }
.hero__card--rating .stars { color: var(--gold); font-size: 14px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__bottom-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, transparent, var(--black));
}

/* ============ TRUST BAR ============ */
.trust { padding: 60px 0; border-bottom: 1px solid var(--line); background: var(--black); position: relative; z-index: 3; }
.trust__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.trust__item { text-align: center; color: var(--gray); }
.trust__item svg { color: var(--red); margin-bottom: 12px; }
.trust__item h3 { font-size: 15px; color: var(--white); margin-bottom: 5px; font-weight: 700; }
.trust__item p { font-size: 13px; color: var(--gray-dim); }

/* ============ SERVICE CARDS ============ */
.services { background: linear-gradient(180deg, var(--black), #0d0d0d); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line-gold); background: rgba(255,255,255,0.06); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(225,6,0,0.15), rgba(225,6,0,0.05));
  border: 1px solid rgba(225,6,0,0.2);
  display: grid; place-items: center; color: var(--red); margin-bottom: 18px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.05); background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); margin-bottom: 18px; }
.service-card__cta { display: flex; justify-content: space-between; align-items: center; }
.link-arrow { font-size: 13.5px; font-weight: 600; color: var(--gold); transition: gap 0.3s; }
.link-arrow:hover { color: #e8c75a; }
.wa-mini {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(37,211,102,0.15);
  color: #25d366; display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.wa-mini:hover { background: #25d366; color: #04210f; transform: scale(1.1); }

.service-card--featured { border-color: var(--line-gold); background: rgba(212,175,55,0.04); }
.ribbon {
  position: absolute; top: 16px; right: -32px; transform: rotate(45deg);
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 5px 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ============ WHY CHOOSE ============ */
.why { background: #0d0d0d; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why__feature {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 26px; transition: all 0.4s var(--ease);
}
.why__feature:hover { border-color: var(--gold-soft); transform: translateX(4px); }
.why__icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px;
  background: rgba(212,175,55,0.1); border: 1px solid var(--line-gold);
  display: grid; place-items: center; color: var(--gold);
}
.why__feature h3 { font-size: 17px; margin-bottom: 6px; }
.why__feature p { font-size: 14px; color: var(--gray); }

/* ============ SPLIT SECTIONS ============ */
.split { background: var(--black); }
.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__inner--reverse .split__visual { order: -1; }
.split__content .section__eyebrow { display: inline-block; }
.split__content .section__title { text-align: left; }
.split__content .section__subtitle { margin-bottom: 30px; }

.split__cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.mini-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-left: 3px solid var(--red);
  border-radius: var(--radius-sm); padding: 14px 18px;
}
.mini-card h4 { font-size: 15px; margin-bottom: 3px; }
.mini-card p { font-size: 13.5px; color: var(--gray); }

.split__benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 7px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gold);
}

.split__visual { position: relative; min-height: 420px; border-radius: var(--radius-lg); overflow: hidden; }
.split__visual--home {
  background: linear-gradient(135deg, #1a0808, #2a1010), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/></svg>');
  border: 1px solid var(--line-gold);
}
.split__visual--business {
  background: linear-gradient(135deg, #0a0a0a, #1a1208);
  border: 1px solid var(--line-gold);
}
.glass-stat {
  position: absolute; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 20px 26px; backdrop-filter: blur(14px);
  box-shadow: var(--shadow); animation: float 5s ease-in-out infinite;
}
.glass-stat strong { display: block; font-size: 2.2rem; font-weight: 800; font-family: var(--font-display); background: linear-gradient(135deg, var(--red), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.glass-stat span { font-size: 13px; color: var(--gray); }
.glass-stat--top { top: 8%; right: -4%; }
.glass-stat--bottom { bottom: 10%; left: -4%; animation-delay: 1.5s; }

.industries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.industry {
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  transition: all 0.3s var(--ease); text-align: center;
}
.industry:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ============ PACKAGES ============ */
.packages { background: linear-gradient(180deg, #0d0d0d, var(--black)); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.package-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 34px 30px; position: relative;
  display: flex; flex-direction: column; transition: all 0.4s var(--ease);
}
.package-card:hover { transform: translateY(-8px); border-color: var(--line-gold); box-shadow: var(--shadow); }

.package-card--featured {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,55,0.06), var(--glass));
  box-shadow: 0 0 60px rgba(212,175,55,0.1);
  transform: scale(1.02);
}
.package-card--featured:hover { transform: scale(1.02) translateY(-8px); }
.ribbon--gold { background: linear-gradient(135deg, var(--gold), #b8902a); color: var(--black); }

.package-card--custom { border-style: dashed; border-color: var(--glass-border); }

.package-card__label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); }
.package-card__head h3 { font-size: 22px; margin: 8px 0 18px; font-family: var(--font-display); }
.package-card__price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.package-card__price .from { display: block; font-size: 11px; letter-spacing: 1.5px; color: var(--gray-dim); margin-bottom: 4px; }
.package-card__price .amount { font-size: 2.8rem; font-weight: 900; font-family: var(--font-display); color: var(--white); }
.amount--sm { font-size: 1.6rem !important; color: var(--gold) !important; }

.package-card__list { margin-bottom: 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.package-card__list li {
  font-size: 14px; color: var(--gray); padding-left: 28px; position: relative; line-height: 1.5;
}
.package-card__list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: #25d366; font-weight: 800;
  width: 20px; height: 20px; background: rgba(37,211,102,0.12); border-radius: 50%;
  display: grid; place-items: center; font-size: 11px;
}
.package-card__list em { color: var(--gold); font-style: normal; font-weight: 600; }

.package-card__cta { display: flex; flex-direction: column; gap: 10px; }

/* ============ PRODUCT CARDS ============ */
.products { background: linear-gradient(180deg, var(--black), #0d0d0d); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.4s var(--ease); position: relative;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--line-gold); box-shadow: var(--shadow); }

.product-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--black-3); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.08); }
.product-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.85));
}
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(225,6,0,0.92); color: var(--white); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 50px; font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px;
}
.product-card__badge--gold { background: rgba(212,175,55,0.95); color: var(--black); }

.product-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin-top: -48px; margin-bottom: 16px; position: relative; z-index: 2;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 2px solid var(--black-2);
  display: grid; place-items: center; color: var(--white); box-shadow: var(--shadow-red);
}
.product-card__title { font-size: 19px; font-weight: 700; margin-bottom: 8px; font-family: var(--font-display); }
.product-card__desc { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.product-card__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex: 1; }
.product-card__features li { font-size: 13.5px; color: var(--gray); padding-left: 22px; position: relative; }
.product-card__features li::before {
  content: '▸'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700;
}
.product-card__cta { display: flex; gap: 10px; margin-top: auto; }
.product-card__cta .btn { flex: 1; }

/* ============ PROCESS ============ */
.process { background: var(--black); }
.process__timeline { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; position: relative; }
.process__timeline::before {
  content: ''; position: absolute; top: 24px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold)); opacity: 0.4;
}
.step { text-align: center; position: relative; z-index: 2; }
.step__num {
  width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--black-3); border: 2px solid var(--red); color: var(--white);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; font-family: var(--font-display);
  transition: all 0.4s var(--ease);
}
.step:hover .step__num { background: linear-gradient(135deg, var(--red), var(--red-dark)); transform: scale(1.1); box-shadow: var(--shadow-red); }
.step h4 { font-size: 14px; margin-bottom: 4px; }
.step p { font-size: 12px; color: var(--gray-dim); padding: 0 4px; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: linear-gradient(180deg, var(--black), #0d0d0d); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 30px; position: relative; transition: all 0.4s var(--ease);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 8px; right: 24px;
  font-size: 80px; font-family: Georgia, serif; color: var(--red); opacity: 0.15; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 14px; font-size: 15px; }
.testimonial-card p { color: var(--gray); font-size: 14.5px; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold)); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
}
.testimonial-card__author strong { display: block; font-size: 14.5px; }
.testimonial-card__author span { font-size: 12.5px; color: var(--gray-dim); }

/* ============ CLIENTS ============ */
.clients { background: #0d0d0d; }
.clients__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px 12px; text-align: center;
  transition: all 0.4s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.client:hover { transform: translateY(-5px); border-color: var(--gold-soft); background: rgba(255,255,255,0.06); }
.client__logo {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(225,6,0,0.1));
  border: 1px solid var(--line-gold); display: grid; place-items: center; color: var(--gold);
}
.client span { font-size: 12.5px; color: var(--gray); font-weight: 500; line-height: 1.3; }

/* ============ FAQ ============ */
.faq { background: var(--black); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 0; overflow: hidden; transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  padding: 22px 26px; font-weight: 600; font-size: 16px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--red); font-weight: 300; transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item__a { padding: 0 26px 22px; color: var(--gray); font-size: 14.5px; }
.faq-item__a strong { color: var(--white); }
.faq-item__a a { color: var(--red); font-weight: 600; }

/* ============ CONTACT ============ */
.contact { background: linear-gradient(180deg, #0d0d0d, var(--black)); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact__info .section__title { text-align: left; }
.contact__info .section__subtitle { margin-bottom: 32px; }

.contact__methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
a.contact-method:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-method__icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(225,6,0,0.12); color: var(--red); display: grid; place-items: center;
}
.contact-method__icon--wa { background: rgba(37,211,102,0.12); color: #25d366; }
.contact-method span { display: block; font-size: 12.5px; color: var(--gray-dim); }
.contact-method strong { font-size: 15px; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); filter: invert(0.9) hue-rotate(180deg); }

/* Lead form */
.contact__form-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px;
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
}
.lead-form h3 { font-size: 22px; margin-bottom: 22px; font-family: var(--font-display); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--gray); }
.field label span { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  color: var(--white); font-size: 14.5px; transition: all 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.15);
}
.field select { cursor: pointer; }
.field select option { background: var(--black-2); color: var(--white); }
.field textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--gray-dim); text-align: center; margin-top: 14px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(225,6,0,0.9), rgba(184,5,0,0.95)),
    radial-gradient(circle at 30% 50%, rgba(212,175,55,0.3), transparent);
  padding: 50px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1) 75%, transparent 75%);
  background-size: 30px 30px; opacity: 0.3;
}
.cta-banner__inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-family: var(--font-display); }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: #0a0a0a; border-top: 1px solid var(--line); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col .brand { margin-bottom: 12px; }
.footer__col p { color: var(--gray-dim); font-size: 13.5px; line-height: 1.7; }
.footer__col h4 { font-size: 14px; color: var(--white); margin-bottom: 8px; letter-spacing: 0.5px; }
.footer__col a { color: var(--gray-dim); font-size: 13.5px; transition: color 0.3s; }
.footer__col a:hover { color: var(--red); }
.footer__addr { margin-top: 6px; }
.footer__hours { color: var(--gold) !important; font-size: 13px !important; }
.footer__rating { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 13px; color: var(--gray); }
.footer__rating .stars { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--gray-dim); }

/* ============ STICKY BUTTONS ============ */
.sticky-buttons {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.sticky-btn {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.3s var(--ease); position: relative;
}
.sticky-btn--wa { background: #25d366; color: #04210f; animation: wa-pulse 2.5s infinite; }
.sticky-btn--call { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.sticky-btn:hover { transform: scale(1.1); }
.sticky-btn__label {
  position: absolute; right: 72px; background: var(--black-3); padding: 6px 14px;
  border-radius: 50px; font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; border: 1px solid var(--glass-border);
}
.sticky-btn:hover .sticky-btn__label { opacity: 1; }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ POPUPS ============ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.active { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.popup {
  background: linear-gradient(180deg, var(--black-2), var(--black));
  border: 1px solid var(--line-gold); border-radius: var(--radius-lg);
  padding: 40px 34px; max-width: 440px; width: 100%; text-align: center;
  position: relative; box-shadow: var(--shadow);
  animation: popUp 0.4s var(--ease);
}
@keyframes popUp { from { transform: translateY(30px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

.popup__close {
  position: absolute; top: 12px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; background: var(--glass); color: var(--gray);
  font-size: 22px; line-height: 1; display: grid; place-items: center; transition: all 0.3s;
}
.popup__close:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }

.popup__icon { font-size: 48px; margin-bottom: 14px; }
.popup__icon--success {
  width: 70px; height: 70px; border-radius: 50%; background: rgba(37,211,102,0.15);
  color: #25d366; display: grid; place-items: center; margin: 0 auto 14px; font-size: 36px; font-weight: 800;
}
.popup h3 { font-size: 24px; margin-bottom: 10px; font-family: var(--font-display); }
.popup p { color: var(--gray); font-size: 14.5px; margin-bottom: 20px; }
.popup p strong { color: var(--white); }
.popup__offer-sub { font-size: 15px !important; }
.popup__ribbon {
  display: inline-block; background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); padding: 6px 18px; border-radius: 50px; font-size: 11px;
  font-weight: 800; letter-spacing: 2px; margin-bottom: 14px;
}
.popup-form { display: flex; flex-direction: column; gap: 10px; }
.popup-form input, .popup-form select {
  width: 100%; padding: 13px 16px; background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  color: var(--white); font-size: 14px;
}
.popup-form input:focus, .popup-form select:focus { outline: none; border-color: var(--red); }
.popup-form input::placeholder { color: var(--gray-dim); }
.popup__small { font-size: 12.5px !important; color: var(--gold) !important; margin-top: 14px; margin-bottom: 0; }
.popup__urgent { margin-bottom: 14px; }
.popup__quick { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.popup--thanks { max-width: 400px; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .process__timeline { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .process__timeline::before { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 480px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav {
    position: fixed; top: 76px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform 0.4s var(--ease); z-index: 99;
  }
  .nav.active { transform: translateY(0); }
  .nav__link { padding: 14px; font-size: 16px; }
  .header__cta .btn--whatsapp { display: inline-flex; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-8px); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .split__inner { grid-template-columns: 1fr; }
  .split__inner--reverse .split__visual { order: 0; }
  .split__visual { min-height: 280px; }
  .glass-stat { padding: 14px 18px; }
  .glass-stat strong { font-size: 1.6rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }

  .hero { padding: 60px 0 80px; }
  .hero__stats { gap: 24px; }
  .hero__card--live { right: 0; }
  .hero__card--rating { left: 0; }
  .section { padding: 70px 0; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .topbar__hide-sm, .topbar__divider { display: none; }
  .topbar__inner { height: 34px; font-size: 11.5px; }
  .topbar__left, .topbar__right { gap: 10px; }
  .services__grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 18px; }
  .hero__stat strong { font-size: 1.5rem; }
  .products__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 26px 20px; }
  .popup { padding: 32px 22px; }
  .sticky-buttons { right: 14px; bottom: 14px; gap: 10px; }
  .sticky-btn { width: 54px; height: 54px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .industries-grid { grid-template-columns: 1fr; }
  .package-card { padding: 26px 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
