/* HOTEL GESTOR — Marketing (landing + auth) */
:root {
  --m-navy: #071525;
  --m-navy2: #0c2238;
  --m-blue: #1565a8;
  --m-blue2: #1e88e5;
  --m-teal: #0d9488;
  --m-teal2: #14b8a6;
  --m-gold: #d4a017;
  --m-gold2: #f0c14b;
  --m-ink: #0f172a;
  --m-soft: #64748b;
  --m-border: #e2e8f0;
  --m-radius: 1rem;
  --m-shadow: 0 20px 50px rgba(7, 21, 37, 0.12);
  --m-font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body.m-body {
  margin: 0;
  font-family: var(--m-font);
  color: var(--m-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.m-gradient-text {
  background: linear-gradient(105deg, #fff 0%, var(--m-gold2) 55%, var(--m-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m-teal);
  margin: 0 0 0.5rem;
}

/* Buttons */
.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 0.75rem;
  padding: 0.9rem 1.55rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  font-size: 0.95rem;
  line-height: 1.2;
}

.m-btn:hover { transform: translateY(-2px); }

.m-btn-block { width: 100%; }

.m-btn-gold {
  background: linear-gradient(135deg, var(--m-gold), var(--m-gold2));
  color: #3a2a05;
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.35);
}

.m-btn-gold:hover { box-shadow: 0 16px 36px rgba(212, 160, 23, 0.45); color: #3a2a05; }

.m-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.m-btn-ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

.m-btn-brand {
  background: linear-gradient(135deg, var(--m-blue), var(--m-teal));
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.3);
}

.m-btn-brand:hover { box-shadow: 0 16px 36px rgba(13, 148, 136, 0.4); color: #fff; }

/* Logo */
.m-logo {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--m-blue), var(--m-teal));
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
  flex-shrink: 0;
}

.m-logo-sm { width: 36px; height: 36px; font-size: 1rem; }

.m-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.m-brand-text { letter-spacing: 0.06em; }

.m-brand-accent { color: var(--m-gold2); }

.m-brand-dark { color: var(--m-navy); }

.m-brand-dark .m-brand-accent { color: var(--m-teal); }

/* Navbar */
.m-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  transition: background 0.3s, box-shadow 0.3s;
}

.m-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(7, 21, 37, 0.08);
  backdrop-filter: blur(12px);
}

.m-nav.scrolled .m-brand { color: var(--m-navy); }

.m-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 0.65rem;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.m-nav.scrolled .m-nav-toggle {
  background: #f1f5f9;
  border-color: var(--m-border);
  color: var(--m-navy);
}

.m-navlinks {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.m-navlinks a:not(.m-btn) {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.m-nav.scrolled .m-navlinks a:not(.m-btn) { color: #475569; }

.m-navlinks a:not(.m-btn):hover { color: #fff; }

.m-nav.scrolled .m-navlinks a:not(.m-btn):hover { color: var(--m-blue); }

.m-navlinks .m-btn { padding: 0.65rem 1.2rem; font-size: 0.88rem; }

/* Hero */
.m-hero {
  position: relative;
  min-height: 100vh;
  padding: 6.5rem clamp(1rem, 4vw, 2rem) 3rem;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(30, 136, 229, 0.25) 0%, transparent 60%),
    radial-gradient(700px 420px at 90% 30%, rgba(13, 148, 136, 0.22) 0%, transparent 55%),
    linear-gradient(165deg, var(--m-navy) 0%, var(--m-navy2) 50%, #0a3040 100%);
}

.m-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.m-hero-copy { text-align: left; }

.m-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.m-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.2rem;
  letter-spacing: -0.03em;
}

.m-hero p.lead {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.m-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.m-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 500;
}

.m-trust i { color: var(--m-teal2); margin-right: 0.35rem; }

/* Hero dashboard mock */
.m-hero-visual { display: flex; justify-content: center; }

.m-dashboard-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 1.25rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

.m-dash-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.m-dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.m-dash-title {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.06em;
}

.m-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.m-dash-kpi {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.65rem;
  padding: 0.65rem;
  text-align: center;
}

.m-dash-kpi small {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.m-dash-kpi strong {
  font-size: 1rem;
  color: #fff;
}

.m-dash-kpi.gold strong { color: var(--m-gold2); }

.m-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 100px;
  padding: 0.5rem 0;
}

.m-dash-bars div {
  flex: 1;
  border-radius: 0.35rem 0.35rem 0 0;
  background: linear-gradient(180deg, var(--m-teal2), var(--m-blue));
  opacity: 0.85;
}

.m-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.m-stat { text-align: center; min-width: 100px; }

.m-stat .n {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.m-stat .n span {
  background: linear-gradient(120deg, var(--m-gold2), var(--m-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-stat .l {
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Sections */
.m-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 1.5rem);
  max-width: 1140px;
  margin: 0 auto;
}

.m-section h2 {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 800;
  color: var(--m-navy);
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}

.m-section .sub {
  text-align: center;
  color: var(--m-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.m-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.m-feature {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  padding: 1.65rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.m-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--m-shadow);
  border-color: #bfdbfe;
}

.m-feature .ic {
  width: 52px;
  height: 52px;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--m-blue), var(--m-teal));
}

.m-feature.gold .ic {
  background: linear-gradient(135deg, var(--m-gold), var(--m-gold2));
  color: #3a2a05;
}

.m-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--m-navy);
}

.m-feature p {
  color: var(--m-soft);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

/* Pricing */
.m-pricing {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.m-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.m-price {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: 1.15rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.m-price:hover {
  transform: translateY(-5px);
  box-shadow: var(--m-shadow);
}

.m-price.feat {
  border: 2px solid var(--m-teal);
  box-shadow: 0 20px 48px rgba(13, 148, 136, 0.15);
}

.m-price .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--m-gold), var(--m-gold2));
  color: #3a2a05;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.m-price h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--m-navy);
  margin: 0.2rem 0 0.5rem;
}

.m-price .amt {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--m-blue);
  line-height: 1;
}

.m-price .amt small {
  font-size: 0.88rem;
  color: var(--m-soft);
  font-weight: 600;
}

.m-price ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  text-align: left;
  flex: 1;
}

.m-price li {
  padding: 0.4rem 0;
  color: #334155;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.m-price li i { color: var(--m-teal); flex-shrink: 0; }

.m-price li .bi-dash-circle { color: #cbd5e1; }

/* CTA + Footer */
.m-cta-band {
  background: linear-gradient(135deg, var(--m-navy), #0a3040 70%, #0d4a4a);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}

.m-cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #fff;
}

.m-cta-band p {
  color: #94a3b8;
  max-width: 480px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.m-foot {
  background: #050d18;
  color: #64748b;
  padding: 2.5rem 1.5rem 2rem;
}

.m-foot-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.m-foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.m-foot-tag {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: #64748b;
}

.m-foot-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.m-foot-links a {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.m-foot-links a:hover { color: var(--m-teal2); }

.m-foot-dot { color: #334155; }

.m-foot-credit {
  font-size: 0.82rem;
  color: #475569;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.m-foot-credit a {
  color: var(--m-gold2);
  font-weight: 700;
  transition: color 0.2s;
}

.m-foot-credit a:hover { color: #fff; }

.m-foot-credit-inline {
  border-top: none;
  padding-top: 0.5rem;
  text-align: center;
}

/* Auth (login / registro) */
.m-auth {
  min-height: 100vh;
  display: flex;
}

.m-auth-left {
  flex: 1;
  position: relative;
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(600px 380px at 20% 15%, rgba(13, 148, 136, 0.28) 0%, transparent 55%),
    radial-gradient(500px 320px at 85% 85%, rgba(212, 160, 23, 0.15) 0%, transparent 55%),
    linear-gradient(165deg, var(--m-navy), var(--m-navy2) 60%, #0a3040);
}

.m-auth-back {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.2s;
}

.m-auth-back:hover { color: #fff; }

.m-auth-left .a-logo {
  width: 72px;
  height: 72px;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--m-blue), var(--m-teal));
  box-shadow: 0 14px 34px rgba(13, 148, 136, 0.45);
  margin-bottom: 1rem;
}

.m-auth-left h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.06em;
}

.m-auth-left .tagline {
  color: var(--m-gold2);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  text-transform: uppercase;
  margin: 0.35rem 0 2rem;
}

.m-feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 380px;
}

.m-feat-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.m-feat-list .fi {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--m-teal2);
}

.m-feat-list .ft { font-weight: 700; font-size: 0.95rem; }

.m-feat-list .fd { color: #94a3b8; font-size: 0.82rem; margin-top: 0.1rem; }

.m-auth-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.m-auth-stats .s {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  min-width: 88px;
  text-align: center;
}

.m-auth-stats .s .n {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--m-gold2);
  line-height: 1;
}

.m-auth-stats .s .l {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 0.2rem;
}

.m-auth-right {
  width: 46%;
  max-width: 520px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem);
  overflow-y: auto;
}

.m-auth-right-wide {
  max-width: 680px;
  width: 54%;
}

.m-auth-mobile-head {
  display: none;
  margin-bottom: 1.5rem;
}

.m-auth-right h1 {
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--m-navy);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.m-auth-right .hint {
  color: var(--m-soft);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.m-field { margin-bottom: 1rem; }

.m-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.35rem;
}

.m-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--m-border);
  border-radius: 0.7rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafbfc;
}

.m-input-group:focus-within {
  border-color: var(--m-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
  background: #fff;
}

.m-input-group .ig-ic {
  padding: 0 0.85rem;
  color: #94a3b8;
}

.m-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.78rem 0.5rem 0.78rem 0;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  min-width: 0;
}

.m-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.m-alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border-left: 4px solid #ef4444;
}

.m-auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--m-soft);
}

.m-auth-switch a {
  color: var(--m-blue);
  font-weight: 700;
}

/* Registro */
.reg-sec {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-teal);
  margin: 1.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.reg-sec:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.reg-plans {
  display: grid;
  gap: 0.75rem;
}

.reg-plans-1 { grid-template-columns: 1fr; }
.reg-plans-2 { grid-template-columns: 1fr 1fr; }
.reg-plans-3 { grid-template-columns: repeat(3, 1fr); }

.reg-plan {
  cursor: pointer;
  border: 2px solid var(--m-border);
  border-radius: 0.85rem;
  padding: 1rem 0.75rem;
  transition: all 0.2s ease;
  text-align: center;
  background: #fafbfc;
}

.reg-plan:hover {
  border-color: #99f6e4;
  background: #fff;
}

.reg-plan.sel {
  border-color: var(--m-teal);
  background: #f0fdfa;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.reg-plan input { display: none; }

.reg-plan .pn {
  font-weight: 800;
  color: var(--m-navy);
  font-size: 0.95rem;
}

.reg-plan .pp {
  color: var(--m-blue);
  font-weight: 800;
  margin: 0.25rem 0;
  font-size: 1.05rem;
}

.reg-plan .pp small {
  color: var(--m-soft);
  font-weight: 600;
  font-size: 0.75rem;
}

.reg-plan .pm {
  font-size: 0.72rem;
  color: var(--m-soft);
}

.m-reg-submit { margin-top: 1.5rem; }

/* Login extras */
.m-demo {
  border: 1px solid var(--m-border);
  border-radius: 0.85rem;
  padding: 0.85rem;
  margin-top: 0.4rem;
  background: #f8fafc;
}

.m-demo .dh {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--m-blue);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.m-demo .drow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.55rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.m-demo .drow:hover { background: #eef2ff; }

.m-demo .drow .em { font-size: 0.85rem; color: #334155; }

.m-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 600;
  margin: 1.25rem 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.m-divider::before,
.m-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--m-border);
}

.m-saas-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 2rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--m-gold2);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(240, 193, 75, 0.3);
  width: fit-content;
}

/* Responsive */
@media (max-width: 991px) {
  .m-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .m-hero-copy { text-align: center; }

  .m-hero p.lead { margin-left: auto; margin-right: auto; }

  .m-hero-cta,
  .m-trust { justify-content: center; }

  .m-hero-visual { order: -1; }

  .m-dashboard-card { max-width: 340px; }

  .m-auth-left { display: none; }

  .m-auth-right,
  .m-auth-right-wide {
    width: 100%;
    max-width: none;
  }

  .m-auth-mobile-head { display: block; }

  .m-nav-toggle { display: inline-flex; }

  .m-navlinks {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
  }

  .m-navlinks.open { right: 0; }

  .m-navlinks a:not(.m-btn) {
    color: var(--m-navy) !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--m-border);
    font-size: 1rem;
  }

  .m-navlinks .m-btn { margin-top: 1rem; width: 100%; }

  .reg-plans-3 { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .m-nav { padding: 0.85rem 1rem; }

  .m-stats { gap: 1.25rem; }

  .m-stat { min-width: 42%; }

  .reg-grid { grid-template-columns: 1fr; }

  .reg-plans-2 { grid-template-columns: 1fr; }

  .m-feature-grid { grid-template-columns: 1fr; }

  .m-price-grid { grid-template-columns: 1fr; }
}
