:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #f0f3f9;
  --ink: #0b1a2b;
  --ink-2: #2a3a52;
  --muted: #5d6b82;
  --line: #e3e8f2;
  --primary: #1a4fa3;
  --primary-700: #133c80;
  --primary-50: #eaf1fc;
  --accent: #e8541f;       /* saffron/red-orange pulled from logo */
  --accent-2: #f0a232;     /* warm secondary */
  --shadow-sm: 0 1px 2px rgba(11, 26, 43, 0.06), 0 1px 1px rgba(11, 26, 43, 0.04);
  --shadow-md: 0 8px 24px -10px rgba(11, 26, 43, 0.18), 0 2px 6px rgba(11, 26, 43, 0.05);
  --shadow-lg: 0 32px 60px -24px rgba(11, 26, 43, 0.28);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="dark"] {
  --bg: #0a1322;
  --surface: #101d33;
  --surface-2: #15243d;
  --ink: #eef2fb;
  --ink-2: #c9d3e6;
  --muted: #8b9bb7;
  --line: #1f2e4a;
  --primary: #4b86e6;
  --primary-700: #2f6cd0;
  --primary-50: #18253f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; color: var(--ink-2); }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-name span {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--primary-50); color: var(--primary); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: 0 2px 8px -2px color-mix(in srgb, var(--primary) 60%, transparent);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--primary-700); box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--primary) 70%, transparent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.eyebrow .pulse {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.eyebrow .pulse::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  70% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  margin: 22px 0 22px;
}
.hero h1 .accent {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  opacity: .85;
  transform-origin: left;
  animation: underline 1.2s .3s cubic-bezier(.5,.1,.1,1) both;
}
@keyframes underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .18s, border-color .18s, box-shadow .2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--primary); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 88%, black); }

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
}
.stat .num small { font-size: 18px; color: var(--accent); margin-left: 2px; font-weight: 600; }
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Hero visual */
.hero-vis {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in srgb, var(--primary) 14%, transparent), transparent 60%),
    linear-gradient(140deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  padding: 28px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 36px 36px;
  mask: radial-gradient(60% 60% at 70% 30%, black, transparent 80%);
  opacity: .5;
  pointer-events: none;
}
.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 12px;
  align-items: center;
  animation: floatA 6s ease-in-out infinite;
}
.hero-card .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  color: var(--primary);
  flex-shrink: 0;
}
.hero-card .ttl { font-size: 13px; font-weight: 600; color: var(--ink); }
.hero-card .sub { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.hero-card.a { top: 8%; left: 6%; animation-delay: 0s; }
.hero-card.b { top: 36%; right: 6%; animation-delay: -2s; }
.hero-card.c { bottom: 22%; left: 12%; animation-delay: -4s; }
.hero-card.d { bottom: 6%; right: 10%; animation-delay: -3s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cctv-screen {
  position: absolute;
  inset: 30% 28% 28% 30%;
  background: #07101f;
  border-radius: 12px;
  border: 1px solid #1c2c47;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cctv-screen .grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.cctv-screen .cell {
  background:
    linear-gradient(180deg, rgba(75,134,230,.08), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(255,255,255,.02) 4px),
    #0c1830;
  position: relative;
  overflow: hidden;
}
.cctv-screen .cell::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px;
  width: 6px; height: 6px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 6px #ff4d4d;
  animation: blink 1.6s infinite;
}
.cctv-screen .cell::after {
  content: 'CAM';
  position: absolute;
  top: 5px; right: 8px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.55);
  font-size: 8px;
  letter-spacing: 0.1em;
}
.cctv-screen .cell:nth-child(1)::after { content: 'CAM 01'; }
.cctv-screen .cell:nth-child(2)::after { content: 'CAM 02'; }
.cctv-screen .cell:nth-child(3)::after { content: 'CAM 03'; }
.cctv-screen .cell:nth-child(4)::after { content: 'CAM 04'; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .2; } }
.scan {
  position: absolute;
  left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(75,134,230,.18), transparent);
  animation: scan 3.5s ease-in-out infinite;
}
@keyframes scan {
  0% { top: -30%; }
  100% { top: 100%; }
}

/* ============ MARQUEE STRIP ============ */
.partners {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.partners-row {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.partners-row span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.partners-row span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
.section {
  padding: 100px 0;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}
.section h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-vis {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 60%, #000) 100%);
  padding: 40px;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 80% 20%, color-mix(in srgb, var(--accent) 50%, transparent), transparent 70%),
    repeating-linear-gradient(45deg, transparent 0px, transparent 24px, rgba(255,255,255,.04) 25px, rgba(255,255,255,.04) 26px);
  pointer-events: none;
}
.since-big {
  font-family: var(--font-head);
  font-size: 168px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}
.since-big small { font-size: 28px; font-weight: 500; opacity: 0.8; display: block; }
.about-vis-foot {
  position: relative; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.about-vis-foot div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
}
.about-vis-foot div span { font-size: 13px; opacity: 0.75; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.about-vis .badge {
  position: absolute;
  top: 28px; right: 28px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.about-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.about-point:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--primary) 40%, var(--line)); box-shadow: var(--shadow-sm); }
.about-point .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-point h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.about-point p { font-size: 14px; }

/* SERVICES */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--ink-2); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon { background: var(--ink); color: white; }
.service-card h3 { font-size: 20px; font-weight: 600; }
.service-card p { font-size: 14px; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
}
.service-list li:first-child { border-top: none; padding-top: 0; }
.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.service-card .arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card .arrow svg { transition: transform .2s; }
.service-card:hover .arrow svg { transform: translateX(4px); }

/* PRODUCTS */
.product-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.filter-chip .count {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.7;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink-2); }
.product-img {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(45deg, var(--surface-2) 0px, var(--surface-2) 18px, color-mix(in srgb, var(--surface-2) 70%, var(--line)) 19px, color-mix(in srgb, var(--surface-2) 70%, var(--line)) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-img .ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s;
}
.product-card:hover .product-img .ico { transform: scale(1.08) rotate(-4deg); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: 10.5px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.product-tag.hot { background: var(--accent); color: white; border-color: var(--accent); }
.product-tag.new { background: var(--primary); color: white; border-color: var(--primary); }
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-body .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-body h4 { font-size: 17px; font-weight: 600; }
.product-body p { font-size: 13.5px; }
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.product-foot .price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.product-foot .price small { font-family: var(--font-body); font-size: 12px; color: var(--muted); font-weight: 400; }
.product-foot .availability {
  font-size: 12px;
  font-family: var(--font-mono);
  color: #2a8a4d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-foot .availability::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2a8a4d;
}
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.products-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.products-more .btn {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 28px;
  transition: all .2s;
}
.products-more .btn:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  margin: 0 28px;
  overflow: hidden;
  position: relative;
}
.t-wrap { max-width: var(--maxw); margin: 0 auto; padding: 80px 60px; position: relative; }
.t-wrap::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 50%, transparent), transparent 70%);
  pointer-events: none;
}
.testimonials h2 { color: white; }
.testimonials .section-sub { color: rgba(255,255,255,0.65); }
.t-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  margin-top: 40px;
}
.t-card {
  flex: 0 0 calc(50% - 12px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.t-quote {
  font-family: var(--font-head);
  font-size: 132px;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 18px; right: 30px;
  font-weight: 800;
  opacity: 0.5;
}
.t-card blockquote {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.t-card .person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.t-card .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: white;
  font-size: 17px;
}
.t-card .person strong { display: block; font-size: 15px; font-weight: 600; }
.t-card .person span { font-size: 12px; color: rgba(255,255,255,0.55); font-family: var(--font-mono); }
.t-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.t-dot.active { background: var(--accent); width: 28px; border-radius: 4px; }
.t-arrows { display: flex; gap: 8px; }
.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.t-arrow:hover:not(:disabled) { background: white; color: var(--ink); transform: translateY(-1px); }
.t-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info { padding-right: 20px; }
.contact-info h2 { margin-bottom: 18px; }
.info-list {
  margin-top: 36px;
  display: grid;
  gap: 22px;
}
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.info-row:hover { border-color: var(--ink-2); transform: translateX(2px); }
.info-row .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.info-row .lbl {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-row .val {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  position: relative;
}
.field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s, background .15s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 4%, var(--bg));
}
.err-msg {
  font-size: 12px;
  color: var(--accent);
  font-family: var(--font-mono);
}
.form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; margin-top: 8px; }
.success {
  text-align: center;
  padding: 60px 20px;
}
.success-tick {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: pop .4s cubic-bezier(.4, 0, .2, 1);
}
@keyframes pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success h3 { font-size: 22px; margin-bottom: 8px; }
.success p { font-size: 14px; }

/* VIDEO REVIEWS */
.video-reviews { padding-top: 40px; }
.vr-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Featured (big) */
.vr-featured {
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  display: block;
  width: 100%;
}
.vr-featured-media {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
  color: white;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vr-featured:hover .vr-featured-media { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vr-featured-quote {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 60%);
}
.vr-featured-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.vr-featured-quote h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  color: white;
  margin: 0 0 14px;
  text-wrap: balance;
}
.vr-featured-meta { display: flex; flex-direction: column; gap: 2px; }
.vr-featured-meta strong { font-size: 14px; font-weight: 600; color: white; }
.vr-featured-meta span { font-size: 12px; color: rgba(255,255,255,0.75); font-family: var(--font-mono); }
.vr-play-lg { width: 84px; height: 84px; }
.vr-play-lg::before { inset: -10px; }

/* Strip */
.vr-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.vr-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px 4px;
}
.vr-strip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-width: 0;
}
.vr-strip-card:hover { border-color: var(--ink-2); transform: translateX(2px); box-shadow: var(--shadow-sm); }
.vr-strip-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  color: white;
}
.vr-strip-initials {
  position: absolute;
  top: 6px; left: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}
.vr-strip-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.vr-strip-card:hover .vr-strip-play { background: var(--accent); color: white; }
.vr-strip-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.vr-strip-meta strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vr-strip-meta span {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vr-strip-meta em {
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Shared media decoration */
.vr-noise {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(255,255,255,0.04) 4px),
    radial-gradient(60% 50% at 30% 20%, rgba(255,255,255,0.18), transparent 65%);
  pointer-events: none;
}
.vr-initials {
  position: absolute;
  top: 20px; left: 22px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 2;
}
.vr-play {
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
  transition: transform .25s, background .25s;
  z-index: 2;
}
.vr-play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  z-index: -1;
  animation: vrPing 2s ease-out infinite;
}
@keyframes vrPing {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.vr-featured:hover .vr-play { transform: translate(-50%, -50%) scale(1.05); background: var(--accent); color: white; }
.vr-duration {
  position: absolute;
  top: 22px; right: 22px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  color: white;
  z-index: 2;
}

/* Video Modal */
.vr-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 14, 24, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: vrFadeIn .25s ease-out;
}
@keyframes vrFadeIn { from { opacity: 0; } to { opacity: 1; } }
.vr-modal-inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: vrPopIn .35s cubic-bezier(.4,0,.2,1);
}
@keyframes vrPopIn {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.vr-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.vr-close:hover { background: rgba(0,0,0,0.7); }
.vr-player {
  position: relative;
  aspect-ratio: 16 / 9;
  color: white;
  overflow: hidden;
}
.vr-player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  gap: 14px;
}
.vr-player-initials {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.vr-player-quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  max-width: 560px;
  text-wrap: balance;
}
.vr-player-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.vr-big-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.6);
  transition: transform .2s, background .2s;
}
.vr-big-play:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--accent); color: white; }
.vr-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  display: flex;
  align-items: center;
  gap: 14px;
}
.vr-ctrl {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.vr-ctrl:hover { background: rgba(255,255,255,0.3); }
.vr-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.vr-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width .08s linear;
}
.vr-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}
.vr-modal-meta {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}
.vr-modal-meta strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.vr-modal-meta span { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }

@media (max-width: 1024px) {
  .vr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vr-grid { grid-template-columns: 1fr; }
  .vr-modal-meta { flex-direction: column; align-items: flex-start; }
}

/* CTA BAND */
.cta-band {
  margin: 80px 28px 0;
  padding: 60px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 100% at 100% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  color: white;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: white; font-size: 38px; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 16px; }
.cta-band .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.cta-band .btn-primary { background: white; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent); color: white; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.4); color: white; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* FOOTER */
.footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer .brand-name strong { color: white; }
.footer .brand-name span { color: rgba(255,255,255,0.5); }
.footer h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color .15s;
}
.footer ul a:hover { color: white; }
.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 18px 0 24px;
}
.gst-block {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
.gst-block strong { color: white; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============ MOBILE NAV ============ */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  transition: background .18s, border-color .18s;
  position: relative;
  z-index: 102;
}
.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav.mobile-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.mobile-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 24, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(360px, 88vw);
  background: var(--surface);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 80px 28px 28px;
  overflow-y: auto;
  box-shadow: -20px 0 40px -10px rgba(0,0,0,0.15);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}
.mobile-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .15s, padding-left .15s;
}
.mobile-links a:hover, .mobile-links a:active { color: var(--primary); padding-left: 10px; }
.mobile-links a span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  min-width: 24px;
}
.mobile-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mobile-foot .btn { width: 100%; justify-content: center; padding: 16px; }
.mobile-contact, .mobile-addr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  word-break: break-word;
}
.mobile-contact svg, .mobile-addr svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 44px; }
  .cta-band .actions { justify-content: flex-start; }
  .t-card { flex: 0 0 100%; }
  .vr-layout { grid-template-columns: 1fr; gap: 18px; }
  .vr-featured-media { aspect-ratio: 16/9; }
  .hero { padding: 60px 0 70px; }
  .section { padding: 70px 0; }
  .hero-vis { max-width: 540px; margin: 0 auto; }
  .about-vis { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
  .since-big { font-size: 130px; }
}

@media (max-width: 820px) {
  :root { --maxw: 100%; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; gap: 12px; }
  .nav-links, .nav-cta.desktop-only { display: none; }
  .nav-burger { display: flex; }
  .brand img { width: 38px; height: 38px; }
  .brand-name strong { font-size: 14px; }
  .brand-name span { font-size: 10px; }

  .hero { padding: 36px 0 56px; }
  .hero h1 { font-size: 36px; line-height: 1.05; }
  .hero-sub { font-size: 16px; }
  .eyebrow { font-size: 11px; padding: 5px 11px 5px 7px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 28px; margin-top: 40px; padding-top: 28px; }
  .stat .num { font-size: 26px; }
  .hero-vis { aspect-ratio: 4/3; }
  .hero-card { padding: 10px 12px; gap: 8px; }
  .hero-card .icon { width: 32px; height: 32px; border-radius: 8px; }
  .hero-card .ttl { font-size: 12px; }
  .hero-card .sub { font-size: 10px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section h2 { font-size: 28px; }
  .section-sub { font-size: 15px; }

  .services-grid, .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 22px; }
  .service-card h3 { font-size: 18px; }

  .product-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -20px 28px;
    padding: 0 20px 4px;
    scrollbar-width: none;
  }
  .product-filters::-webkit-scrollbar { display: none; }
  .filter-chip { flex-shrink: 0; padding: 9px 14px; font-size: 12.5px; }

  .about-vis { aspect-ratio: auto; padding: 32px 28px; }
  .since-big { font-size: 96px; }
  .since-big small { font-size: 18px; }
  .about-vis-foot div strong { font-size: 22px; }
  .about-points { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
  .about-point { padding: 14px; grid-template-columns: 32px 1fr; gap: 12px; }
  .about-point .ico { width: 32px; height: 32px; border-radius: 8px; }
  .about-point .ico svg { width: 16px; height: 16px; }
  .about-point h4 { font-size: 14px; line-height: 1.25; }
  .about-point p { font-size: 12px; line-height: 1.4; margin-top: 2px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer { padding: 50px 0 28px; }
  .footer-bot { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 24px; border-radius: var(--radius); }
  .contact-info { padding-right: 0; }

  .testimonials, .cta-band { margin-left: 16px; margin-right: 16px; border-radius: var(--radius); }
  .t-wrap { padding: 48px 24px; }
  .t-card { padding: 24px; }
  .t-card blockquote { font-size: 16px; }
  .t-quote { font-size: 92px; top: 10px; right: 16px; }
  .t-controls { flex-direction: column; gap: 18px; align-items: center; }

  .vr-grid { grid-template-columns: 1fr; gap: 14px; }
  .vr-thumb { aspect-ratio: 16/10; padding: 18px; }
  .vr-quote { font-size: 15px; }
  .vr-featured-quote { padding: 20px; }
  .vr-featured-quote h3 { font-size: 18px; margin-bottom: 10px; }
  .vr-strip-card { grid-template-columns: 78px 1fr; padding: 8px; gap: 10px; }
  .vr-strip-meta strong { font-size: 12.5px; }
  .vr-strip-meta span { font-size: 11.5px; }
  .vr-initials { width: 38px; height: 38px; font-size: 16px; top: 14px; left: 14px; }
  .vr-duration { top: 14px; right: 14px; font-size: 10px; padding: 3px 7px; }
  .vr-play-lg { width: 60px; height: 60px; }
  .vr-play-lg svg { width: 22px; height: 22px; }
  .vr-modal { padding: 12px; }
  .vr-modal-meta { padding: 18px 20px; flex-direction: column; align-items: stretch; gap: 14px; }
  .vr-modal-meta .btn { justify-content: center; }

  .cta-band { padding: 36px 28px; gap: 24px; }
  .cta-band h2 { font-size: 28px; }
  .cta-band p { font-size: 15px; }
  .cta-band .actions { width: 100%; }
  .cta-band .actions .btn { flex: 1; justify-content: center; }

  .partners-row { gap: 40px; }
  .partners-row span { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-card.b, .hero-card.d { display: none; }
  .hero-card.a { top: 6%; left: 4%; }
  .hero-card.c { bottom: 8%; left: 6%; }
  .cctv-screen { inset: 22% 18% 18% 22%; }
  .since-big { font-size: 80px; }
  .about-vis-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stat .num { font-size: 22px; }
  .stat .lbl { font-size: 11.5px; }
  .nav-cta { padding: 8px 12px; font-size: 12.5px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .cta-band .actions { flex-direction: column; }
  .vr-player-quote { font-size: 18px; }
  .vr-player-initials { width: 56px; height: 56px; font-size: 20px; }
  .vr-big-play { width: 64px; height: 64px; }
  .form .btn { font-size: 14px; padding: 14px; }
  .product-img .ico { width: 52px; height: 52px; }
  .product-body h4 { font-size: 16px; }
  .product-foot { flex-direction: column; align-items: flex-start; gap: 6px; }
}
