:root {
  --ss-cyan: #3CB4E5;
  --ss-blue: #0075C9;
  --ss-dark-blue: #15304B;
  --ss-dark-gray: #4A4F54;
  --ss-cool-gray: #98989A;
  --ss-light-blue: #E6F1F9;
  --ss-light-gray: #EDEDED;
  --ss-white: #ffffff;
  --ss-gold: #FFB703;
  --text: #283746;
  --muted: #65758A;
  --border: #d3e5f1;
  --shadow: 0 24px 60px rgba(21, 48, 75, 0.16);
  --shadow-soft: 0 12px 28px rgba(21, 48, 75, 0.09);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--ss-white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand-text {
  display: inline-grid;
  gap: 2px;
  color: var(--ss-dark-blue);
}

.brand-name {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-subtitle {
  color: var(--ss-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.logo-guideline-note {
  display: none;
  padding: 8px 0;
  color: #486174;
  background: var(--ss-light-blue);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}

body.show-logo-note .logo-guideline-note {
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--ss-dark-blue);
  font-size: 0.93rem;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--ss-blue);
}

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

.phone {
  color: var(--ss-blue);
  font-weight: 900;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--ss-blue);
  color: white;
  box-shadow: 0 14px 28px rgba(0, 117, 201, .24);
}

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

.btn-outline {
  color: var(--ss-blue);
  background: white;
  border: 1px solid rgba(0,117,201,.28);
}

.btn-light {
  color: var(--ss-blue);
  background: white;
}

.btn-outline-light {
  color: white;
  background: transparent;
  border: 1px solid rgba(255,255,255,.62);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, var(--ss-light-blue) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  left: 44%;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.84) 16%, rgba(255,255,255,.18) 58%, rgba(255,255,255,.02) 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.86fr 0.74fr;
  gap: 50px;
  align-items: center;
  padding: 74px 0;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ss-blue);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.hero h1 {
  margin: 0;
  color: var(--ss-dark-blue);
  font-size: clamp(2.6rem, 5.1vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 545px;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.trust-line {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
  color: var(--ss-dark-blue);
  font-size: .85rem;
  font-weight: 800;
}

.trust-line span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(230, 241, 249, .9);
  border: 1px solid var(--border);
}

.quote-card {
  align-self: stretch;
  max-width: 455px;
  margin-left: auto;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
  border: 1px solid rgba(211,229,241,.9);
}

.quote-card h2 {
  margin: 0;
  color: var(--ss-dark-blue);
  font-size: 1.8rem;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.quote-card > p {
  margin: 10px 0 22px;
  color: var(--muted);
}

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

.form-grid label {
  display: block;
}

.form-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--ss-dark-blue);
  font-size: .78rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.btn-form {
  width: 100%;
  color: white;
  background: var(--ss-blue);
  margin-top: 14px;
}

.tcpA-box {
  margin: 14px 0 0;
  padding: 13px;
  border-radius: 13px;
  background: var(--ss-light-blue);
  border: 1px solid var(--border);
}

.tcpA-box label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.tcpA-box input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 3px;
}

.tcpA-box span {
  color: var(--text);
  font-size: .74rem;
  line-height: 1.42;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.benefit-strip {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.benefit-grid article {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.icon-line {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ss-blue);
  border: 2px solid var(--ss-blue);
  border-radius: 50%;
  font-size: 1.45rem;
  line-height: 1;
}

.benefit-grid h3 {
  margin: 0;
  color: var(--ss-dark-blue);
  font-size: .98rem;
  line-height: 1.2;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.section {
  padding: 92px 0;
}

.equipment-section {
  padding-top: 110px;
  background: linear-gradient(180deg, var(--ss-light-blue) 0%, #ffffff 100%);
}

.equipment-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 45px;
}

.section-copy h2,
.section-heading h2,
.service-copy h2,
.about-section h2,
.cta-inner h2 {
  margin: 0;
  color: var(--ss-dark-blue);
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.section-copy p,
.section-heading p,
.service-copy p,
.about-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.equipment-card {
  padding: 20px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.equipment-card img {
  width: 100%;
  background: white;
  border-radius: 20px;
}

.close-proximity-disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem !important;
  line-height: 1.45;
}

.image-mosaic {
  padding: 0 0 88px;
  background: white;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr .72fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.mosaic-img,
.mosaic-copy {
  overflow: hidden;
  border-radius: 18px;
  min-height: 330px;
  background: var(--ss-light-blue);
  box-shadow: var(--shadow-soft);
}

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

.mosaic-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 38px;
}

.mosaic-copy h2 {
  margin: 0;
  color: var(--ss-dark-blue);
  font-size: 1.65rem;
  line-height: 1.16;
}

.mosaic-copy p {
  color: var(--muted);
}

.mosaic-copy a {
  color: var(--ss-blue);
  font-weight: 900;
}

.install-section {
  background: #f7fbff;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  max-width: 620px;
  margin-left: 0;
  text-align: left;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.install-grid article {
  overflow: hidden;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.install-grid img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.install-grid div {
  padding: 16px 18px 20px;
}

.install-grid h3 {
  margin: 0 0 5px;
  color: var(--ss-dark-blue);
  font-size: 1rem;
}

.install-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.control-section {
  background: white;
}

.control-grid {
  display: grid;
  grid-template-columns: .72fr 1.08fr .72fr;
  gap: 18px;
  align-items: stretch;
}

.control-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 34px;
  border-radius: 18px;
  background: var(--ss-light-blue);
  border: 1px solid var(--border);
}

.control-card.soft {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.control-card h2 {
  margin: 0;
  color: var(--ss-dark-blue);
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.control-card p {
  color: var(--muted);
}

.check-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
}

.check-list li {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--ss-cyan);
  color: white;
  font-size: .75rem;
}

.phone-feature {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.phone-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provider-info {
  padding: 86px 0;
  color: white;
  background: linear-gradient(135deg, var(--ss-dark-blue), var(--ss-blue));
}

.provider-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.provider-info h2,
.provider-info p {
  color: white;
}

.provider-info p {
  color: rgba(255,255,255,.78);
}

.provider-list {
  display: grid;
  gap: 12px;
}

.provider-list p {
  margin: 0;
  padding: 17px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}

.provider-list span {
  font-weight: 900;
  color: var(--ss-cyan);
  margin-right: 10px;
}

.service-areas,
.about-section {
  padding: 86px 0;
  background: #f7fbff;
}

.service-areas-grid,
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.city-panel,
.about-card {
  padding: 28px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.city-panel h3,
.about-card h3 {
  margin: 0 0 18px;
  color: var(--ss-dark-blue);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.city-list a {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--ss-light-blue);
  color: var(--ss-dark-blue);
  font-weight: 800;
}

.city-list a:hover {
  color: white;
  background: var(--ss-blue);
}

.about-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.about-card li {
  margin-bottom: 9px;
}

.cta-band {
  padding: 62px 0;
  background: linear-gradient(135deg, var(--ss-blue), var(--ss-dark-blue));
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  color: white;
}

.cta-inner p {
  color: rgba(255,255,255,.78);
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 290px;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 12px;
}

details {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  color: var(--ss-dark-blue);
  font-weight: 900;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 32px;
  background: var(--ss-dark-blue);
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 26px;
}

.footer-grid strong {
  color: white;
  font-size: 1.15rem;
}

.footer-grid a {
  display: block;
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  font-size: .78rem;
}

.legal p {
  margin: 0;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-inner,
  .equipment-grid,
  .provider-grid,
  .service-areas-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    left: 0;
    opacity: .22;
  }

  .quote-card {
    margin: 0;
    max-width: none;
  }

  .benefit-grid,
  .install-grid,
  .control-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0 92px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .header-cta,
  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid,
  .benefit-grid,
  .install-grid,
  .control-grid,
  .footer-grid,
  .city-list {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .control-card,
  .city-panel,
  .about-card {
    padding: 24px;
  }

  .benefit-strip {
    margin-top: -30px;
  }
}


/* V6 official SafeStreets Authorized Provider logo integration */
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 310px;
}

.brand-logo img {
  display: block;
  width: min(310px, 100%);
  height: auto;
}

.footer-logo {
  display: block;
  width: min(300px, 100%);
  height: auto;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
}

.video-demo-section {
  background: #ffffff;
}

.video-demo-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: center;
}

.video-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: var(--shadow-soft);
}

.video-card video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1060px) {
  .brand-logo {
    max-width: 280px;
  }

  .video-demo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    max-width: 245px;
  }
}


/* V7 hero image cleanup: removes embedded white logo/text from visible hero crop */
.hero-image img {
  object-position: center 58%;
}
