/* ZIPDIFAST CCTV CAMERA - shared styles */

:root {
  --red: #e2211f;
  --red-dark: #a8181a;
  --black: #111214;
  --black-soft: #1c1d20;
  --bg: #0a0b0d;
  --grey: #9a9da5;
  --grey-light: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --text: #f4f5f6;
  --max-width: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4 {
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
  color: var(--grey);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(226, 33, 31, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: var(--black-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.btn-outline-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* Top bar */
.topbar {
  background: var(--black);
  color: #cfd1d6;
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: #cfd1d6;
}

.topbar-links {
  display: flex;
  gap: 20px;
}

.topbar-links span,
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black-soft);
  border-bottom: 1px solid var(--grey-light);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
}

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

.brand-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text strong span {
  color: var(--red);
}

.brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--grey);
  text-transform: uppercase;
}

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

nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

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

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 80% 20%, #241417 0%, var(--black) 55%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 40px solid rgba(226, 33, 31, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--red);
}

.hero p.lead {
  color: #c8cad0;
  font-size: 1.08rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--white);
}

.hero-stats div span {
  font-size: 0.8rem;
  color: #a9abb2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual .ring {
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #26181a, #0d0e10);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong), inset 0 0 0 2px rgba(226, 33, 31, 0.25);
}

.hero-visual img {
  width: 78%;
  border-radius: 50%;
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(120deg, var(--black) 0%, #29171a 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--red);
}

.page-hero p {
  color: #c8cad0;
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #9a9ca3;
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--red);
}

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

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

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

.section-head.left {
  margin: 0 0 48px;
  text-align: left;
}

/* Cards grid generic */
.grid {
  display: grid;
  gap: 28px;
}

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

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

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

/* Feature card */
.card {
  background: var(--black-soft);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(226, 33, 31, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* Product card */
.product-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.product-media {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #1c1d20, #302123);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.product-body h3 {
  font-size: 1.08rem;
  margin-bottom: 2px;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 4px 0 6px;
  font-size: 0.85rem;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-specs li::before {
  content: "\2713";
  color: var(--red);
  font-weight: 700;
  margin-right: 8px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--grey-light);
}

.price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.price small {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--grey);
}

.link-arrow {
  font-weight: 700;
  color: var(--red);
  font-size: 0.88rem;
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--grey-light);
  background: var(--black-soft);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Service block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--grey-light);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse .service-media {
  order: 2;
}

.service-media {
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #1c1d20, #33171a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Plan / pricing cards */
.plan-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-card.featured {
  background: linear-gradient(160deg, #2a1418 0%, var(--black) 65%);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

.plan-card.featured p,
.plan-card.featured li {
  color: #c8cad0;
}

.plan-card h3 {
  font-size: 1.15rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey);
}

.plan-card.featured .plan-price span {
  color: #a9abb2;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  margin: 6px 0 10px;
}

.plan-list li::before {
  content: "\2713";
  color: var(--red);
  font-weight: 700;
  margin-right: 8px;
}

/* Stats strip */
.stats-strip {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
}

.stats-strip .grid-4 {
  text-align: center;
}

.stats-strip strong {
  display: block;
  font-size: 2.1rem;
  color: var(--red);
}

.stats-strip span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7b9be;
}

/* Testimonials */
.testimonial-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--red);
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--grey);
}

/* Team / about */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.value-item {
  display: flex;
  gap: 16px;
}

.value-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(226, 33, 31, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, #1c1d20, #33171a);
  margin: 0 auto 16px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(226, 33, 31, 0.18);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.95rem;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.88rem;
  color: #c8cad0;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.15s ease;
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
}

form.contact-form {
  background: var(--black-soft);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--black);
  color: var(--text);
  transition: border-color 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey);
}

.form-group select option {
  background: var(--black-soft);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 10px;
}

.map-embed {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 21/7;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-weight: 600;
}

/* Footer */
footer.site-footer {
  background: var(--black);
  color: #a9abb2;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.05rem;
}

.footer-brand strong span {
  color: var(--red);
}

footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

footer ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

footer ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  color: var(--red);
}

.footer-map {
  margin-top: 14px;
  border-radius: 8px;
  overflow: hidden;
  height: 110px;
  border: 1px solid var(--grey-light);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .service-block,
  .service-block.reverse .service-media,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-media {
    order: 0;
  }

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

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

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--grey-light);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 99;
  }

  nav.main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn-dark {
    display: none;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 56px 0;
  }
}
