:root {
  --bg: #0c0f14;
  --bg-alt: #141820;
  --fg: #e8e6e1;
  --fg-muted: #9b978f;
  --accent: #d4a04a;
  --accent-glow: rgba(212, 160, 74, 0.15);
  --green: #6bcb77;
  --red: #ee6c6c;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 160, 74, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.problem-header {
  margin-bottom: 56px;
}

.problem-header .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: rgba(212, 160, 74, 0.25);
}

.problem-card .icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.how-header {
  margin-bottom: 64px;
}

.how-header .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 560px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% - 24px);
  right: calc(33.33% - 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(212, 160, 74, 0.2));
}

.step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- PACKAGES ---- */
.packages {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.packages-header {
  margin-bottom: 56px;
}

.packages-header .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.packages-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 560px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.package-card .tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.package-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.package-card .price-note {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.package-card ul {
  list-style: none;
  margin-top: auto;
}

.package-card ul li {
  color: var(--fg-muted);
  font-size: 0.95rem;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-left: 20px;
  position: relative;
}

.package-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 640px;
  margin: 0 auto 24px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

footer .brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid,
  .steps,
  .package-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps::before {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .problem, .how, .packages {
    padding: 60px 0;
  }

  .closing {
    padding: 80px 0 60px;
  }
}

/* ===================================================
   NAVIGATION
   =================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  background: var(--accent);
  color: #0c0f14;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.88; }

/* ===================================================
   BUTTONS (shared)
   =================================================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0c0f14;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: opacity 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 10px;
  transition: color 0.15s;
}

.btn-ghost:hover { color: var(--fg); }

.btn-secondary {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(212,160,74,0.3);
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===================================================
   HERO ACTIONS (landing + showcase CTA)
   =================================================== */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.closing-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===================================================
   SHOWCASE PAGE
   =================================================== */
.showcase-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.showcase-content {
  padding: 60px 0;
}

.tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.tab-btn:hover { color: var(--fg); border-color: rgba(212,160,74,0.3); }

.tab-btn.active {
  background: rgba(212,160,74,0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.sop-intro { margin-bottom: 40px; }

.sop-intro h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sop-intro-text {
  color: var(--fg-muted);
  max-width: 600px;
}

.sop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.sop-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.sop-card:hover { border-color: rgba(212,160,74,0.2); }

.sop-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sop-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,160,74,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.sop-badge {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: monospace;
}

.sop-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.sop-owner {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.sop-steps { display: flex; flex-direction: column; gap: 10px; }

.sop-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.step-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}

.sop-note {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(212,160,74,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.showcase-cta {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.showcase-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.showcase-cta p {
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ===================================================
   QUOTE FORM PAGE
   =================================================== */
.form-hero {
  padding: 60px 0 80px;
  min-height: calc(100vh - 60px);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.form-intro {
  padding-top: 20px;
  position: sticky;
  top: 100px;
}

.form-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.trust-check {
  color: var(--green);
  font-weight: 700;
}

.form-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 36px;
}

.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group 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='%239b978f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(155,151,143,0.5); }

.req { color: var(--accent); }
.optional { color: var(--fg-muted); font-weight: 400; }

.form-error {
  background: rgba(238,108,108,0.1);
  border: 1px solid rgba(238,108,108,0.3);
  color: var(--red);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #0c0f14;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 8px;
}

.btn-submit:hover { opacity: 0.88; }

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* Success state */
.success-state {
  max-width: 480px;
  margin: 80px auto;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(107,203,119,0.15);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 auto 28px;
}

.success-state h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.success-state .lede {
  color: var(--fg-muted);
  margin-bottom: 32px;
}

/* ===================================================
   ADMIN PAGES
   =================================================== */
.admin-body {
  background: #080b0f;
}

.admin-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.admin-brand span { color: var(--accent); }

.admin-header-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}

.admin-header-link:hover { color: var(--fg); }

.admin-main {
  padding: 36px 32px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.admin-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.admin-empty {
  color: var(--fg-muted);
  padding: 40px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--bg-alt);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.admin-row:last-child td { border-bottom: none; }
.admin-row:hover td { background: rgba(255,255,255,0.02); }

.admin-id { color: var(--fg-muted); font-size: 0.8rem; font-family: monospace; }

.admin-contact-name { font-weight: 600; margin-bottom: 2px; }
.admin-contact-email { font-size: 0.8rem; color: var(--fg-muted); }

.admin-biz-name { font-weight: 500; margin-bottom: 2px; }
.admin-biz-type { font-size: 0.8rem; color: var(--fg-muted); text-transform: capitalize; }

.admin-date { color: var(--fg-muted); font-size: 0.85rem; white-space: nowrap; }

.admin-view-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.admin-view-link:hover { opacity: 0.8; }

/* Status badges */
.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.status-badge.status-new { background: rgba(212,160,74,0.15); color: var(--accent); }
.status-badge.status-contacted { background: rgba(107,203,119,0.12); color: var(--green); }
.status-badge.status-proposal_sent { background: rgba(100,150,255,0.12); color: #7eb3ff; }
.status-badge.status-converted { background: rgba(107,203,119,0.2); color: var(--green); }
.status-badge.status-closed { background: rgba(255,255,255,0.06); color: var(--fg-muted); }

/* Admin detail */
.admin-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.admin-detail-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.admin-detail-section { display: flex; flex-direction: column; }

.admin-detail-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
}

.detail-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 80px;
  flex-shrink: 0;
}

.detail-val { color: var(--fg); font-size: 0.92rem; }
.detail-link { color: var(--accent); text-decoration: none; font-size: 0.92rem; }
.detail-link:hover { text-decoration: underline; }

.detail-pain {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Admin login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080b0f;
}

.admin-login-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 48px 40px;
  width: 360px;
}

.admin-login-card .admin-brand {
  font-size: 1.2rem;
  margin-bottom: 32px;
  display: block;
}

/* ===================================================
   RESPONSIVE — NEW PAGES
   =================================================== */
@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-intro { position: static; }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-main { padding: 24px 16px; }
  .admin-header { padding: 14px 16px; }

  .nav-links .nav-link { display: none; }

  .sop-grid { grid-template-columns: 1fr; }
}
