/* fallow-ignore-file unused-file */
/* ============================================================
   Security Cameras Barbados Ltd
   Brand: Navy #0a1628 | Gold #F5A623 | White #ffffff
   ============================================================ */

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

:root {
  --navy:    #0a1628;
  --navy2:   #0d1f3c;
  --navy3:   #0f2548;
  --dark:    #060d18;
  --gold:    #F5A623;
  --gold-dk: #d4901e;
  --white:   #ffffff;
  --light:   #f4f6fa;
  --muted:   #6b7f96;
  --border:  #dde4ed;
  --font:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: #1a2535;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.gold  { color: var(--gold); }
.white { color: var(--white); }
.lead  { font-size: 1.1rem; line-height: 1.75; color: #4a5e75; }

/* ── Layout ─────────────────────────────────────────────── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 72px 0; }
.section-sm { padding: 44px 0; }
.section-dark  { background: var(--navy);  color: var(--white); }
.section-dark2 { background: var(--navy2); color: var(--white); }
.section-dark3 { background: var(--dark);  color: var(--white); }
.section-light { background: var(--light); }
.section-gold  { background: var(--gold);  color: var(--navy); }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title      { text-align: center; margin-bottom: 52px; }
.section-title h2   { margin-bottom: 14px; }
.section-title p    { color: var(--muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-dark  .section-title p,
.section-dark2 .section-title p { color: #7a9ab8; }

.divider      { width: 52px; height: 3px; background: var(--gold); margin: 16px auto; border-radius: 2px; }
.divider-left { margin-left: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all 0.18s ease; border: 2px solid transparent;
  white-space: nowrap; line-height: 1; font-family: var(--font);
}
.btn-gold         { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.35); }
.btn-outline      { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover{ background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-wa           { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover     { background: #20be5c; border-color: #20be5c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-navy         { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-lg  { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--dark); color: #7a9ab8;
  font-size: 0.8rem; padding: 7px 0;
  border-bottom: 1px solid rgba(245,166,35,0.12);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item i { color: var(--gold); font-size: 0.82rem; }
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--white); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  background: var(--navy); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(245,166,35,0.1);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.25rem; flex-shrink: 0;
}
.nav-logo-text .brand   { font-size: 0.98rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo-text .tagline { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-links a {
  color: #b8cde0; font-size: 0.88rem; font-weight: 500;
  padding: 8px 13px; border-radius: 6px; transition: all 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a::after { content: ''; display: inline-block; margin-left: 4px; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; vertical-align: middle; position: relative; top: -1px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--navy2); border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--radius); min-width: 220px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.18s ease; box-shadow: var(--shadow-lg); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; color: #b8cde0; padding: 10px 14px; border-radius: 6px; font-size: 0.875rem; }
.dropdown-menu a i { color: var(--gold); width: 16px; text-align: center; }
.dropdown-menu a:hover { background: rgba(245,166,35,0.08); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { color: var(--gold); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 7px; }
.nav-phone:hover { color: var(--white); }
.nav-phone i { font-size: 0.85rem; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 6px; font-size: 1.4rem; }

/* Mobile Nav */
.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--dark);
  z-index: 2000; padding: 80px 28px 40px; overflow-y: auto;
  flex-direction: column; gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.nav-mobile a { color: #c8d8e8; font-size: 1.05rem; font-weight: 500; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 12px; }
.nav-mobile a i { color: var(--gold); width: 20px; text-align: center; font-size: 0.9rem; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 20px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  background: linear-gradient(135deg, #040a14 0%, #0a1628 45%, #0d2040 100%);
  display: flex; align-items: center; overflow: hidden;
}
/* radial gold glow on the right */
.hero::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.07) 0%, transparent 65%);
  pointer-events: none;
}
/* subtle grid texture */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 100px 0 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(245,166,35,0.3); background: rgba(245,166,35,0.07);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-eyebrow i { font-size: 0.7rem; }
.hero h1 { color: var(--white); margin-bottom: 6px; }
.hero h1 .line2 { color: var(--gold); display: block; }
.hero-sub { color: #8aa4c0; font-size: 1.05rem; margin: 18px 0 36px; max-width: 500px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: #7a9ab8; font-size: 0.83rem; }
.hero-trust-item i { color: var(--gold); }
.hero-trust-item strong { color: var(--white); }

/* Hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-camera-panel {
  position: relative; width: 100%;
  background: #eef2f8;
  border-radius: 20px; padding: 50px 40px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border: 1px solid rgba(245,166,35,0.2);
}
.hero-camera-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(245,166,35,0.12) 0%, transparent 60%);
}
.hero-camera-panel img {
  position: relative; z-index: 1;
  max-height: 380px; width: auto;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.22));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-stats {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; white-space: nowrap;
}
.hero-stat {
  background: rgba(10,22,40,0.96); border: 1px solid rgba(245,166,35,0.2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: 10px; padding: 12px 20px; text-align: center;
}
.hero-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 0.68rem; color: #6a8aaa; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── VSL Hero ────────────────────────────────────────────── */
.vsl-hero {
  background: var(--navy);
  position: relative;
  min-height: 600px;
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(245,166,35,0.15);
  isolation: isolate;
  /* overflow:hidden clips the bg video container — no transform hacks needed
     because the parallax never moves outside this boundary */
  overflow: hidden;
}

/* Clip layer — hard boundary, nothing escapes */
.vsl-bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Inner parallax wrapper — oversized on all sides so sliding/rounding
   never reveals a gap at any edge or with any scrollbar width.
   JS translates only this element; it stays inside .vsl-bg-video's clip.
   NOTE: use top + explicit height (not bottom:%) — percentage 'bottom' on
   absolutely-positioned children fails to resolve in some browsers when
   the parent height is derived from positioned constraints rather than
   content. top + height is universally reliable. */
#vslBgVideoInner {
  position: absolute;
  top: -25%;        /* shift up 25% of parent height */
  left: -2%;        /* eat scrollbar gutter + sub-pixel gaps */
  width: 104%;      /* 2% extra each side */
  height: 150%;     /* 100% visible + 25% above + 25% below = 150% */
  will-change: transform;
}

/* Video fills the inner wrapper entirely, centred */
#vslBgVideoEl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.vsl-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.82) 0%,
    rgba(10,22,40,0.70) 50%,
    rgba(10,22,40,0.80) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.vsl-inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 56px; align-items: start; position: relative; z-index: 2;
}
.vsl-left { padding-top: 8px; }
.vsl-left h1 { color: var(--white); font-size: clamp(2rem, 3.5vw, 2.9rem); line-height: 1.15; margin: 18px 0 20px; }
.vsl-sub { color: #8aa4c0; font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.vsl-trust { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.vsl-trust-item { display: flex; align-items: center; gap: 10px; color: #c0d4e8; font-size: 0.95rem; }
.vsl-trust-item strong { color: var(--white); }
.vsl-phone-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.vsl-right { display: flex; flex-direction: column; gap: 24px; }
.vsl-video-wrap { position: relative; }
.vsl-video-wrap .video-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 56px rgba(0,0,0,0.5); position: relative; }
.vsl-video-caption { text-align: center; color: #6a8aaa; font-size: 0.82rem; margin-top: 10px; }
.vsl-video-caption i { color: var(--gold); margin-right: 4px; }

/* Click-to-play overlay */
.vsl-play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; cursor: pointer;
  background: rgba(10,22,40,0.28);
  transition: background 0.2s;
  border-radius: 14px;
}
.vsl-play-overlay:hover { background: rgba(10,22,40,0.15); }
.vsl-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vsl-play-overlay:hover .vsl-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(0,0,0,0.5);
}
.vsl-play-overlay span {
  color: #fff; font-size: 0.82rem; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.vsl-play-overlay.hidden { display: none; }

.vsl-form-card {
  background: var(--white); border-radius: 16px; padding: 28px 28px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.vsl-form-header { margin-bottom: 18px; }
.vsl-form-header h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 4px; }
.vsl-form-header p { color: var(--muted); font-size: 0.88rem; }
.vsl-form-card .form-group { margin-bottom: 12px; }
.vsl-form-card .form-row { gap: 12px; }
.vsl-form-card label { font-size: 0.82rem; }
.vsl-form-card input, .vsl-form-card select { padding: 10px 14px; font-size: 0.9rem; }
.vsl-form-card .btn-block { margin-top: 6px; }
.vsl-form-card .form-hint { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 10px; }

@media (max-width: 768px) {
  .vsl-inner { grid-template-columns: 1fr; gap: 40px; }
  .vsl-left { padding-top: 0; }
  .vsl-left h1 { font-size: 2rem; }
  .vsl-phone-cta { display: none; }
}
@media (max-width: 600px) {
  .vsl-hero { padding: 48px 0 56px; }
  .vsl-left h1 { font-size: 1.75rem; }
}

/* ── Feature Bar ─────────────────────────────────────────── */
.feat-bar {
  background: var(--navy2); padding: 32px 0;
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}
.feat-bar-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.feat-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
.feat-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.15rem; flex-shrink: 0;
}
.feat-text .t { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.feat-text .s { font-size: 0.72rem; color: #5a7a96; margin-top: 1px; }

/* ── Stats Band ──────────────────────────────────────────── */
.stats-band { background: var(--gold); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-item { text-align: center; }
.stat-item .num   { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.stat-item .label { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.7; }

/* ── Solution Cards ──────────────────────────────────────── */
.solution-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.solution-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.11); }
.solution-img {
  height: 210px; background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; position: relative; overflow: hidden;
}
.solution-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.4s ease;
}
.solution-card:hover .solution-img img { transform: scale(1.05); }
.solution-img i { color: rgba(245,166,35,0.55); font-size: 4rem; }
.solution-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, rgba(10,22,40,0.55));
  pointer-events: none;
}
.solution-body { padding: 24px; }
.solution-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.solution-body p  { color: #5a7090; font-size: 0.88rem; margin-bottom: 20px; line-height: 1.65; }

/* ── Camera Section ──────────────────────────────────────── */
.camera-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.camera-panel {
  background: #f0f4f8;
  border-radius: 20px; padding: 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}
.camera-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(245,166,35,0.08) 0%, transparent 55%);
}
.camera-panel img { position: relative; z-index: 1; max-height: 360px; width: auto; margin: 0 auto; filter: drop-shadow(0 16px 40px rgba(0,0,0,0.18)); }
.camera-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; z-index: 2;
}
.camera-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.camera-feat {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px; background: var(--light); border-radius: 10px; border: 1px solid var(--border);
}
.camera-feat i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.camera-feat .t { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.camera-feat .s { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── Why Cards ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  padding: 36px 28px; border-radius: 14px;
  border: 1px solid rgba(245,166,35,0.12); background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s; text-align: center;
}
.why-card:hover { background: rgba(245,166,35,0.05); border-color: rgba(245,166,35,0.25); }
.why-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem; margin: 0 auto 20px;
}
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.why-card p  { color: #6a8aaa; font-size: 0.875rem; line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: 14px; padding: 30px;
  border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text  { color: #3a4e65; font-size: 0.92rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author{ display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-name     { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
.testimonial-location { font-size: 0.75rem; color: var(--muted); }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2a52 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: #7a9ab8; margin-bottom: 36px; font-size: 1.05rem; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Finance ─────────────────────────────────────────────── */
.finance-hero {
  background: linear-gradient(135deg, #040a14 0%, var(--navy) 60%, #0d2a4a 100%);
  padding: 96px 0 80px; position: relative; overflow: hidden;
}
.finance-hero::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at right, rgba(245,166,35,0.08) 0%, transparent 60%);
}
.finance-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.finance-months-panel {
  background: var(--gold); border-radius: 18px; padding: 52px 40px; text-align: center;
  box-shadow: 0 20px 60px rgba(245,166,35,0.25);
}
.finance-months-panel .big   { font-size: 5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.finance-months-panel .unit  { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.finance-months-panel .label { font-size: 0.82rem; font-weight: 700; color: var(--navy); opacity: 0.65; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 10px; }


.finance-steps { }
.finance-step  { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.finance-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  color: var(--navy); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.step-content p  { color: #6a8aaa; font-size: 0.85rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.contact-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-value { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--gold); }

/* ── Form ────────────────────────────────────────────────── */
.form-card {
  background: var(--white); border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-card h3    { margin-bottom: 6px; }
.form-card .sub  { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.form-row        { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group      { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; color: #3a4e65;
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.95rem; color: #1a2535;
  background: var(--white); transition: border-color 0.18s, box-shadow 0.18s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.1); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* ── Brand Logo Cards ────────────────────────────────────── */
.brand-logo-card {
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  transition: background 0.2s;
}
.brand-logo-card:hover { background: rgba(0,0,0,0.04); }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--dark); padding: 22px 0;
  border-top: 1px solid rgba(245,166,35,0.08);
  border-bottom: 1px solid rgba(245,166,35,0.08);
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 9px; color: #6a8aaa; font-size: 0.85rem; }
.trust-item i { color: var(--gold); font-size: 1rem; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 76px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1  { color: var(--white); margin-bottom: 14px; }
.page-hero p   { color: #7a9ab8; max-width: 580px; margin: 0 auto 24px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.78rem; color: #4a6a88; margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

/* ── Service List ────────────────────────────────────────── */
.service-list-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-item {
  display: flex; gap: 18px; padding: 24px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.service-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,166,35,0.08); }
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem; flex-shrink: 0;
}
.service-text h4 { margin-bottom: 6px; font-size: 1rem; }
.service-text p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--navy); position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: var(--white); border: none;
  padding: 20px 24px; text-align: left; font-size: 0.96rem; font-weight: 600;
  color: var(--navy); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: background 0.18s; font-family: var(--font);
}
.faq-q:hover { background: var(--light); }
.faq-q i { color: var(--gold); font-size: 0.8rem; transition: transform 0.22s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.28s ease, padding 0.28s; color: #4a5e75; font-size: 0.9rem; line-height: 1.75; }
.faq-a.open { max-height: 320px; padding: 0 24px 20px; }


.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark); color: #6a8aaa;
  padding: 64px 0 0; border-top: 3px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.2rem; flex-shrink: 0;
}
.footer-brand-name { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.footer-tagline    { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-brand p    { font-size: 0.875rem; margin-bottom: 20px; line-height: 1.7; max-width: 270px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); display: flex; align-items: center;
  justify-content: center; color: #6a8aaa; font-size: 0.95rem;
  transition: background 0.18s, color 0.18s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; margin-top: 0; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: #6a8aaa; font-size: 0.875rem; transition: color 0.18s; display: flex; align-items: center; gap: 8px; }
.footer-col ul a i { color: var(--gold); width: 14px; text-align: center; font-size: 0.75rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--white); }

/* ── Sticky WhatsApp ─────────────────────────────────────── */
.wa-sticky { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-bubble {
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer; transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none; animation: wa-pulse 3s ease-in-out infinite;
}
.wa-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes wa-pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.65)} }
.wa-tooltip {
  background: var(--navy2); color: var(--white); font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2); border: 1px solid rgba(245,166,35,0.15);
}

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1{margin-top:8px} .mt-2{margin-top:16px} .mt-3{margin-top:24px}
.mt-4{margin-top:32px} .mt-5{margin-top:48px}
.mb-2{margin-bottom:16px} .mb-3{margin-bottom:24px} .mb-4{margin-bottom:32px}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; }
.check-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ── Reveal animation ────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ── Video Embed ─────────────────────────────────────────── */
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 0; border-radius: 14px;
}

/* ── Besview brand badge ──────────────────────────────────── */
.brand-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px; padding: 8px 18px; font-size: 0.82rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em;
}
.brand-badge i { font-size: 0.75rem; }

/* ── Feature Cards ───────────────────────────────────────── */
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 24px; transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.feature-card .feature-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(245,166,35,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold); margin-bottom: 14px;
}
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px; position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.pricing-card--featured {
  border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,166,35,0.18);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: 20px;
}
.pricing-header { margin-bottom: 20px; }
.pricing-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.pricing-price { font-size: 0.95rem; color: var(--muted); }
.pricing-price strong { font-size: 1.8rem; color: var(--navy); font-weight: 800; }
.pricing-price span { font-size: 0.85rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.88rem; display: flex; gap: 10px; align-items: center; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .feat-bar-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet / large mobile — 768px */
@media (max-width: 820px) {
  /* Nav */
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: block; }

  /* Typography */
  h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.1rem); }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 0 50px; }
  .hero-visual { order: -1; }
  .hero-camera-panel { padding: 32px 24px; }
  .hero-camera-panel img { max-height: 260px; }
  .hero-stats { position: relative; bottom: auto; left: auto; transform: none; justify-content: center; flex-wrap: wrap; gap: 8px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-sub { font-size: 0.97rem; }

  /* Layout grids */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .feat-bar-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .finance-hero-inner { grid-template-columns: 1fr; }
  .camera-grid { grid-template-columns: 1fr; }
  .service-list-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .trust-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* Inline grid overrides — 2-col sections */
  .two-col-grid { grid-template-columns: 1fr !important; }
  [style*="1fr 1fr"][style*="gap:60px"],
  [style*="1fr 1fr"][style*="gap: 60px"],
  [style*="1fr 1fr"][style*="gap:64px"],
  [style*="1fr 1fr"][style*="gap: 64px"],
  [style*="1fr 1.1fr"],
  [style*="1fr 1.2fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Page hero */
  .page-hero-inner { padding: 48px 0 36px; }

  /* Finance hero panel */
  .finance-hero-inner { gap: 40px; }
  .finance-grid-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .finance-grid-inner [data-reveal]:last-child { display: flex; justify-content: center; }
  .finance-months-panel { padding: 28px 32px; border-radius: 14px; }
  .finance-months-panel .big  { font-size: 3.2rem; }
  .finance-months-panel .unit { font-size: 1.2rem; }

  /* Camera features list */
  .camera-features { grid-template-columns: 1fr !important; }

  /* Stats inline grids */
  .stats-inline-grid { grid-template-columns: 1fr 1fr !important; }
}

/* Tablet — tighten sections */
@media (max-width: 820px) and (min-width: 521px) {
  .section { padding: 52px 0; }
  .section-sm { padding: 32px 0; }
}

/* Mobile — 520px */
@media (max-width: 520px) {
  .section { padding: 40px 0; }
  .section-sm { padding: 24px 0; }
  .hero { min-height: auto; }
  .topbar { display: none; }
  .form-card { padding: 20px; }

  /* All inline 3-col grids collapse to 1-col */
  [style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  /* 2-col inline grids collapse to 1-col */
  [style*="1fr 1fr"][style*="gap:60px"],
  [style*="1fr 1fr"][style*="gap: 60px"],
  [style*="1fr 1fr"][style*="gap:64px"],
  [style*="1fr 1fr"][style*="gap: 64px"],
  [style*="1fr 1.1fr"],
  [style*="1fr 1.2fr"] { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feat-bar-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Buttons — full width on mobile */
  .cta-band-btns .btn, .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 15px 24px; font-size: 0.95rem; }

  /* Trust bar scrollable */
  .trust-inner { flex-nowrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; gap: 20px; }

  /* Video embed stays 16:9 */
  .video-embed { border-radius: 8px; }

  /* Nav logo — hide tagline */
  .nav-logo-text .tagline { display: none; }

  /* About stats grid */
  .stats-inline-grid { grid-template-columns: 1fr 1fr !important; }

  /* Maintenance plan cards */
  [style*="repeat(3,1fr)"][style*="gap:28px"] { grid-template-columns: 1fr !important; }

  /* Camera features */
  .camera-features { gap: 10px; }
  .camera-feat { font-size: 0.88rem; }

  /* Section title */
  .section-title { margin-bottom: 32px; }
  .section-title p { font-size: 0.95rem; }

  /* Page hero */
  .page-hero-inner { padding: 40px 0 28px; }
  .page-hero-inner h1 { font-size: 1.8rem; }
  .page-hero-inner p { font-size: 0.95rem; }
  .breadcrumb { font-size: 0.78rem; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-text { font-size: 0.9rem; }

  /* CTA band */
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 1.5rem; }

  /* Mobile sticky CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 2000;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.18);
  }
  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .mobile-cta-call   { background: var(--navy);  color: var(--white); }
  .mobile-cta-survey { background: var(--gold);  color: var(--navy); }
  .mobile-cta-wa     { background: #25D366;       color: var(--white); }

  /* Push page content above the bar */
  body { padding-bottom: 56px; }
}

/* Hide mobile sticky bar on desktop */
@media (min-width: 521px) {
  .mobile-cta-bar { display: none; }
}
