/* ===== VARIABLES ===== */
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #222222;
  --border: #2a2a2a;
  --border-light: #333333;

  --green: #3d7a5a;
  --green-mid: #40916c;
  --green-light: #52b788;
  --green-bright: #74c69d;
  --green-glow: rgba(82, 183, 136, 0.12);
  --green-glow-strong: rgba(82, 183, 136, 0.25);

  --text: #f0f0f0;
  --text-muted: #888888;
  --text-dim: #555555;

  --red: #e05c5c;
  --orange: #e09a3a;
  --yellow: #d4b84a;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.2s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-green: 0 0 40px rgba(82, 183, 136, 0.15);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-muted); }

/* ===== UTILITIES ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-glow); border: 1px solid rgba(82,183,136,0.3);
  color: var(--green-bright); padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.tag {
  display: inline-block; background: var(--surface-3); border: 1px solid var(--border);
  color: var(--text-muted); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem;
}
.glow-text { color: var(--green-light); }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--green-light); color: #0a0a0a;
  box-shadow: 0 0 24px rgba(82,183,136,0.3);
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 0 36px rgba(82,183,136,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--green-light); color: var(--green-light);
  background: var(--green-glow);
}
.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--text); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== CARD ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.card-green-hover:hover {
  border-color: rgba(82,183,136,0.3);
  box-shadow: var(--shadow-green);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1100px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--green-light); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 35%, rgba(10,10,10,0.15) 70%, rgba(10,10,10,0.25) 100%),
    radial-gradient(ellipse 50% 50% at 65% 45%, rgba(61,122,90,0.18) 0%, transparent 70%),
    url('../makyedie-woman-wide.png') center / cover no-repeat,
    var(--bg);
}
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px; pointer-events: none;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge { margin-bottom: 24px; }
.hero-title { margin-bottom: 20px; }
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 480px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.6rem; font-weight: 800;
  color: var(--green-light);
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-dim); margin-top: 2px; }

/* ===== PHONE MOCKUP ===== */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-frame {
  width: 260px;
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: 36px;
  padding: 20px 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(82,183,136,0.1);
  position: relative;
}
.phone-notch {
  width: 80px; height: 10px; background: var(--surface-3);
  border-radius: 10px; margin: 0 auto 20px;
}
.phone-screen { display: flex; flex-direction: column; gap: 12px; }
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.phone-greeting { font-size: 0.7rem; color: var(--text-muted); }
.phone-name { font-size: 0.9rem; font-weight: 700; }
.phone-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-mid); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}
.points-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 16px; padding: 16px;
  color: #fff;
}
.points-label { font-size: 0.65rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.08em; }
.points-value { font-size: 2rem; font-weight: 800; line-height: 1; margin: 4px 0; }
.points-store { font-size: 0.65rem; opacity: 0.7; }
.phone-tier {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2); border-radius: 10px; padding: 10px 12px;
}
.tier-icon { font-size: 1rem; }
.tier-text { font-size: 0.7rem; font-weight: 600; }
.tier-sub { font-size: 0.6rem; color: var(--text-dim); }
.phone-txn { display: flex; flex-direction: column; gap: 6px; }
.txn-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.68rem;
}
.txn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light); margin-right: 6px; flex-shrink: 0;
}
.txn-name { color: var(--text-muted); display: flex; align-items: center; }
.txn-pts { color: var(--green-light); font-weight: 700; }

/* Glow orb behind phone */
.phone-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(82,183,136,0.3);
  box-shadow: 0 8px 32px rgba(82,183,136,0.1);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--green-glow); border: 1px solid rgba(82,183,136,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; line-height: 1.65; }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-label { margin-bottom: 20px; }
.split-section h2 { margin-bottom: 16px; }
.split-section p { margin-bottom: 28px; font-size: 1rem; }
.split-list { display: flex; flex-direction: column; gap: 14px; }
.split-list-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.split-list-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-glow); border: 1px solid rgba(82,183,136,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--green-light); flex-shrink: 0; margin-top: 2px;
}
.split-list-text { font-size: 0.92rem; color: var(--text-muted); }

/* Visual Panel */
.visual-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow);
}
.visual-panel-title {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 20px;
}
.mini-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px;
}
.mini-stat {
  background: var(--surface-2); border-radius: var(--radius);
  padding: 14px; border: 1px solid var(--border);
}
.mini-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--green-light); }
.mini-stat-lbl { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }
.mini-bar-row { margin-bottom: 12px; }
.mini-bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px;
}
.mini-bar-track {
  height: 6px; background: var(--surface-3); border-radius: 6px; overflow: hidden;
}
.mini-bar-fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}
.qr-panel {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface-2); border-radius: var(--radius);
  padding: 16px; border: 1px solid var(--border); margin-top: 16px;
}
.qr-box {
  width: 52px; height: 52px; border-radius: 8px;
  background: var(--surface-3); border: 1px solid var(--border-light);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; padding: 6px;
  flex-shrink: 0;
}
.qr-dot {
  border-radius: 1px;
  background: var(--green-mid);
}
.qr-dot.off { background: transparent; }
.qr-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.qr-text strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 1px; background: linear-gradient(90deg, var(--green-mid), var(--green-light), var(--green-mid));
  opacity: 0.4;
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-glow); border: 1px solid rgba(82,183,136,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--green-light);
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(82,183,136,0.2);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; }

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center; transition: all var(--transition);
  cursor: default;
}
.category-card:hover {
  border-color: rgba(82,183,136,0.3);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.category-icon { font-size: 2rem; margin-bottom: 12px; }
.category-name { font-size: 0.88rem; font-weight: 600; }

/* ===== BUSINESS INQUIRY FORM ===== */
.form-panel { padding: 28px; }
.form-intro {
  font-size: 0.92rem; color: var(--text-muted);
  margin: -4px 0 20px;
}
.biz-form { display: flex; flex-direction: column; gap: 14px; }
.biz-field { display: flex; flex-direction: column; gap: 6px; }
.biz-field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.biz-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.biz-req { color: var(--green-light); }
.biz-field input,
.biz-field select,
.biz-field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
}
.biz-field textarea { resize: vertical; min-height: 92px; }
.biz-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2374c69d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.biz-field input:focus,
.biz-field select:focus,
.biz-field textarea:focus {
  outline: none;
  border-color: var(--green-light);
  background: var(--surface-3);
}
.biz-field input:invalid:not(:placeholder-shown),
.biz-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(224,92,92,0.4);
}
.biz-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  padding: 2px 0;
}
.biz-check input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  margin: 1px 0 0;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  background: var(--surface-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}
.biz-check input[type="checkbox"]:checked {
  background: var(--green-light);
  border-color: var(--green-light);
}
.biz-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.biz-check a { color: var(--green-light); text-decoration: underline; }
.biz-submit {
  margin-top: 8px;
  justify-content: center;
}
.biz-submit:disabled {
  opacity: 0.6; cursor: not-allowed;
}
.biz-status {
  font-size: 0.88rem;
  padding: 0;
  margin-top: 4px;
  text-align: center;
  min-height: 0;
  transition: all 0.2s ease;
}
.biz-status.success,
.biz-status.error {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.biz-status.success {
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.3);
  color: var(--green-light);
}
.biz-status.error {
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.3);
  color: var(--red);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
}
.cta-box {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(61,122,90,0.15) 100%);
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: var(--radius-xl); padding: 72px 40px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-logo img { width: 32px; height: 32px; border-radius: 7px; }
.footer-logo-name { font-weight: 700; font-size: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-links h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-dim);
}
.footer-bottom span { color: var(--green-light); }

/* ===== LOGIN PAGE ===== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(61,122,90,0.15) 0%, transparent 65%),
    var(--bg);
}
.auth-card {
  width: 100%; max-width: 420px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 44px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { width: 60px; height: 60px; border-radius: 14px; margin: 0 auto 12px; }
.auth-logo h2 { font-size: 1.3rem; margin-bottom: 4px; }
.auth-logo p { font-size: 0.85rem; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.form-input {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 16px;
  color: var(--text); font-size: 0.95rem; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus {
  outline: none; border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}
.form-input::placeholder { color: var(--text-dim); }
.auth-error {
  background: rgba(224,92,92,0.1); border: 1px solid rgba(224,92,92,0.3);
  color: #e08080; border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 0.85rem; display: none;
}
.auth-error.show { display: block; }
.auth-submit { margin-top: 8px; width: 100%; }
.auth-back { display: block; text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); }
.auth-back:hover { color: var(--green-light); }
.auth-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(10,10,10,0.3); border-top-color: #0a0a0a;
  animation: spin 0.7s linear infinite; display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== DASHBOARD ===== */
.dash-layout {
  display: flex; min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 20px 0;
  margin-bottom: 32px;
}
.sidebar-logo img { width: 32px; height: 32px; border-radius: 8px; }
.sidebar-logo-text { font-size: 0.95rem; font-weight: 700; }
.sidebar-logo-text span { color: var(--green-light); }
.sidebar-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); padding: 0 16px; margin-bottom: 6px;
}
.sidebar-nav { flex: 1; padding: 0 10px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--text-muted);
  transition: all var(--transition); cursor: pointer;
}
.sidebar-item:hover { color: var(--text); background: var(--surface-2); }
.sidebar-item.active {
  color: var(--green-light); background: var(--green-glow);
  border: 1px solid rgba(82,183,136,0.2);
}
.sidebar-item .nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-badge {
  margin-left: auto; background: var(--orange);
  color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
}
.sidebar-footer {
  padding: 16px 10px;
  border-top: 1px solid var(--border);
}
.sidebar-user {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  margin-bottom: 6px;
}
.sidebar-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.sidebar-user-info { flex: 1; min-width: 0; }
.sidebar-user-name { font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-role { font-size: 0.68rem; color: var(--green-light); }

/* Main content */
.dash-main {
  flex: 1; margin-left: 240px;
  background: var(--bg); min-height: 100vh;
}
.dash-header {
  padding: 24px 32px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px); z-index: 10;
}
.dash-title { font-size: 1.2rem; font-weight: 700; }
.dash-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.dash-content { padding: 32px; }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
}
.stat-card-icon {
  font-size: 1.3rem; margin-bottom: 12px;
}
.stat-card-val { font-size: 1.8rem; font-weight: 800; color: var(--text); }
.stat-card-lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.stat-card-sub { font-size: 0.72rem; color: var(--text-dim); margin-top: 8px; }
.stat-card-sub.green { color: var(--green-light); }
.stat-card-sub.orange { color: var(--orange); }

/* Tables */
.dash-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: 24px; overflow: hidden;
}
.dash-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.dash-section-title { font-size: 0.95rem; font-weight: 600; }
.dash-section-count {
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--surface-2); padding: 3px 10px;
  border-radius: 100px; border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-dim);
  padding: 12px 24px; background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--surface-2); }
tbody td { padding: 14px 24px; font-size: 0.875rem; vertical-align: middle; }
.td-muted { color: var(--text-muted); }
.td-green { color: var(--green-light); font-weight: 600; }
.td-orange { color: var(--orange); font-weight: 600; }

/* Pills/badges in table */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600;
}
.pill-green { background: rgba(82,183,136,0.12); color: var(--green-light); }
.pill-orange { background: rgba(224,154,58,0.15); color: var(--orange); }
.pill-gray { background: var(--surface-3); color: var(--text-muted); }
.pill-red { background: rgba(224,92,92,0.12); color: var(--red); }

/* Stars */
.stars { color: var(--yellow); font-size: 0.8rem; letter-spacing: 1px; }

/* Flag icon */
.flag-icon { color: var(--orange); font-size: 0.9rem; margin-right: 4px; }

/* Search */
.dash-search {
  display: flex; align-items: center; gap: 8px;
}
.search-input {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px;
  color: var(--text); font-size: 0.85rem; font-family: inherit;
  width: 220px; transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--green-light); }
.search-input::placeholder { color: var(--text-dim); }

/* Empty state */
.empty-state {
  text-align: center; padding: 48px 24px; color: var(--text-muted); font-size: 0.9rem;
}
.empty-state .empty-icon { font-size: 2rem; margin-bottom: 12px; }

/* Loading */
.loading-state {
  text-align: center; padding: 40px 24px; color: var(--text-dim); font-size: 0.88rem;
}
.loading-dots::after {
  content: '...';
  animation: dots 1.5s steps(3, end) infinite;
}
@keyframes dots { 0%,20%{content:'.'} 40%{content:'..'} 60%,100%{content:'...'} }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(16px); transition: transform 0.2s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.modal-wide { max-width: 960px; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 28px 0; gap: 16px;
}
.modal-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.modal-subtitle { font-size: 0.82rem; color: var(--text-muted); }
.modal-close {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; flex-shrink: 0;
  transition: all var(--transition);
}
.modal-close:hover { color: var(--text); border-color: var(--border-light); }
.modal-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 20px; }
.modal-section-title {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 12px;
}
.modal-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* Totals banner */
.totals-banner {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 24px;
}
.totals-cell {
  background: var(--surface); padding: 20px 24px; text-align: center;
}
.totals-val { font-size: 1.6rem; font-weight: 800; }
.totals-lbl { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }
.totals-val.orange { color: var(--orange); }
.totals-val.green { color: var(--green-light); }
.totals-val.dim { color: var(--text-muted); }

/* Region filter */
.region-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.region-pill {
  padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 500;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.region-pill:hover { border-color: var(--border-light); color: var(--text); }
.region-pill.active {
  background: var(--green-glow); border-color: rgba(82,183,136,0.4);
  color: var(--green-light);
}

/* Compliance pill */
.pill-suspended { background: rgba(224,92,92,0.12); color: var(--red); }
.pill-warning { background: rgba(224,154,58,0.15); color: var(--orange); }

/* Business card clickable */
.biz-row { cursor: pointer; }
.biz-row:hover { background: var(--surface-2) !important; }

/* Monthly breakdown */
.monthly-list { display: flex; flex-direction: column; gap: 8px; }
.monthly-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-2); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 0.85rem;
}
.monthly-month { color: var(--text-muted); }
.monthly-amount { color: var(--green-light); font-weight: 700; }
.monthly-count { color: var(--text-dim); font-size: 0.75rem; }
.td-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Franchise dashboard surfaces */
.franchise-billing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.export-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inbox-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.inbox-item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}
.inbox-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.inbox-item-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.inbox-item-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.inbox-item-msg {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Star rating */
.star-row { display: flex; gap: 6px; }
.star-btn {
  font-size: 1.4rem; cursor: pointer; transition: transform 0.1s ease;
  background: none; border: none; padding: 2px; line-height: 1;
  color: var(--text-dim);
}
.star-btn:hover { transform: scale(1.2); }
.star-btn.active { color: var(--yellow); }

/* Form controls in modal */
.modal-input {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  color: var(--text); font-size: 0.9rem; font-family: inherit;
  width: 100%; transition: border-color var(--transition);
}
.modal-input:focus { outline: none; border-color: var(--green-light); }
.modal-input::placeholder { color: var(--text-dim); }
.modal-row { display: flex; gap: 10px; align-items: flex-start; }
.modal-row .modal-input { flex: 1; }

/* Compliance selector */
.compliance-btns { display: flex; gap: 8px; }
.comp-btn {
  flex: 1; padding: 10px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text-muted); transition: all var(--transition);
}
.comp-btn:hover { border-color: var(--border-light); }
.comp-btn.active-sel { background: var(--green-glow); border-color: rgba(82,183,136,0.4); color: var(--green-light); }
.comp-btn.warning-sel { background: rgba(224,154,58,0.1); border-color: rgba(224,154,58,0.4); color: var(--orange); }
.comp-btn.suspended-sel { background: rgba(224,92,92,0.1); border-color: rgba(224,92,92,0.4); color: var(--red); }

/* Code display */
.code-box {
  background: var(--green-glow); border: 1px solid rgba(82,183,136,0.3);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.code-val {
  font-size: 1.6rem; font-weight: 800; letter-spacing: 4px; color: var(--green-light);
  font-family: monospace;
}
.code-copy {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: var(--radius-sm);
  padding: 8px 14px; font-size: 0.8rem; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.code-copy:hover { color: var(--green-light); border-color: rgba(82,183,136,0.4); }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px;
  font-size: 0.88rem; box-shadow: var(--shadow);
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(82,183,136,0.4); color: var(--green-light); }
.toast.error { border-color: rgba(224,92,92,0.4); color: var(--red); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.75) 100%),
      url('../makyedie-woman-wide.png') 60% center / cover no-repeat,
      var(--bg);
  }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
  .sidebar.open { transform: translateX(0); }
  .dash-main { margin-left: 0; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .biz-field-row { grid-template-columns: 1fr; }
  .form-panel { padding: 22px; }
  .stats-row { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .dash-content { padding: 20px; }
  .dash-header { padding: 16px 20px; }
  thead { display: none; }
  tbody tr { display: block; padding: 12px 16px; }
  tbody td { display: block; padding: 4px 0; border: none; }
  tbody td::before { content: attr(data-label); font-size: 0.68rem; color: var(--text-dim); display: block; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .franchise-billing-grid { grid-template-columns: 1fr; }
  .inbox-item-top { flex-direction: column; }
}

/* Announcements feature */
.template-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.template-chip {
  padding: 6px 12px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.template-chip:hover {
  border-color: var(--green-light);
  color: var(--text);
  background: var(--green-glow);
}

.ann-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ann-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.ann-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ann-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-light);
}
.ann-item-date {
  font-size: 0.7rem;
  color: var(--text-dim);
}
.ann-item-msg {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Partner portal */
.auth-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
}

.partner-page {
  background:
    radial-gradient(circle at top right, rgba(82,183,136,0.14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 35%),
    var(--bg);
}

.partner-sidebar .sidebar-nav a {
  text-decoration: none;
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partner-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-banner {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text);
}

.partner-banner.info {
  border-color: rgba(82,183,136,0.3);
  background: rgba(82,183,136,0.08);
  color: var(--green-bright);
}

.partner-banner.success {
  border-color: rgba(82,183,136,0.45);
  background: rgba(82,183,136,0.1);
  color: var(--green-light);
}

.partner-banner.error {
  border-color: rgba(224,92,92,0.45);
  background: rgba(224,92,92,0.1);
  color: #f1aaaa;
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 16px;
}

.partner-hero-card,
.partner-highlight-card {
  background: linear-gradient(135deg, rgba(17,17,17,0.98) 0%, rgba(29,49,40,0.96) 100%);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.partner-hero-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 16px 0 10px;
}

.partner-hero-card p,
.partner-highlight-card p {
  max-width: 620px;
}

.partner-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.partner-highlight-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.partner-highlight-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: 10px;
}

.partner-stats {
  margin-bottom: 0;
}

.partner-form-shell {
  padding: 24px;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-form textarea {
  min-height: 120px;
}

.partner-form input[readonly] {
  color: var(--text);
  cursor: default;
}

.partner-form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.partner-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.partner-request-list,
.partner-payment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 24px;
}

.partner-request-card,
.partner-payment-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.partner-request-header,
.partner-payment-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.partner-request-copy {
  min-width: 0;
}

.partner-request-copy h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.partner-request-copy p {
  font-size: 0.9rem;
}

.partner-status-badge {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.partner-status-pending {
  background: rgba(212,184,74,0.14);
  color: var(--yellow);
}

.partner-status-payment_required {
  background: rgba(224,154,58,0.14);
  color: var(--orange);
}

.partner-status-paid {
  background: rgba(82,183,136,0.14);
  color: var(--green-light);
}

.partner-status-approved {
  background: rgba(82,183,136,0.18);
  color: var(--green-bright);
}

.partner-status-rejected {
  background: rgba(224,92,92,0.14);
  color: var(--red);
}

.partner-request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.partner-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.partner-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.partner-pipeline-step {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  min-width: 0;
}

.partner-pipeline-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.partner-pipeline-step strong {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.partner-pipeline-step.active {
  border-color: rgba(82,183,136,0.35);
  background: rgba(82,183,136,0.08);
}

.partner-pipeline-step.active span {
  background: var(--green-light);
  color: #08120d;
}

.partner-pipeline-step.active strong {
  color: var(--text);
}

.partner-pipeline-step.rejected {
  border-color: rgba(224,92,92,0.35);
  background: rgba(224,92,92,0.08);
}

.partner-pipeline-step.rejected span {
  background: var(--red);
  color: #fff;
}

.partner-request-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.partner-request-side,
.partner-request-actions,
.partner-payment-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-request-actions {
  align-items: flex-end;
}

.partner-inline-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.partner-inline-meta.strong {
  color: var(--green-light);
  font-weight: 600;
}

.partner-note {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.5;
}

.partner-payment-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.partner-logout {
  width: 100%;
}

@media (max-width: 1100px) {
  .partner-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .partner-pipeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .auth-links {
    gap: 10px;
  }

  .partner-form-actions,
  .partner-request-footer,
  .partner-request-header,
  .partner-payment-card {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-request-actions {
    align-items: stretch;
  }

  .partner-pipeline {
    grid-template-columns: 1fr;
  }
}
