﻿:root {
  --bg: #07111f;
  --bg-elevated: #0d1c31;
  --surface: #ffffff;
  --surface-alt: #f3f7fb;
  --surface-strong: #e9f1fb;
  --text: #152033;
  --muted: #607087;
  --line: #d7e1ee;
  --line-strong: #bac9dc;
  --brand: #f47a20;
  --brand-dark: #cf6211;
  --accent: #1f4f8f;
  --accent-soft: #d7e7fb;
  --success: #177b4d;
  --shadow-sm: 0 10px 30px rgba(10, 20, 38, 0.08);
  --shadow-md: 0 20px 60px rgba(10, 20, 38, 0.12);
  --shadow-lg: 0 28px 90px rgba(6, 18, 38, 0.22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 79, 143, 0.06), transparent 24%),
    linear-gradient(180deg, #eef4fb 0%, #f8fbff 35%, #ffffff 100%);
  line-height: 1.6;
}

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

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

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

thead th {
  background: #102543;
  color: #ffffff;
}

th,
td {
  padding: 0.95rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.76);
}

.topbar-links,
.nav-links,
.hero-actions,
.hero-pills,
.trust-strip,
.stat-grid,
.card-grid,
.download-grid,
.contact-grid,
.footer-columns,
.cta-group,
.media-grid,
.client-grid,
.trust-list,
.hero-mini-grid {
  display: flex;
  gap: 1rem;
}

.topbar-links,
.nav-links,
.footer-columns,
.client-grid,
.trust-list {
  flex-wrap: wrap;
}

.nav-inner {
  min-height: 84px;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand img {
  width: auto;
  height: clamp(58px, 6vw, 70px);
  max-width: min(220px, 42vw);
  flex-shrink: 0;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  align-items: center;
}

.nav-login-btn {
  min-height: 44px;
  padding: 0.78rem 1.1rem;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, #ffbe8b 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-box span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, #ff9b4d 100%);
  box-shadow: 0 16px 30px rgba(244, 122, 32, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-light {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.page-hero,
.home-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 122, 32, 0.28), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(56, 110, 187, 0.28), transparent 26%),
    linear-gradient(135deg, #08111f 0%, #10223d 52%, #173d6d 100%);
}

.home-hero {
  padding: 4.4rem 0 4rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.6rem 0 3.2rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 32, 0.24) 0%, rgba(244, 122, 32, 0) 68%);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.content-layout,
.legal-layout,
.cta-shell,
.footer-top,
.contact-panel {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.content-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  align-items: start;
}

.legal-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.cta-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.footer-top {
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #ffbf91;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.home-hero p,
.page-hero p,
.site-footer p,
.site-footer span,
.site-footer a {
  color: inherit;
}

.hero-copy {
  max-width: 60ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-pills {
  flex-wrap: wrap;
  margin: 0 0 1.35rem;
  padding: 0;
}

.hero-pills span,
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-panel,
.glass-card,
.card-shell {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-visual > img {
  min-height: 470px;
  border-radius: 22px;
  object-fit: cover;
}

.hero-device-card {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(8, 15, 29, 0.74);
  backdrop-filter: blur(14px);
}

.hero-device-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.hero-device-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.hero-device-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-status {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: min(220px, 58%);
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 15, 29, 0.7);
  backdrop-filter: blur(16px);
}

.hero-status strong,
.hero-mini-card strong,
.metric strong {
  display: block;
}

.hero-status p,
.hero-mini-card p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.hero-mini-grid {
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.trust-strip {
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-pill {
  display: flex;
  flex: 1 1 180px;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-pill strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.trust-pill span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-mini-card {
  flex: 1 1 150px;
  min-width: 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust {
  padding-top: 1.1rem;
}

.trust-list {
  padding: 0;
  margin: 0;
}

.trust-list li {
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
}

.trust-list li::before {
  content: "â€¢";
  margin-right: 0.55rem;
  color: #ffb176;
}

.stat-grid,
.card-grid,
.media-grid,
.client-grid,
.download-grid,
.contact-grid {
  flex-wrap: wrap;
}

.stat-grid {
  margin-top: 1.8rem;
}

.stat-card,
.content-card,
.solution-card,
.faq-item,
.download-card,
.contact-card,
.form-card,
.sidebar-card,
.legal-nav,
.hero-callout,
.metric,
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.stat-card {
  flex: 1 1 180px;
  min-width: 0;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1.55rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

main section {
  padding: 4.4rem 0;
}

.page-shell {
  padding: 3.4rem 0 4.4rem;
}

.section-header {
  max-width: 72ch;
  margin-bottom: 1.8rem;
}

.section-header p:last-child {
  margin-bottom: 0;
}

.card-grid > * {
  flex: 1 1 260px;
}

.media-grid > * {
  flex: 1 1 320px;
}

.client-grid img {
  width: 100%;
  max-width: 168px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.content-main,
.content-side {
  min-width: 0;
}

.content-card,
.solution-card,
.download-card,
.contact-card,
.faq-item,
.form-card,
.sidebar-card,
.hero-callout,
.table-wrap {
  padding: 1.65rem;
}

.content-card + .content-card,
.content-card + .table-wrap,
.table-wrap + .content-card,
.form-card + .content-card,
.legal-layout .content-card + .content-card {
  margin-top: 1.5rem;
}

.content-card img,
.solution-card img,
.download-card img,
.contact-card img,
.hero-callout img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 18px;
  object-fit: cover;
}

.content-card img,
.solution-card img,
.hero-callout img {
  aspect-ratio: 16 / 10;
}

.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-card .btn,
.download-card .btn {
  margin-top: 0.4rem;
}

.solution-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.check-list,
.feature-list {
  padding: 0;
  margin: 0;
}

.check-list li,
.feature-list li {
  position: relative;
  margin-bottom: 0.9rem;
  padding-left: 1.55rem;
  list-style: none;
  color: var(--muted);
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #ffb06d 100%);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.35rem 1.45rem;
}

.faq-item h3 {
  margin-bottom: 0.45rem;
}

.hero-callout {
  background:
    linear-gradient(180deg, rgba(12, 29, 53, 0.04) 0%, rgba(244, 122, 32, 0.04) 100%),
    #ffffff;
}

.hero-callout .metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.metric {
  padding: 1rem;
  text-align: left;
  box-shadow: none;
}

.metric span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow: auto;
  padding: 0;
}

.table-wrap table {
  min-width: 720px;
}

.table-wrap caption {
  padding: 1.25rem 1.4rem 0;
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.page-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.sidebar-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.sidebar-card + .sidebar-card {
  margin-top: 1rem;
}

.sidebar-card h3 {
  margin-bottom: 0.8rem;
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
}

.sidebar-card li {
  list-style: none;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
}

.sidebar-card li:last-child {
  border-bottom: 0;
}

.sidebar-card li a {
  color: var(--accent);
  font-weight: 700;
}

.sidebar-image {
  overflow: hidden;
  padding: 0;
}

.sidebar-image img {
  min-height: 280px;
  margin: 0;
  border-radius: inherit;
  object-fit: cover;
}

.contact-grid > * {
  flex: 1 1 220px;
}

.download-grid > * {
  flex: 1 1 240px;
}

.download-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.downloads-hero .hero-copy {
  max-width: 56ch;
}

.app-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.app-download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.85rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-md);
}

.app-download-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.app-download-card h2,
.download-support-panel h2 {
  margin-bottom: 0;
}

.app-download-card p {
  margin-bottom: 0;
}

.app-download-card .btn {
  margin-top: auto;
}

.app-download-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(31, 79, 143, 0.12);
  border-radius: 999px;
  background: #eef5ff;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.85rem;
  border: 1px solid rgba(16, 34, 61, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 32, 0.16), transparent 30%),
    linear-gradient(135deg, #10223d 0%, #173d6d 100%);
  box-shadow: var(--shadow-lg);
}

.download-support-panel .eyebrow,
.download-support-panel h2,
.download-support-panel p {
  color: #ffffff;
}

.download-support-panel p:last-child {
  margin-bottom: 0;
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.form-card {
  padding: 1.8rem;
}

form {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.15rem;
}

.form-grid > label,
.form-grid > .field-span {
  display: block;
  min-width: 0;
}

.field-span {
  grid-column: 1 / -1;
}

label span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.98rem 1rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(31, 79, 143, 0.6);
  box-shadow: 0 0 0 4px rgba(31, 79, 143, 0.12);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.todo-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #ffd4af;
  border-radius: 16px;
  background: #fff8f1;
  color: #8a4f15;
  font-size: 0.94rem;
}

.cta-band {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 32, 0.24), transparent 30%),
    linear-gradient(135deg, #10223d 0%, #173d6d 100%);
}

.cta-shell h2 {
  max-width: 18ch;
}

.cta-group {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.video-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.testimonial {
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 4px solid var(--brand);
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial p {
  color: var(--text);
}

.testimonial cite {
  color: var(--muted);
  font-style: normal;
}

.legal-nav {
  position: sticky;
  top: 104px;
  padding: 1.25rem;
}

.legal-nav a {
  display: block;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-weight: 700;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.policy-copy {
  white-space: normal;
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
}

.policy-copy ul {
  padding-left: 1.2rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #07111f;
}

.footer-top {
  padding: 3.2rem 0 2rem;
}

.footer-columns {
  justify-content: space-between;
}

.footer-column {
  min-width: 170px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.footer-column a {
  display: block;
  padding: 0.36rem 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand-copy {
  max-width: 420px;
}

.seo-link-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.seo-link-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.seo-link-card h3 {
  margin-bottom: 0.65rem;
}

.seo-link-card p {
  margin-bottom: 1rem;
}

.content-card.tight-copy p + p,
.hero-callout.tight-copy p + p {
  margin-top: 0.95rem;
}

.product-page .page-hero {
  padding-bottom: 2.6rem;
}

.product-hero-shell {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
}

.product-hero-copy {
  max-width: 72ch;
}

.product-hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.product-hero-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-trust-strip {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.5rem;
}

.product-trust-strip span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
}

.product-page-shell {
  padding-top: 2.4rem;
}

.product-filter-panel {
  margin-bottom: 2rem;
}

.category-filter-grid,
.fleet-kpi-grid,
.fleet-usecase-grid {
  display: grid;
  gap: 1rem;
}

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

.filter-card {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.filter-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 79, 143, 0.22);
  box-shadow: var(--shadow-md);
}

.filter-card strong {
  color: var(--text);
  font-size: 1rem;
}

.filter-card span:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.filter-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selector-shell,
.comparison-shell,
.buyer-guidance-card {
  border-radius: 28px;
}

.selector-group-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.model-selector-group,
.model-group {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.selector-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.selector-group-head h3 {
  margin-bottom: 0;
}

.selector-group-head p {
  max-width: 56ch;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card,
.model-recommendation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.product-card img,
.model-recommendation img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 16px;
  background: #f8fbff;
  padding: 0.8rem;
}

.compact-card img {
  max-height: 190px;
}

.product-page .product-card img[src*="assets/images/products/generated/"] {
  max-height: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  padding: 0;
  background: #ffffff;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-card h3 {
  margin-bottom: 0;
}

.best-for {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
}

.product-points {
  display: grid;
  gap: 0.45rem;
  padding-left: 1rem;
  margin: 0;
  color: var(--muted);
}

.product-points li {
  margin: 0;
}

.price-line {
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 700;
}

.recommendation-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 2rem 0;
}

.recommendation-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.recommendation-item strong {
  color: var(--text);
  font-size: 1rem;
}

.recommendation-item span:last-child {
  color: var(--accent);
  font-weight: 700;
}

.comparison-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-legend strong {
  color: var(--text);
}

.comparison-head,
.comparison-notes {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.comparison-head {
  margin-bottom: 1rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin: 0 -0.15rem;
  padding-bottom: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.comparison-table-wrap table {
  min-width: 1240px;
}

.comparison-table-wrap th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.comparison-table-wrap td {
  white-space: nowrap;
}

.comparison-table-wrap td:first-child,
.comparison-table-wrap td:nth-child(2) {
  white-space: normal;
  min-width: 170px;
}

.table-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.table-badge.is-4g {
  background: #dff3ea;
  color: var(--success);
}

.table-badge.is-portable {
  background: #fef1e5;
  color: var(--brand-dark);
}

.table-badge.is-highlight {
  background: #e8ecff;
  color: #4452b8;
}

.table-badge.is-lifetime {
  background: #fff3d9;
  color: #8a5a00;
}

.matrix-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0.45rem 0 0;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.matrix-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.matrix-status.yes {
  background: #dff3ea;
  color: var(--success);
}

.matrix-status.no {
  background: #f0f4f8;
  color: var(--muted);
}

.matrix-status.optional {
  background: #fff3d9;
  color: #8a5a00;
}

.matrix-status.vehicle {
  background: #eef4fb;
  color: var(--accent);
}

.model-selector {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card ul,
.model-recommendation ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.product-category-section {
  margin-top: 2rem;
}

.product-category-section .section-header {
  margin-bottom: 1.25rem;
}

.category-visual {
  overflow: hidden;
  margin-bottom: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.category-visual img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.buyer-guidance {
  margin-top: 2rem;
}

.product-cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.product-cta-panel p {
  margin: 0;
  max-width: 52ch;
}

.fleet-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.fleet-kpi-card,
.fleet-usecase-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.fleet-kpi-card strong,
.fleet-usecase-card h3 {
  display: block;
  margin-bottom: 0.55rem;
}

.fleet-kpi-card p,
.fleet-usecase-card p {
  margin-bottom: 0;
}

.fleet-operations-grid {
  align-items: stretch;
  margin-bottom: 2rem;
}

.fleet-usecase-section {
  margin-bottom: 2rem;
}

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

.fleet-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 32, 0.22), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #10223d 48%, #173d6d 100%);
  box-shadow: var(--shadow-lg);
}

.fleet-cta-panel h2,
.fleet-cta-panel p,
.fleet-cta-panel .eyebrow {
  color: #ffffff;
}

.footer-brand-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 1.4rem;
  flex-wrap: wrap;
}

.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-mini-links a {
  color: rgba(255, 255, 255, 0.78);
}

.login-modal[hidden] {
  display: none;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 23, 0.62);
  backdrop-filter: blur(10px);
}

.login-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 420px);
  max-height: calc(100vh - 40px);
  margin: 20px auto 0;
  border: 1px solid rgba(16, 34, 61, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.96) 0%, rgba(255, 255, 255, 1) 22%);
  box-shadow: 0 34px 80px rgba(6, 18, 38, 0.28);
  overflow: auto;
}

.login-modal-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.6rem;
}

.login-modal-header {
  display: grid;
  gap: 0.6rem;
  padding-right: 2rem;
}

.login-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(21, 32, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.login-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 122, 32, 0.36);
  background: #ffffff;
  color: var(--brand-dark);
}

.login-modal-copy {
  margin-bottom: 0;
}

.login-modal-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 2.2vw, 2.1rem);
  line-height: 1.08;
}

.login-modal-note {
  margin-bottom: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid #dbe6f4;
  border-radius: 14px;
  background: #f7faff;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.login-form {
  display: grid;
  gap: 0.72rem;
}

.login-form > label {
  display: grid;
  gap: 0.35rem;
}

.login-form label span,
.login-check span {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background: #fcfdff;
}

.login-form input:focus {
  outline: 2px solid rgba(31, 79, 143, 0.12);
  border-color: var(--accent);
}

.login-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.1rem 0 0;
}

.login-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.login-check span {
  font-weight: 500;
  font-size: 0.93rem;
  line-height: 1.35;
  color: var(--muted);
}

.login-check a {
  color: var(--accent);
}

.login-form-message {
  min-height: 1.25rem;
  margin-bottom: -0.1rem;
  color: #b42318;
  font-size: 0.92rem;
}

.login-form .btn {
  width: 100%;
  min-height: 50px;
  margin-top: 0;
}

.login-help-row {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.login-help-row a {
  color: var(--accent);
  font-weight: 700;
}

.modal-open {
  overflow: hidden;
}

.contact-cta-row {
  margin: 1.25rem 0 0;
}

.footer-bottom {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.muted {
  color: var(--muted);
}

.text-success {
  color: var(--success);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-visual {
  position: relative;
}

.page-hero-visual img {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.category-grid,
.feature-grid,
.action-card-grid,
.visual-step-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

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

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

.category-card,
.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.category-card img,
.feature-card > img,
.category-visual img {
  display: block;
  width: 100%;
  background: #f6f8fb;
  object-fit: cover;
}

.category-card img,
.feature-card > img {
  min-height: 240px;
}

.category-card-body,
.feature-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
}

.category-card-body p,
.feature-card-body p {
  margin: 0;
  color: var(--muted);
}

.category-card .btn,
.feature-card .btn {
  margin-top: auto;
}

.feature-section {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  padding: 1.35rem;
}

.step-card h3,
.action-card h3 {
  margin-bottom: 0.55rem;
}

.action-card {
  padding: 1.45rem;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.audience-strip span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.support-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.75rem 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 24, 40, 0.92), rgba(26, 37, 58, 0.88));
  box-shadow: var(--shadow-lg);
}

.support-cta-panel h2,
.support-cta-panel p,
.support-cta-panel .eyebrow {
  color: #ffffff;
}

.page-gps-tracker .content-card,
.page-features .content-card {
  border-radius: 26px;
}

.page-gps-tracker .footer-brand-copy span,
.page-features .footer-brand-copy span {
  max-width: 34rem;
}

.homepage-hero-carousel {
  padding: 3.9rem 0 2rem;
}

.hero-carousel-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  min-height: 620px;
}

.hero-slide {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.96fr);
  gap: 1.6rem;
  align-items: center;
  min-height: 620px;
  padding: 1.35rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(16px, 0, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease;
}

.hero-slide-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.hero-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.2rem 1rem 1.2rem 1.3rem;
}

.hero-slide-content h1,
.hero-slide-content h2 {
  max-width: 12ch;
}

.hero-slide-visual {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 32, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.hero-slide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.32));
}

.hero-slide-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: center center;
  transition: transform 1s ease;
}

.slide-car .hero-slide-visual img {
  object-position: 52% 50%;
}

.slide-bike .hero-slide-visual img {
  object-position: 50% 48%;
}

.slide-portable .hero-slide-visual img {
  object-position: 50% 44%;
}

.slide-fleet .hero-slide-visual img {
  object-position: 50% 50%;
}

.hero-slide-active .hero-slide-visual img {
  transform: scale(1.02);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem 1.35rem;
}

.hero-control-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-control-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex: 1;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.homepage-trust-strip {
  padding: 0 0 2.6rem;
}

.homepage-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip-card {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.trust-strip-card strong,
.model-range-card h3,
.why-phoenix-card h3,
.usecase-card strong {
  display: block;
}

.trust-strip-card span,
.usecase-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.about-hero .hero-copy {
  max-width: 58ch;
}

.about-hero-visual {
  position: relative;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-trust-strip {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.5rem;
}

.about-trust-strip span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
}

.about-story-section .split-grid,
.about-solution-grid {
  align-items: stretch;
}

.about-solution-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-solution-card img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.about-model-range .model-range-grid {
  margin-top: 0.5rem;
}

.about-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 32, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(31, 79, 143, 0.28), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #10223d 48%, #173d6d 100%);
  box-shadow: var(--shadow-lg);
}

.about-cta-panel h2,
.about-cta-panel p,
.about-cta-panel .eyebrow {
  color: #ffffff;
}

.tracking-need-grid,
.model-range-grid,
.why-phoenix-grid,
.solution-link-grid {
  display: grid;
  gap: 1.35rem;
}

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

.tracking-need-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tracking-need-card:hover,
.model-range-card:hover,
.why-phoenix-card:hover,
.seo-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tracking-need-card img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.tracking-need-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
}

.tracking-need-card-body h3 {
  margin-bottom: 0;
}

.model-range-section {
  position: relative;
}

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

.model-range-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.model-range-card img {
  width: 100%;
  height: 160px;
  padding: 0.75rem;
  border-radius: 18px;
  background: #ffffff;
  object-fit: contain;
}

.section-actions {
  margin-top: 1.5rem;
}

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

.why-phoenix-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-section .media-grid {
  align-items: stretch;
}

.video-wrapper,
.video-fallback {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe,
.video-preview img {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-preview {
  position: relative;
}

.video-preview img {
  object-fit: cover;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid #f4c7c3;
  background: #fff4f2;
  color: #8a271d;
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: #b7e1c9;
  background: #effaf3;
  color: #166534;
}

.video-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.82));
}

.video-preview-overlay h3,
.video-preview-overlay p {
  color: #ffffff;
}

.video-fallback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.client-marquee {
  overflow: hidden;
  padding: 1rem 0 0.4rem;
}

.client-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.client-marquee:hover .client-marquee-track,
.usecase-carousel:hover .usecase-track {
  animation-play-state: paused;
}

.client-marquee-track img {
  width: 150px;
  height: 84px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  filter: grayscale(1);
  box-shadow: var(--shadow-sm);
}

.usecase-carousel {
  overflow: hidden;
  margin-top: 1.5rem;
}

.usecase-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.usecase-card {
  display: grid;
  gap: 0.45rem;
  width: 260px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.final-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 32, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(31, 79, 143, 0.28), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #10223d 48%, #173d6d 100%);
  box-shadow: var(--shadow-lg);
}

.final-cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  animation: pulse-drift 8s ease-in-out infinite;
  pointer-events: none;
}

.final-cta-panel h2,
.final-cta-panel p,
.final-cta-panel .eyebrow {
  color: #ffffff;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, -12px, 0) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .client-marquee-track,
  .usecase-track,
  .final-cta-panel::after,
  .hero-slide,
  .hero-slide-visual img {
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tracking-need-card,
  .model-range-card,
  .why-phoenix-card,
  .seo-link-card,
  .hero-control-btn,
  .hero-slide {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-layout,
  .contact-panel,
  .legal-layout,
  .footer-top,
  .cta-shell,
  .page-hero-shell,
  .support-cta-panel,
  .visual-step-grid,
  .action-card-grid,
  .hero-slide,
  .final-cta-panel,
  .about-cta-panel,
  .fleet-cta-panel {
    grid-template-columns: 1fr;
  }

  .content-side,
  .legal-nav {
    position: static;
  }

  .cta-group {
    justify-content: flex-start;
  }

  .app-download-grid,
  .download-support-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .home-hero,
  .page-hero {
    padding-top: 3.4rem;
  }

  .split-grid,
  .solution-grid-two,
  .product-cta-panel,
  .product-hero-shell,
  .category-grid,
  .feature-grid,
  .audience-strip,
  .homepage-trust-grid,
  .tracking-need-grid,
  .model-range-grid,
  .why-phoenix-grid,
  .solution-link-grid,
  .about-solution-grid,
  .category-filter-grid,
  .fleet-kpi-grid,
  .fleet-usecase-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-login-btn {
    width: 100%;
  }

  .nav-links a {
    padding: 0.85rem 0.7rem;
    border-radius: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .nav-inner,
  .footer-bottom {
    align-items: flex-start;
  }

  .topbar-inner,
  .hero-actions,
  .cta-group,
  .hero-mini-grid,
  .footer-simple {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-group .btn {
    width: 100%;
  }

  .hero-slide {
    min-height: auto;
    padding: 1rem;
  }

  .hero-slide-visual img {
    min-height: 100%;
  }

  .hero-device-card,
  .hero-status {
    position: static;
    width: auto;
    margin-top: 1rem;
  }

  .hero-visual > img {
    min-height: 320px;
  }

  .hero-callout .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .login-modal-body {
    gap: 0.8rem;
    padding: 1.25rem;
  }

  .login-modal-header {
    gap: 0.5rem;
    padding-right: 1.7rem;
  }

  .login-modal-header h2 {
    font-size: clamp(1.65rem, 7vw, 1.85rem);
  }

  .page-shell,
  main section {
    padding: 2.8rem 0;
  }

  .selector-group-head,
  .comparison-head,
  .comparison-notes,
  .product-cta-panel {
    align-items: flex-start;
  }

  .product-hero-visual img,
  .page-hero-visual img,
  .category-visual img,
  .tracking-need-card img,
  .about-solution-card img {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand img {
    height: 58px;
    max-width: 180px;
  }

  .brand-copy span,
  .topbar {
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .content-card,
  .solution-card,
  .download-card,
  .contact-card,
  .form-card,
  .sidebar-card,
  .hero-callout,
  .table-wrap,
  .app-download-card,
  .download-support-panel {
    padding: 1.25rem;
  }

  th,
  td {
    padding: 0.8rem;
  }
}

