/* ============================================================
   fencing-cctv.css
   Page-specific styles for /services/fencing-cctv
   Depends on: pearl.css + service-page.css

   Design direction: "Military-grade security authority" —
   hex/grid hero bg, live CCTV UI card, phone mockup for
   remote monitoring, three-pillar NRI toolkit.
============================================================ */

/* Hero blobs */
.fc-blob--1 {
  background: radial-gradient(circle, rgba(30, 57, 143, 0.28), transparent 70%);
  width: 520px;
  height: 520px;
}
.fc-blob--2 {
  background: radial-gradient(circle, rgba(199, 0, 126, 0.2), transparent 70%);
  bottom: -80px;
  right: -60px;
}

/* Hex background pattern */
.fc-hex-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,17 58,35 30,50 2,35 2,17' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

/* Floating shield/eye/lock icons */
.fc-shields {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.fc-shield {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  animation: shieldFloat 0s ease-in-out infinite;
}
.fc-whatsapp {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.fc-whatsapp::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.fc-whatsapp::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.fc-shield--1 {
  font-size: 90px;
  top: 8%;
  left: 3%;
  animation-duration: 10s;
}
.fc-shield--2 {
  font-size: 60px;
  top: 20%;
  right: 6%;
  animation-duration: 13s;
  animation-delay: -3s;
}
.fc-shield--3 {
  font-size: 50px;
  bottom: 25%;
  left: 18%;
  animation-duration: 11s;
  animation-delay: -5s;
}
.fc-shield--4 {
  font-size: 70px;
  bottom: 15%;
  right: 25%;
  animation-duration: 9s;
  animation-delay: -2s;
}
@keyframes shieldFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.05;
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
    opacity: 0.09;
  }
}

/* =============================================
   HERO RIGHT — CCTV live card
============================================= */
.fc-live-card {
  background: rgba(5, 10, 30, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(30, 57, 143, 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(30, 57, 143, 0.3);
}
/* CCTV UI */
.fc-cctv-ui {
  padding: 0;
}
.fc-cctv-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.15);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fca5a5;
  font-family: "JetBrains Mono", monospace;
}
.fc-rec-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: recPulse 1.2s infinite;
  flex-shrink: 0;
}
@keyframes recPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.fc-cctv-time {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}
.fc-cctv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
}
.fc-cam-feed {
  position: relative;
  background: linear-gradient(135deg, #0a0f1e, #0d1a3a);
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  overflow: hidden;
}
.fc-cam-feed i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.2);
}
.fc-cam-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(30, 255, 100, 0.5);
  animation: camScan 3s linear infinite;
  animation-delay: var(--scan-delay, 0s);
}
.fc-cam-1 {
  --scan-delay: 0s;
}
.fc-cam-2 {
  --scan-delay: -0.75s;
}
.fc-cam-3 {
  --scan-delay: -1.5s;
}
.fc-cam-4 {
  --scan-delay: -2.25s;
}
@keyframes camScan {
  0% {
    top: -1px;
  }
  100% {
    top: 100%;
  }
}
.fc-cctv-footer {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 0.68rem;
  color: rgba(34, 197, 94, 0.8);
  border-top: 1px solid rgba(30, 57, 143, 0.2);
}
.fc-cctv-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Live card stats */
.fc-lc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(30, 57, 143, 0.3);
}
.fc-lcs-item {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(30, 57, 143, 0.2);
}
.fc-lcs-item:last-child {
  border-right: none;
}
.fc-lcs-item--pink {
  background: rgba(199, 0, 126, 0.08);
}
.fc-lcs-item span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fc-lcs-item--pink span {
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fc-lcs-item sup {
  font-size: 0.7rem;
  color: #4ade80;
  vertical-align: super;
}
.fc-lcs-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  margin-top: 4px;
}

/* =============================================
   SECTION 1 — FENCE CARDS
============================================= */
.fc-fence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.fc-fence-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s;
}
.fc-fence-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-pink);
  border-color: rgba(199, 0, 126, 0.15);
}
/* Coloured left accent bar */
.fc-fc-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  transition: width 0.4s;
}
.fc-fence-card:hover .fc-fc-accent {
  width: 6px;
}
.fc-fc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px 0;
}
.fc-fc-icon {
  width: 46px;
  height: 46px;
  background: var(--fence-color, #1e398f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.fc-fence-card:hover .fc-fc-icon {
  transform: scale(1.1) rotate(-6deg);
}
.fc-fc-header h3 {
  font-size: 0.97rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}
.fc-fc-emoji {
  font-size: 1rem;
}
.fc-fc-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
}
.fc-fc-tier {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(30, 57, 143, 0.08);
  color: var(--blue);
  white-space: nowrap;
}
.fc-fc-price {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray);
  text-align: right;
}
.fc-fence-card > p {
  padding: 0 20px;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}
.fc-fc-specs {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}
.fc-fc-specs li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  color: #374151;
}
.fc-fc-specs li i {
  color: #22c55e;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.fc-fc-bestfor {
  margin: 0 20px;
  padding: 9px 12px;
  background: var(--offwhite);
  border-radius: 8px;
  font-size: 0.73rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.fc-fc-bestfor i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-fc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 20px;
  padding: 10px 14px;
  background: var(--gradient-main);
  color: #fff;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.fc-fc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 0, 126, 0.35);
}
.fc-fc-cta i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}
.fc-fence-card:hover .fc-fc-cta i {
  transform: translateX(5px);
}

/* =============================================
   SECTION 2 — CCTV PACKAGES
============================================= */
.fc-cctv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.fc-cctv-pkg {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s;
}
.fc-cctv-pkg:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}
.fc-cctv-popular {
  border-color: rgba(199, 0, 126, 0.3);
  box-shadow: 0 12px 40px rgba(199, 0, 126, 0.15);
  transform: scale(1.03);
}
.fc-cctv-popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.fc-cctv-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.fc-cctv-pkg-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fc-cctv-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}
.fc-cctv-pkg-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.fc-cctv-tag {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 600;
}
.fc-cctv-sub {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(30, 57, 143, 0.12);
}
.fc-cctv-pkg ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.fc-cctv-pkg li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.81rem;
  color: #374151;
  line-height: 1.5;
}
.fc-cctv-pkg li i {
  color: #22c55e;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fc-cctv-bestfor {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.fc-cctv-bestfor i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-cctv-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  padding: 8px 0;
  border-top: 1px dashed rgba(30, 57, 143, 0.12);
}
.fc-cctv-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-main);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 4px;
}
.fc-cctv-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 0, 126, 0.35);
}
/* NRI highlight */
.fc-nri-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(
    135deg,
    rgba(30, 57, 143, 0.06),
    rgba(199, 0, 126, 0.06)
  );
  border: 1px solid rgba(30, 57, 143, 0.12);
  border-radius: var(--radius);
}
.fc-nh-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.fc-nri-highlight strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 4px;
}
.fc-nri-highlight p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   SECTION 3 — REMOTE MONITORING
============================================= */
.fc-remote-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fc-remote-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.fc-rf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  transition: all 0.3s;
}
.fc-rf-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(5px);
}
.fc-rf-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-main);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.fc-rf-item strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}
.fc-rf-item p {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Phone mockup */
.fc-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.fc-phone {
  width: 300px;
  height: 620px;
  background: #0d0f1e;
  border-radius: 36px;
  padding: 14px 12px 20px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(30, 57, 143, 0.3);
  position: relative;
  overflow: hidden;
}
.fc-phone-notch {
  width: 60px;
  height: 10px;
  background: #000;
  border-radius: 10px;
  margin: 0 auto 10px;
}
.fc-phone-screen {
  background: #050d1e;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
  height: 520px;
}
.fc-ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  margin-bottom: 8px;
}
.fc-ps-header i {
  color: #22c55e;
  margin-right: 4px;
}
.fc-ps-live {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f87171;
  font-size: 0.6rem;
}
.fc-ps-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: recPulse 1.2s infinite;
}
.fc-ps-feeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 8px;
}
.fc-ps-feed {
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(135deg, #0a0f1e, #0d1a3a);
  border-radius: 6px;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.fc-ps-feed i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
}
.fc-ps-feed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(30, 255, 100, 0.4);
  animation: camScan 2.5s linear infinite;
}
.fc-ps-feed--1::after {
  animation-delay: 0s;
}
.fc-ps-feed--2::after {
  animation-delay: -0.6s;
}
.fc-ps-feed--3::after {
  animation-delay: -1.2s;
}
.fc-ps-feed--4::after {
  animation-delay: -1.8s;
}
.fc-ps-alert {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  padding: 7px 8px;
  margin-bottom: 8px;
}
.fc-ps-alert i {
  color: #f87171;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.fc-ps-alert span {
  font-size: 0.6rem;
  color: #fca5a5;
  flex-grow: 1;
}
.fc-ps-alert small {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
}
.fc-ps-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fc-ps-footer div {
  display: flex;
  align-items: center;
  gap: 3px;
}
.fc-ps-footer i {
  font-size: 0.55rem;
  color: #22c55e;
}
.fc-phone-home {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 10px auto 0;
}

/* =============================================
   SECTION 4 — NRI PILLARS
============================================= */
.fc-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.fc-pillar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  transition: all 0.3s;
}
.fc-pillar:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
}
.fc-pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(199, 0, 126, 0.1);
  transition: transform 0.3s;
}
.fc-pillar:hover .fc-pillar-icon {
  transform: scale(1.1) rotate(-5deg);
}
.fc-pillar-step {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.fc-pillar h4 {
  color: #fff;
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.fc-pillar p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.6;
}
.fc-pillar-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 12px;
  flex-shrink: 0;
  animation: plusPulse 2s ease-in-out infinite;
}
@keyframes plusPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
/* Toolkit result */
.fc-toolkit-result {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.fc-tr-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.fc-toolkit-result strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 5px;
}
.fc-toolkit-result p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}
.fc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.fc-badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}
/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .fc-fence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .fc-remote-grid {
    grid-template-columns: 1fr;
  }
  .fc-phone-mockup {
    order: -1;
  }
   .fc-live-card {
    max-width: 420px;
    width: 100%;
  }
  
  .fc-cam-feed {
    height: 80px;
  }

  .fc-cctv-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .fc-cctv-popular {
    transform: none;
  }
  .fc-pillars {
    flex-direction: column;
    align-items: stretch;
  }
  .fc-pillar {
    max-width: 100%;
  }
  .fc-pillar-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 768px) {
  .fc-fence-grid {
    grid-template-columns: 1fr;
  }
  .fc-nri-highlight {
    flex-direction: column;
  }
  .fc-toolkit-result {
    flex-direction: column;
    text-align: center;
  }
  .fc-phone {
    transform: scale(0.85);
    transform-origin: top center;
  }
   .fc-live-card {
    max-width: 320px;
    width: 100%;
  }

  .fc-cctv-grid {
    grid-template-columns: 1fr;   /* stack cameras */
  }

  .fc-cam-feed {
    height: 70px;
  }

  .fc-cctv-footer {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
  }

  .fc-lc-stats {
    grid-template-columns: 1fr;  /* stack stats */
  }
}
