/* ═══════════════════════════════════════════════════════════ */
/* GLOBAL TRACKING TECHNOLOGY - STYLES                         */
/* ═══════════════════════════════════════════════════════════ */

:root {
  /* Slate */
  --slate-950: #0a0c10;
  --slate-900: #0f1117;
  --slate-800: #1a1d27;
  --slate-700: #272b3a;
  --slate-600: #3d4356;
  --slate-500: #5a6178;
  --slate-400: #8b92a8;
  --slate-300: #b4b9c9;
  --slate-200: #d4d7e1;
  --slate-100: #eceef3;
  --white: #ffffff;

  /* Teal */
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --teal-200: #99f6e4;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --teal-glow: rgba(45, 212, 191, 0.25);

  /* Blue */
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-600: #2563eb;
  --blue-glow: rgba(59, 130, 246, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--slate-950);
  color: var(--slate-200);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════ */
/* BACKGROUND EFFECTS                      */
/* ═══════════════════════════════════════ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--teal {
  background: var(--teal-400);
  top: -200px;
  right: -100px;
}

.bg-glow--blue {
  background: var(--blue-500);
  bottom: -300px;
  left: -200px;
}

/* ═══════════════════════════════════════ */
/* HEADER / NAVIGATION                     */
/* ═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  color: #ffffff;
  text-decoration: none;
}

.logo__icon {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border: 2px solid var(--teal-400) !important;
  border: 2px solid #2dd4bf !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  background-color: transparent !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  overflow: visible !important;
}

.logo__icon::before {
  content: '' !important;
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid var(--teal-400) !important;
  border: 2px solid #2dd4bf !important;
  border-radius: 50% !important;
  background: transparent !important;
  background-color: transparent !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.logo__icon::after {
  content: '' !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 8px solid var(--teal-400) !important;
  border-left: 8px solid #2dd4bf !important;
  border-top: 5px solid transparent !important;
  border-bottom: 5px solid transparent !important;
  border-right: none !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: transparent !important;
}

.logo__text {
  display: flex !important;
  flex-direction: column !important;
  gap: 0;
  align-items: flex-start !important;
}

.logo__name {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em;
  color: var(--white);
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1;
  display: block !important;
}

.logo__tagline {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--teal-400);
  color: #2dd4bf !important;
  text-transform: uppercase;
  margin-top: 4px;
  display: block !important;
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  color: var(--slate-300);
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-inner {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--slate-300);
  border-radius: 8px;
  transition: all 0.15s;
}

.nav__dropdown-link:hover {
  background: var(--slate-700);
  color: var(--white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 8px;
  color: var(--slate-300);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--slate-900);
  z-index: 2000;
  padding: 2rem;
  display: none;
  flex-direction: column;
}

.mobile-nav--active {
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__link {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--slate-300);
  border-bottom: 1px solid var(--slate-800);
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-nav__link:hover {
  color: var(--teal-400);
}

/* ═══════════════════════════════════════ */
/* BUTTONS                                 */
/* ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: 0 4px 15px var(--teal-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--teal-glow);
}

.btn--secondary {
  background: var(--slate-800);
  color: var(--slate-200);
  border: 1px solid var(--slate-700);
}

.btn--secondary:hover {
  background: var(--slate-700);
  border-color: var(--slate-600);
}

.btn--large {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════ */
/* HERO SECTION                            */
/* ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--teal-300);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.hero__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--slate-400);
  margin: 0 0 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero__actions .btn {
  position: relative;
  z-index: 10;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.hero__stat-value span {
  color: var(--teal-400);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero__visual {
  position: relative !important;
  display: none;
}

@media (min-width: 1024px) {
  .hero__visual {
    display: block !important;
    padding: 40px 30px 40px 50px !important;
    min-height: 420px !important;
    position: relative !important;
  }
}

.hero__device {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero__map {
  position: relative;
  height: 280px;
  background: var(--slate-900);
  overflow: hidden;
}

.hero__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero__map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--teal-400);
  animation: dotPulse 2s ease-in-out infinite;
}

.hero__map-dot--1 { top: 30%; left: 20%; animation-delay: 0s; }
.hero__map-dot--2 { top: 45%; left: 55%; animation-delay: 0.5s; }
.hero__map-dot--3 { top: 60%; left: 75%; animation-delay: 1s; }
.hero__map-dot--4 { top: 35%; left: 85%; animation-delay: 1.5s; }

@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1;
    box-shadow: 0 0 20px var(--teal-400);
  }
  50% { 
    transform: scale(1.5); 
    opacity: 0.6;
    box-shadow: 0 0 40px var(--teal-400), 0 0 60px var(--teal-400);
  }
}

.hero__map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-400), transparent);
  opacity: 0.6;
  animation: linePulse 3s ease-in-out infinite;
}

.hero__map-line--1 {
  top: 33%;
  left: 23%;
  width: 100px;
  transform: rotate(10deg);
  animation-delay: 0s;
}

.hero__map-line--2 {
  top: 50%;
  left: 58%;
  width: 80px;
  transform: rotate(-15deg);
  animation-delay: 1s;
}

.hero__map-line--3 {
  top: 55%;
  left: 77%;
  width: 50px;
  transform: rotate(-40deg);
  animation-delay: 2s;
}

@keyframes linePulse {
  0%, 100% { 
    opacity: 0.3;
    width: 0;
  }
  50% { 
    opacity: 0.8;
    width: 100px;
  }
}

.hero__device-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--slate-800);
  border-top: 1px solid var(--slate-700);
}

.hero__device-info {
  font-size: 0.85rem;
  color: var(--slate-400);
  color: #8b92a8;
}

.hero__device-info strong {
  display: block;
  color: var(--white);
  color: #ffffff;
  font-size: 0.9rem;
}

.hero__device-status {
  padding: 0.3rem 0.7rem;
  background: rgba(45, 212, 191, 0.15);
  color: var(--teal-400);
  color: #2dd4bf;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.hero__float-card {
  position: absolute !important;
  background: var(--slate-800) !important;
  background-color: #1a1d27 !important;
  border: 1px solid var(--slate-700) !important;
  border: 1px solid #272b3a !important;
  border-radius: 12px !important;
  padding: 1rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
  animation: float 6s ease-in-out infinite;
  z-index: 10 !important;
}

.hero__float-card--temp {
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  min-width: 120px !important;
}

.hero__float-card--alert {
  bottom: 60px !important;
  left: 0 !important;
  top: auto !important;
  right: auto !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 0.75rem;
  align-items: flex-start !important;
  animation-delay: 1s;
  min-width: 180px !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.temp-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-400);
  color: #2dd4bf;
}

.alert-dot {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  min-height: 10px !important;
  background: var(--teal-400) !important;
  background-color: #2dd4bf !important;
  border-radius: 50% !important;
  margin-top: 4px;
  animation: pulse 1.5s infinite;
  flex-shrink: 0 !important;
}

/* ═══════════════════════════════════════ */
/* PAGE HERO (Inner Pages)                 */
/* ═══════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 4rem;
  position: relative;
}

.page-hero__breadcrumb {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a {
  color: var(--teal-400);
  cursor: pointer;
}

.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1.5rem;
  max-width: 900px;
  line-height: 1.15;
}

.page-hero__desc {
  font-size: 1.15rem;
  color: var(--slate-400);
  margin: 0 0 2rem;
  max-width: 700px;
}

/* ═══════════════════════════════════════ */
/* SECTIONS                                */
/* ═══════════════════════════════════════ */
.section {
  padding: 5rem 0;
  position: relative;
}

.section--dark {
  background: var(--slate-900);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-400);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0;
}

/* ═══════════════════════════════════════ */
/* SERVICE CARDS                           */
/* ═══════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--teal-500);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--slate-400);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-400);
}

/* ═══════════════════════════════════════ */
/* FEATURE CARDS                           */
/* ═══════════════════════════════════════ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--slate-600);
}

.feature-card__number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-card__tag {
  padding: 0.3rem 0.7rem;
  background: var(--slate-700);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--slate-300);
}

/* ═══════════════════════════════════════ */
/* STEPS                                   */
/* ═══════════════════════════════════════ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
}

.step__number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin: 0;
}

/* ═══════════════════════════════════════ */
/* INDUSTRY CARDS                          */
/* ═══════════════════════════════════════ */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.industry-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.industry-card:hover {
  border-color: var(--teal-500);
  transform: translateY(-2px);
}

.industry-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.industry-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.industry-card__desc {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════ */
/* CTA BANNER                              */
/* ═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  border: 1px solid var(--slate-700);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 50%);
  opacity: 0.3;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
  position: relative;
}

.cta-banner__desc {
  font-size: 1rem;
  color: var(--slate-400);
  margin: 0 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════ */
/* PRICING                                 */
/* ═══════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.price-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}

.price-card--featured {
  border-color: var(--teal-500);
  box-shadow: 0 0 40px var(--teal-glow);
  transform: scale(1.03);
}

.price-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.price-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.price-card__desc {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin: 0 0 1.5rem;
}

.price-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.price-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-400);
}

.price-card__period {
  font-size: 0.8rem;
  color: var(--teal-400);
  margin-bottom: 1.5rem;
}

.price-card__features {
  border-top: 1px solid var(--slate-700);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-300);
  margin-bottom: 0.75rem;
}

.price-card__check {
  color: var(--teal-400);
  font-weight: 700;
}

/* ═══════════════════════════════════════ */
/* ABOUT PAGE                              */
/* ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-visual__globe {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  border: 2px solid var(--slate-700);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.about-visual__globe::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed var(--slate-600);
  animation: spin 30s linear infinite;
}

.about-visual__globe::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--teal-400);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--teal-400);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.about-stat-row {
  display: flex;
  gap: 3rem;
  text-align: center;
}

.about-stat__val {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.about-stat__val span {
  color: var(--teal-400);
}

.about-stat__label {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════ */
/* QUOTE / CONTACT PAGE                    */
/* ═══════════════════════════════════════ */
.quote-section {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.quote-info__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.quote-info__desc {
  font-size: 1rem;
  color: var(--slate-400);
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.quote-info__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.quote-benefit__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.quote-benefit__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.quote-benefit__desc {
  font-size: 0.85rem;
  color: var(--slate-400);
}

.quote-form-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 20px;
  padding: 2.5rem;
}

.form__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.form__subtitle {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin: 0 0 2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--slate-900);
  border: 1px solid var(--slate-700);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--slate-600);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b92a8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form__select option {
  background: var(--slate-900);
  color: var(--white);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════ */
/* FAQ PAGE                                */
/* ═══════════════════════════════════════ */
.faq__grid {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--slate-800);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--teal-400);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--teal-400);
  transition: transform 0.3s;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal-500);
}

/* ═══════════════════════════════════════ */
/* HOW IT WORKS PAGE                       */
/* ═══════════════════════════════════════ */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--slate-800);
  align-items: center;
}

@media (min-width: 768px) {
  .process-step {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-step:nth-child(even) .process-step__content {
    order: 2;
  }
  
  .process-step:nth-child(even) .process-step__visual {
    order: 1;
  }
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.process-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}

.process-step__desc {
  font-size: 1rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin: 0;
}

.process-step__visual {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.process-step__icon {
  font-size: 5rem;
}

/* ═══════════════════════════════════════ */
/* FOOTER                                  */
/* ═══════════════════════════════════════ */
.footer {
  background: var(--slate-900);
  border-top: 1px solid var(--slate-800);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 280px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--teal-400);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--slate-500);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--teal-400);
}

/* ═══════════════════════════════════════ */
/* ANIMATIONS                              */
/* ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ═══════════════════════════════════════ */
/* UTILITY                                 */
/* ═══════════════════════════════════════ */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* Form Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success--visible {
  display: block;
}

.form-success__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--white);
}

.form-success__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.form-success__desc {
  font-size: 0.95rem;
  color: var(--slate-400);
  margin: 0;
}


/* ═══════════════════════════════════════ */
/* PROMO BANNER                            */
/* ═══════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, var(--teal-900), var(--slate-900));
  background: linear-gradient(135deg, #134e4a, #0f1117);
  border: 1px solid var(--teal-700);
  border: 1px solid #0f766e;
  border-radius: 20px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .promo-banner {
    grid-template-columns: 1fr auto;
    padding: 3rem;
  }
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 60%);
  background: radial-gradient(circle, rgba(45, 212, 191, 0.25) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.promo-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-300);
  color: #5eead4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.promo-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  position: relative;
}

.promo-banner__desc {
  font-size: 1rem;
  color: var(--slate-300);
  color: #b4b9c9;
  margin: 0;
  max-width: 550px;
  line-height: 1.6;
  position: relative;
}

.promo-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}



/* ═══════════════════════════════════════ */
/* PRODUCT HERO SECTIONS                   */
/* ═══════════════════════════════════════ */
.product-hero {
  padding: 2rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.product-hero--alt {
  background: var(--slate-900);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .product-hero__grid--reverse .product-hero__content {
    order: 1;
  }
  
  .product-hero__grid--reverse .product-hero__visual {
    order: 0;
  }
}

.product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-hero__badge--teal {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: var(--teal-300);
}

.product-hero__badge--blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-400);
}

.product-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.product-hero__badge-dot--blue {
  background: var(--blue-400);
}

.product-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.product-hero__tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal-400);
  margin: 0 0 1rem;
}

.product-hero--alt .product-hero__tagline {
  color: var(--blue-400);
}

.product-hero__desc {
  font-size: 1rem;
  color: var(--slate-400);
  margin: 0 0 1.5rem;
  line-height: 1.7;
  max-width: 550px;
}

.product-hero__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
}

@media (max-width: 600px) {
  .product-hero__specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-hero__spec {
  text-align: center;
}

.product-hero__spec-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.product-hero__spec-label {
  display: block;
  font-size: 0.7rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.product-hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.product-hero__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate-300);
  margin-bottom: 0.6rem;
}

.product-hero__features .check-icon {
  color: var(--teal-400);
  font-weight: 700;
  flex-shrink: 0;
}

.product-hero--alt .product-hero__features .check-icon {
  color: var(--blue-400);
}

.product-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Product Hero Visual */
.product-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

.product-hero__image-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  max-width: 380px;
}

.product-hero__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-hero__image-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate-800);
  color: var(--teal-400);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--slate-700);
}

/* Sensor Display Card (LL100) */
.product-hero__image-card--sensors {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  padding: 0;
  max-width: 360px;
  width: 100%;
}

.sensor-display {
  padding: 1.5rem;
}

.sensor-display__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-700);
}

.sensor-display__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.sensor-display__status {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sensor-display__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.sensor-display__item {
  text-align: center;
  padding: 1rem;
  background: var(--slate-900);
  border-radius: 12px;
  border: 1px solid var(--slate-700);
}

.sensor-display__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.sensor-display__value {
  display: block;


/* ═══════════════════════════════════════ */
/* PLATFORM SHOWCASE                       */
/* ═══════════════════════════════════════ */
.platform-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.platform-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .platform-showcase__grid {
    grid-template-columns: 1fr;
  }
}

.platform-showcase__item {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.platform-showcase__item:hover {
  border-color: var(--teal-500);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.platform-showcase__image {
  width: 100%;
  height: auto;
  display: block;
}

.platform-showcase__caption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--slate-400);
  border-top: 1px solid var(--slate-700);
}

.platform-showcase__caption strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
}

  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.sensor-display__label {
  display: block;
  font-size: 0.7rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

.sensor-display__footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-700);
  font-size: 0.75rem;
  color: var(--slate-500);
  text-align: center;
}

/* Floating Tags */
.product-hero__float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--slate-300);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 5s ease-in-out infinite;
  z-index: 5;
}

.product-hero__float-tag--top {
  top: 0;
  right: 0;
}

.product-hero__float-tag--bottom {
  bottom: 0;
  left: 0;
  animation-delay: 1.5s;
}

.tag-icon {
  font-size: 1rem;
}

/* ═══════════════════════════════════════ */
/* COMPARISON TABLE                        */
/* ═══════════════════════════════════════ */
.comparison-table {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-table__header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--slate-700);
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--slate-700);
}

.comparison-table__row:last-child {
  border-bottom: none;
}

.comparison-table__row--cta {
  background: var(--slate-900);
  padding: 0.5rem 0;
}

.comparison-table__cell {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-table__cell--feature {
  font-weight: 600;
  color: var(--slate-200);
  justify-content: flex-start;
  text-align: left;
}

.comparison-table__header .comparison-table__cell {
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  padding: 1.25rem;
}

.comparison-table__cell--ss100 {
  color: var(--teal-400);
}

.comparison-table__cell--ll100 {
  color: var(--blue-400);
}

.comparison-table__cell--highlight {
  color: var(--teal-400);
  font-weight: 600;
}

@media (max-width: 700px) {
  .comparison-table__header,
  .comparison-table__row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .comparison-table__cell {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }
  
  .comparison-table__header .comparison-table__cell {
    font-size: 0.75rem;
    padding: 1rem 0.5rem;
  }
}

.promo-banner__icon {
  font-size: 4rem;
  position: relative;
}