:root {
  --orange: #f06807;
  --orange-dark: #ca5200;
  --ink: #20242b;
  --ink-2: #303846;
  --muted: #667385;
  --line: #e4e9f0;
  --panel: #ffffff;
  --soft: #f5f7fa;
  --soft-blue: #eef4f8;
  --teal: #0f766e;
  --navy: #263348;
  --amber: #f7b733;
  --shadow: 0 22px 70px rgba(21, 29, 43, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Verdana, Tahoma, sans-serif;
  line-height: 1.55;
}

body > * {
  animation: pageRise 620ms ease both;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 233, 240, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 370px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 212px;
  height: auto;
  object-fit: contain;
}

.brand-solution {
  display: block;
  max-width: 132px;
  color: var(--orange-dark);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  color: #303846;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.12;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(240, 104, 7, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: #cfd8e3;
}

.button.dark {
  min-height: 42px;
  color: #fff;
  background: #171a20;
  box-shadow: none;
  text-transform: uppercase;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button:active,
.header-cta:active {
  transform: translateY(0);
}

.header-cta:focus-visible,
.button:focus-visible,
.nav a:focus-visible,
.footer a:focus-visible,
.quote-form input:focus-visible,
.quote-form textarea:focus-visible,
.quote-form select:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 3px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: clamp(34px, 4.4vw, 58px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 55%, #edf3f7 55%, #edf3f7 100%);
}

.hero-content {
  max-width: 720px;
  text-align: left;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 9px 12px;
  color: var(--orange-dark);
  background: #fff3eb;
  border: 1px solid #ffd5bd;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.since-badge::before {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 22px;
  color: #384252;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.equipment-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 660px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 18px 44px rgba(38, 51, 72, 0.22);
  text-align: left;
}

.equipment-callout p {
  margin: 0;
  color: #e8eef5;
}

.equipment-callout strong {
  color: #fff;
}

.device-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 34px;
  background: #fff;
  border-radius: 6px;
}

.device-icon::before {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.device-icon::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
  content: "";
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 0;
}

.hero-stats div,
.pillars article,
.plan-card,
.proof-grid article,
.operation-grid article,
.quote-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(21, 29, 43, 0.08);
}

.hero-stats div {
  padding: 13px 14px;
}

.hero-stats dt {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 900;
}

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

.hero-visual {
  position: relative;
  min-width: 0;
}

.platform-frame {
  padding: clamp(8px, 1.2vw, 14px);
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.platform-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.hardware-card {
  position: absolute;
  right: clamp(10px, 3vw, 32px);
  bottom: -24px;
  max-width: 300px;
  padding: 18px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 118, 110, 0.28);
}

.hardware-card span {
  display: block;
  margin-bottom: 5px;
  color: #d7fffa;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hardware-card strong {
  display: block;
  line-height: 1.22;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2,
.feature-text h2,
.operation-copy h2,
.quote-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.pillars,
.plan-grid,
.benefit-grid,
.proof-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
}

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

.pillars article,
.plan-card,
.proof-grid article,
.operation-grid article {
  padding: 28px;
}

.pillars span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.pillars article:nth-child(2) span {
  background: var(--orange);
}

.pillars article:nth-child(3) span {
  background: var(--teal);
}

.pillars h3,
.plan-card h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.18;
}

.pillars p,
.feature-text p,
.operation-copy p,
.quote-copy p,
.plan-card p,
.proof-grid span,
.operation-grid span,
.footer p {
  color: var(--muted);
}

.feature-band,
.operation-section,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 92px clamp(18px, 5vw, 72px);
}

.feature-band {
  background: #f1f4f8;
}

.orange-promo {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  min-height: 500px;
  padding-top: 86px;
  padding-bottom: 82px;
  color: #fff;
  background: var(--orange);
}

.brand-repeat,
.promo-brand,
.operation-brand {
  color: var(--orange-dark);
  font-weight: 900;
}

.brand-repeat {
  margin-bottom: 0;
}

.promo-brand,
.operation-brand {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-brand {
  position: absolute;
  top: 28px;
  left: clamp(18px, 5vw, 72px);
  z-index: 2;
  color: #fff;
  opacity: 0.92;
}

.operation-brand {
  margin-bottom: 10px;
  color: #ffb17c;
}

.promo-left,
.promo-device,
.promo-copy,
.promo-metrics {
  position: relative;
  z-index: 1;
}

.promo-left {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(22px, 3.5vw, 50px);
  align-items: center;
  min-width: 0;
}

.promo-device img {
  width: min(100%, 540px);
  margin: 0 auto;
  filter: drop-shadow(0 28px 35px rgba(65, 31, 4, 0.2));
  animation: floatSoft 4.8s ease-in-out infinite;
}

.promo-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-width: 0;
  text-align: left;
}

.promo-copy h2 {
  margin: 0;
  max-width: 430px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
}

.promo-copy p {
  max-width: 410px;
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.26rem);
  line-height: 1.5;
}

.promo-copy strong {
  display: block;
  max-width: 430px;
  margin-top: clamp(14px, 3vw, 38px);
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.28rem);
  line-height: 1.12;
}

.promo-copy .button {
  min-width: min(100%, 300px);
  min-height: 44px;
  padding: 10px 22px;
  text-align: center;
}

.promo-metrics {
  display: grid;
  gap: 16px;
  align-self: center;
  width: 100%;
}

.promo-metrics div {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 17px 20px;
  color: #4b5563;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(55, 24, 0, 0.14);
  animation: cardRise 680ms ease both;
}

.promo-metrics div:nth-child(2) {
  animation-delay: 90ms;
}

.promo-metrics div:nth-child(3) {
  animation-delay: 180ms;
}

.promo-metrics div:nth-child(4) {
  animation-delay: 270ms;
}

.promo-metrics strong {
  color: #4a4f58;
  font-size: clamp(1.18rem, 2vw, 1.68rem);
  line-height: 1.1;
}

.promo-metrics span {
  font-size: 0.88rem;
  line-height: 1.35;
}

.feature-image img,
.operation-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-text,
.operation-copy,
.quote-copy {
  max-width: 590px;
  text-align: left;
}

.feature-text .eyebrow,
.operation-copy .eyebrow {
  margin-right: 0;
  margin-left: 0;
}

.check-list,
.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plan-card li {
  position: relative;
  padding-top: 18px;
  color: #313b49;
  text-align: center;
}

.check-list li::before,
.plan-card li::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.feature-text .check-list li {
  padding-top: 0;
  padding-left: 28px;
  text-align: left;
}

.feature-text .check-list li::before {
  left: 0;
  top: 0.64em;
  transform: none;
}

.plan-card li {
  padding-top: 0;
  padding-left: 28px;
  text-align: left;
}

.plan-card li::before {
  left: 0;
  top: 0.64em;
  transform: none;
}

.plans {
  background: #fff;
}

.price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: -6px auto 24px;
  padding: 20px 24px;
  color: #fff;
  background: var(--navy);
  border-left: 8px solid var(--orange);
  border-radius: var(--radius);
}

.price-banner span {
  font-weight: 800;
}

.price-banner strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.plan-card:hover,
.proof-grid article:hover,
.operation-grid article:hover,
.video-placeholder:hover,
.quote-form:hover {
  transform: translateY(-5px);
}

.plan-card:hover,
.proof-grid article:hover,
.operation-grid article:hover,
.quote-form:hover {
  box-shadow: 0 24px 64px rgba(21, 29, 43, 0.12);
}

.plan-card.featured {
  border-color: rgba(240, 104, 7, 0.5);
  box-shadow: 0 24px 70px rgba(240, 104, 7, 0.16);
}

.plan-card .tag {
  text-align: left;
}

.plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.plan-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--orange-dark);
  background: #fff3eb;
  border: 1px solid #ffd0b6;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #fff;
  background: var(--orange);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-soon {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 14px 18px;
  color: #163c38;
  background: #e8f7f4;
  border: 1px solid #bde5df;
  border-radius: var(--radius);
  font-weight: 850;
}

.section-cta {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 24px auto 0;
}

.operation-section {
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 54%, var(--orange) 54%, var(--orange) 100%);
  color: #fff;
}

.operation-section .eyebrow {
  color: #ffb17c;
}

.operation-copy p,
.operation-grid span {
  color: #d8e0ea;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.operation-grid article {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.operation-grid strong {
  color: #fff;
  font-size: 1.06rem;
}

.operation-image {
  padding: clamp(16px, 2.6vw, 30px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.operation-image img {
  width: 100%;
  height: min(520px, 52vw);
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.benefits-section {
  background: var(--soft-blue);
}

.benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #263041;
  background: #fff;
  border: 1px solid #dce5ee;
  border-radius: var(--radius);
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 28px rgba(21, 29, 43, 0.06);
}

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

.proof-grid article {
  display: grid;
  gap: 10px;
  text-align: center;
}

.proof-grid strong {
  color: var(--orange-dark);
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.testimonial {
  background: var(--ink) !important;
  color: #fff;
}

.testimonial p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 780;
}

.testimonial span {
  color: #cfd7e1;
}

.quote {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.video-section {
  overflow: hidden;
  background: #fff;
}

.centered-heading {
  justify-items: center;
}

.video-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.video-placeholder {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(240, 104, 7, 0.9), rgba(32, 36, 43, 0.94)),
    url("assets/dashboard-frota.jpeg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 72px rgba(17, 24, 39, 0.2);
}

.video-placeholder span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--orange);
  background: #fff;
  border-radius: var(--radius);
  font-weight: 900;
}

.video-placeholder strong {
  font-size: 1.25rem;
  line-height: 1.15;
}

.video-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.video-cta {
  display: flex;
  width: fit-content;
  margin: 26px auto 0;
}

.quote-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.quote-copy h2,
.quote-copy p {
  text-align: center;
}

.quote .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: #263041;
  font-weight: 800;
  justify-items: center;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--orange-dark);
}

.contact-list img {
  width: 22px;
  height: 22px;
  padding: 3px;
  background: var(--orange);
  border-radius: 6px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #394354;
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 54px;
  padding: 64px clamp(18px, 7vw, 120px) 46px;
  color: #d6dbe2;
  background: var(--ink);
}

.footer div {
  min-width: 0;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

.footer span {
  display: block;
  margin-bottom: 8px;
  color: #ff9b57;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer p {
  margin-bottom: 8px;
  color: #fff;
}

.footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-link-title {
  margin-top: 22px;
}

.footer-highlight {
  padding: 18px;
  background: rgba(240, 104, 7, 0.14);
  border: 1px solid rgba(240, 104, 7, 0.34);
  border-radius: var(--radius);
}

.footer-monitoring {
  align-self: end;
}

.footer-monitoring a {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  text-decoration: none;
}

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

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  text-decoration: none;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd1d8;
}

.footer-bottom p {
  margin: 0;
  color: #cbd1d8;
  font-size: 0.9rem;
}

.privacy-page {
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.privacy-content {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.privacy-content h2 {
  margin-top: 34px;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 12px;
  }

  .hero,
  .section-heading,
  .feature-band,
  .operation-section,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #fff 0%, #fff 55%, #edf3f7 55%, #edf3f7 100%);
  }

  .orange-promo {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }

  .promo-left {
    grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1fr);
  }

  .promo-device,
  .promo-copy,
  .promo-metrics {
    align-self: center;
  }

  .promo-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    justify-self: center;
  }

  .feature-text,
  .operation-copy,
  .quote-copy {
    max-width: none;
  }

  .pillars,
  .plan-grid,
  .proof-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand,
  .brand-logo {
    width: auto;
  }

  .brand {
    max-width: 272px;
    gap: 8px;
  }

  .brand-logo {
    width: 176px;
  }

  .brand-solution {
    max-width: 86px;
    font-size: 0.68rem;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

  .hero-stats,
  .pillars,
  .plan-grid,
  .operation-grid,
  .benefit-grid,
  .proof-grid,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .section,
  .feature-band,
  .operation-section,
  .quote {
    padding: 48px 16px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

  .orange-promo {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 70px;
    padding-right: 18px;
    padding-bottom: 50px;
    padding-left: 18px;
  }

  .promo-brand {
    top: 24px;
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .promo-left {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    width: 100%;
  }

  .promo-device {
    width: min(100%, 430px);
  }

  .promo-copy {
    justify-items: center;
    width: 100%;
    gap: 18px;
    text-align: center;
  }

  .promo-copy h2 {
    max-width: 22rem;
    font-size: clamp(1.95rem, 9.6vw, 2.45rem);
    line-height: 1.12;
  }

  .promo-copy p {
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .promo-copy strong {
    max-width: 22rem;
    margin-top: 10px;
    font-size: clamp(1.95rem, 9.4vw, 2.42rem);
    line-height: 1.16;
  }

  .promo-copy .button {
    width: min(100%, 360px);
    min-height: 48px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 18px;
    white-space: normal;
  }

  .promo-metrics {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    justify-self: center;
  }

  .promo-metrics div {
    justify-items: center;
    text-align: center;
  }

  .hero-actions .button {
    width: 100%;
  }

  .equipment-callout {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .equipment-callout,
  .feature-text,
  .operation-copy {
    text-align: left;
  }

  .operation-section {
    background: var(--navy);
  }

  .operation-image {
    display: grid;
    place-items: center;
    margin-top: 6px;
    background: var(--orange);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .operation-image img {
    height: min(520px, 88vw);
    background: rgba(255, 255, 255, 0.08);
  }

  .hardware-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

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

  .feature-image {
    order: 2;
  }

  .feature-text {
    order: 1;
  }

  .price-banner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
