/* ============================================================
   Signly+ marketing site
   ============================================================
   Distinct from /assets/css/style.css (which styles the app).
   Brand: navy #0A1F3A primary, orange #FF5733 accent.
   Type: Inter for body, Instrument Serif for italic emphasis.
   ============================================================ */

:root {
  --m-navy:        #0A1F3A;
  --m-navy-700:    #142E54;
  --m-navy-500:    #2C4670;
  --m-orange:      #FF5733;
  --m-orange-700:  #D74522;
  --m-orange-100:  #FFE9E2;
  --m-cream:       #FAF7F1;
  --m-cream-200:   #F1ECDF;
  --m-text:        #0A1F3A;
  --m-text-muted:  #5C6675;
  --m-border:      rgba(10, 31, 58, 0.10);
  --m-border-strong: rgba(10, 31, 58, 0.20);
  --m-radius:      10px;
  --m-radius-lg:   16px;
  --m-shadow-sm:   0 1px 2px rgba(10, 31, 58, 0.06);
  --m-shadow:      0 4px 24px rgba(10, 31, 58, 0.08);
  --m-shadow-lg:   0 12px 48px rgba(10, 31, 58, 0.12);

  /* Type stacks — three families, distinct purposes */
  --m-font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --m-font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --m-font-serif:   'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--m-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--m-text);
  background: var(--m-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01' on, 'cv11' on;
}

h1, h2, h3, h4 {
  font-family: var(--m-font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 0.5em;
  font-feature-settings: 'ss01' on, 'ss02' on;
}
em {
  font-family: var(--m-font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--m-orange);
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
}
a { color: var(--m-navy); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--m-orange); text-underline-offset: 4px; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding: 0 0 0 1.25em; }

.m-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 600px) {
  .m-container { padding: 0 20px; }
}

/* ============================================================ NAV */
.m-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.90);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--m-border);
}
.m-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.m-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--m-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--m-navy);
  letter-spacing: -0.035em;
}
.m-logo:hover { text-decoration: none; }
.m-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--m-navy);
  color: var(--m-cream);
  border-radius: 7px;
  font-family: var(--m-font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.m-logo-plus { color: var(--m-orange); }
.m-logo-text { color: var(--m-navy); }
.m-logo-light .m-logo-mark { background: var(--m-cream); color: var(--m-navy); }
.m-logo-light .m-logo-text { color: var(--m-cream); }

.m-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.m-nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--m-text);
}
.m-nav-links a.is-active { color: var(--m-orange); }
.m-nav-login { color: var(--m-text-muted) !important; }

@media (max-width: 700px) {
  .m-nav-links { gap: 16px; }
  .m-nav-links a:not(.m-btn):not(.m-nav-login) { display: none; }
}

/* ============================================================ BUTTONS */
.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--m-radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.m-btn:hover { text-decoration: none; transform: translateY(-1px); }
.m-btn:active { transform: translateY(0); }

.m-btn-primary {
  background: var(--m-orange);
  color: white;
  box-shadow: 0 1px 3px rgba(255, 87, 51, 0.30);
}
.m-btn-primary:hover {
  background: var(--m-orange-700);
  box-shadow: 0 4px 14px rgba(255, 87, 51, 0.35);
}
.m-btn-ghost {
  background: transparent;
  color: var(--m-navy);
  border-color: var(--m-border-strong);
}
.m-btn-ghost:hover { border-color: var(--m-navy); background: rgba(10, 31, 58, 0.04); }
.m-btn-sm  { padding: 8px 16px; font-size: 14px; }
.m-btn-lg  { padding: 14px 28px; font-size: 16px; }
.m-btn-block { display: flex; width: 100%; }

/* ============================================================ FLASH */
.m-flash {
  padding: 12px 0;
  background: var(--m-cream-200);
  border-bottom: 1px solid var(--m-border);
  text-align: center;
  font-size: 14px;
}
.m-flash-ok    { background: #DFF3E5; color: #1A5532; border-bottom-color: #B7E0C2; }
.m-flash-error { background: #FCEDED; color: #8B2020; border-bottom-color: #F0C9C9; }

/* ============================================================ HERO */
.m-hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}
.m-hero-narrow { padding: 64px 0 32px; }
.m-hero-inner { position: relative; z-index: 2; }
.m-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--m-text-muted);
  font-weight: 500;
}
.m-pill {
  display: inline-block;
  background: var(--m-orange-100);
  color: var(--m-orange-700);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.m-hero-title {
  font-size: clamp(44px, 7.2vw, 78px);
  line-height: 0.98;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 980px;
  letter-spacing: -0.045em;
}
.m-hero-title-tour {
  font-size: clamp(36px, 5.5vw, 60px);
  max-width: 820px;
  letter-spacing: -0.04em;
}
.m-hero-title em { color: var(--m-orange); }
.m-hero-sub {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--m-text-muted);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 32px;
  font-weight: 400;
}

.m-hero-fineprint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--m-text-muted);
}

.m-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--m-border);
  flex-wrap: wrap;
}
.m-stat-n {
  font-family: var(--m-font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--m-navy);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 6px;
}
.m-stat-unit { font-size: 22px; color: var(--m-text-muted); margin-left: 2px; letter-spacing: -0.02em; }
.m-stat-l { font-size: 13px; color: var(--m-text-muted); font-weight: 500; }

/* Decorative chevron / accent rectangle in hero */
.m-hero-accent {
  position: absolute;
  top: 20%;
  right: -160px;
  width: 480px;
  height: 480px;
  background: var(--m-orange);
  opacity: 0.04;
  transform: rotate(15deg);
  border-radius: 80px;
  pointer-events: none;
}

/* ============================================================ SIGNUP FORM */
.m-signup {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0;
}
.m-signup-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid var(--m-border-strong);
  border-radius: var(--m-radius);
  background: white;
  font-family: inherit;
  font-size: 16px;
  color: var(--m-text);
  transition: border-color 0.15s;
}
.m-signup-input:focus {
  outline: none;
  border-color: var(--m-orange);
  box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.15);
}
@media (max-width: 540px) {
  .m-signup { flex-direction: column; }
}

/* ============================================================ SECTION SHELL */
.m-section { padding: 88px 0; }
@media (max-width: 700px) { .m-section { padding: 56px 0; } }
.m-section-eyebrow {
  font-family: var(--m-font-body);
  font-size: 12px;
  color: var(--m-orange);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.m-section-title {
  font-family: var(--m-font-display);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.04;
  margin: 0 0 24px;
  max-width: 820px;
}
.m-section-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--m-text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ============================================================ METHODOLOGY */
.m-methodology { background: var(--m-navy); color: var(--m-cream); }
.m-methodology .m-section-eyebrow { color: var(--m-orange); }
.m-methodology .m-section-title { color: var(--m-cream); }
.m-methodology .m-section-title em { color: var(--m-orange); }
.m-methodology .m-section-lede { color: rgba(250, 247, 241, 0.75); }
.m-methodology strong { color: white; }

.m-methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0 56px;
}
.m-method-step {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--m-radius-lg);
}
.m-method-num {
  font-family: var(--m-font-serif);
  font-size: 64px;
  color: var(--m-orange);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.m-method-step h3 {
  font-size: 20px;
  color: var(--m-cream);
  margin-bottom: 12px;
}
.m-method-step p {
  color: rgba(250, 247, 241, 0.72);
  margin: 0;
}

.m-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 87, 51, 0.10);
  border: 1px solid rgba(255, 87, 51, 0.30);
  border-radius: var(--m-radius-lg);
  padding: 24px;
  margin-top: 32px;
}
.m-callout-icon { font-size: 32px; flex-shrink: 0; }
.m-callout-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
  color: white;
}
.m-callout-body { color: rgba(250, 247, 241, 0.85); margin: 0; }

/* ============================================================ BENEFITS GRID */
.m-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.m-feature {
  padding: 28px;
  background: white;
  border-radius: var(--m-radius-lg);
  border: 1px solid var(--m-border);
  transition: border-color 0.2s, transform 0.2s;
}
.m-feature:hover {
  border-color: var(--m-border-strong);
  transform: translateY(-2px);
}
.m-feature-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--m-orange-100);
  color: var(--m-orange);
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 16px;
}
.m-feature h3 { font-size: 18px; margin-bottom: 10px; }
.m-feature p { color: var(--m-text-muted); margin: 0; font-size: 15px; line-height: 1.55; }

/* ============================================================ SPLIT (speed) */
.m-split { background: white; }
.m-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .m-split-inner { grid-template-columns: 1fr; gap: 40px; }
}
.m-split-text p { font-size: 17px; color: var(--m-text-muted); line-height: 1.6; }
.m-split-text strong { color: var(--m-text); }

.m-race {
  background: var(--m-cream);
  padding: 28px;
  border-radius: var(--m-radius-lg);
}
.m-race-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.m-race-row:last-child { margin-bottom: 0; }
.m-race-label {
  width: 150px;
  font-size: 13px;
  font-weight: 500;
  color: var(--m-text-muted);
  flex-shrink: 0;
}
.m-race-bar {
  flex: 1;
  height: 36px;
  background: var(--m-cream-200);
  border-radius: 6px;
  position: relative;
}
.m-race-fill {
  height: 100%;
  background: var(--m-navy-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  min-width: 60px;
}
.m-race-fill-you { background: var(--m-orange); }
.m-race-you .m-race-label { color: var(--m-orange-700); font-weight: 700; }
.m-race-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--m-text-muted);
}

/* ============================================================ PRICING TEASER */
.m-pricing-teaser {
  text-align: center;
  background: var(--m-cream-200);
}
.m-pricing-teaser .m-section-title { margin: 0 auto 24px; max-width: 100%; }
.m-pricing-teaser .m-section-lede { margin: 0 auto 32px; }

/* ============================================================ FINAL CTA */
.m-final-cta {
  background: var(--m-navy);
  color: var(--m-cream);
  text-align: center;
}
.m-final-cta .m-section-title { color: var(--m-cream); margin: 0 auto 16px; max-width: 100%; }
.m-final-cta .m-section-title em { color: var(--m-orange); }
.m-final-cta p {
  color: rgba(250, 247, 241, 0.75);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.m-final-cta-inner { max-width: 720px; margin: 0 auto; }
.m-final-cta-inner .m-signup { margin: 0 auto; }

/* ============================================================ TOUR */
.m-tour-section { background: white; }
.m-tour-section-alt { background: var(--m-cream); }
.m-tour-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.m-tour-row-flip > .m-tour-text { order: 2; }
.m-tour-row-flip > .m-tour-visual { order: 1; }
@media (max-width: 900px) {
  .m-tour-row { grid-template-columns: 1fr; gap: 32px; }
  .m-tour-row-flip > .m-tour-text,
  .m-tour-row-flip > .m-tour-visual { order: initial; }
}
.m-tour-num {
  font-size: 13px;
  color: var(--m-orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.m-tour-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.m-tour-text p { color: var(--m-text-muted); font-size: 16px; line-height: 1.6; }
.m-tour-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.m-tour-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--m-text);
}
.m-tour-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--m-orange);
  font-weight: 600;
}

/* Mock UIs (stylized, not actual screenshots) */
.m-mock {
  background: white;
  border-radius: var(--m-radius-lg);
  border: 1px solid var(--m-border);
  box-shadow: var(--m-shadow);
  padding: 20px;
  font-size: 14px;
}
.m-mock-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.m-mock-row-input span:first-child { color: var(--m-text-muted); font-size: 13px; }
.m-mock-input {
  background: var(--m-cream);
  border: 1px solid var(--m-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 500;
}
.m-mock-input small { color: var(--m-text-muted); margin-left: 2px; font-weight: 400; }
.m-mock-pill {
  background: var(--m-navy);
  color: var(--m-cream);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.m-mock-pill-success { background: #1A5532; }
.m-mock-divider { height: 1px; background: var(--m-border); margin: 12px 0; }
.m-mock-row-result span:first-child { font-size: 13px; color: var(--m-text-muted); }
.m-mock-price { font-weight: 600; font-variant-numeric: tabular-nums; }
.m-mock-row-total { padding-top: 12px; border-top: 1px solid var(--m-border); margin-top: 8px; }
.m-mock-price-big { font-size: 22px; color: var(--m-orange); }

.m-mock-cat-header,
.m-mock-cat-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 10px 12px;
  gap: 12px;
}
.m-mock-cat-header {
  color: var(--m-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 1px solid var(--m-border);
}
.m-mock-cat-row { font-size: 14px; border-bottom: 1px solid var(--m-border); }
.m-mock-cat-row:last-child { border-bottom: none; }
.m-mock-cat-row span:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.m-mock-cat-row-active {
  background: var(--m-orange-100);
  border-radius: 6px;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  color: var(--m-orange-700);
}

.m-mock-quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--m-border);
  margin-bottom: 8px;
}
.m-mock-quote-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--m-border);
  font-size: 14px;
  gap: 12px;
}
.m-mock-quote-line:last-of-type { border-bottom: none; }
.m-mock-quote-line span:first-child { color: var(--m-text-muted); }
.m-mock-quote-line span:last-child { font-variant-numeric: tabular-nums; }
.m-mock-quote-line-total {
  padding-top: 14px;
  border-top: 2px solid var(--m-navy);
  margin-top: 6px;
  font-size: 16px;
}
.m-mock-quote-line-total strong:last-child { color: var(--m-orange); }

.m-mock-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.m-mock-stat-row:last-child { margin-bottom: 0; }
.m-mock-stat {
  background: var(--m-cream);
  padding: 16px;
  border-radius: 8px;
}
.m-mock-stat-n { font-family: var(--m-font-display); font-size: 30px; font-weight: 700; color: var(--m-navy); letter-spacing: -0.035em; }
.m-mock-stat-n small { font-size: 16px; color: var(--m-text-muted); margin-left: 2px; letter-spacing: -0.02em; }
.m-mock-stat-l { font-size: 12px; color: var(--m-text-muted); margin-top: 4px; }

/* ============================================================ PRICING */
.m-billing-toggle {
  display: inline-flex;
  background: var(--m-cream-200);
  border-radius: 99px;
  padding: 4px;
  gap: 4px;
  margin-top: 16px;
}
.m-bt-btn {
  background: none;
  border: none;
  padding: 10px 22px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--m-text-muted);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.m-bt-btn:hover { color: var(--m-text); }
.m-bt-btn.is-active {
  background: white;
  color: var(--m-navy);
  box-shadow: var(--m-shadow-sm);
}
.m-bt-save {
  background: var(--m-orange-100);
  color: var(--m-orange-700);
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}

.m-pricing-grid-section { padding-top: 32px; }
.m-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
}
.m-plan {
  position: relative;
  background: white;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.m-plan.is-highlight {
  border: 2px solid var(--m-orange);
  box-shadow: var(--m-shadow-lg);
}
.m-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--m-orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.m-plan-name { font-family: var(--m-font-display); font-size: 24px; margin-bottom: 6px; letter-spacing: -0.035em; font-weight: 700; }
.m-plan-tagline { color: var(--m-text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 24px; min-height: 42px; }
.m-plan-price { margin-bottom: 24px; }
.m-plan-price-amt {
  font-family: var(--m-font-display);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--m-navy);
}
.m-plan-currency { font-size: 30px; vertical-align: top; margin-right: 2px; font-weight: 600; color: var(--m-text-muted); letter-spacing: -0.02em; }
.m-plan-price-unit { font-size: 13px; color: var(--m-text-muted); margin-top: 6px; }
.m-plan-price-billed { font-size: 12px; color: var(--m-text-muted); margin-top: 2px; }

.m-plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.m-plan-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.m-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--m-orange);
  font-weight: 700;
}

/* Compare table */
.m-compare-wrap { overflow-x: auto; margin-top: 40px; }
.m-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: white;
  border-radius: var(--m-radius-lg);
  overflow: hidden;
  border: 1px solid var(--m-border);
}
.m-compare th, .m-compare td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--m-border);
  font-size: 14px;
}
.m-compare thead th {
  background: var(--m-navy);
  color: var(--m-cream);
  font-weight: 600;
  font-size: 14px;
}
.m-compare thead th.is-highlight { background: var(--m-orange); }
.m-compare th:first-child,
.m-compare td:first-child { text-align: left; color: var(--m-text-muted); }
.m-compare-section {
  background: var(--m-cream-200) !important;
  font-weight: 700 !important;
  color: var(--m-navy) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left !important;
}
.m-compare tbody tr:hover td:not(.m-compare-section) { background: var(--m-cream); }

/* FAQ */
.m-faq { background: var(--m-cream-200); }
.m-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.m-faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--m-navy); }
.m-faq-item p { color: var(--m-text-muted); font-size: 15px; line-height: 1.55; margin: 0; }

/* ============================================================ FOOTER */
.m-footer {
  background: var(--m-navy);
  color: rgba(250, 247, 241, 0.6);
  padding: 64px 0 24px;
  margin-top: 0;
}
.m-footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 700px) {
  .m-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.m-footer-tagline {
  margin-top: 12px;
  color: rgba(250, 247, 241, 0.5);
  font-size: 14px;
  max-width: 280px;
}
.m-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.m-footer-col h4 {
  color: var(--m-cream);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.m-footer-col a {
  display: block;
  color: rgba(250, 247, 241, 0.65);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.m-footer-col a:hover { color: var(--m-orange); text-decoration: none; }
.m-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 241, 0.08);
  font-size: 12px;
  color: rgba(250, 247, 241, 0.45);
}
@media (max-width: 600px) {
  .m-footer-bottom { flex-direction: column; gap: 8px; }
}
