:root {
  --red: #ef4444;
  --red-dark: #dc2626;
  --red-darker: #b91c1c;
  --red-light: #fee2e2;
  --red-soft: #fff5f5;
  --gradient: linear-gradient(135deg, #fb7185 0%, #ef4444 60%, #dc2626 100%);
  --ink: #18181b;
  --muted: #71717a;
  --bg: #ffffff;
  --bg-alt: #faf9fb;
  --border: #ececf0;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 10px rgba(24, 24, 27, 0.05);
  --shadow-md: 0 16px 40px rgba(220, 38, 38, 0.12);
  --shadow-lg: 0 24px 60px rgba(24, 24, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

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

a {
  color: inherit;
}

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

/* Top bar */
.top-bar {
  background: var(--red);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.top-bar-links {
  display: flex;
  gap: 24px;
}

.top-bar a {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.top-bar a:hover {
  color: var(--ink);
}

.top-bar-tag {
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.88);
}

/* Header */
.site-header {
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}

.brand-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-tagline span {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
  line-height: 1.5;
  max-width: 15ch;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: -0.2px;
  color: #fff;
  font-weight: 800;
}

.brand-text span {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: right 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.22);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.icon-inline {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  z-index: 45;
  transition: transform 0.15s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@media (max-width: 560px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
}

.contact-method .icon svg {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.88), rgba(24, 24, 27, 0.82)),
    url("led-video-wall.jpg") center/cover no-repeat;
  color: #fff;
  padding: 150px 0 170px;
  min-height: 66vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 20%, #000 30%, transparent 75%);
}

.hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.35), rgba(239, 68, 68, 0) 70%);
}

.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  gap: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9b9b;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
  font-weight: 800;
}

.hero h1 .accent {
  background: var(--red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: #d4d4d8;
  margin: 0 auto 36px;
  max-width: 54ch;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(220, 38, 38, 0.28);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
}

.hero-panel h3 {
  margin: 0 0 18px;
  font-size: 13px;
  color: #ff9b9b;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-panel li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 9px 15px;
  border-radius: var(--radius-full);
}

.hero-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Stats strip */
.stats-strip {
  background: transparent;
  padding: 0 0 70px;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stats-strip .stat {
  text-align: center;
  padding: 30px 16px;
  border-right: 1px solid var(--border);
}

.stats-strip .stat:last-child {
  border-right: none;
}

.stats-strip .stat .num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-strip .stat .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Capability showcase */
.capability-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
}

.capability-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 136px;
  text-align: center;
}

.capability-tag {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* Brand strip */
.brand-group-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 16px;
}

.brand-group-label + .marquee {
  margin-bottom: 36px;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 22s;
}

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

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .marquee-track {
    animation-duration: 18s;
  }

  .marquee-reverse .marquee-track {
    animation-duration: 14s;
  }
}

.brand-chip {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  padding: 14px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--red);
}

.brand-chip-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
}

.brand-chip-logo img {
  height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.capability-photo {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
  transition: transform 0.2s;
  background-size: cover;
  background-position: center;
}

.capability-item:hover .capability-photo {
  transform: translateY(-4px) scale(1.03);
}

.capability-photo svg {
  width: 32px;
  height: 32px;
}

.capability-photo .placeholder-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.22);
  padding: 3px 0;
  border-radius: var(--radius-full);
}

/* Category pills */
.pill-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -16px 0 48px;
}

.pill-legend span {
  background: var(--ink);
  color: #e4e4e7;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-full);
}

/* Sections */
section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head .eyebrow {
  color: var(--red-dark);
}

.section-head h2 {
  font-size: 34px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.7px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

/* Service grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #ffd9d9;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.22);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.2px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.card.card-photo {
  position: relative;
  min-height: 250px;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
}

.card.card-photo h3,
.card.card-photo p {
  position: relative;
  z-index: 1;
}

.card.card-photo h3 {
  color: #fff;
}

.card.card-photo p {
  color: rgba(255, 255, 255, 0.86);
}

.card.card-photo:hover {
  border-color: transparent;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.why-grid > div:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-grid .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.22);
}

.why-grid h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* CTA band */
.cta-band {
  background: var(--bg-alt);
  padding: 90px 0;
}

.cta-band .container {
  position: relative;
  background: var(--ink);
  background-image: radial-gradient(circle at 15% 25%, rgba(239, 68, 68, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(239, 68, 68, 0.25), transparent 45%);
  color: #fff;
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-band p {
  margin: 0 0 28px;
  color: #d4d4d8;
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 76px 0 68px;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
}

.page-header::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.32), rgba(239, 68, 68, 0) 70%);
}

.page-header h1 {
  margin: 0 0 10px;
  font-size: 38px;
  position: relative;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.page-header p {
  margin: 0;
  color: #d4d4d8;
  position: relative;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.about-grid h2 {
  color: var(--ink);
  font-size: 30px;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.about-grid p {
  color: var(--muted);
  font-size: 15.5px;
}

.tick-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tick-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.tick-list li::before {
  content: "\2713";
  background: var(--red);
  color: #fff;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.25);
}

.stat-panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-content h2 {
  color: var(--ink);
  font-size: 22px;
  margin: 44px 0 14px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content .tick-list {
  margin: 12px 0 20px;
}

.stat-panel div {
  text-align: center;
}

.stat-panel .num {
  font-size: 29px;
  font-weight: 800;
  background: var(--red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-panel .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

/* Contact form */
.hp-field {
  position: absolute;
  left: -9999px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.contact-form[hidden] {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}

.form-row textarea {
  resize: vertical;
}

.form-success {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--red-light);
  border: 1px solid #ffd3d3;
}

.form-success p {
  margin: 0 0 4px;
  color: var(--ink);
}

.contact-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.22);
}

.contact-method a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}

.contact-method .label {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #a1a1aa;
  padding: 60px 0 26px;
  font-size: 14px;
  border-radius: 32px 32px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.footer-grid .brand-text strong {
  color: #fff;
}

.footer-grid .brand-text span {
  color: #ff8f8f;
}

.footer-blurb {
  margin: 16px 0 0;
  color: #a1a1aa;
  font-size: 14px;
  max-width: 34ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 18px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  text-decoration: none;
  color: #a1a1aa;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #71717a;
  font-size: 13px;
}

.footer-legal-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-legal-links a {
  color: #71717a;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .stats-strip .stat:nth-child(2) {
    border-right: none;
  }

  .stats-strip .stat:nth-child(1),
  .stats-strip .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

  .top-bar-links {
    gap: 14px;
  }
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .nav-cta {
    align-self: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.5);
    z-index: 40;
  }

  .nav-backdrop.open {
    display: block;
  }
}

@media (max-width: 720px) {
  .top-bar-tag {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .cta-band .container {
    padding: 44px 24px;
  }

  .grid,
  .why-grid,
  .stat-panel {
    grid-template-columns: 1fr;
  }

  .capability-item {
    width: 104px;
  }

  .capability-photo {
    width: 104px;
    height: 104px;
  }
}

/* Category detail modal */
.card-clickable {
  cursor: pointer;
}

.capability-item.card-clickable {
  cursor: pointer;
}

.capability-item.card-clickable .capability-photo {
  transition: transform 0.2s, box-shadow 0.2s;
}

.capability-item.card-clickable:hover .capability-photo {
  box-shadow: 0 0 0 3px var(--red-light);
}

.category-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 15, 17, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.category-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

body.category-modal-locked {
  overflow: hidden;
}

.category-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.2s;
}

.category-modal-overlay.open .category-modal {
  transform: translateY(0) scale(1);
}

.category-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.category-modal-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.category-modal-body {
  padding: 26px 28px 30px;
}

.category-modal-body h3 {
  margin: 0 0 16px;
  font-size: 24px;
  color: var(--ink);
}

.category-modal-label {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--red-dark);
}

.category-modal-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-modal-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.category-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.category-modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.category-modal-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.category-modal-cta {
  display: inline-block;
}

@media (max-width: 560px) {
  .category-modal-photo {
    height: 150px;
  }

  .category-modal-body {
    padding: 22px 20px 26px;
  }
}

/* Pub & Sports Bar TV mockup screen */
.tv-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-mockup-full {
  max-width: 980px;
  margin: 0 auto;
}

.tv-mockup-ticks {
  max-width: 700px;
  margin: 32px auto 0;
  align-items: center;
  text-align: center;
}

.tv-mockup-ticks li {
  justify-content: center;
}

.tv-mockup-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0c;
  border: 10px solid #0a0a0c;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.tv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: tvSlideShow 28s infinite;
}

.tv-slide:nth-child(1) { animation-delay: 0s; }
.tv-slide:nth-child(2) { animation-delay: 4s; }
.tv-slide:nth-child(3) { animation-delay: 8s; }
.tv-slide:nth-child(4) { animation-delay: 12s; }
.tv-slide:nth-child(5) { animation-delay: 16s; }
.tv-slide:nth-child(6) { animation-delay: 20s; }
.tv-slide:nth-child(7) { animation-delay: 24s; }

.tv-slide-brand {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
}

.tv-slide-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.tv-slide-brand-dark {
  background: #0a0a0c;
}

.tv-mockup-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tv-slide-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(10, 10, 12, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@keyframes tvSlideShow {
  0% {
    opacity: 0;
  }
  1.5% {
    opacity: 1;
  }
  12% {
    opacity: 1;
  }
  14% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.tv-mockup-stand {
  width: 90px;
  height: 14px;
  background: #0a0a0c;
  border-radius: 0 0 8px 8px;
  margin-top: -2px;
}

.tv-mockup-stand::before {
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  background: #0a0a0c;
  margin: -16px auto 0;
}

/* Powered by Netvio panel */
.netvio-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.netvio-panel-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}

.netvio-panel .pill-legend {
  margin: 0 0 28px;
}

.netvio-panel-note {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Audio brand row on pub-tv page */
.audio-brand-row {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* Pub & Sports Bar TV photo panel */
.pub-photo-panel {
  min-height: 380px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

/* Homepage pub/sports-bar feature banner */
.pub-banner {
  background: var(--bg-alt);
  padding: 0 0 90px;
}

.pub-banner .container {
  position: relative;
  background-image: linear-gradient(120deg, rgba(11, 11, 13, 0.9), rgba(24, 24, 27, 0.82)), url('led-lighting.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 64px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.pub-banner h2 {
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.pub-banner p {
  margin: 0;
  color: #d4d4d8;
  max-width: 48ch;
}

.pub-highlights {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pub-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}

.pub-highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pub-banner .container {
    grid-template-columns: 1fr;
    padding: 44px 28px;
  }
}

/* Homepage category slideshow */
.cat-slideshow-section {
  background: var(--bg-alt);
  padding: 90px 0;
}

.cat-slideshow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.cat-slide-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.cat-slide-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.45, 0.05, 0.35, 1);
}

.cat-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.cat-slide-photo {
  background-size: cover;
  background-position: center;
}

.cat-slide-content {
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-slide-content h3 {
  margin: 0 0 14px;
  font-size: 26px;
  color: var(--ink);
}

.cat-slide-content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cat-slide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-slide-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.cat-slide-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s, transform 0.15s, background 0.15s, color 0.15s;
}

.cat-slide-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.cat-slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.cat-slide-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

@media (max-width: 760px) {
  .cat-slideshow-section {
    padding: 60px 0;
  }

  .cat-slideshow {
    gap: 8px;
  }

  .cat-slide-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .cat-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cat-slide-photo {
    height: 160px;
  }

  .cat-slide-content {
    padding: 24px 22px 28px;
  }

  .cat-slide-content h3 {
    font-size: 20px;
  }
}
