:root {
  --bg: #ffffff;
  --surface: #f5f7fb;
  --surface-strong: #eef4f6;
  --text: #172033;
  --muted: #5f6d7e;
  --line: #dce3ea;
  --navy: #10243e;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --teal: #0f9f8f;
  --green: #14805e;
  --gold: #b7791f;
  --shadow: 0 16px 44px rgba(16, 36, 62, 0.12);
  --radius: 8px;
  --max: 1180px;
}

/* Conversion-led Trackora homepage. */
.home-announcement {
  padding: 9px 0;
  color: #fff;
  background: #0b2b55;
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

.home-announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.home-commerce-hero {
  padding: 46px 0 56px;
  background: #f4f8fb;
}

.home-commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: 54px;
}

.home-commerce-copy {
  max-width: 640px;
}

.home-kicker,
.home-section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.home-commerce-copy h1 {
  max-width: 650px;
  font-size: clamp(2.65rem, 5vw, 4.35rem);
}

.home-commerce-lead {
  max-width: 600px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.12rem;
}

.home-hero-points {
  display: grid;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 650;
}

.home-hero-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.72rem;
}

.home-hero-purchase {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.home-hero-price {
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.home-commerce-hero .hero-product-carousel {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

.home-assurance-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.home-assurance-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 23px 26px;
  border-right: 1px solid var(--line);
}

.home-assurance-item:last-child {
  border-right: 0;
}

.home-assurance-icon,
.home-safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.home-assurance-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.home-assurance-item h2 {
  font-size: 0.98rem;
}

.home-assurance-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.home-section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.home-section-heading > p:last-child {
  max-width: 620px;
  margin: 13px auto 0;
  color: var(--muted);
}

.home-safety-section {
  padding-bottom: 70px;
}

.home-safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-safety-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-safety-card:nth-child(2n) {
  background: #f4f8fb;
}

.home-safety-card:hover {
  border-color: #9db9e8;
  box-shadow: 0 16px 34px rgba(16, 36, 62, 0.1);
  transform: translateY(-3px);
}

.home-safety-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #eaf2ff;
}

.home-safety-icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.home-safety-card h3 {
  font-size: 1.22rem;
}

.home-safety-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-featured-product {
  padding: 74px 0;
  background: #eef4f6;
}

.home-featured-product .pricing-grid {
  width: 100%;
  max-width: var(--max);
}

.home-featured-product .pricing-grid:has(.product-preview:only-child) {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.home-featured-product .product-preview {
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 36, 62, 0.1);
}

.home-featured-product .product-preview-row {
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 42px;
}

.home-featured-product .product-preview-media {
  height: 380px;
  max-height: 380px;
  background: #fff;
}

.home-featured-product .product-preview-media img {
  object-fit: contain;
}

.home-featured-product .product-preview-content {
  justify-content: center;
}

.home-featured-product .product-preview h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.home-how-section {
  padding: 78px 0;
}

.home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.home-how-card {
  position: relative;
  padding: 34px 28px;
  border-top: 3px solid var(--blue);
  background: #f7f9fc;
}

.home-how-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 850;
}

.home-how-card p {
  margin-top: 12px;
  color: var(--muted);
}

.home-story-section {
  padding: 74px 0;
  background: #0f2746;
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.home-story-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  aspect-ratio: 1 / 1;
}

.home-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story-copy h2,
.home-story-copy p,
.home-story-copy li {
  color: #fff;
}

.home-story-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.home-story-copy > p:not(.home-section-kicker) {
  margin-top: 20px;
  color: #c8d6e6;
  font-size: 1.06rem;
}

.home-story-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding-left: 20px;
}

.home-story-copy .btn-secondary {
  color: var(--navy);
}

.home-protection-section {
  padding: 78px 0;
  background: #fff;
}

.home-protection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-protection-card {
  min-height: 240px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-protection-card > span {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-protection-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-faq-section {
  padding-top: 78px;
  scroll-margin-top: 24px;
  background: #f5f7fb;
}

@media (max-width: 980px) {
  .home-commerce-grid,
  .home-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .home-assurance-item {
    padding: 20px 15px;
  }
}

@media (max-width: 760px) {
  .home-announcement .container {
    gap: 6px;
    font-size: 0.68rem;
  }

  .home-commerce-hero {
    padding: 40px 0 46px;
  }

  .home-commerce-grid,
  .home-story-grid {
    grid-template-columns: 1fr;
  }

  .home-commerce-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .home-hero-purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-purchase .btn {
    width: 100%;
  }

  .home-commerce-hero .hero-product-carousel {
    max-width: none;
    margin-top: 4px;
  }

  .home-assurance-grid {
    grid-template-columns: 1fr;
  }

  .home-assurance-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-assurance-item:last-child {
    border-bottom: 0;
  }

  .home-section-heading {
    margin-bottom: 26px;
  }

  .home-safety-grid,
  .home-protection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-safety-card {
    min-height: 250px;
    padding: 24px 14px;
  }

  .home-safety-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .home-safety-icon svg {
    width: 36px;
    height: 36px;
  }

  .home-featured-product,
  .home-how-section,
  .home-story-section,
  .home-protection-section,
  .home-faq-section {
    padding: 56px 0;
  }

  .home-featured-product .product-preview {
    padding: 16px;
  }

  .home-featured-product .product-preview-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-featured-product .product-preview-media {
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .home-featured-product .product-preview-purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .home-featured-product .btn {
    width: 100%;
  }

  .home-how-grid {
    grid-template-columns: 1fr;
  }

  .home-how-card {
    min-height: auto;
  }

  .home-story-copy {
    order: -1;
  }

  .home-protection-card {
    min-height: 230px;
    padding: 23px 17px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

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

.narrow {
  max-width: 760px;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  position: relative;
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: #08245a;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-ora {
  color: #0867f2;
}

.primary-nav {
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

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

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-disabled {
  width: 100%;
  color: var(--muted);
  background: var(--surface);
  border-color: var(--line);
  cursor: not-allowed;
}

.hero {
  padding: 54px 0 22px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 88%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-product-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.hero-carousel-viewport {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  aspect-ratio: 1 / 1;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 360ms ease, transform 520ms ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(16, 36, 62, 0.12);
  transform: translateX(-50%);
}

.hero-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #9fb2c6;
  cursor: pointer;
}

.hero-carousel-dot.is-active {
  background: var(--blue);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li::before,
.feature-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.dashboard-card {
  min-height: 330px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dash-top {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}

.dash-metrics div {
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
}

.dash-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
}

.dash-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 130px;
  padding: 18px;
  border-radius: 8px;
  background: #f0f7f5;
}

.dash-chart span {
  flex: 1;
  min-height: 28px;
  border-radius: 6px 6px 0 0;
  background: var(--teal);
}

.map-preview {
  position: relative;
  min-height: 140px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 36, 62, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(16, 36, 62, 0.06) 1px, transparent 1px),
    #eef7f5;
  background-size: 42px 42px;
}

.route-line {
  position: absolute;
  left: 16%;
  top: 54%;
  width: 68%;
  height: 4px;
  border-radius: 999px;
  background: var(--teal);
  transform: rotate(-14deg);
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 36, 62, 0.12);
}

.pin::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.home-pin {
  left: 10%;
  top: 24%;
}

.school-pin {
  right: 12%;
  top: 22%;
}

.car-pin {
  left: 42%;
  bottom: 18%;
}

.dash-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.dash-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.dash-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  padding: 64px 0;
}

.shop-section {
  padding: 28px 0 56px;
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  padding: 34px 0;
  background: var(--navy);
  color: #fff;
}

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

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.single-line h2 {
  white-space: nowrap;
}

.home-faq-section .container {
  margin-left: auto;
  margin-right: auto;
}

.home-faq-section .faq-list {
  justify-items: stretch;
  text-align: center;
}

.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.pricing-card,
.contact-form,
.contact-info,
.compare-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 36, 62, 0.06);
}

.card {
  padding: 24px;
}

.card p,
.pricing-card p,
.content-copy p,
.case-detail p {
  margin-top: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 42px;
}

.check-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.check-panel p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.check-panel span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #e8f7f3;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.center-link {
  margin-top: 24px;
  text-align: center;
}

.text-link {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.feature-card .icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--blue);
}

.feature-card svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.pricing-grid:has(.product-preview:only-child) {
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.pricing-card.is-featured {
  border-color: var(--blue);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.18);
}

.badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f1ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.price span {
  color: var(--text);
  font-size: 2.4rem;
  font-weight: 850;
}

.product-preview-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.product-preview-media {
  display: block;
  overflow: hidden;
  height: 210px;
  max-height: 210px;
  border-radius: 8px;
  background: var(--surface);
}

.product-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-preview-content {
  display: grid;
  gap: 12px;
}

.product-preview h3 {
  font-size: 1.28rem;
}

.product-preview-content p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-preview-purchase {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 0;
}

.product-preview .price span {
  font-size: 1.35rem;
}

.btn-compact {
  min-width: 112px;
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.92rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-selling-points li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  list-style: none;
  counter-increment: product-point;
}

.product-selling-points {
  counter-reset: product-point;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.product-selling-points li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: #e8f7f3;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  content: counter(product-point);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.trust-grid p {
  color: #d7e1ea;
  font-weight: 700;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item summary {
  padding: 18px 20px;
  color: var(--text);
  font-weight: 750;
  cursor: pointer;
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding: 0 0 78px;
  background: #fff;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.cta-panel h2 {
  max-width: 760px;
  color: #fff;
}

.page-hero {
  padding: 72px 0;
  background: var(--surface);
  text-align: center;
}

.page-hero.compact {
  padding: 54px 0;
}

.page-hero p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  padding: 28px;
}

table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--text);
}

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

.case-detail h2 {
  font-size: 1.35rem;
}

.faq-groups {
  display: grid;
  gap: 36px;
}

.faq-group h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
}

.contact-info,
.contact-form {
  padding: 30px;
}

.info-block {
  margin-top: 24px;
}

.info-block p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-notice {
  padding: 12px 14px;
  border-radius: 8px;
}

.form-notice.success {
  background: #e8f7f3;
  color: var(--green);
}

.form-notice.error {
  background: #fff7e8;
  color: var(--gold);
}

.content-copy h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.content-copy h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 54px 0 26px;
  background: #0d1b2e;
  color: #d8e0ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 24px;
}

.product-actions {
  display: grid;
  gap: 12px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
}

.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 36, 62, 0.06);
}

.woocommerce ul.products li.product {
  padding: 20px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--blue-dark);
  color: #fff;
}

.woocommerce div.product,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  padding: 24px;
}

.woocommerce div.product {
  overflow: hidden;
}

body.single-product .woo-section {
  padding: 8px 0 56px;
}

.product-back-nav {
  margin: 4px 0 10px;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 36, 62, 0.08);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-back-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-back-link:hover {
  border-color: rgba(37, 99, 235, 0.42);
  color: var(--blue);
  transform: translateX(-1px);
}

.woocommerce div.product .gtmvp-product-gallery {
  float: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 42%;
  max-width: 560px;
  margin: 0 28px 24px 0;
}

.woocommerce div.product .summary {
  float: left !important;
  width: calc(58% - 28px) !important;
  overflow: hidden;
  clear: none;
  margin-left: 0;
}

.woocommerce div.product .summary .product_title {
  font-size: clamp(1.7rem, 3.1vw, 2.8rem);
}

.woocommerce div.product .summary .price {
  margin: 14px 0 12px;
}

.woocommerce div.product .summary .price .amount {
  font-size: 1.8rem;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.woocommerce div.product form.cart .gtmvp-quantity-stepper {
  display: inline-grid;
  grid-template-columns: 38px 54px 38px;
  align-items: center;
  overflow: hidden;
  min-height: 40px;
  border: 1px solid #b9c3d0;
  border-radius: 0;
  background: #fff;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 !important;
}

.woocommerce div.product form.cart .gtmvp-quantity-button {
  width: 38px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
}

.woocommerce div.product form.cart .qty {
  width: 54px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--navy);
  font-weight: 650;
  text-align: center;
  box-shadow: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.woocommerce div.product form.cart .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  min-height: 40px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0f9f8f);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.woocommerce div.product form.cart .gtmvp-buy-now-button {
  min-height: 40px;
  padding: 10px 24px;
  border: 0;
  border-radius: 6px;
  background: #ffc439;
  color: #111827;
  font-weight: 650;
  line-height: 1.2;
  box-shadow: 0 10px 18px rgba(16, 36, 62, 0.18);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product form.cart .gtmvp-buy-now-button:hover {
  background: #f2b600;
  color: #111827;
}

.woocommerce div.product form.cart .gtmvp-paypal-wordmark {
  color: #003087;
  font-style: italic;
  font-weight: 850;
}

.woocommerce div.product form.cart .gtmvp-paypal-wordmark strong {
  color: #009cde;
}

body.woocommerce-checkout .woo-section {
  padding: 30px 0 64px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 74%);
}

body.woocommerce-checkout .section {
  padding: 0 0 64px;
}

body.woocommerce-checkout .section > .container.narrow {
  width: min(100% - 40px, var(--max));
  max-width: var(--max);
}

.woocommerce-checkout .woocommerce {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gtmvp-checkout-shell {
  max-width: none;
  margin: 0;
}

.gtmvp-checkout-head {
  max-width: 720px;
  margin: 0 0 24px;
}

.gtmvp-checkout-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gtmvp-checkout-head h1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.gtmvp-checkout-head p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
}

.woocommerce-checkout form.checkout,
.gtmvp-checkout-form {
  display: block;
}

.gtmvp-checkout-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.gtmvp-checkout-panel,
.gtmvp-checkout-summary {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 36, 62, 0.08);
}

.gtmvp-checkout-panel-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.gtmvp-checkout-panel-heading > span {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 850;
}

.gtmvp-checkout-panel-heading h2 {
  font-size: 1.22rem;
}

.gtmvp-checkout-panel-heading p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: 18px;
}

.woocommerce-checkout #order_review {
  display: block;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout form .form-row {
  margin-bottom: 14px;
}

.woocommerce-checkout form .form-row label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 44px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout,
.woocommerce-checkout .woocommerce-error {
  display: none;
}

.woocommerce-checkout .woocommerce-invalid-required-field input,
.woocommerce-checkout .woocommerce-invalid-required-field select,
.woocommerce-checkout .woocommerce-invalid-required-field .select2-selection {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.16);
}

.woocommerce-checkout h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.woocommerce-checkout table.shop_table {
  min-width: 0;
  border: 0;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 14px 0;
}

.woocommerce-checkout table.shop_table thead th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td {
  color: var(--text);
}

.woocommerce-checkout #payment {
  margin-top: 18px;
  border-radius: 8px;
  background: #f6f9fc;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.woocommerce-checkout #payment .payment_method_gtmvp_paypal label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}

.gtmvp-paypal-brand {
  order: -1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 6px;
  background: #fff;
  color: #003087;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(16, 36, 62, 0.08);
}

.gtmvp-paypal-brand strong {
  color: #009cde;
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--muted);
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.woocommerce-checkout #payment #place_order:hover {
  background: var(--blue-dark);
}

@media (max-width: 980px) {
  .gtmvp-checkout-main {
    grid-template-columns: 1fr;
  }

  .gtmvp-checkout-summary {
    position: static;
  }
}

.gtmvp-gallery-main {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--surface);
}

.gtmvp-gallery-main img {
  display: block;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gtmvp-gallery-thumbs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-height: none;
  padding: 0 0 4px;
}

.gtmvp-gallery-thumb {
  flex: 0 0 76px;
  width: 76px;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.gtmvp-gallery-thumb.is-active,
.gtmvp-gallery-thumb:hover {
  border-color: var(--blue);
}

.gtmvp-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.gps-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.gps-feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
}

.gps-product-detail {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.gps-detail-lead {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 650;
}

.gps-detail-section {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.gps-detail-image {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--surface);
}

.gps-detail-image img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}

.gps-detail-copy h2 {
  font-size: 1.35rem;
}

.gps-detail-copy p {
  margin-top: 10px;
  color: var(--muted);
}

.gps-detail-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 260px));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 16px;
  row-gap: 9px;
  justify-content: start;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.gps-delivery-section .gps-detail-copy ul,
.gps-faq-section .gps-detail-copy ul {
  grid-template-columns: 1fr;
  grid-template-rows: none;
  grid-auto-flow: row;
}

.gps-product-design-section .gps-detail-copy ul {
  display: block;
}

.gps-product-design-section .gps-detail-copy li {
  margin-bottom: 9px;
}

.gps-spec-section .gps-detail-copy ul {
  grid-template-columns: 1fr;
  grid-template-rows: none;
  grid-auto-flow: row;
}

.gps-setup-section .gps-detail-copy li {
  white-space: nowrap;
}

.gps-scenarios-section .gps-detail-copy li {
  white-space: nowrap;
}

.gps-spec-section,
.gps-compliance {
  grid-template-columns: 1fr;
}

.footer-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 0 !important;
  color: #fff;
}

.footer-brand .brand-icon,
.footer-brand .brand-logo {
  width: 46px;
  height: 46px;
}

.footer-brand .brand-icon {
  flex-basis: 46px;
}

.footer-brand .brand-wordmark {
  font-size: 24px;
}

.footer-brand .brand-track {
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: #d8e0ea;
  text-decoration: none;
}

.site-footer p {
  margin-top: 12px;
  color: #aebacc;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebacc;
}

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

  .grid.four,
  .grid.three,
  .pricing-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-card {
    min-height: auto;
  }

  .gps-detail-section {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    gap: 8px;
  }

  .brand-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-wordmark {
    font-size: 23px;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-menu {
    display: grid;
    gap: 12px;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 54px 0;
  }

  .button-row,
  .cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .pricing-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dash-metrics {
    grid-template-columns: 1fr;
  }

  .product-preview-row {
    grid-template-columns: 1fr;
  }

  .product-preview-media {
    height: 220px;
    max-height: 220px;
  }

  .woocommerce div.product .gtmvp-product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    float: none;
    width: 100%;
    max-width: 560px;
    margin-right: 0;
  }

  .gtmvp-gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 0 0 4px;
  }

  .gps-detail-copy ul {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    justify-content: stretch;
  }

  .footer-grid {
    gap: 24px;
  }
}

/* Homepage support and Use Cases hero refinements. */
.home-commerce-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
}

.home-support-section {
  background: #f5f8fc;
  scroll-margin-top: 24px;
}

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

.home-support-card {
  display: block;
  min-height: 238px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-support-card:hover,
.home-support-card:focus-visible {
  border-color: #9ebeff;
  box-shadow: 0 16px 36px rgba(16, 36, 62, 0.11);
  transform: translateY(-3px);
}

.home-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf1ff;
}

.home-support-icon svg {
  width: 26px;
  height: 26px;
}

.home-support-card h3 {
  margin-top: 26px;
  font-size: 1.25rem;
}

.home-support-card p {
  margin-top: 10px;
  color: var(--muted);
}

.use-cases-hero {
  display: flex;
  align-items: center;
  min-height: 510px;
  text-align: left;
  background-color: #0a2757;
  background-image: var(--use-cases-hero-image);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.use-cases-hero-copy {
  max-width: 700px;
}

.use-cases-hero .eyebrow,
.use-cases-hero h1,
.use-cases-hero p:not(.eyebrow) {
  color: #fff;
}

.use-cases-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

@media (min-width: 761px) {
  .home-safety-section .home-section-heading h2,
  .home-protection-section .home-section-heading h2 {
    white-space: nowrap;
    font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  }
}

@media (max-width: 760px) {
  .home-commerce-copy h1 {
    font-size: clamp(2.25rem, 10vw, 2.625rem);
  }

  .home-support-grid {
    grid-template-columns: 1fr;
  }

  .home-support-card {
    min-height: auto;
  }

  .use-cases-hero {
    min-height: 540px;
    background-position: center bottom;
    background-size: 100% auto;
  }
}

@media (min-width: 761px) {
  .home-commerce-grid {
    align-items: stretch;
  }

  .home-commerce-copy {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: space-between;
  }
}

/* Keep the homepage announcement and navigation visible as a single header. */
.home-announcement {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  min-height: 40px;
  padding: 0;
  align-items: center;
}

.home-announcement + .site-header {
  position: sticky;
  top: 40px;
  z-index: 29;
}

/* Customer account entry and order status dashboard. */
.gtmvp-account-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #c8d9f8;
  border-radius: 7px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.gtmvp-account-control:hover,
.gtmvp-account-control:focus-visible {
  border-color: var(--blue);
  background: #eef5ff;
}

.gtmvp-account-control svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.woocommerce-account .site-main {
  min-height: 100vh;
  background: #fff;
}

.woocommerce-account .site-footer {
  display: none;
}

.woocommerce-account .woocommerce,
.woocommerce-account .woocommerce:has(.gtmvp-auth-page) {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gtmvp-auth-page {
  min-height: 100vh;
  padding: 32px 24px 72px;
}

.gtmvp-auth-header,
.gtmvp-account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.gtmvp-auth-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.gtmvp-auth-header .brand {
  grid-column: 2;
}

.gtmvp-auth-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  grid-column: 1;
  border: 1px solid #d6e0ec;
  border-radius: 8px;
  color: #17355e;
}

.gtmvp-auth-back:hover,
.gtmvp-auth-back:focus-visible {
  border-color: var(--blue);
  background: #eff5ff;
}

.gtmvp-auth-back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.gtmvp-auth-panel {
  width: min(100%, 440px);
  margin: 116px auto 0;
}

.gtmvp-auth-panel .woocommerce-form {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gtmvp-auth-panel h1,
.gtmvp-auth-panel h2 {
  margin: 0;
  color: #112b55;
}

.gtmvp-auth-panel h1 {
  font-size: 1.75rem;
}

.gtmvp-auth-panel h2 {
  font-size: 1.25rem;
}

.gtmvp-auth-panel .account-entry-copy {
  margin: 8px 0 24px;
}

.gtmvp-auth-panel .form-row {
  margin: 0 0 16px;
}

.gtmvp-auth-panel label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 750;
}

.gtmvp-auth-panel input[type="text"],
.gtmvp-auth-panel input[type="email"],
.gtmvp-auth-panel input[type="password"] {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 2px solid #bfd2ee;
  border-radius: 10px;
  color: var(--text);
  font: inherit;
}

.gtmvp-auth-panel input:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(38, 100, 236, .12);
}

.gtmvp-auth-panel .account-form-actions {
  display: block;
  margin-top: 20px;
}

.gtmvp-auth-panel .button {
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  background: #1769e8;
  box-shadow: none;
}

.gtmvp-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 0;
  font-size: .9rem;
}

.gtmvp-auth-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-weight: 600;
}

.gtmvp-auth-options input {
  accent-color: var(--blue);
}

.gtmvp-auth-options a,
.gtmvp-auth-terms {
  color: #496684;
}

.gtmvp-auth-register-prompt {
  margin: 28px 0 0;
  text-align: center;
  color: #61728a;
}

.gtmvp-auth-register-prompt a {
  color: var(--blue);
  font-weight: 800;
}

.gtmvp-auth-terms {
  margin: 16px 0 0;
  font-size: .8rem;
  line-height: 1.5;
}

.gtmvp-account-page {
  min-height: 100vh;
  padding: 0 0 72px;
}

.gtmvp-account-header {
  width: min(100% - 96px, 1440px);
  min-height: 96px;
  border-bottom: 1px solid #e1e8f0;
}

.gtmvp-account-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.gtmvp-account-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d6e0ec;
  border-radius: 8px;
  color: #17355e;
}

.gtmvp-account-back:hover,
.gtmvp-account-back:focus-visible {
  border-color: var(--blue);
  background: #eff5ff;
}

.gtmvp-account-back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.gtmvp-account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d5dfe9;
  border-radius: 50%;
  color: #50617a;
}

.gtmvp-account-avatar svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.gtmvp-account-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  width: min(100% - 96px, 1440px);
  margin: 54px auto 0;
}

body.woocommerce-account .gtmvp-account-content {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

.gtmvp-account-sidebar .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gtmvp-account-sidebar .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 11px 14px;
  border-left: 3px solid transparent;
  border-radius: 0;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.gtmvp-account-sidebar .woocommerce-MyAccount-navigation .is-active a,
.gtmvp-account-sidebar .woocommerce-MyAccount-navigation a:hover,
.gtmvp-account-sidebar .woocommerce-MyAccount-navigation a:focus-visible {
  color: var(--blue);
  border-left-color: var(--blue);
  background: transparent;
}

.gtmvp-account-dashboard {
  width: 100%;
  max-width: none;
}

.gtmvp-account-dashboard h1 {
  margin: 4px 0 8px;
  font-size: 2rem;
}

.gtmvp-account-dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid #e1e8f0;
}

.gtmvp-account-kicker {
  margin: 0;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gtmvp-account-action,
.gtmvp-account-info-card a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.gtmvp-account-action {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}

.gtmvp-account-info-grid {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.gtmvp-account-info-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid #e1e8f0;
  border-radius: 0;
  box-shadow: none;
}

.gtmvp-account-info-card span {
  color: var(--muted);
}

.gtmvp-order-overview {
  margin-top: 44px;
  padding-top: 0;
}

.gtmvp-support-portal {
  width: 100%;
}

.gtmvp-support-portal #fluent_support_client_app {
  min-height: 360px;
}

.gtmvp-order-overview table {
  width: 100%;
  border-collapse: collapse;
}

.gtmvp-order-overview th,
.gtmvp-order-overview td {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.gtmvp-order-overview th {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gtmvp-order-status {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: #075d48;
  background: #def7ed;
  font-size: .82rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .gtmvp-account-control {
    min-width: 40px;
    padding: 0 10px;
  }

  .gtmvp-account-control span {
    display: none;
  }

  .gtmvp-auth-page {
    padding: 20px 18px 54px;
  }

  .gtmvp-auth-panel {
    margin-top: 64px;
  }

  .gtmvp-account-page {
    padding-top: 20px;
  }

  .gtmvp-account-header {
    width: min(100% - 32px, 1440px);
    min-height: 76px;
  }

  .gtmvp-account-layout {
    display: block;
    width: min(100% - 32px, 1440px);
    margin-top: 28px;
  }

  .gtmvp-account-sidebar {
    margin-bottom: 26px;
  }

  .gtmvp-account-sidebar .woocommerce-MyAccount-navigation ul {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gtmvp-account-sidebar .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
  }

  .gtmvp-account-dashboard-heading,
  .gtmvp-account-info-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gtmvp-order-overview {
    overflow-x: auto;
  }
}
