/*
 * makeonline.io — Design System Tokens
 * Source: docs/06_design_system/design_tokens.md
 *         docs/06_design_system/design-system-v2.md
 *
 * Naming: mo- prefix (makeonline)
 * Grid: 8px baseline
 */

/* =========================================
   1. Design Tokens (CSS Custom Properties)
   ========================================= */

:root {
  /* Colors */
  --mo-color-ink: #193241;
  --mo-color-accent: #2E5EAA;
  --mo-color-surface: #F6F8FB;
  --mo-color-text: #0B1220;
  --mo-color-white: #FFFFFF;

  /* Typography */
  --mo-font-primary: "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mo-font-weight-regular: 400;
  --mo-font-weight-medium: 500;
  --mo-font-weight-semibold: 600;
  --mo-font-weight-bold: 700;

  /* Spacing (8px grid) */
  --mo-space-1: 8px;
  --mo-space-2: 16px;
  --mo-space-3: 24px;
  --mo-space-4: 32px;
  --mo-space-5: 48px;
  --mo-space-6: 72px;

  /* Layout */
  --mo-container-max: 1200px;
  --mo-section-padding-desktop: 72px;
  --mo-section-padding-mobile: 44px;

  /* Borders & Radius */
  --mo-radius-card: 16px;
  --mo-radius-input: 12px;

  /* Elevation */
  --mo-shadow-soft: 0 10px 30px rgba(11, 18, 32, 0.06);
  --mo-border-subtle: 1px solid rgba(25, 50, 65, 0.08);
  --mo-focus-ring: 0 0 0 3px rgba(46, 94, 170, 0.18);

  /* Input */
  --mo-input-height: 48px;
}

/* =========================================
   2. Base Reset & Typography
   ========================================= */

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

body {
  font-family: var(--mo-font-primary);
  font-weight: var(--mo-font-weight-regular);
  color: var(--mo-color-text);
  background: var(--mo-color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--mo-color-ink);
  font-weight: var(--mo-font-weight-bold);
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

a {
  color: var(--mo-color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================
   3. Layout Classes
   ========================================= */

.mo-container {
  max-width: var(--mo-container-max);
  margin: 0 auto;
  padding: 0 var(--mo-space-2);
}

.mo-section {
  padding: var(--mo-section-padding-mobile) 0;
}

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

.mo-section--ink {
  background: var(--mo-color-ink);
  color: #fff;
}

@media (min-width: 768px) {
  .mo-section {
    padding: var(--mo-section-padding-desktop) 0;
  }
}

/* =========================================
   4. Button Classes
   ========================================= */

.mo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--mo-space-1);
  padding: 12px var(--mo-space-3);
  border-radius: var(--mo-radius-input);
  font-family: var(--mo-font-primary);
  font-size: 1rem;
  font-weight: var(--mo-font-weight-semibold);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  min-height: 44px;
  text-decoration: none;
}

.mo-btn:hover {
  text-decoration: none;
}

.mo-btn--primary {
  background: var(--mo-color-ink);
  color: var(--mo-color-white);
}

.mo-btn--primary:hover {
  background: var(--mo-color-accent);
}

.mo-btn--secondary {
  background: transparent;
  color: var(--mo-color-ink);
  border-color: var(--mo-color-ink);
}

.mo-btn--secondary:hover {
  background: var(--mo-color-ink);
  color: var(--mo-color-white);
}

.mo-btn--accent {
  background: var(--mo-color-accent);
  color: var(--mo-color-white);
}

.mo-btn--accent:hover {
  opacity: 0.9;
}

.mo-btn--outline {
  background: transparent;
  color: var(--mo-color-accent);
  border: 2px solid var(--mo-color-accent);
}
.mo-btn--outline:hover {
  background: var(--mo-color-accent);
  color: var(--mo-color-white);
}

.mo-btn--ghost {
  background: transparent;
  color: var(--mo-color-accent);
  padding: 6px 12px;
}
.mo-btn--ghost:hover {
  background: var(--mo-color-surface);
}

.mo-btn--sm {
  font-size: 0.8125rem;
  padding: 6px 12px;
}

/* =========================================
   5. Form Classes
   ========================================= */

.mo-form__group {
  margin-bottom: var(--mo-space-2);
}

.mo-form__label {
  display: block;
  font-weight: var(--mo-font-weight-medium);
  margin-bottom: var(--mo-space-1);
  color: var(--mo-color-ink);
}

.mo-form__input,
.mo-form__textarea {
  width: 100%;
  padding: 12px var(--mo-space-2);
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-input);
  font-family: var(--mo-font-primary);
  font-size: 1rem;
  min-height: var(--mo-input-height);
  transition: box-shadow 0.2s ease;
}

.mo-form__input:focus,
.mo-form__textarea:focus {
  outline: none;
  box-shadow: var(--mo-focus-ring);
}

.mo-form__hint {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 4px;
}

.mo-form__error {
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 4px;
}

.mo-dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6px 16px;
  font-size: 0.9375rem;
}
.mo-dl dt {
  font-weight: 600;
  color: var(--mo-color-ink);
}
.mo-dl dd {
  margin: 0;
  color: var(--mo-color-text);
}

/* =========================================
   6. Header
   ========================================= */

.mo-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mo-color-white);
  border-bottom: var(--mo-border-subtle);
  box-shadow: var(--mo-shadow-soft);
}

.mo-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

.mo-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--mo-font-weight-bold);
  font-size: 1.875rem;
  color: var(--mo-color-ink);
  gap: 14px;
}

.mo-header__logo:hover {
  text-decoration: none;
}

.mo-header__logo-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

/* =========================================
   6b. Navigation (Dropdown + Mobile)
   ========================================= */

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

.mo-nav__item { position: relative; }

.mo-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: var(--mo-font-weight-medium);
  color: var(--mo-color-ink);
  text-decoration: none;
  border-radius: var(--mo-radius-input);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--mo-font-primary);
  transition: background 0.15s ease;
  white-space: nowrap;
}

.mo-nav__link:hover {
  background: var(--mo-color-surface);
  text-decoration: none;
}

.mo-nav__arrow {
  font-size: 0.625rem;
  transition: transform 0.2s ease;
}

/* Dropdown submenu */
.mo-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  margin-top: 4px;
  background: var(--mo-color-white);
  border-radius: var(--mo-radius-input);
  box-shadow: 0 12px 36px rgba(11, 18, 32, 0.12);
  border: var(--mo-border-subtle);
  list-style: none;
  z-index: 110;
}

.mo-nav__submenu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9375rem;
  color: var(--mo-color-ink);
  text-decoration: none;
  transition: background 0.15s ease;
}

.mo-nav__submenu li a:hover {
  background: var(--mo-color-surface);
  text-decoration: none;
}

/* Show dropdown on hover (desktop) */
.mo-nav__dropdown:hover > .mo-nav__submenu,
.mo-nav__dropdown:focus-within > .mo-nav__submenu {
  display: block;
}

.mo-nav__dropdown:hover > .mo-nav__toggle .mo-nav__arrow {
  transform: rotate(180deg);
}

/* CTA item spacing */
.mo-nav__item--cta { margin-left: 8px; }

/* =========================================
   6c. Mega Menu (Desktop)
   ========================================= */

.mo-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  padding: var(--mo-space-3);
  background: var(--mo-color-white);
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.16);
  z-index: 110;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: var(--mo-space-3);
}

.mo-mega--wide {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  left: var(--mo-space-2);
  right: var(--mo-space-2);
  min-width: 0;
}

/* Anchor the wide mega to the nav (not the dropdown li)
   so it spans the container width */
.mo-nav__dropdown--full { position: static; }

.mo-mega--right {
  left: auto;
  right: 0;
  grid-template-columns: minmax(540px, auto);
}

/* Who We Serve chips — 3 columns × 2 rows */
.mo-mega__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mo-mega__chips .mo-mega__chip { white-space: nowrap; }

.mo-nav__dropdown:hover > .mo-mega,
.mo-nav__dropdown:focus-within > .mo-mega {
  display: grid;
}

.mo-mega__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mo-mega__heading {
  font-size: 0.6875rem;
  font-weight: var(--mo-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e5e7eb;
}

.mo-mega__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--mo-radius-input);
  text-decoration: none;
  color: var(--mo-color-ink);
  transition: background 0.15s ease;
}

.mo-mega__item:hover {
  background: var(--mo-color-surface);
  text-decoration: none;
}

.mo-mega__icon {
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.2;
}

.mo-mega__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mo-mega__body strong {
  font-size: 0.875rem;
  font-weight: var(--mo-font-weight-medium);
  line-height: 1.3;
}

.mo-mega__body small {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

.mo-mega__col--featured {
  background: var(--mo-color-surface);
  border-radius: var(--mo-radius-card);
  padding: var(--mo-space-2);
  margin: calc(var(--mo-space-2) * -0.5);
}

.mo-mega__chip {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  background: var(--mo-color-white);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: var(--mo-color-ink);
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
}

.mo-mega__chip:hover {
  background: var(--mo-color-ink);
  color: #fff;
  border-color: var(--mo-color-ink);
  text-decoration: none;
}

.mo-mega__cta {
  display: block;
  margin-top: auto;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: var(--mo-font-weight-bold);
  background: var(--mo-color-accent);
  color: #fff;
  border-radius: var(--mo-radius-input);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.mo-mega__cta:hover {
  opacity: 0.9;
  text-decoration: none;
  color: #fff;
}

/* Hamburger button — hidden on desktop */
.mo-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mo-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--mo-color-ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ---- Mobile nav ---- */
@media (max-width: 767px) {
  .mo-nav__hamburger { display: flex; }

  .mo-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: var(--mo-color-white);
    border-bottom: var(--mo-border-subtle);
    box-shadow: 0 12px 36px rgba(11, 18, 32, 0.1);
    padding: 8px 0;
    z-index: 105;
  }

  .mo-nav--open { display: flex; }

  .mo-nav__link {
    padding: 12px var(--mo-space-2);
    border-radius: 0;
  }

  .mo-nav__submenu {
    position: static;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
    background: var(--mo-color-surface);
    border-radius: 0;
  }

  .mo-nav__submenu li a {
    padding-left: 36px;
  }

  /* Mobile: toggle dropdown via click (CSS-only) */
  .mo-nav__dropdown > .mo-nav__submenu { display: none; }

  .mo-nav__dropdown:focus-within > .mo-nav__submenu,
  .mo-nav__dropdown:hover > .mo-nav__submenu {
    display: block;
  }

  /* Mega menu collapses to single column stack */
  .mo-mega,
  .mo-mega--wide,
  .mo-mega--right {
    display: none;
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    margin: 0;
    padding: var(--mo-space-2);
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--mo-color-surface);
    gap: var(--mo-space-2);
  }

  .mo-nav__dropdown:focus-within > .mo-mega,
  .mo-nav__dropdown:hover > .mo-mega {
    display: grid;
  }

  .mo-mega__heading {
    margin-top: 8px;
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Who We Serve chips stack on mobile (avoid cramped nowrap) */
  .mo-mega__chips { grid-template-columns: 1fr 1fr; }

  .mo-mega__col--featured {
    margin: 0;
  }

  .mo-nav__item--cta {
    margin: 8px var(--mo-space-2) 8px;
  }

  .mo-nav__item--cta .mo-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hamburger X animation when open */
  .mo-nav--open ~ .mo-nav__hamburger span:nth-child(1),
  [aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  [aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  [aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* =========================================
   7. Hero Section
   ========================================= */

.mo-hero {
  padding: var(--mo-section-padding-mobile) 0;
  background: var(--mo-color-surface);
  text-align: center;
}

.mo-hero h1 {
  margin-bottom: var(--mo-space-2);
}

.mo-hero p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto var(--mo-space-4);
}

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

@media (min-width: 768px) {
  .mo-hero {
    padding: var(--mo-section-padding-desktop) 0;
  }
}

/* =========================================
   8. Trust Strip
   ========================================= */

.mo-trust-strip {
  padding: var(--mo-space-4) 0;
  border-bottom: var(--mo-border-subtle);
}

.mo-trust-strip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--mo-space-2);
  justify-content: center;
  align-items: center;
}

.mo-trust-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--mo-color-surface);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: var(--mo-font-weight-medium);
  color: var(--mo-color-ink);
}

/* =========================================
   9. Feature Cards (3-column)
   ========================================= */

.mo-feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--mo-space-3);
}

.mo-feature-card {
  background: var(--mo-color-white);
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  padding: var(--mo-space-4);
  box-shadow: var(--mo-shadow-soft);
}

.mo-feature-card__icon {
  font-size: 2rem;
  margin-bottom: var(--mo-space-2);
}

.mo-feature-card h3 {
  margin-bottom: var(--mo-space-1);
}

.mo-feature-card p {
  color: #4b5563;
  margin-bottom: var(--mo-space-2);
}

@media (min-width: 768px) {
  .mo-feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   10. CTA Strip
   ========================================= */

.mo-cta-strip {
  padding: var(--mo-space-5) 0;
  background: var(--mo-color-ink);
  color: var(--mo-color-white);
  text-align: center;
}

.mo-cta-strip h2 {
  color: var(--mo-color-white);
  margin-bottom: var(--mo-space-2);
}

.mo-cta-strip p {
  margin-bottom: var(--mo-space-3);
  opacity: 0.9;
}

/* =========================================
   11. FAQ Accordion
   ========================================= */

.mo-faq details {
  border-bottom: var(--mo-border-subtle);
  padding: var(--mo-space-2) 0;
}

.mo-faq summary {
  cursor: pointer;
  font-weight: var(--mo-font-weight-semibold);
  color: var(--mo-color-ink);
  padding: var(--mo-space-1) 0;
}

.mo-faq details p {
  padding: var(--mo-space-1) 0 var(--mo-space-2);
  color: #4b5563;
}

/* =========================================
   12. Footer
   ========================================= */

.mo-footer {
  padding: var(--mo-space-5) 0;
  background: var(--mo-color-ink);
  color: rgba(255, 255, 255, 0.7);
}

.mo-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.mo-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--mo-space-4);
}

.mo-footer__bottom {
  margin-top: var(--mo-space-4);
  padding-top: var(--mo-space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .mo-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* =========================================
   7. Clover POS Landing (Phase 17)
   ========================================= */

.mo-eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 94, 170, 0.08);
  color: var(--mo-color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mo-eyebrow--inverse {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mo-section-head {
  max-width: 760px;
  margin-bottom: var(--mo-space-3);
}

.mo-section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.mo-section-head p {
  margin: 0;
  color: #5b677a;
  font-size: 1.05rem;
}

/* Clover hero */
.mo-clover-hero {
  padding: var(--mo-space-3) 0 var(--mo-space-4);
  background:
    radial-gradient(circle at top right, rgba(46,94,170,0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--mo-color-surface) 100%);
}

.mo-clover-hero__shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--mo-space-3);
  align-items: stretch;
}

.mo-clover-hero__copy,
.mo-clover-hero__card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(228, 234, 242, 0.9);
  border-radius: 28px;
  box-shadow: var(--mo-shadow-soft);
  padding: var(--mo-space-4);
}

.mo-clover-hero__copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.mo-clover-hero__copy > p {
  margin: 0 0 var(--mo-space-3);
  color: #5b677a;
  font-size: 1.05rem;
  max-width: 62ch;
}

.mo-clover-hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: var(--mo-space-3) 0;
}

.mo-clover-point {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: var(--mo-border-subtle);
}

.mo-clover-point strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.mo-clover-point span {
  color: #5b677a;
  font-size: 0.92rem;
}

.mo-clover-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--mo-space-2);
}

.mo-clover-hero__card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.mo-clover-hero__callout {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #dce8fb;
  color: var(--mo-color-text);
  font-weight: 700;
}

.mo-clover-hero__list {
  display: grid;
  gap: 12px;
  margin-top: var(--mo-space-2);
}

.mo-clover-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: var(--mo-border-subtle);
}

.mo-clover-row span { color: #5b677a; }
.mo-clover-row strong { font-size: 1rem; }

/* Clover grids & cards */
.mo-clover-grid {
  display: grid;
  gap: var(--mo-space-2);
}

.mo-clover-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.mo-clover-card {
  background: var(--mo-color-white);
  border: var(--mo-border-subtle);
  border-radius: 22px;
  padding: var(--mo-space-3);
  box-shadow: var(--mo-shadow-soft);
}

.mo-clover-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.mo-clover-card p {
  margin: 0;
  color: #5b677a;
}

.mo-clover-specs {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #5b677a;
}

.mo-clover-specs li { margin: 6px 0; }

.mo-clover-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 139, 87, 0.1);
  color: #0b8b57;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 12px;
}

/* Deployment scenario card variants */
.mo-clover-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}
.mo-clover-card__tag--best {
  color: #2E5EAA;
}
.mo-clover-card--best {
  border-color: #2E5EAA;
  box-shadow: 0 0 0 2px rgba(46,94,170,0.15), var(--mo-shadow-soft);
}
.mo-clover-card--muted {
  opacity: 0.82;
}
.mo-clover-card__price {
  font-size: 13px;
  color: #374151;
  margin-top: 12px !important;
  font-weight: 600;
}
.mo-clover-grid--4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--mo-space-2);
}

/* Clover dark kiosk band */
.mo-clover-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--mo-space-3);
  align-items: stretch;
  background: #0f172a;
  color: #ffffff;
  border-radius: 28px;
  padding: var(--mo-space-4);
}

.mo-clover-band h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.14;
}

.mo-clover-band p {
  color: rgba(255, 255, 255, 0.82);
}

.mo-clover-band__panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: var(--mo-space-3);
}

.mo-clover-band__panel h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.mo-clover-band__panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.mo-clover-band__panel li { margin: 6px 0; }

/* Clover comparison table */
.mo-clover-table-card {
  background: var(--mo-color-white);
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  box-shadow: var(--mo-shadow-soft);
  overflow: hidden;
}

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

.mo-clover-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.mo-clover-table th,
.mo-clover-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: var(--mo-border-subtle);
  vertical-align: top;
}

.mo-clover-table th {
  background: #f8fbff;
  color: #40506a;
  font-size: 0.92rem;
  font-weight: 800;
}

.mo-clover-table td { background: #ffffff; }

.mo-cell-title {
  display: block;
  font-weight: 800;
  margin-bottom: 2px;
}

.mo-cell-sub {
  display: block;
  color: #5b677a;
  font-size: 0.92rem;
}

/* Clover quote band + disclaimers */
.mo-clover-quote {
  background: #0f172a;
  color: #ffffff;
  border-radius: 26px;
  padding: var(--mo-space-4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--mo-space-2);
  align-items: center;
}

.mo-clover-quote h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.14;
}

.mo-clover-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.mo-clover-quote__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mo-btn--outline-inverse {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.mo-clover-disclaimers {
  margin-top: var(--mo-space-3);
  padding: var(--mo-space-3);
  border-radius: var(--mo-radius-card);
  background: #f8fbff;
  border: 1px solid #dce8fb;
  color: #5b677a;
  font-size: 0.85rem;
  line-height: 1.6;
}

.mo-clover-disclaimers p { margin: 0 0 12px; }
.mo-clover-disclaimers p:last-child { margin-bottom: 0; }
.mo-clover-disclaimers strong { color: var(--mo-color-text); }

/* Clover responsive */
@media (max-width: 1100px) {
  .mo-clover-hero__shell,
  .mo-clover-grid--3,
  .mo-clover-band,
  .mo-clover-quote {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mo-clover-hero__copy,
  .mo-clover-hero__card,
  .mo-clover-card,
  .mo-clover-band,
  .mo-clover-band__panel,
  .mo-clover-quote {
    padding: var(--mo-space-3);
  }
  .mo-clover-hero__points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mo-clover-hero__actions .mo-btn,
  .mo-clover-quote__actions .mo-btn {
    width: 100%;
  }
}

/* =========================================
   8. Home Landing — California (Phase 17)
   ========================================= */

.mo-ca-hero {
  padding: var(--mo-space-3) 0 var(--mo-space-4);
  background:
    radial-gradient(circle at top right, rgba(234, 88, 12, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--mo-color-surface) 100%);
}

.mo-ca-hero__shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--mo-space-3);
  align-items: stretch;
}

.mo-ca-hero__copy,
.mo-ca-hero__card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(228, 234, 242, 0.9);
  border-radius: 28px;
  box-shadow: var(--mo-shadow-soft);
  padding: var(--mo-space-4);
}

.mo-ca-hero__copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mo-ca-hero__copy > p {
  margin: 0 0 var(--mo-space-3);
  color: #5b677a;
  font-size: 1.05rem;
  max-width: 64ch;
}

.mo-ca-hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: var(--mo-space-3) 0;
}

.mo-ca-point {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: var(--mo-border-subtle);
}

.mo-ca-point strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.mo-ca-point span {
  color: #5b677a;
  font-size: 0.92rem;
}

.mo-ca-hero__callout {
  margin: 0 0 var(--mo-space-3);
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: var(--mo-color-text);
  font-weight: 700;
  line-height: 1.5;
}

.mo-ca-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mo-ca-hero__footnote {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: #5b677a;
  line-height: 1.5;
}

/* CA hero card */
.mo-ca-hero__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mo-ca-hero__promo {
  background: #0b8b57;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

.mo-ca-hero__card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.mo-ca-hero__card p {
  margin: 0;
  color: #5b677a;
}

.mo-ca-savings {
  background: #0f172a;
  color: #ffffff;
  border-radius: 22px;
  padding: 22px;
}

.mo-ca-savings__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.mo-ca-savings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mo-ca-savings__box {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mo-ca-savings__box small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.mo-ca-savings__box strong {
  font-size: 1.3rem;
  line-height: 1.1;
}

.mo-ca-savings__note {
  margin: 14px 0 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.mo-ca-hero__mini {
  display: grid;
  gap: 12px;
}

.mo-ca-mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: var(--mo-border-subtle);
}

.mo-ca-mini-row span { color: #5b677a; }
.mo-ca-mini-row strong { font-size: 1rem; }

/* CA audit split section */
.mo-ca-audit {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--mo-space-3);
  align-items: start;
}

.mo-ca-audit__features,
.mo-ca-audit__cta {
  background: var(--mo-color-white);
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  box-shadow: var(--mo-shadow-soft);
  padding: var(--mo-space-4);
}

.mo-ca-audit__features h3,
.mo-ca-audit__cta h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.mo-ca-audit__lead {
  margin: 0 0 var(--mo-space-2);
  color: #5b677a;
}

.mo-ca-audit__list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mo-ca-audit__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.mo-ca-audit__item strong {
  display: block;
  margin-bottom: 2px;
}

.mo-ca-audit__item span {
  color: #5b677a;
  font-size: 0.95rem;
}

.mo-ca-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(11, 139, 87, 0.12);
  color: #0b8b57;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

.mo-ca-audit__best {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dce8fb;
  color: #5b677a;
  font-size: 0.95rem;
}

.mo-ca-audit__best strong {
  display: block;
  color: var(--mo-color-text);
  margin-bottom: 4px;
}

.mo-ca-audit__btn {
  margin-top: var(--mo-space-2);
  display: inline-flex;
}

.mo-ca-audit__fineprint {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: #5b677a;
  line-height: 1.5;
}

/* CA table note */
.mo-ca-table-note {
  padding: 18px 22px;
  background: #f8fbff;
  border-top: var(--mo-border-subtle);
  font-size: 0.95rem;
  color: #5b677a;
}

.mo-ca-table-note strong { color: var(--mo-color-text); }

.mo-ca-table-note__quote {
  margin-top: 10px;
  color: var(--mo-color-text);
  font-weight: 700;
}

/* CA benefits grid */
.mo-ca-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mo-ca-benefit {
  background: var(--mo-color-white);
  border: var(--mo-border-subtle);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--mo-shadow-soft);
}

.mo-ca-benefit h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.mo-ca-benefit p {
  margin: 0 0 12px;
  color: #5b677a;
  font-size: 0.95rem;
}

.mo-ca-benefit strong {
  color: var(--mo-color-text);
}

/* Tag chips used in comparison table */
.mo-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 4px;
}

.mo-tag--best {
  background: rgba(11, 139, 87, 0.1);
  color: #0b8b57;
}

.mo-tag--neutral {
  background: rgba(46, 94, 170, 0.1);
  color: var(--mo-color-accent);
}

/* CA responsive */
@media (max-width: 1100px) {
  .mo-ca-hero__shell,
  .mo-ca-audit,
  .mo-ca-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mo-ca-hero__copy,
  .mo-ca-hero__card,
  .mo-ca-audit__features,
  .mo-ca-audit__cta,
  .mo-ca-benefit {
    padding: var(--mo-space-3);
  }
  .mo-ca-hero__points,
  .mo-ca-savings__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mo-ca-hero__actions .mo-btn { width: 100%; }
}

/* =========================================
   9. Readability Pass (Priority 1-4)
   ========================================= */

/* Tightened hero title */
.mo-ca-hero__title {
  margin: 14px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

/* Local blurb — unique per region, below hero grid */
.mo-ca-hero__local {
  max-width: 72ch;
  margin: var(--mo-space-2) auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #5b677a;
  text-align: center;
}

/* Lead paragraph — middle weight between h1 and body */
.mo-lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--mo-color-text);
  font-weight: 500;
  max-width: 52ch;
  margin: 0 0 var(--mo-space-3);
}

.mo-ca-hero__footnote a {
  color: var(--mo-color-accent);
  text-decoration: underline;
}

.mo-ca-savings__box--highlight {
  background: rgba(234, 88, 12, 0.18);
  outline: 1px solid rgba(234, 88, 12, 0.35);
}

/* Comparison table — MKR column highlight */
.mo-clover-table td.mo-cell--mkr {
  background: rgba(234, 88, 12, 0.05);
  border-left: 3px solid #ea580c;
  border-right: 1px solid rgba(234, 88, 12, 0.18);
}

.mo-clover-table td.mo-cell--muted {
  color: #8b98ab;
}

.mo-clover-table td.mo-cell--muted .mo-cell-title {
  color: #4b5669;
  font-weight: 600;
}

.mo-clover-table th:nth-child(2) {
  background: rgba(234, 88, 12, 0.08);
  color: #9a3412;
}

/* Legal disclaimers — collapsed by default */
.mo-legal-details {
  margin-top: var(--mo-space-3);
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  background: var(--mo-color-surface);
  overflow: hidden;
}

.mo-legal-details > summary {
  list-style: none;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--mo-color-text);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mo-legal-details > summary::-webkit-details-marker { display: none; }

.mo-legal-details > summary::after {
  content: "＋";
  font-size: 1.1rem;
  color: #5b677a;
  transition: transform 0.2s ease;
}

.mo-legal-details[open] > summary::after {
  content: "−";
}

.mo-legal-details > summary:hover {
  background: rgba(46, 94, 170, 0.04);
}

.mo-legal-details__body {
  padding: 4px 20px 20px;
  border-top: var(--mo-border-subtle);
  font-size: 0.85rem;
  color: #5b677a;
  line-height: 1.6;
}

.mo-legal-details__body p { margin: 12px 0 0; }
.mo-legal-details__body p:first-child { margin-top: 12px; }
.mo-legal-details__body strong { color: var(--mo-color-text); }

/* Clover plan tiers — inside comparison table MKR cell */
.mo-clover-plans {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.mo-clover-plan {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 10px;
  background: rgba(234, 88, 12, 0.05);
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  align-items: start;
}

.mo-clover-plan__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #9a3412;
  grid-column: 1;
  grid-row: 1;
}

.mo-clover-plan__price {
  font-size: 0.88rem;
  font-weight: 800;
  color: #193241;
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.mo-clover-plan__desc {
  font-size: 0.78rem;
  color: #5b677a;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 2px;
}

/* Dark-background heading overrides (global h1-h6 forces ink color) */
.mo-clover-quote h2,
.mo-clover-quote h3,
.mo-clover-quote__copy h2,
.mo-clover-band h2,
.mo-clover-band h3,
.mo-clover-band__panel h3,
.mo-ca-benefits--dark h2,
.mo-ca-benefits--dark h3,
.mo-ca-benefits--dark h4 {
  color: #ffffff;
}

.mo-clover-quote p,
.mo-clover-band p {
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   10. Priority 5-7: Rhythm, How it works, Typography
   ========================================= */

/* Section rhythm: alternating backgrounds */
.mo-section--alt {
  background: var(--mo-color-surface);
}

/* How it works — 3 numbered steps */
.mo-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: how;
}

.mo-how__step {
  background: #ffffff;
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  padding: 28px 24px;
  position: relative;
}

.mo-how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ea580c;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.mo-how__step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.mo-how__step p {
  margin: 0;
  color: #5b677a;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .mo-how { grid-template-columns: 1fr; }
}

/* Dark benefits grid — section rhythm inversion */
.mo-ca-benefits--dark {
  background: #0f172a;
}

.mo-ca-benefits--dark .mo-eyebrow {
  color: #fdba74;
}

.mo-ca-benefits--dark .mo-section-head p,
.mo-ca-benefits--dark .mo-ca-benefit p {
  color: rgba(255, 255, 255, 0.78);
}

.mo-ca-benefits--dark .mo-ca-benefit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--mo-radius-card);
  padding: 24px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.mo-ca-benefits--dark .mo-ca-benefit h4 {
  color: #ffffff;
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.mo-ca-benefits--dark .mo-ca-benefit strong {
  color: #fdba74;
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
}

.mo-ca-benefits--dark .mo-ca-benefit em {
  color: #fdba74;
  font-style: normal;
}

.mo-ca-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .mo-ca-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .mo-ca-benefits { grid-template-columns: 1fr; }
}

/* =========================================
   11. Phase 18: Region detection — cookie banner + location switcher
   ========================================= */

/* Cookie consent banner — fixed bottom, full-width */
.mo-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: #0f172a;
  color: #ffffff;
  border-top: 3px solid #ea580c;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.28);
}

.mo-cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mo-cookie-banner__copy {
  flex: 1 1 320px;
  min-width: 0;
}

.mo-cookie-banner__copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.mo-cookie-banner__copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 72ch;
}

.mo-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mo-cookie-banner__actions .mo-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
  .mo-cookie-banner__inner { padding: 16px 18px; }
  .mo-cookie-banner__actions { width: 100%; }
  .mo-cookie-banner__actions .mo-btn { flex: 1; }
}

/* Location switcher — header dropdown */
.mo-location-switcher {
  position: relative;
}

.mo-location-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.28);
  border-radius: 999px;
  color: var(--mo-color-ink);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.mo-location-switcher__trigger:hover {
  background: rgba(234, 88, 12, 0.14);
}

.mo-location-switcher__pin { font-size: 0.9rem; }
.mo-location-switcher__arrow { font-size: 0.7rem; opacity: 0.6; }

.mo-location-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #ffffff;
  border: var(--mo-border-subtle);
  border-radius: var(--mo-radius-card);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  padding: 10px;
  z-index: 250;
}

.mo-location-switcher__hint {
  margin: 4px 8px 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b98ab;
}

.mo-location-switcher__menu form { margin: 0; }

.mo-location-switcher__item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--mo-color-ink);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.mo-location-switcher__item:hover {
  background: rgba(234, 88, 12, 0.08);
}

.mo-location-switcher__item--active {
  background: rgba(234, 88, 12, 0.14);
  color: #9a3412;
  font-weight: 700;
}

/* =====================================================
   Phase 25-26: Hardware Store
   ===================================================== */

.mo-hw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--mo-space-2);
}

.mo-hw-card {
  background: var(--mo-color-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--mo-radius-card);
  box-shadow: var(--mo-shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.mo-hw-card:hover {
  box-shadow: 0 4px 20px rgba(25, 50, 65, 0.12);
}

.mo-hw-card--featured {
  border-color: #2E5EAA;
}

.mo-hw-card__badge {
  background: #2E5EAA;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.mo-hw-card__body {
  padding: var(--mo-space-2) var(--mo-space-2) var(--mo-space-1);
  flex: 1;
}

.mo-hw-card__name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--mo-color-ink);
  line-height: 1.3;
}

.mo-hw-card__specs {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 6px;
  line-height: 1.5;
}

.mo-hw-card__rec {
  font-size: 12px;
  color: #2E5EAA;
  font-weight: 600;
  margin: 0;
}

.mo-hw-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--mo-space-1) var(--mo-space-2) var(--mo-space-2);
  border-top: 1px solid #f3f4f6;
  gap: 8px;
}

.mo-hw-card__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mo-color-ink);
}

/* Product image block — uniform square, responsive */
.mo-hw-card__image {
  display: block;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mo-hw-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hardware detail page — responsive 2-column */
.mo-hw-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--mo-space-4);
  align-items: start;
}

@media (min-width: 820px) {
  .mo-hw-detail {
    grid-template-columns: 1fr 340px;
  }
}

.mo-hw-detail__image {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: var(--mo-space-2);
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-bottom: var(--mo-space-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mo-hw-detail__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mo-hw-detail__panel {
  background: var(--mo-color-surface);
  border-radius: var(--mo-radius-card);
  padding: var(--mo-space-3);
  border: 1px solid #e5e7eb;
}

@media (min-width: 820px) {
  .mo-hw-detail__panel {
    position: sticky;
    top: 80px;
  }
}

/* Cart table — horizontal scroll on mobile */
.mo-hw-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--mo-radius-card);
  background: #fff;
  box-shadow: var(--mo-shadow-soft);
}

.mo-hw-table-wrap table {
  min-width: 560px;
}

/* Checkout responsive 2-col */
.mo-hw-checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--mo-space-3);
}

@media (min-width: 820px) {
  .mo-hw-checkout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* CRM Kanban — horizontal scroll on mobile */
.mo-crm-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: var(--mo-space-2);
}

@media (max-width: 1100px) {
  .mo-crm-pipeline {
    grid-template-columns: repeat(5, 240px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--mo-space-2);
  }
}

/* Footer — MKR Systems identity block */
.mo-footer__brand-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ea580c;
  font-weight: 700;
  margin: 0 0 4px;
}

.mo-footer__tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 8px;
}

.mo-footer__services-list {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0 0 var(--mo-space-2);
  letter-spacing: 0.01em;
}

/* Footer AT&T Solution Partner badge */
.mo-footer__att-badge {
  display: block;
  width: 220px;
  max-width: 100%;
  margin-top: var(--mo-space-1);
  opacity: 0.95;
}

/* Typography polish — body readability */
.mo-section p {
  line-height: 1.7;
}

.mo-section-head p {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   AT&T Property Platform — att- components
   ========================================= */

/* ── Tokens ── */
:root {
  --att-blue:        #009FDB;
  --att-navy:        #193241;
  --att-gold:        #C8A84B;
  --att-surface:     #F0F6FF;
  --att-border:      #D6E4F0;
  --att-radius:      12px;
  --att-radius-sm:   8px;
}

/* ── Hero ── */
.att-hero {
  background: linear-gradient(135deg, var(--mo-color-ink) 0%, #0d2030 100%);
  padding: 5rem 0 4rem;
  color: #fff;
  overflow: hidden;
}

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

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

.att-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,159,219,0.15);
  border: 1px solid rgba(0,159,219,0.35);
  color: var(--att-blue);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.att-eyebrow__badge {
  height: 18px;
  width: auto;
}

.att-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #fff;
}

.att-hero__title--accent { color: var(--att-blue); }

.att-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  max-width: 52ch;
}

.att-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.att-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.att-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.att-hero__footnote {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.att-hero__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.att-hero__card-inner {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(0,159,219,0.3);
  border-radius: var(--att-radius);
  padding: 1.75rem;
}

.att-hero__card-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.att-hero__card-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.att-hero__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.att-hero__card-list li {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

.att-hero__card-cta {
  display: inline-block;
  color: var(--att-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.att-hero__card-cta:hover { text-decoration: underline; }

.att-hero__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.att-stat {
  background: rgba(255,255,255,0.06);
  border-radius: var(--att-radius-sm);
  padding: 1rem 0.75rem;
  text-align: center;
}

.att-stat__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--att-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.att-stat__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

/* ── Button variants ── */
.mo-btn--lg { padding: 0.875rem 1.75rem; font-size: 1rem; }

.mo-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
}

.mo-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.mo-btn--outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.mo-btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
}

/* ── Section header ── */
.att-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.att-section-header__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--mo-color-text);
  margin-bottom: 0.75rem;
}

.att-section-header__sub {
  font-size: 1.0625rem;
  color: #4a5568;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Services Grid ── */
.att-services {
  padding: 5rem 0;
  background: var(--mo-color-surface);
}

.att-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .att-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .att-services__grid { grid-template-columns: 1fr; }
}

.att-service-card {
  background: #fff;
  border: 1px solid var(--att-border);
  border-radius: var(--att-radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.att-service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.att-service-card__icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
}

.att-service-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--mo-color-text);
  margin-bottom: 0.625rem;
}

.att-service-card__desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.att-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--att-border);
  padding-top: 0.875rem;
}

.att-service-card__features li {
  font-size: 0.875rem;
  color: #2d3748;
  padding-left: 1rem;
  position: relative;
}

.att-service-card__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--att-blue);
  font-size: 0.75rem;
}

/* ── Who We Serve ── */
.att-who {
  padding: 5rem 0;
  background: #fff;
}

.att-who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .att-who__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .att-who__grid { grid-template-columns: 1fr; }
}

.att-who-card {
  background: var(--att-surface);
  border: 1px solid var(--att-border);
  border-radius: var(--att-radius);
  padding: 1.75rem;
}

.att-who-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.att-who-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--mo-color-text);
  margin-bottom: 0.625rem;
}

.att-who-card__desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.att-who-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: #2d3748;
  border-top: 1px solid var(--att-border);
  padding-top: 0.875rem;
}

.att-who-card__list li::before {
  content: "✓ ";
  color: #22c55e;
  font-weight: 700;
}

/* ── How It Works ── */
.att-how {
  padding: 5rem 0;
  background: var(--mo-color-ink);
  color: #fff;
}

.att-how .att-section-header__title { color: #fff; }
.att-how .att-section-header__sub { color: rgba(255,255,255,0.7); }

.att-how__steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media (max-width: 768px) {
  .att-how__steps { flex-direction: column; }
  .att-step__connector { display: none; }
}

.att-step {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--att-radius);
  padding: 1.75rem;
}

.att-step__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--att-blue);
  line-height: 1;
  margin-bottom: 0.875rem;
  opacity: 0.9;
}

.att-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
}

.att-step__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.att-step__link {
  color: var(--att-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.att-step__link:hover { text-decoration: underline; }

.att-step__connector {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  padding-top: 2rem;
  flex-shrink: 0;
}

/* ── CTA Strip ── */
.att-cta-strip {
  padding: 4.5rem 0;
  background: var(--att-blue);
  color: #fff;
}

.att-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.att-cta-strip__title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}

.att-cta-strip__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin: 0;
}

.att-cta-strip__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.att-cta-strip .mo-btn--primary {
  background: #fff;
  color: var(--att-blue);
}

.att-cta-strip .mo-btn--primary:hover {
  background: #f0f8ff;
}

/* ── FAQ ── */
.att-faq {
  padding: 5rem 0;
  background: var(--mo-color-surface);
}

.att-faq__inner { max-width: 760px; margin: 0 auto; }

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

.att-faq__item {
  background: #fff;
  border: 1px solid var(--att-border);
  border-radius: var(--att-radius-sm);
  overflow: hidden;
}

.att-faq__q {
  padding: 1.125rem 1.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--mo-color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.att-faq__q::-webkit-details-marker { display: none; }

.att-faq__q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--att-blue);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] .att-faq__q::after { content: "−"; }

.att-faq__a {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ── Footer 4-column ── */
.mo-footer__grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

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

@media (max-width: 480px) {
  .mo-footer__grid { grid-template-columns: 1fr; }
}

/* =========================================
   BLUEPRINT / SITE-SURVEY DESIGN LANGUAGE (bp-)
   "An engineer presenting your building's network plan"
   ========================================= */

:root {
  --bp-ink:    #22384a;
  --bp-accent: #2E6FB0;
  --bp-muted:  #5b7184;
  --bp-line:   #d4dde6;
  --bp-paper:  #f7f9fb;
  --bp-mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ── Hero ── */
.bp-hero {
  background: var(--bp-paper);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.bp-hero__shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 880px) { .bp-hero__shell { grid-template-columns: 1fr; gap: 2.5rem; } }

.bp-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--bp-mono);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: #8a6d1f; background: #fff8e6;
  border: 1px solid #e3d39a; border-radius: 4px;
  padding: 0.34rem 0.7rem; margin-bottom: 1.5rem;
}
.bp-tag__badge { height: 17px; }

.bp-hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  font-weight: 700; line-height: 1.1; color: var(--bp-ink);
  letter-spacing: -0.015em; margin-bottom: 1.2rem;
}
.bp-accent {
  color: var(--bp-accent);
  border-bottom: 3px solid rgba(46,111,176,0.3);
  padding-bottom: 1px;
}

.bp-hero__lead {
  font-size: 1.07rem; line-height: 1.7; color: #44586a;
  max-width: 50ch; margin-bottom: 2rem;
}
.bp-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.6rem; }

.bp-hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  list-style: none; padding: 0; margin: 0;
  font-family: var(--bp-mono); font-size: 0.74rem;
  letter-spacing: 0.03em; color: var(--bp-muted);
}
.bp-hero__trust li { position: relative; padding-left: 1.1rem; }
.bp-hero__trust li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px; margin-top: -3.5px;
  background: var(--bp-accent); border-radius: 1px; transform: rotate(45deg);
}

/* Buttons */
.bp-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--mo-font-primary); font-weight: 600; font-size: 0.97rem;
  padding: 0.78rem 1.6rem; cursor: pointer;
  border: 1.5px solid var(--bp-ink); border-radius: 6px;
  text-decoration: none; transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.bp-btn--primary {
  background: var(--bp-ink); color: #fff;
  box-shadow: 0 6px 16px rgba(34,56,74,0.18);
}
.bp-btn--primary:hover { background: #16293a; text-decoration: none; }
.bp-btn--ghost { background: #fff; color: var(--bp-ink); }
.bp-btn--ghost:hover { background: #eef3f8; text-decoration: none; }

/* ── Drawing sheet ── */
.bp-hero__sheet {
  margin: 0;
  background:
    linear-gradient(rgba(46,111,176,0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(46,111,176,0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    #fff;
  border: 1px solid var(--bp-line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(34,56,74,0.12);
  overflow: hidden;
}
.bp-sheet__bar {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--bp-mono); font-size: 0.7rem;
  letter-spacing: 0.08em; color: var(--bp-muted);
  background: #f2f6f9; border-bottom: 1px solid var(--bp-line);
  padding: 0.55rem 0.9rem;
}
.bp-sheet__bar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bp-accent);
}
.bp-drawing { display: block; width: 100%; height: auto; padding: 0.5rem 0.75rem 0.75rem; }

.bp-label text, .bp-label > text {
  font-family: var(--bp-mono); font-size: 11px;
  letter-spacing: 0.04em; fill: #44607a;
}
.bp-label--muted { fill: #8497a6 !important; font-size: 10px !important; }
.bp-tb-title { font-family: var(--bp-mono); font-size: 11px; font-weight: 500; fill: var(--bp-ink); letter-spacing: 0.04em; }
.bp-tb-sub   { font-family: var(--bp-mono); font-size: 8.5px; fill: var(--bp-muted); letter-spacing: 0.03em; }

/* ── Section heads (shared professional style) ── */
.bp-head { text-align: center; margin-bottom: 3rem; }
.bp-head__kicker {
  display: inline-block; font-family: var(--bp-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; color: var(--bp-accent);
  margin-bottom: 0.7rem;
}
.bp-head__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--bp-ink); letter-spacing: -0.01em; margin-bottom: 0.6rem;
}
.bp-head__sub { color: var(--bp-muted); font-size: 1.02rem; max-width: 54ch; margin: 0 auto; }

/* ── Process steps ── */
.bp-how { padding: 5rem 0; background: #fff; }
.bp-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; list-style: none; padding: 0; margin: 0;
  counter-reset: bp;
}
@media (max-width: 820px) { .bp-steps { grid-template-columns: 1fr; } }

.bp-step {
  position: relative;
  background: var(--bp-paper);
  border: 1px solid var(--bp-line);
  border-top: 3px solid var(--bp-accent);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}
.bp-step__index {
  font-family: var(--bp-mono); font-size: 0.95rem; font-weight: 500;
  color: var(--bp-accent); letter-spacing: 0.05em; margin-bottom: 0.7rem;
}
.bp-step__title { font-size: 1.15rem; font-weight: 700; color: var(--bp-ink); margin-bottom: 0.55rem; }
.bp-step__desc { font-size: 0.94rem; line-height: 1.65; color: #44586a; margin-bottom: 0.7rem; }
.bp-step__link { font-weight: 600; font-size: 0.92rem; color: var(--bp-accent); text-decoration: none; }
.bp-step__link:hover { text-decoration: underline; }
/* connector arrow between steps */
.bp-step:not(:last-child)::after {
  content: "→"; position: absolute; top: 50%; right: -1.05rem;
  transform: translateY(-50%); color: var(--bp-line);
  font-size: 1.4rem; z-index: 1;
}
@media (max-width: 820px) {
  .bp-step:not(:last-child)::after { top: auto; bottom: -1.05rem; right: 50%; transform: translateX(50%) rotate(90deg); }
}

/* ── Professional restyle of service / who-we-serve cards ── */
.att-services, .att-who { background: var(--bp-paper); }
.att-service-card, .att-who-card {
  border: 1px solid var(--bp-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 1px 2px rgba(34,56,74,0.04);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.att-service-card:hover, .att-who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(34,56,74,0.10);
  border-color: #b9c8d6 !important;
}
.att-service-card__title, .att-who-card__title {
  font-family: var(--mo-font-primary); font-weight: 700; font-size: 1.12rem;
}
.att-service-card__features li::before { content: ""; width: 6px; height: 6px; background: var(--bp-accent); border-radius: 1px; display: inline-block; transform: rotate(45deg); position: absolute; left: 0; top: 0.45rem; }
.att-section-header__title { letter-spacing: -0.01em; }

/* ── CTA + FAQ professional ── */
.att-cta-strip { background: var(--bp-ink); }
.att-cta-strip__title { font-family: var(--mo-font-primary); }
.att-faq__item { border: 1px solid var(--bp-line); border-radius: 8px; }
.att-faq__q { font-family: var(--mo-font-primary); }
.att-faq__q::after { color: var(--bp-accent); }

/* =========================================
   LARGER-TYPE PASS — 40s–60s audience readability
   Base bump scales all rem; explicit bumps lift the smallest text.
   (Appended last so these win at equal specificity.)
   ========================================= */

html { font-size: 19px; -webkit-text-size-adjust: 100%; }
body { font-size: 1rem; line-height: 1.65; }

/* AT&T provider label — larger + vibrant AT&T-blue pill */
.bp-tag {
  font-family: var(--mo-font-primary);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #00A8E0 0%, #0089C7 45%, #0568AE 100%);
  border: 1px solid #0568AE;
  border-radius: 100px;
  padding: 0.62rem 1.45rem;
  margin-bottom: 1.85rem;
  box-shadow: 0 5px 18px rgba(5,104,174,0.42);
  text-shadow: 0 1px 1px rgba(0,0,0,0.18);
}

/* Hero */
.bp-hero__title { font-size: clamp(2.95rem, 5.7vw, 4.1rem); }
.bp-hero__lead  { font-size: 1.32rem; line-height: 1.7; color: #3a4a5a; }
.bp-hero__trust { font-size: 1.02rem; }
.bp-btn         { font-size: 1.15rem; padding: 0.9rem 1.85rem; }

/* Section heads */
.bp-head__title, .att-section-header__title { font-size: clamp(2.25rem, 3.7vw, 2.85rem); }
.bp-head__sub,   .att-section-header__sub   { font-size: 1.3rem; line-height: 1.6; }
.bp-head__kicker { font-size: 0.92rem; }

/* Process steps */
.bp-step__index { font-size: 1.12rem; }
.bp-step__title { font-size: 1.42rem; }
.bp-step__desc  { font-size: 1.16rem; line-height: 1.65; }
.bp-step__link  { font-size: 1.1rem; }

/* Service / who-we-serve cards */
.att-service-card__title, .att-who-card__title { font-size: 1.4rem; }
.att-service-card__desc,  .att-who-card__desc  { font-size: 1.16rem; line-height: 1.62; }
.att-service-card__features li, .att-who-card__list li { font-size: 1.08rem; }
.att-service-card__icon, .att-who-card__icon { font-size: 2.5rem; }

/* CTA strip + FAQ */
.att-cta-strip__title { font-size: clamp(1.8rem, 2.8vw, 2.3rem); }
.att-cta-strip__sub   { font-size: 1.24rem; }
.att-faq__q { font-size: 1.24rem; }
.att-faq__a { font-size: 1.16rem; line-height: 1.7; }

/* Nav + footer */
.mo-nav__link { font-size: 0.92rem; }
.mo-footer__tagline, .mo-footer__services-list { font-size: 1.06rem; line-height: 1.6; }
.mo-footer ul a, .mo-footer h4 { font-size: 1.1rem; }

/* Forms (availability check / quote) — comfortable taps, no iOS zoom */
.mo-form__label { font-size: 1.14rem; }
.mo-form__input, .mo-form__textarea { font-size: 1.1rem; }

/* Mobile — keep everything large and tap-friendly */
@media (max-width: 600px) {
  .bp-hero { padding: 3rem 0 2.5rem; }
  .bp-hero__title { font-size: 2.5rem; line-height: 1.12; }
  .bp-hero__lead  { font-size: 1.22rem; }
  .bp-tag { font-size: 1.02rem; }
  .bp-head__title, .att-section-header__title { font-size: 2rem; }
  .bp-head__sub,   .att-section-header__sub   { font-size: 1.18rem; }
  .bp-btn { width: 100%; justify-content: center; font-size: 1.18rem; padding: 1rem 1.5rem; }
  .bp-hero__actions { flex-direction: column; align-items: stretch; }
  .att-service-card__desc, .att-who-card__desc { font-size: 1.12rem; }
  .att-faq__q { font-size: 1.14rem; }
}

/* =========================================
   HTML Site Map page
   ========================================= */
.mo-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--mo-space-4);
}
@media (max-width: 760px) {
  .mo-sitemap__grid { grid-template-columns: 1fr; gap: var(--mo-space-3); }
}
.mo-sitemap__head {
  font-size: 1.15rem;
  color: var(--bp-ink, #22384a);
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--bp-accent, #2E6FB0);
}
.mo-sitemap__col .mo-sitemap__head:not(:first-child) { margin-top: var(--mo-space-3); }
.mo-sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.mo-sitemap__list li { margin: 0.35rem 0; }
.mo-sitemap__list a { font-size: 1.05rem; }
.mo-sitemap__articles {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  columns: 2;
  column-gap: var(--mo-space-4);
}
.mo-sitemap__articles li { margin: 0.4rem 0; break-inside: avoid; }
@media (max-width: 760px) {
  .mo-sitemap__articles { columns: 1; }
}

/* =========================================
   Fiber coverage map page (fm-)
   ========================================= */
.fm-hero {
  background: var(--bp-paper, #f7f9fb);
  padding: 3.5rem 0 2.5rem;
}
.fm-hero__title {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 700; line-height: 1.12; color: var(--bp-ink, #22384a);
  letter-spacing: -0.01em; margin-bottom: 1rem; max-width: 18ch;
}
.fm-hero__lead { font-size: 1.24rem; line-height: 1.6; color: #3a4a5a; max-width: 56ch; margin-bottom: 1.6rem; }
.fm-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.fm-map {
  height: 460px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--bp-line, #d4dde6);
  box-shadow: 0 10px 30px rgba(34,56,74,0.12);
  z-index: 0;
}
.fm-tip { font-weight: 700; }

.fm-zipstats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; margin: 1.75rem 0 2.5rem;
}
.fm-zipstat {
  text-align: center; background: #fff; border: 1px solid var(--bp-line, #d4dde6);
  border-top: 3px solid var(--bp-accent, #2E6FB0); border-radius: 10px; padding: 1.1rem 0.75rem;
}
.fm-zipstat__num { font-size: 2.1rem; font-weight: 700; color: var(--bp-accent, #2E6FB0); line-height: 1; }
.fm-zipstat__zip { font-weight: 600; color: var(--bp-ink, #22384a); margin-top: 0.35rem; }
.fm-zipstat__sub { font-size: 0.9rem; color: #6b7280; }

.fm-list__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem;
}
.fm-search { max-width: 360px; }
.fm-list__zip {
  font-size: 1.25rem; color: var(--bp-ink, #22384a);
  margin: 1.5rem 0 0.6rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--bp-line, #d4dde6);
}
.fm-list__count { font-size: 0.95rem; color: var(--bp-accent, #2E6FB0); font-weight: 600; }
.fm-addr-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.4rem 1.5rem;
}
.fm-addr { display: flex; align-items: baseline; gap: 0.6rem; font-size: 1.02rem; color: #2b3b49; padding: 0.25rem 0; }
.fm-addr__dot { color: #16a34a; font-weight: 700; flex-shrink: 0; }
.fm-badge {
  flex-shrink: 0; font-size: 0.78rem; font-weight: 700; white-space: nowrap;
  padding: 0.12rem 0.5rem; border-radius: 100px; letter-spacing: 0.01em;
}
.fm-badge--live { background: #dcfce7; color: #15803d; }
.fm-badge--mkr  { background: #e0f0fb; color: #0568AE; }
.fm-legend { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.fm-legend .fm-badge { font-size: 0.92rem; padding: 0.35rem 0.85rem; }
.fm-noresults { margin-top: 1.25rem; color: #6b7280; font-size: 1.05rem; }
@media (max-width: 600px) {
  .fm-map { height: 360px; }
  .fm-addr-list { grid-template-columns: 1fr; }
}

/* Homepage fiber coverage band */
.fm-band {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.6rem 1rem; text-decoration: none;
  background: linear-gradient(135deg, #00A8E0, #0568AE);
  color: #fff; padding: 0.95rem 1.5rem; text-align: center;
}
.fm-band:hover { text-decoration: none; filter: brightness(1.05); }
.fm-band__pin { font-size: 1.3rem; }
.fm-band__text { font-size: 1.12rem; }
.fm-band__text strong { font-weight: 700; }
.fm-band__cta {
  font-weight: 700; font-size: 1.02rem;
  background: rgba(255,255,255,0.18); padding: 0.35rem 0.9rem; border-radius: 100px;
}

/* ── Full-width background hero (home) ── */
.bp-hero.bp-hero--full {
  padding: 0;
  min-height: clamp(460px, 64vh, 660px);
  display: flex;
  align-items: center;
  background: var(--bp-ink, #16293a);
}
.bp-hero--full .bp-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.bp-hero--full .bp-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  display: block;
}
.bp-hero--full .bp-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(11,24,38,0.62) 0%, rgba(11,24,38,0.38) 45%,
    rgba(11,24,38,0.14) 75%, rgba(11,24,38,0.03) 100%);
}
.bp-hero--full .bp-hero__inner { position: relative; z-index: 2; width: 100%; }
/* frosted-glass panel keeps text crisp over any part of the photo */
.bp-hero--full .bp-hero__copy {
  max-width: 600px;
  background: rgba(9, 20, 33, 0.66);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 2rem 2.25rem 2.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
}
/* keep the three trust badges on a single line (desktop) */
.bp-hero--full .bp-hero__trust {
  flex-wrap: nowrap; gap: 1.1rem;
  font-size: 0.8rem; white-space: nowrap;
}

/* light text over the photo */
.bp-hero--full .bp-hero__title { color: #fff; }
.bp-hero--full .bp-hero__lead  { color: #d9e3ec; }
.bp-hero--full .bp-hero__trust { color: #b6c5d3; }
.bp-hero--full .bp-accent {
  color: #8fc0f0; border-bottom-color: rgba(143,192,240,0.5);
}
.bp-hero--full .bp-tag {
  color: #ffe7a8; background: rgba(255,255,255,0.10);
  border-color: rgba(255,231,168,0.45);
}
.bp-hero--full .bp-btn--ghost {
  background: rgba(255,255,255,0.10); color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.bp-hero--full .bp-btn--ghost:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 760px) {
  .bp-hero.bp-hero--full { min-height: 0; padding: 3.25rem 0; }
  .bp-hero--full .bp-hero__bg img { object-position: 65% center; }
  .bp-hero--full .bp-hero__scrim {
    background: linear-gradient(180deg,
      rgba(11,24,38,0.66) 0%, rgba(11,24,38,0.82) 100%);
  }
  /* allow the trust badges to wrap on small screens */
  .bp-hero--full .bp-hero__trust {
    flex-wrap: wrap; white-space: normal; gap: 0.7rem 1rem;
  }
  .bp-hero--full .bp-hero__copy { padding: 1.5rem 1.4rem 1.6rem; }
}

/* ── Header fit: breathing room so the "Check Availability" CTA never overflows ── */
.mo-header__nav { padding-left: 28px; padding-right: 28px; }
.mo-nav { gap: 2px; }
.mo-nav__link { padding: 8px 11px; }
.mo-nav__phone { font-size: 0.86rem; }            /* phone slightly smaller than menu */
.mo-nav__item--cta .mo-btn { white-space: nowrap; }

/* ── Rich blog blocks (imported articles) — blue design system ── */
.mo-article-body .mo-beyebrow {
  font-family: var(--mo-font-mono, monospace); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mo-color-accent); font-weight: 600; margin: 2.2rem 0 0.3rem;
}
.mo-article-body .mo-bcards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 1.4rem 0 2rem;
}
.mo-article-body .mo-bcard {
  background: var(--mo-color-white); border: 1px solid #e3e9f2;
  border-top: 3px solid var(--mo-color-accent); border-radius: 10px; padding: 18px 16px;
}
.mo-article-body .mo-bcard__n {
  font-family: var(--mo-font-mono, monospace); font-size: 0.7rem; color: var(--mo-color-accent);
  letter-spacing: 0.08em; display: block; margin-bottom: 6px;
}
.mo-article-body .mo-bcard h3 { font-size: 1.05rem; margin: 0 0 6px; }
.mo-article-body .mo-bcard p { font-size: 0.95rem; color: #44586a; margin: 0; }
.mo-article-body .mo-bcallout {
  background: var(--mo-color-ink); color: #fff; border-radius: 12px; padding: 20px 24px; margin: 1.6rem 0;
}
.mo-article-body .mo-bcallout strong { color: #8fc0f0; }
.mo-article-body .mo-bcheck { list-style: none; padding: 0; margin: 1.4rem 0 2rem; }
.mo-article-body .mo-bcheck li {
  position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid #eef2f7;
}
.mo-article-body .mo-bcheck li::before {
  content: "✓"; position: absolute; left: 0; top: 9px; width: 20px; height: 20px;
  background: var(--mo-color-accent); color: #fff; border-radius: 50%; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.mo-article-body .mo-btiles {
  list-style: none; padding: 0; margin: 1.2rem 0 2rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px;
}
.mo-article-body .mo-btiles li {
  background: var(--mo-color-surface); border: 1px solid #e3e9f2;
  border-left: 3px solid var(--mo-color-accent); border-radius: 8px; padding: 12px 14px; font-size: 0.92rem;
}
.mo-article-body .mo-bfaq { margin: 1.4rem 0 2rem; border-top: 1px solid #e3e9f2; }
.mo-article-body .mo-bfaq__i { padding: 14px 0; border-bottom: 1px solid #e3e9f2; }
.mo-article-body .mo-bfaq__q { font-weight: 700; color: var(--mo-color-ink); margin: 0 0 5px; }
.mo-article-body .mo-bfaq__a { color: #44586a; margin: 0; font-size: 0.95rem; }
.mo-article-body .mo-bcmp {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #e3e9f2;
  border-radius: 10px; overflow: hidden; margin: 1.4rem 0 2rem;
}
.mo-article-body .mo-bcmp__c { padding: 18px; }
.mo-article-body .mo-bcmp__c:first-child { background: #f3f5f9; border-right: 1px solid #e3e9f2; }
.mo-article-body .mo-bcmp__c:last-child { background: #eef4fb; }
.mo-article-body .mo-bcmp__l {
  font-family: var(--mo-font-mono, monospace); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #6b7f93; display: block; margin-bottom: 8px;
}
.mo-article-body .mo-bcmp__c strong { display: block; font-size: 1.15rem; color: var(--mo-color-accent); margin-bottom: 6px; }
.mo-article-body .mo-bcmp__c p { font-size: 0.9rem; color: #44586a; margin: 0; }
.mo-article-body .mo-brefs { list-style: none; padding: 0; font-size: 0.85rem; color: #6b7f93; }
.mo-article-body .mo-brefs li { padding: 6px 0; border-bottom: 1px solid #eef2f7; }
.mo-article-body pre {
  background: #0f1b2a; color: #d7e3f0; padding: 18px 20px; border-radius: 10px;
  overflow-x: auto; font-size: 0.85rem; line-height: 1.7; margin: 1.4rem 0 2rem;
}
@media (max-width: 600px) { .mo-article-body .mo-bcmp { grid-template-columns: 1fr; } }
