/* ═══════════════════════════════════════════════════════════════
   MOBILE.CSS - Mobile-specific styles
   PMVW Mobile Site
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   BASE LAYOUT
   ───────────────────────────────────────── */
.mobile {
  /* Safe area insets for notched devices */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
}

.m-main {
  /* No padding or gaps between sections */
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #1a1a1a; /* Dark fallback to prevent white gaps */
}

/* Remove any default section margins */
.m-main > section {
  margin: 0;
}

/* ─────────────────────────────────────────
   MOBILE HEADER
   ───────────────────────────────────────── */
.m-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  padding-top: calc(var(--space-3) + env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--medium-gray);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.m-header--hidden {
  transform: translateY(-100%);
}

.m-header__logo-link {
  display: flex;
  align-items: center;
  justify-self: center;
}

.m-header__logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
}

.m-header__menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.m-header__menu-btn svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.m-header > .btn {
  justify-self: end;
}

/* iOS Safari touch fix for all header buttons */
.m-header button,
.m-header .btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Navigation Dropdown */
.m-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
}

.m-nav-dropdown.is-open {
  display: flex;
}

.m-nav-dropdown a {
  padding: var(--space-3) var(--space-4);
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--light-gray);
}

.m-nav-dropdown a:last-child {
  border-bottom: none;
}

.m-nav-dropdown a:active {
  background: var(--light-gray);
}

/* Download Popover */
.m-download-popover {
  position: absolute;
  top: 100%;
  right: var(--space-4);
  width: calc(100% - var(--space-8));
  max-width: 320px;
  background: var(--tv-ui-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: var(--space-3);
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.m-download-popover.is-open {
  display: flex;
}

.m-download-popover__item {
  padding: var(--space-3);
  background: var(--tv-ui-bg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.m-download-popover__item h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.m-download-popover__item p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.m-download-popover__buttons {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
}

.m-download-popover__buttons .btn {
  flex: 1;
  min-height: 36px;
  font-size: var(--text-xs);
}

.m-download-popover__link {
  display: inline-block;
  background: var(--blue-primary);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-decoration: none;
}

/* ─────────────────────────────────────────
   SECTION TITLES & INTRO
   ───────────────────────────────────────── */
.m-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
}

.m-section__intro {
  font-size: var(--text-base);
  color: var(--text-secondary);
  text-align: center;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  padding: 0 var(--space-4);
}

/* ─────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────── */
.m-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding-top: 60px; /* Account for fixed header */
  background: var(--tv-ui-bg);
}

.m-hero__image-container {
  width: 100%;
  height: 60vh; /* Adjustable height */
  overflow: hidden;
}

.m-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48.1% 30%; /* Adjustable: horizontal% vertical% */
}

.m-hero__content {
  max-width: 400px;
  padding: var(--space-6);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}


.m-hero__tagline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.m-hero__line {
  display: block;
}

.m-hero__line--emphasis {
  color: var(--text-primary);
}

.m-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}


/* ─────────────────────────────────────────
   SOLUTION / MULTIVIEW SECTION
   ───────────────────────────────────────── */
.m-solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  background: var(--tv-ui-bg);
}

.m-solution__image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vh;
  height: 70svh;
  background: url('../section-multiview.jpg') 52% 50% / 225% auto no-repeat;
}

.m-solution__image {
  display: none;
}

.m-solution__tv-video {
  position: absolute;
  /* top/height use calc+vw to track the width-based background image position */
  /* background-position: 50% vertically centers the bg; vw offsets match bg coordinates */
  top: calc(50% - 57.5vw);
  left: 2%;
  width: 95.3%;
  height: 55vw;
  object-fit: fill;
  pointer-events: none;
}

.m-solution__content {
  padding: var(--space-6);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.m-solution__line {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.m-solution__line--emphasis {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.m-solution__disclaimer {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin: var(--space-1) 0 0 0;
}

/* ─────────────────────────────────────────
   TILE GRID (Rotating 2x2)
   ───────────────────────────────────────── */
.m-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 calc(-1 * var(--space-4)); /* Negative margin to extend full width */
  margin-bottom: var(--space-8);
  width: calc(100% + var(--space-4) * 2);
}

.m-tile-grid__item {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.m-tile-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.m-tile-grid__img--fading {
  opacity: 0;
}

/* ─────────────────────────────────────────
   FEATURES SECTION
   ───────────────────────────────────────── */
.m-features {
  padding: var(--space-12) var(--space-4);
  padding-bottom: var(--space-8);
  background: var(--tv-ui-bg);
}

/* Swipeable carousel - using native scroll-snap for Safari compatibility */
.m-features__carousel {
  position: relative;
  margin: 0 calc(-1 * var(--space-4)); /* Full width */
}

.m-features__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: var(--space-2) var(--space-4);
  gap: var(--space-3);
}

.m-features__track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.m-feature-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--tv-ui-card);
  border-radius: var(--radius-lg);
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Dot indicators */
.m-features__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
}

.m-features__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background: #999;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.m-features__dot--active {
  background: var(--blue-primary);
  transform: scale(1.2);
  opacity: 1;
}

.m-feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
  color: var(--blue-primary);
}

.m-feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.m-feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--tv-ui-text-primary);
  margin-bottom: var(--space-2);
}

.m-feature-card__description {
  font-size: var(--text-sm);
  color: var(--tv-ui-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   HOW IT WORKS SECTION
   ───────────────────────────────────────── */
.m-how-it-works {
  padding: var(--space-12) var(--space-4);
  background: var(--tv-ui-card);
}

.m-how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.m-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--tv-ui-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.m-step__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-primary);
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.m-step__content {
  width: 100%;
}

.m-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  text-align: center;
}

.m-step__description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
  text-align: center;
}

.m-step__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.m-step__buttons .btn {
  min-height: 44px;
  min-width: 130px;
  flex: 1;
  max-width: 150px;
}

.m-step__badge {
  display: inline-block;
  background: var(--blue-primary);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────── */
.m-testimonials {
  padding: var(--space-12) var(--space-4);
  padding-bottom: var(--space-8);
  background: var(--tv-ui-bg);
}

/* Swipeable carousel - same as features */
.m-testimonials__carousel {
  position: relative;
  margin: 0 calc(-1 * var(--space-4));
}

.m-testimonials__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-2) var(--space-4);
  gap: var(--space-3);
}

.m-testimonials__track::-webkit-scrollbar {
  display: none;
}

.m-testimonials__card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  box-sizing: border-box;
  background: var(--tv-ui-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 300ms ease-out;
}

.m-testimonials__quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-4) 0;
}

/* Quotes already in HTML */

.m-testimonials__author {
  margin-bottom: var(--space-3);
}

.m-testimonials__name {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.m-testimonials__role {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.m-testimonials__rating {
  color: #f5a623;
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.m-testimonials__rating .star.empty {
  opacity: 0.3;
}

.m-testimonials__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
}

.m-testimonials__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background: #999;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.m-testimonials__dot--active {
  background: var(--blue-primary);
  transform: scale(1.25);
}

/* ─────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────── */
.m-pricing {
  padding: var(--space-12) var(--space-4);
  background: var(--tv-ui-card);
}

.m-pricing__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.m-pricing__card {
  background: var(--tv-ui-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
  border: 1px solid var(--medium-gray);
}

.m-pricing__card--cta {
  background: var(--tv-ui-bg);
  border: 2px solid var(--blue-primary);
}

.m-pricing__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  color: var(--blue-primary);
}

.m-pricing__icon svg {
  width: 100%;
  height: 100%;
}

.m-pricing__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.m-pricing__card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.m-pricing__highlight {
  display: inline-block;
  background: var(--blue-primary);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.m-pricing__card--cta .btn {
  width: 100%;
  min-height: 48px;
}

/* ─────────────────────────────────────────
   FAQ SECTION (Mobile overrides)
   ───────────────────────────────────────── */
.m-faq {
  padding: var(--space-12) var(--space-4);
  background: var(--tv-ui-bg);
}

.m-faq .faq-accordion {
  background: var(--tv-ui-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.m-faq .faq-accordion__item {
  border-bottom: 1px solid var(--medium-gray);
}

.m-faq .faq-accordion__item:last-child {
  border-bottom: none;
}

.m-faq .faq-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  min-height: 48px;
}

.m-faq .faq-accordion__icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.m-faq .faq-accordion__item[data-faq-open="true"] .faq-accordion__icon {
  transform: rotate(180deg);
}

.m-faq .faq-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-base);
}

.m-faq .faq-accordion__item[data-faq-open="true"] .faq-accordion__content {
  grid-template-rows: 1fr;
}

.m-faq .faq-accordion__content > p {
  overflow: hidden;
  padding: 0 var(--space-4);
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.m-faq .faq-accordion__item[data-faq-open="true"] .faq-accordion__content > p {
  padding-bottom: var(--space-4);
}

/* ─────────────────────────────────────────
   DOWNLOADS SECTION (Get Started)
   ───────────────────────────────────────── */
.m-downloads {
  padding: var(--space-12) var(--space-4);
  background: var(--tv-ui-card);
  text-align: center;
}

.m-downloads__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.m-downloads__group {
  background: var(--tv-ui-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.m-downloads__group h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.m-downloads__group p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.m-downloads__buttons {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
}

.m-downloads__buttons .btn {
  min-height: 44px;
  min-width: 130px;
  flex: 1;
  max-width: 150px;
}

.m-downloads__link {
  display: inline-block;
  background: var(--blue-primary);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-decoration: none;
}

.m-downloads__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-top: var(--space-6);
}

.m-downloads__badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.m-footer {
  padding: var(--space-4) var(--space-4);
  padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom));
  background: var(--dark-gray);
  text-align: center;
}

.m-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}

.m-footer__links a {
  color: var(--text-gray);
  font-size: var(--text-sm);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.m-footer__links a:hover {
  color: var(--white);
}

.m-footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}

.m-footer__social span {
  color: var(--text-gray);
  font-size: var(--text-sm);
}

.m-footer__social a {
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.m-footer__social a:hover {
  color: var(--white);
}

.m-footer__copyright {
  color: var(--text-gray);
  font-size: var(--text-xs);
  opacity: 0.7;
  text-align: center;
}

/* ─────────────────────────────────────────
   BUTTON OVERRIDES FOR MOBILE
   ───────────────────────────────────────── */
.mobile .btn {
  min-height: 48px; /* Touch target */
}

.mobile .btn-sm {
  min-height: 44px;
}

.mobile input,
.mobile textarea,
.mobile select {
  font-size: 16px; /* Prevent iOS zoom */
}

/* ─────────────────────────────────────────
   MODAL OVERRIDES FOR MOBILE
   ───────────────────────────────────────── */
.mobile .receiver-modal__content,
.mobile .pricing-modal__content,
.mobile .support-modal__content {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  margin: 0;
}

.mobile .receiver-modal__qr {
  display: none; /* Hide QR on mobile - it's for scanning with phone */
}

.mobile .receiver-modal__divider {
  display: none;
}

.mobile .receiver-modal__platforms {
  grid-template-columns: repeat(2, 1fr);
}

.mobile .pricing-modal__cards {
  flex-direction: column;
}

.mobile .pricing-modal__card {
  width: 100%;
}

/* ─────────────────────────────────────────
   ACCESSIBILITY: Reduced Motion
   ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .m-header {
    transition: none;
  }

  .m-testimonials__card {
    transition: none;
  }

  .m-testimonials__dot {
    transition: none;
  }

  .m-faq .faq-accordion__content {
    transition: none;
  }

  .m-faq .faq-accordion__icon {
    transition: none;
  }
}

/* ─────────────────────────────────────────
   LANDSCAPE ORIENTATION
   ───────────────────────────────────────── */
@media (orientation: landscape) and (max-height: 500px) {
  .m-hero {
    min-height: auto;
    padding: var(--space-6) var(--space-4);
  }

  .m-hero__icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
  }

  .m-hero__tagline {
    font-size: var(--text-2xl);
  }

  .m-hero__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .m-hero__ctas .btn {
    width: auto;
    min-width: 140px;
  }
}

/* ─────────────────────────────────────────
   TABLET BREAKPOINT (768px+)
   ───────────────────────────────────────── */
@media (min-width: 768px) {
  .m-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .m-pricing__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .m-use-cases__caption {
    font-size: var(--text-xl);
  }
}
