/* =============================================================
   SendEveryone — App Stylesheet
   Nav/Footer: Dark Navy | Main: Light + Navy Blue Accent
   Font: Roboto + Roboto Condensed | Icons: Font Awesome 6
   ============================================================= */

:root {
  /* Navy blue palette */
  --navy:         #1a3a8f;
  --navy-dark:    #0f2060;
  --navy-deeper:  #091540;
  --navy-light:   #2c52b8;
  --navy-pale:    #eef2ff;
  --navy-ghost:   #f5f7ff;

  /* Nav / Footer dark */
  --nav-bg:       #0a1020;
  --nav-border:   rgba(26,58,143,.25);
  --nav-text:     #c8d4f0;
  --nav-hover:    #6b8de8;
  --nav-muted:    #5a6a90;

  --footer-bg:    #060c18;
  --footer-section:#0a1020;

  /* Main light */
  --bg-main:      #ffffff;
  --bg-section:   #f5f7ff;
  --bg-alt:       #eef2ff;

  /* Text */
  --text-primary:   #1a2744;
  --text-secondary: #3a4d7a;
  --text-muted:     #6b7a99;
  --text-light:     #a0aec0;

  /* UI */
  --border:       #d4ddf0;
  --border-focus: #1a3a8f;
  --shadow:       0 2px 16px rgba(26,58,143,.10);
  --shadow-md:    0 4px 24px rgba(26,58,143,.14);
  --shadow-lg:    0 8px 40px rgba(26,58,143,.18);

  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    18px;
  --transition:   .2s ease;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ────────────────────────────────────────────────────── */
.se-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.se-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.se-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.se-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-deeper));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(26,58,143,.4);
}
.se-logo-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--nav-text);
  letter-spacing: -.01em;
}
.se-logo-accent { color: #6b8de8; }

/* Nav links */
.se-nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
  margin-left: 1.5rem;
  flex: 1;
}
@media (min-width: 768px) {
  .se-nav-links { display: flex; }
}
.se-nav-link {
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--nav-text);
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.se-nav-link:hover { color: #6b8de8; background: rgba(26,58,143,.15); }
.se-nav-right { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.se-nav-link-desk { display: none; }
/* Hide Get Started button on mobile — it's in the mobile menu */
.se-nav-right .se-btn-primary { display: none; }
@media (min-width: 768px) {
  .se-nav-link-desk { display: inline-flex; }
  .se-nav-right .se-btn-primary { display: inline-flex; }
}

/* Primary button */
.se-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-darker, var(--navy-dark)));
  color: #fff !important;
  font-weight: 600;
  font-size: .875rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: .6rem 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(26,58,143,.35);
  text-decoration: none;
}
.se-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,58,143,.5); }
.se-btn-primary:active { transform: translateY(0); }
.se-btn-sm { padding: .45rem 1rem; font-size: .825rem; }
.se-btn-lg { padding: .85rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.se-btn-full { width: 100%; }

.se-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: transparent;
  color: var(--navy) !important;
  font-weight: 600; font-size: .875rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  cursor: pointer; padding: .55rem 1.2rem;
  transition: all var(--transition);
  text-decoration: none;
}
.se-btn-outline:hover { background: var(--navy); color: #fff !important; }

.se-btn-danger {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff !important; font-weight: 600; font-size: .875rem;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: .6rem 1.25rem; transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(239,68,68,.3); text-decoration: none;
}
.se-btn-danger:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(239,68,68,.45); }

/* Hamburger */
.se-hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--nav-border);
  border-radius: var(--radius-sm);
  color: var(--nav-text);
  cursor: pointer; font-size: 1rem;
  transition: background var(--transition);
}
.se-hamburger:hover { background: rgba(26,58,143,.2); }
@media (min-width: 768px) { .se-hamburger { display: none; } }

/* Mobile nav */
.se-mobile-nav {
  display: none;
  flex-direction: column;
  background: #080e1c;
  border-top: 1px solid var(--nav-border);
  padding: .5rem;
}
.se-mobile-nav.open { display: flex; }
.se-mob-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .85rem; border-radius: var(--radius-sm);
  color: var(--nav-text); font-size: .875rem; font-weight: 500;
  transition: background var(--transition);
}
.se-mob-link:hover { background: rgba(26,58,143,.2); color: #6b8de8; }
.se-mob-link-accent { color: #6b8de8 !important; }
.se-mob-divider { height: 1px; background: var(--nav-border); margin: .4rem .85rem; }

/* ── FLASH ──────────────────────────────────────────────────── */
.se-flash {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.25rem; font-size: .875rem; font-weight: 500;
  position: relative;
}
.se-flash-success { background: #ecfdf5; color: #065f46; border-bottom: 2px solid #10b981; }
.se-flash-error   { background: #fef2f2; color: #991b1b; border-bottom: 2px solid #ef4444; }
.se-flash-close {
  margin-left: auto; background: none; border: none;
  cursor: pointer; font-size: 1rem; color: inherit; opacity: .6;
}

/* ── MAIN ───────────────────────────────────────────────────── */
.se-main { flex: 1; }
.se-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.se-page-wrap { padding: 2.5rem 1.5rem; max-width: 1100px; margin: 0 auto; }

/* ── HERO / HOME ────────────────────────────────────────────── */
.se-hero {
  background: linear-gradient(160deg, var(--navy-ghost) 0%, #e8eeff 60%, #dde5ff 100%);
  padding: 3.5rem 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
}
.se-hero-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.se-hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800; font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: .75rem; line-height: 1.15;
}
.se-hero-title i { margin-right: .4rem; }
.se-hero-sub { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.65; }

/* Upload box */
.se-upload-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.se-drop-zone {
  padding: 3rem 2rem;
  border: 3px dashed #c4d0ef;
  border-radius: var(--radius-lg);
  margin: 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  cursor: pointer; transition: all var(--transition);
  background: var(--navy-ghost);
}
.se-drop-zone.drag-over { border-color: var(--navy); background: #e0e8ff; }
.se-drop-icon { font-size: 3rem; color: var(--navy); opacity: .6; }
.se-drop-title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); }
.se-drop-sub   { font-size: .875rem; color: var(--text-muted); margin-top: -.25rem; }
.se-file-input { display: none; }

.se-upload-opts { padding: 1.25rem 1.5rem 1.5rem; }
.se-selected-file {
  display: flex; align-items: center; gap: .75rem;
  background: var(--navy-ghost); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .75rem 1rem; margin-bottom: 1.25rem;
}
.se-file-icon { font-size: 1.5rem; color: var(--navy); flex-shrink: 0; }
.se-selected-info { flex: 1; min-width: 0; }
.se-selected-name { display: block; font-weight: 600; font-size: .9rem; color: var(--text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.se-selected-size { display: block; font-size: .8rem; color: var(--text-muted); }
.se-clear-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1rem; padding: .25rem; }
.se-clear-btn:hover { color: #ef4444; }

.se-opts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (max-width: 580px) { .se-opts-row { grid-template-columns: 1fr; } }
.se-opt-group {}
.se-opt-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .5rem; }
.se-opt-badge { background: var(--navy-pale); color: var(--navy); font-size: .72rem; padding: .1rem .45rem; border-radius: 20px; font-weight: 500; margin-left: .3rem; }

.se-ttl-btns { display: flex; gap: .4rem; }
.se-ttl-btn {
  flex: 1; padding: .45rem .5rem; border-radius: var(--radius-sm);
  border: 2px solid var(--border); background: #fff;
  font-size: .82rem; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition);
}
.se-ttl-btn:hover, .se-ttl-btn.active { border-color: var(--navy); background: var(--navy); color: #fff; }

.se-pass-wrap { position: relative; }
.se-pass-toggle {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: .9rem;
}
.se-pass-toggle:hover { color: var(--navy); }

.se-guest-note {
  background: #fff8e6; border: 1px solid #fcd34d;
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  font-size: .85rem; color: #78350f; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.se-guest-note a { color: var(--navy); text-decoration: underline; font-weight: 600; }

.se-btn-upload { width: 100%; padding: .9rem; font-size: 1rem; border-radius: var(--radius-sm); }

/* Progress */
.se-progress-wrap { padding: 1.5rem; }
.se-progress-info { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .85rem; font-weight: 600; color: var(--text-secondary); }
.se-progress-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.se-progress-fill { height: 100%; background: linear-gradient(90deg, var(--navy-light), var(--navy)); border-radius: 4px; width: 0%; transition: width .3s ease; }

/* Result */
.se-result { padding: 2rem; text-align: center; }
.se-result-icon { font-size: 3rem; color: #10b981; margin-bottom: 1rem; }
.se-result-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: .3rem; }
.se-result-sub { color: var(--text-muted); font-size: .875rem; margin-bottom: 1.25rem; }
.se-link-box { display: flex; gap: .5rem; margin-bottom: 1rem; }
.se-link-input {
  flex: 1; padding: .65rem 1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--border); font-size: .875rem; color: var(--text-primary);
  background: var(--bg-section); font-family: monospace;
}
.se-copy-btn {
  padding: .65rem .9rem; border-radius: var(--radius-sm);
  background: var(--navy); border: none; color: #fff;
  cursor: pointer; font-size: 1rem; transition: all var(--transition);
}
.se-copy-btn:hover { background: var(--navy-light); }
.se-result-actions { display: flex; gap: .75rem; justify-content: center; }

/* Features */
.se-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
@media (max-width: 700px) { .se-features { grid-template-columns: repeat(2, 1fr); } }
.se-feature {
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center;
  display: flex; flex-direction: column; gap: .35rem;
}
.se-feature i { font-size: 1.5rem; color: var(--navy); }
.se-feature strong { font-size: .9rem; color: var(--text-primary); }
.se-feature span { font-size: .78rem; color: var(--text-muted); }

/* Types section */
.se-types-section { padding: 3rem 1.5rem; background: #fff; border-top: 1px solid var(--border); }
.se-section-title {
  text-align: center; font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700; font-size: 1.5rem; color: var(--text-primary); margin-bottom: 1.5rem;
}
.se-types-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .se-types-grid { grid-template-columns: repeat(2,1fr); } }
.se-type-card {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  background: var(--navy-ghost); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center;
  transition: all var(--transition);
}
.se-type-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.se-type-card i { font-size: 1.75rem; }
.se-type-card span { font-weight: 600; font-size: .875rem; color: var(--text-primary); }
.se-type-card small { font-size: .75rem; color: var(--text-muted); }

/* ── INPUT / FORMS ──────────────────────────────────────────── */
.se-input {
  width: 100%; padding: .65rem 1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--border); font-size: .9rem; color: var(--text-primary);
  background: #fff; font-family: 'Roboto', sans-serif;
  transition: border-color var(--transition);
  outline: none;
}
.se-input:focus { border-color: var(--navy); }
.se-textarea { resize: vertical; min-height: 80px; }
.se-input-icon-wrap { position: relative; }
.se-input-icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .85rem; }
.se-input-with-icon { padding-left: 2.5rem; }

/* ── FILE VIEW ──────────────────────────────────────────────── */
.se-file-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 2.5rem 2rem;
  max-width: 560px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.se-file-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-deeper));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(26,58,143,.3);
}
.se-file-icon-wrap i { font-size: 2rem; color: #fff; }
.se-file-name { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); word-break: break-all; }
.se-file-meta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.se-file-meta span { display: flex; align-items: center; gap: .35rem; font-size: .82rem; color: var(--text-muted); background: var(--bg-section); padding: .3rem .7rem; border-radius: 20px; }
.se-share-section { width: 100%; }
.se-share-label { font-size: .82rem; font-weight: 600; color: var(--text-secondary); text-align: left; margin-bottom: .4rem; }
.se-file-notice {
  background: var(--navy-ghost); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .75rem 1rem; font-size: .8rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: .5rem; width: 100%; text-align: left;
}
.se-notice-warn { background: #fff8e6; border-color: #fcd34d; color: #78350f; }

/* Pass / Lock card */
.se-pass-card { gap: 1rem; }
.se-lock-icon {
  width: 70px; height: 70px; background: linear-gradient(135deg, #1a3a8f, #0f2060);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(26,58,143,.3);
}
.se-lock-icon i { font-size: 1.75rem; color: #fff; }
.se-pass-info { color: var(--text-secondary); font-size: .9rem; line-height: 1.6; }
.se-pass-form { width: 100%; }
.se-btn-full { width: 100%; }

/* Censored card */
.se-censored-card { gap: 1rem; }
.se-censor-icon {
  width: 70px; height: 70px; background: linear-gradient(135deg, #ef4444, #b91c1c);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(239,68,68,.3);
}
.se-censor-icon i { font-size: 1.75rem; color: #fff; }
.se-censor-reason { color: var(--text-secondary); font-size: .9rem; }

/* ── DASHBOARD ──────────────────────────────────────────────── */
.se-dash-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.se-dash-title {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  font-size: 1.6rem; color: var(--text-primary);
  display: flex; align-items: center; gap: .5rem;
}
.se-dash-sub { color: var(--text-muted); font-size: .875rem; margin-top: .25rem; }

.se-empty-state {
  text-align: center; padding: 4rem 1.5rem;
  background: var(--bg-section); border: 2px dashed var(--border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.se-empty-state i { font-size: 3rem; color: var(--text-light); }
.se-empty-state h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.se-empty-state p { color: var(--text-muted); font-size: .9rem; }

/* ── TABLE ──────────────────────────────────────────────────── */
.se-files-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.se-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.se-table thead { background: var(--bg-section); }
.se-table th {
  padding: .75rem 1rem; text-align: left; font-weight: 600;
  color: var(--text-secondary); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 2px solid var(--border);
}
.se-table td { padding: .75rem 1rem; border-bottom: 1px solid #f0f4ff; vertical-align: middle; }
.se-table tbody tr:hover { background: var(--navy-ghost); }
.se-table tbody tr:last-child td { border-bottom: none; }
.se-row-expired { opacity: .55; }
.se-row-censored { background: #fff5f5 !important; }
.se-row-flagged  { background: #fffbf0 !important; }

.se-table-file { display: flex; align-items: center; gap: .5rem; }
.se-table-icon { color: var(--navy); font-size: 1rem; flex-shrink: 0; }
.se-table-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
.se-td-muted { color: var(--text-muted); }
.se-td-center { text-align: center; }

.se-table-link { display: flex; align-items: center; gap: .3rem; }
.se-mini-link {
  width: 150px; padding: .3rem .5rem; border-radius: 6px;
  border: 1px solid var(--border); font-size: .75rem;
  color: var(--text-secondary); background: var(--bg-section); font-family: monospace;
}
.se-mini-copy {
  padding: .3rem .5rem; border-radius: 6px; background: var(--navy);
  border: none; color: #fff; cursor: pointer; font-size: .75rem; transition: all var(--transition);
}
.se-mini-copy:hover { background: var(--navy-light); }

/* Badges */
.se-badge {
  display: inline-flex; align-items: center; padding: .2rem .6rem;
  border-radius: 20px; font-size: .72rem; font-weight: 600;
}
.se-badge-active   { background: #ecfdf5; color: #065f46; }
.se-badge-expired  { background: #f3f4f6; color: #6b7280; }
.se-badge-censored { background: #fef2f2; color: #b91c1c; }
.se-badge-warn     { background: #fffbeb; color: #92400e; }
.se-badge-navy     { background: var(--navy-pale); color: var(--navy); }

/* Icon buttons */
.se-icon-btn {
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: all var(--transition);
}
.se-icon-btn:hover { background: var(--navy-pale); border-color: var(--navy); }
.se-icon-btn-danger { color: #ef4444; }
.se-icon-btn-danger:hover { background: #fef2f2; border-color: #ef4444; }

/* ── ADMIN STATS ────────────────────────────────────────────── */
.se-admin-stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin: 1.5rem 0; }
@media (max-width: 900px) { .se-admin-stats { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 550px) { .se-admin-stats { grid-template-columns: repeat(2,1fr); } }
.se-stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.se-stat-card i { font-size: 1.5rem; color: var(--navy); }
.se-stat-num { font-size: 1.75rem; font-weight: 700; color: var(--text-primary); }
.se-stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.se-stat-green i { color: #10b981; }
.se-stat-red   i { color: #ef4444; }
.se-stat-gray  i { color: #9ca3af; }
.se-stat-navy  i { color: var(--navy); }

.se-admin-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* ── SETTINGS ───────────────────────────────────────────────── */
.se-settings-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; max-width: 600px; box-shadow: var(--shadow);
}
.se-settings-group { margin-bottom: 1.25rem; }
.se-settings-group .se-opt-label { display: block; margin-bottom: .5rem; }

/* ── AUTH ───────────────────────────────────────────────────── */
.se-auth-body { background: linear-gradient(160deg, #eef2ff 0%, #dde5ff 100%); }
.se-auth-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 2rem 1rem;
}
.se-auth-brand { margin-bottom: 1.5rem; }
.se-auth-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 2.25rem; width: 100%; max-width: 420px;
}
.se-auth-title {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700; font-size: 1.4rem;
  color: var(--text-primary); margin-bottom: .35rem;
  display: flex; align-items: center; gap: .5rem;
}
.se-auth-sub { color: var(--text-muted); font-size: .875rem; margin-bottom: 1.5rem; line-height: 1.5; }
.se-form-group { margin-bottom: 1rem; }
.se-form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .4rem; }
.se-form-note { font-size: .78rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.se-form-note a { color: var(--navy); text-decoration: underline; }
.se-auth-switch { text-align: center; margin-top: 1.25rem; font-size: .875rem; color: var(--text-muted); }
.se-auth-switch a { color: var(--navy); font-weight: 600; }

/* ── STATIC PAGES ───────────────────────────────────────────── */
.se-static-page h1 {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700; font-size: 1.75rem;
  color: var(--text-primary); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}
.se-static-page h2 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin: 1.5rem 0 .5rem; }
.se-static-page p  { color: var(--text-secondary); line-height: 1.7; margin-bottom: .75rem; font-size: .95rem; }
.se-static-page ul { color: var(--text-secondary); line-height: 1.7; padding-left: 1.5rem; margin-bottom: .75rem; font-size: .95rem; }
.se-static-page a  { color: var(--navy); text-decoration: underline; }

/* Contact cards */
.se-contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }
@media (max-width: 600px) { .se-contact-options { grid-template-columns: 1fr; } }
.se-contact-card {
  background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: .6rem;
}
.se-contact-card i { font-size: 1.75rem; color: var(--navy); }
.se-contact-card h3 { font-weight: 700; color: var(--text-primary); }
.se-contact-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.5; }

/* ── MODAL ──────────────────────────────────────────────────── */
.se-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.se-modal {
  background: #fff; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.3);
  width: 100%; max-width: 480px; overflow: hidden;
}
.se-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: var(--bg-section); border-bottom: 1px solid var(--border);
}
.se-modal-header h3 { font-weight: 700; font-size: 1rem; color: var(--text-primary); display: flex; align-items: center; gap: .5rem; }
.se-modal-close { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--text-muted); }
.se-modal-close:hover { color: #ef4444; }
.se-modal-body { padding: 1.5rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.se-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(26,58,143,.2);
  margin-top: auto;
}
.se-footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2rem;
}
@media (max-width: 768px) { .se-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .se-footer-inner { grid-template-columns: 1fr; } }
.se-footer-brand {}
.se-logo-footer .se-logo-text { color: #c8d4f0; }
.se-footer-tagline { color: #5a6a90; font-size: .875rem; line-height: 1.6; margin-top: .75rem; }
.se-footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.se-social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,58,143,.2); border: 1px solid rgba(26,58,143,.3);
  display: flex; align-items: center; justify-content: center;
  color: #5a6a90; font-size: .8rem; transition: all var(--transition);
}
.se-social-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.se-footer-col {}
.se-footer-heading {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #3a5090; margin-bottom: .75rem;
}
.se-footer-link {
  display: block; color: #5a6a90; font-size: .83rem;
  padding: .2rem 0; transition: color var(--transition);
}
.se-footer-link:hover { color: #6b8de8; }
.se-footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(26,58,143,.15);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  font-size: .8rem; color: #3a5090;
}
.se-footer-bottom-links { display: flex; gap: 1.25rem; }
.se-footer-bottom-links a { color: #3a5090; transition: color var(--transition); }
.se-footer-bottom-links a:hover { color: #6b8de8; }

/* ── UTILS ──────────────────────────────────────────────────── */
.se-link-subtle { color: var(--text-muted); font-size: .85rem; display: inline-flex; align-items: center; gap: .35rem; transition: color var(--transition); }
.se-link-subtle:hover { color: var(--navy); }

@media (max-width: 768px) {
  .se-hero-title { font-size: 1.7rem; }
  .se-page-wrap { padding: 1.5rem 1rem; }
  .se-table th, .se-table td { padding: .6rem .75rem; font-size: .8rem; }
  .se-dash-header { flex-direction: column; }
}
