:root {
  --ink: #101416;
  --muted: #5b666c;
  --line: #dce5e8;
  --paper: #f7fbfb;
  --white: #ffffff;
  --aqua: #00b8c8;
  --mint: #8ce66c;
  --coral: #ff7a59;
  --gold: #f2c94c;
  --shadow: 0 24px 70px rgba(16, 20, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 251, 251, 0.86);
  border-bottom: 1px solid rgba(220, 229, 232, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #062629;
  background: linear-gradient(135deg, var(--mint), var(--aqua));
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 184, 200, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #233034;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 0;
}

.nav-cta,
.button {
  border-radius: 8px;
}

.nav-cta {
  padding: 11px 16px !important;
  color: #062629;
  background: var(--mint);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-band,
.section,
.cta-section,
.site-footer {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 90% 10%, rgba(140, 230, 108, 0.28), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(0, 184, 200, 0.16), transparent 28%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: #087983;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text,
.section-heading p,
.split > div:first-child p,
.cta-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #052124;
  background: var(--mint);
  box-shadow: 0 16px 36px rgba(140, 230, 108, 0.34);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.control-room {
  position: relative;
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 184, 200, 0.16), rgba(140, 230, 108, 0.05)),
    #121819;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.control-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.monitor-top,
.hero-asset,
.camera-grid,
.event-panel {
  position: relative;
  z-index: 1;
}

.hero-asset {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 16px;
  object-fit: cover;
  background: #102226;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.monitor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.monitor-top span {
  color: rgba(255, 255, 255, 0.72);
}

.monitor-top strong {
  color: var(--mint);
}

.camera-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.camera-card {
  position: relative;
  min-height: 195px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 184, 200, 0.24), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, #203132, #151b1d);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.camera-card::before,
.camera-card::after {
  content: "";
  position: absolute;
  opacity: 0.5;
}

.camera-card::before {
  inset: 56px 20px 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.camera-card::after {
  right: 18px;
  bottom: 45px;
  width: 90px;
  height: 54px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.16) 0);
}

.camera-card p,
.camera-label {
  position: relative;
  z-index: 2;
}

.camera-label {
  display: inline-flex;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.camera-card p {
  position: absolute;
  bottom: 12px;
  left: 14px;
  margin: 0;
  font-weight: 800;
}

.camera-card.alert {
  outline: 2px solid rgba(255, 122, 89, 0.7);
}

.camera-card.warning {
  outline: 2px solid rgba(242, 201, 76, 0.68);
}

.scan-line {
  position: absolute;
  top: 42%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  animation: scan 3.2s linear infinite;
}

.person-marker,
.vehicle-marker,
.presence-marker,
.tamper-marker,
.plate-marker,
.epi-marker,
.speed-marker {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
}

.person-marker {
  top: 72px;
  left: 44%;
  width: 42px;
  height: 72px;
  border: 2px solid var(--coral);
}

.vehicle-marker {
  right: 46px;
  bottom: 68px;
  width: 88px;
  height: 46px;
  border: 2px solid var(--aqua);
}

.presence-marker {
  top: 74px;
  left: 38px;
  width: 52px;
  height: 80px;
  border: 2px solid var(--mint);
}

.tamper-marker {
  inset: 70px 34px 70px;
  border: 2px dashed var(--gold);
}

.plate-marker {
  right: 34px;
  bottom: 74px;
  padding: 10px 14px;
  color: #062629;
  background: var(--white);
  border: 3px solid var(--aqua);
  font-size: 0.82rem;
  font-weight: 900;
}

.epi-marker {
  top: 72px;
  left: 38%;
  width: 78px;
  height: 54px;
  border: 3px solid var(--gold);
}

.epi-marker::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 12px;
  width: 44px;
  height: 28px;
  border: 3px solid var(--gold);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.speed-marker {
  right: 32px;
  bottom: 80px;
  padding: 12px 16px;
  color: #062629;
  background: var(--gold);
  font-weight: 900;
}

.event-panel {
  display: grid;
  gap: 12px;
  width: min(360px, calc(100% - 36px));
  margin: 16px 0 0 auto;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}

.event-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-panel button {
  min-height: 42px;
  color: #052124;
  font-weight: 800;
  background: var(--mint);
  border: 0;
  border-radius: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 122, 89, 0.16);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  color: #4d5b60;
  background: var(--white);
  text-align: center;
  font-weight: 800;
}

.section,
.cta-section {
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.process-grid,
.feature-grid,
.intelligence-grid,
.segment-grid,
.value-grid,
.comparison-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.case-grid article {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #102226;
}

.case-grid div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.case-grid span {
  margin-bottom: 10px;
  color: #087983;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.case-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 14px;
  color: #052124;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

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

.process-grid article,
.feature-grid article,
.intelligence-grid article,
.segment-grid article,
.value-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid p,
.feature-grid p,
.intelligence-grid p,
.segment-grid p,
.value-grid p,
.benefit-list p {
  color: var(--muted);
  line-height: 1.65;
}

.value-section {
  background: var(--white);
}

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

.value-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  color: #052124;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

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

.comparison-grid article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.comparison-grid .is-highlighted {
  color: #052124;
  background: linear-gradient(135deg, var(--mint), rgba(0, 184, 200, 0.28));
  border-color: rgba(140, 230, 108, 0.5);
}

.comparison-grid ul,
.deep-feature-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.55;
}

.comparison-grid li {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-grid .is-highlighted li {
  color: #173135;
  font-weight: 700;
}

.step-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: #07818c;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #087983;
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #052124;
  background: var(--mint);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 900;
}

.section-contrast {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 184, 200, 0.28), transparent 28%),
    #101416;
}

.section-contrast .eyebrow {
  color: var(--mint);
}

.section-contrast .section-heading p,
.section-contrast .intelligence-grid p,
.section-contrast .segment-grid p {
  color: rgba(255, 255, 255, 0.68);
}

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

.feature-grid article {
  min-height: 245px;
}

.deep-feature-grid article {
  display: flex;
  flex-direction: column;
}

.feature-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
  background: #102226;
  border-radius: 8px;
}

.deep-feature-grid ul {
  color: var(--muted);
}

.deep-feature-grid .whatsapp-link {
  margin-top: auto;
}

.intelligence-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-contrast .segment-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.icon-chip {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  color: #062629;
  background: var(--mint);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.pricing-section {
  background: var(--white);
}

.setup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(140, 230, 108, 0.24), transparent 28%),
    #101416;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.setup-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.setup-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.setup-card strong {
  color: var(--mint);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  white-space: nowrap;
}

.setup-card > span:last-child {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.plan-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: #052124;
  background: var(--mint);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.price-card {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 8px solid #00a98f;
  border-radius: 8px;
}

.price-card.blue {
  border-top-color: #2f7fc1;
}

.price-card.orange {
  border-top-color: #f6a23c;
}

.price-card.purple {
  border-top-color: #7657f5;
}

.price-card strong {
  display: block;
  margin-top: 20px;
  color: #008f7a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.price-card.blue strong {
  color: #2f7fc1;
}

.price-card.orange strong {
  color: #dd8421;
}

.price-card.purple strong {
  color: #7657f5;
}

.price-card span {
  display: inline-flex;
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 14px;
  color: #052124;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.setup-link {
  width: auto;
  margin-top: 18px;
  padding: 0 18px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(140, 230, 108, 0.18), rgba(0, 184, 200, 0.12)),
    var(--white);
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2b383d;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 184, 200, 0.14);
}

.contact-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-note a {
  color: #087983;
  font-weight: 800;
}

.whatsapp-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.whatsapp-panel a {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.whatsapp-panel a:first-child {
  color: #052124;
  background: linear-gradient(135deg, var(--mint), rgba(0, 184, 200, 0.22));
  border-color: rgba(0, 184, 200, 0.34);
}

.whatsapp-panel span {
  color: #087983;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-panel strong {
  line-height: 1.35;
}

.faq-section {
  background: var(--paper);
}

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

.faq-grid details {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: #052124;
  background: var(--mint);
  border: 1px solid rgba(5, 33, 36, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 20, 22, 0.22);
  font-weight: 900;
}

.form-status,
.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #087943;
  font-weight: 800;
}

.form-status.is-error {
  color: #b93d23;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #dce5e8;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

@keyframes scan {
  0% {
    transform: translateY(-76px);
  }
  100% {
    transform: translateY(88px);
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .control-room {
    min-height: 500px;
  }

  .process-grid,
  .feature-grid,
  .intelligence-grid,
  .segment-grid,
  .value-grid,
  .case-grid,
  .comparison-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-metrics,
  .camera-grid,
  .process-grid,
  .feature-grid,
  .intelligence-grid,
  .segment-grid,
  .value-grid,
  .case-grid,
  .comparison-grid,
  .faq-grid,
  .logo-strip,
  .price-grid,
  .setup-card {
    grid-template-columns: 1fr;
  }

  .setup-card > span:last-child {
    grid-column: auto;
  }

  .setup-card strong {
    white-space: normal;
  }

  .control-room {
    min-height: auto;
  }

  .hero-asset {
    aspect-ratio: 16 / 9;
  }

  .camera-card {
    min-height: 180px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .benefit-list article {
    grid-template-columns: 1fr;
  }

  .site-footer div {
    flex-wrap: wrap;
  }
}
