/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 15px; color: #1a1a1a; background: #f8f9fb; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --brand: #1D9E75;
  --brand-dark: #0F6E56;
  --brand-light: #E1F5EE;
  --accent: #534AB7;
  --accent-light: #EEEDFE;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f8f9fb;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER ===== */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; background: var(--brand); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 14px; }
.logo-text { font-size: 17px; color: var(--text); }
.logo-text strong { color: var(--brand); }
.main-nav { display: flex; gap: 4px; }
.main-nav a { padding: 6px 12px; border-radius: 7px; font-size: 14px; color: var(--text-muted); transition: all 0.15s; }
.main-nav a:hover, .main-nav a.active { background: var(--brand-light); color: var(--brand-dark); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.user-greeting { font-size: 13px; color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all 0.15s; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #3C3489; }
.btn-mpesa { background: #00b300; color: #fff; font-size: 15px; padding: 13px 20px; }
.btn-mpesa:hover { background: #009900; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, #0F6E56 0%, #1D9E75 50%, #534AB7 100%); padding: 5rem 1.5rem; text-align: center; color: #fff; }
.hero h1 { font-size: 2.5rem; font-weight: 600; line-height: 1.25; margin-bottom: 1rem; }
.hero p { font-size: 1.05rem; opacity: 0.92; max-width: 580px; margin: 0 auto 2rem; }
.hero-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.pill { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 5px 14px; border-radius: 20px; font-size: 13px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn { padding: 13px 30px; font-size: 15px; }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===== SECTION ===== */
.section { padding: 4rem 0; }
.section-label { font-size: 12px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.section-title { font-size: 1.6rem; font-weight: 600; margin-bottom: 0.5rem; }
.section-sub { color: var(--text-muted); margin-bottom: 2.5rem; }

/* ===== TOOL CARDS ===== */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; cursor: pointer; transition: all 0.2s; }
.tool-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tool-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.icon-green { background: var(--brand-light); }
.icon-purple { background: var(--accent-light); }
.icon-amber { background: #FAEEDA; }
.tool-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.tool-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.tool-card-footer { display: flex; align-items: center; justify-content: space-between; }
.price-tag { background: var(--brand-light); color: var(--brand-dark); padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }

/* ===== FORM WORKSPACE ===== */
.workspace { background: var(--white); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; margin: 2rem 0; }
.workspace-header { display: flex; align-items: center; gap: 12px; padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.workspace-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.workspace-title { font-size: 16px; font-weight: 600; }
.workspace-badge { margin-left: auto; background: var(--brand-light); color: var(--brand-dark); padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.workspace-body { padding: 2rem 1.75rem; }

/* ===== STEPS ===== */
.steps-bar { display: flex; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.step-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.step-item.done .step-num { background: var(--brand); color: #fff; }
.step-item.active .step-num { background: var(--accent); color: #fff; }
.step-item.todo .step-num { background: #f3f4f6; color: var(--text-muted); border: 1px solid var(--border); }
.step-item.done span, .step-item.active span { font-weight: 500; }
.step-item.todo span { color: var(--text-muted); }
.step-connector { flex: 1; height: 1px; background: var(--border); min-width: 20px; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.form-label .required { color: var(--brand); }
.form-control { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; background: var(--white); color: var(--text); transition: border-color 0.15s; }
.form-control:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(29,158,117,0.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
select.form-control { cursor: pointer; }

/* ===== RADIO CARDS ===== */
.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 18px; cursor: pointer; font-size: 14px; transition: all 0.15s; user-select: none; }
.radio-card:hover { border-color: var(--brand); background: var(--brand-light); }
.radio-card.selected { border-color: var(--brand); background: var(--brand-light); color: var(--brand-dark); font-weight: 500; }
.radio-card input { display: none; }

/* ===== UPLOAD ZONE ===== */
.upload-zone { border: 2px dashed var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; cursor: pointer; transition: all 0.2s; background: #fafafa; position: relative; }
.upload-zone:hover { border-color: var(--brand); background: var(--brand-light); }
.upload-zone.dragover { border-color: var(--brand); background: var(--brand-light); transform: scale(1.02); }
.upload-zone.uploaded { border-color: var(--brand); background: var(--brand-light); }
.upload-icon { font-size: 32px; margin-bottom: 8px; }
.upload-text { font-size: 14px; color: var(--text-muted); }
.upload-text strong { color: var(--text); }
.upload-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.upload-zone input[type=file] { position: absolute; opacity: 0; width: 100%; height: 100%; top: 0; left: 0; cursor: pointer; }
.file-info { margin-top: 12px; padding: 8px 12px; background: var(--brand-light); border-radius: 8px; font-size: 12px; color: var(--brand-dark); display: none; }
.file-info.show { display: block; }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border); margin: 1.75rem 0; }

/* ===== INFO BOX ===== */
.info-box { background: var(--brand-light); border: 1px solid rgba(29,158,117,0.25); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; color: var(--brand-dark); margin-bottom: 1.25rem; line-height: 1.6; }

/* ===== GENERATE BUTTON ===== */
.generate-btn { width: 100%; padding: 15px; background: var(--brand); color: #fff; border: none; border-radius: var(--radius); font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.15s; }
.generate-btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(29,158,117,0.3); }
.generate-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== SUMMARY CARD ===== */
.summary-card { background: linear-gradient(135deg, #f8f9ff, #ffffff); border-radius: 16px; padding: 1.5rem; margin: 1.5rem 0; border: 1px solid rgba(29,158,117,0.2); }
.summary-card h4 { margin: 0 0 1rem 0; display: flex; align-items: center; gap: 0.5rem; }
.summary-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.summary-stat { text-align: center; }
.summary-stat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.summary-stat-value { font-size: 28px; font-weight: 700; color: var(--brand); }

/* ===== LOADING OVERLAY ===== */
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); z-index: 9999; display: none; align-items: center; justify-content: center; }
.loading-content { text-align: center; color: white; }
.loading-spinner { width: 60px; height: 60px; border: 4px solid rgba(255, 255, 255, 0.2); border-top-color: var(--brand); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
.loading-text { font-size: 18px; margin-bottom: 8px; }
.loading-subtext { font-size: 14px; color: rgba(255, 255, 255, 0.7); }

/* ===== PREVIEW / DOWNLOAD ===== */
.preview-section { background: #f8f9fb; border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; margin-top: 2rem; }
.preview-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 10px; }
.preview-title { font-size: 15px; font-weight: 600; }
.dl-group { display: flex; gap: 8px; }
.stats-row { display: flex; gap: 12px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 1rem; flex: 1; min-width: 80px; text-align: center; }
.stat-val { font-size: 22px; font-weight: 600; color: var(--brand); }
.stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text-muted); font-weight: 500; }
.data-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border: none; }
.tag { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.tag-core { background: var(--brand-light); color: var(--brand-dark); }
.tag-basic { background: var(--accent-light); color: #3C3489; }
.tag-common { background: #FAEEDA; color: #633806; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; z-index: 999; padding: 1rem; }
.modal-box { background: var(--white); border-radius: 16px; padding: 2rem; max-width: 420px; width: 100%; animation: modalSlideIn 0.3s ease; }
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.9) translateY(-20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header { text-align: center; margin-bottom: 1.5rem; }
.mpesa-badge { background: #00b300; color: #fff; font-size: 20px; font-weight: 700; padding: 8px 20px; border-radius: 8px; display: inline-block; margin-bottom: 1rem; letter-spacing: 1px; }
.modal-header h3 { font-size: 18px; margin-bottom: 4px; }
.modal-header p { font-size: 13px; color: var(--text-muted); }
.amount-box { background: var(--brand-light); border-radius: var(--radius); padding: 1rem; text-align: center; margin-bottom: 1.25rem; }
.amount-label { font-size: 12px; color: var(--brand-dark); margin-bottom: 4px; }
.amount-value { font-size: 32px; font-weight: 700; color: var(--brand-dark); }
.amount-desc { font-size: 12px; color: var(--brand-dark); margin-top: 4px; opacity: 0.8; }
.phone-input-wrap { display: flex; gap: 8px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.5rem; background: var(--white); }
.phone-prefix { background: #f3f4f6; border-radius: var(--radius); padding: 6px 10px; font-size: 14px; color: var(--text-muted); white-space: nowrap; }
.phone-input-wrap input { flex: 1; border: none; padding: 8px 0; outline: none; font-size: 14px; }
.modal-cancel { text-align: center; font-size: 13px; color: var(--text-muted); cursor: pointer; margin-top: 12px; }
.modal-cancel:hover { color: var(--text); }
.modal-center { text-align: center; padding: 1rem 0; }
.spinner { width: 44px; height: 44px; border: 3px solid var(--brand-light); border-top-color: var(--brand); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.success-check { width: 60px; height: 60px; background: var(--brand-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 26px; color: var(--brand); }
.error-icon { width: 60px; height: 60px; background: #FCEBEB; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 26px; color: #A32D2D; }

/* ===== AUTH PAGES ===== */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; max-width: 440px; width: 100%; }
.auth-card h2 { font-size: 22px; margin-bottom: 0.25rem; }
.auth-card .sub { color: var(--text-muted); font-size: 14px; margin-bottom: 2rem; }
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 13px; margin-bottom: 1rem; }
.alert-error { background: #FCEBEB; color: #A32D2D; border: 1px solid #F7C1C1; }
.alert-success { background: var(--brand-light); color: var(--brand-dark); border: 1px solid rgba(29,158,117,0.3); }

/* ========== PROFESSIONAL FOOTER STYLES ========== */
.site-footer {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 50%, #0f0c29 100%);
  color: #ffffff;
  position: relative;
  margin-top: 4rem;
}

/* Wave SVG decoration */
.footer-waves {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.footer-waves svg {
  width: 100%;
  height: 80px;
}

/* Main Footer */
.footer-main {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.footer-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.footer-logo .logo-text strong {
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Social Icons - PERFECTLY CENTERED */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1;
}

.social-icon i {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.social-icon:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Footer Columns */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.footer-col h4 i {
  color: #a78bfa;
  font-size: 1rem;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact-list li i {
  font-size: 1.1rem;
  color: #a78bfa;
  margin-top: 0.2rem;
  width: 20px;
}

.footer-contact-list li div {
  flex: 1;
}

.footer-contact-list li span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact-list li a,
.footer-contact-list li p {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: #a78bfa;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.copyright i {
  margin-right: 0.25rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(5px);
}

.badge i {
  font-size: 0.7rem;
  color: #a78bfa;
}

.footer-legal {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #a78bfa;
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* ===== DASHBOARD ===== */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 2rem; }
.dash-stat { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.dash-stat .val { font-size: 28px; font-weight: 700; color: var(--brand); }
.dash-stat .lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero h1 { font-size: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .steps-bar { flex-wrap: wrap; gap: 8px; }
  .step-connector { display: none; }
  .preview-header { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .footer-badges { justify-content: center; }
  .footer-legal { justify-content: center; }
  .footer-waves { top: -50px; }
  .footer-waves svg { height: 50px; }
  .summary-stats { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .footer-main { padding: 3rem 0 2rem; }
  .footer-badges { gap: 0.5rem; }
  .badge { font-size: 0.7rem; padding: 0.25rem 0.6rem; }
  .social-icon { width: 36px; height: 36px; font-size: 1rem; }
  .workspace-header { flex-direction: column; text-align: center; }
  .workspace-badge { margin-left: 0; }
  .radio-group { flex-direction: column; }
  .radio-card { text-align: center; }
}