/* ==========================================================================
   Murphy Laplante Solutions — Stylesheet
   ========================================================================== */

:root {
  /* Palette */
  --navy-950: #060a13;
  --navy-900: #0b1220;
  --navy-850: #0f172a;
  --navy-800: #131c2e;
  --navy-700: #1b2540;
  --navy-600: #2a3757;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white: #ffffff;

  --accent-400: #7c93ff;
  --accent-500: #4f6bff;
  --accent-600: #3d53e0;
  --accent-glow: rgba(79, 107, 255, 0.35);

  --amber-400: #f5a524;
  --amber-500: #e0940f;

  --success-500: #22c55e;

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Inter', -apple-system, sans-serif;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-850);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-500);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent-500);
  outline-offset: 2px;
}

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

.text-accent { color: var(--accent-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 13px 26px;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-500);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--accent-glow);
}
.btn-secondary {
  background: var(--slate-100);
  color: var(--navy-850);
}
.btn-secondary:hover { background: var(--slate-200); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 18, 32, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { display: inline-flex; color: rgba(255,255,255,0.1); }
.brand-mark-bg { fill: rgba(255,255,255,0.08); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-name-light { font-weight: 600; color: var(--slate-300); }

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: var(--slate-300);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy-900);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.mobile-nav.open { max-height: 420px; padding: 12px 24px 24px; }
.mobile-nav a {
  color: var(--slate-300);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  padding: 168px 0 120px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(79,107,255,0) 68%);
  filter: blur(10px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-400);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--accent-600); }

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-300);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual: lead flow card */
.hero-visual { display: flex; justify-content: center; }
.flow-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.flow-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.flow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success-500);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}
.flow-card-title { color: var(--slate-300); font-size: 0.85rem; font-weight: 600; }

.flow-list { display: flex; flex-direction: column; gap: 10px; }
.flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  opacity: 0;
  animation: flowIn 0.6s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes flowIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.flow-step-icon { font-size: 1.15rem; }
.flow-item div { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.flow-item strong { color: #fff; font-size: 0.9rem; font-weight: 600; }
.flow-item span { color: var(--slate-400); font-size: 0.78rem; }
.flow-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-new { background: rgba(79,107,255,0.18); color: var(--accent-400); }
.badge-progress { background: rgba(245,165,36,0.16); color: var(--amber-400); }
.badge-done { background: rgba(34,197,94,0.16); color: #4ade80; }

/* ---------- Sections (shared) ---------- */
.section { padding: 110px 0; }
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--navy-950); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--navy-900);
  margin-bottom: 18px;
}
.section-head-light h2 { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--slate-600); line-height: 1.65; }
.section-sub-light { color: var(--slate-400); }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.leak-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.leak-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--slate-300);
}
.leak-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(79,107,255,0.08);
  color: var(--accent-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.leak-card h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--navy-900); }
.leak-card p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.55; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent-500), var(--accent-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px var(--accent-glow);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy-900); }
.feature-card p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.6; }

.who-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.who-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy-900); }
.who-card p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.6; }
.who-we-help-inner .section-head { margin-bottom: 48px; }

/* ---------- Process (How It Works) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  counter-reset: step;
}
.process::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16) 15%, rgba(255,255,255,0.16) 85%, transparent);
}
.process-step {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px 18px 22px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.4);
  background: rgba(79,107,255,0.05);
}
.process-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber-400);
  margin-bottom: 14px;
}
.process-step h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--slate-400); font-size: 0.86rem; line-height: 1.55; }

/* ---------- AI + Human split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-copy h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--navy-900); margin-bottom: 20px; }
.split-copy .section-sub { max-width: 520px; }

.approach-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.approach-row {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
}
.approach-row + .approach-row { border-top: 1px solid var(--slate-100); }
.approach-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.approach-icon-tech { background: rgba(79,107,255,0.1); color: var(--accent-600); }
.approach-icon-human { background: rgba(245,165,36,0.14); color: var(--amber-500); }
.approach-row h4 { font-size: 0.95rem; color: var(--navy-900); margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.approach-row ul { display: flex; flex-direction: column; gap: 7px; }
.approach-row li {
  font-size: 0.86rem;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.approach-row li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--slate-400);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  background: var(--navy-900);
  padding: 110px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--accent-glow) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(245,165,36,0.14) 0%, transparent 45%);
  opacity: 0.8;
}
.cta-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); color: #fff; margin-bottom: 18px; }
.cta-inner p { color: var(--slate-300); font-size: 1.08rem; margin-bottom: 34px; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); padding: 72px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name { display: block; margin-bottom: 12px; font-size: 1.1rem; }
.footer-brand p { color: var(--slate-500); font-size: 0.88rem; max-width: 260px; line-height: 1.5; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 4px;
  font-weight: 700;
}
.footer-col a, .footer-static {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover, .footer-static:hover { color: #fff; }
.footer-link-btn {
  background: none;
  border: none;
  color: var(--slate-400);
  font-size: 0.9rem;
  text-align: left;
  padding: 0;
  transition: color 0.2s;
}
.footer-link-btn:hover { color: #fff; }
.footer-bottom { padding-top: 24px; }
.footer-bottom p { color: var(--slate-600); font-size: 0.82rem; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 19, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 40px 36px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 1.3rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--slate-200); }
.modal h3 { font-size: 1.4rem; color: var(--navy-900); margin-bottom: 8px; }
.modal-sub { color: var(--slate-500); font-size: 0.92rem; margin-bottom: 26px; }

#demoForm { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-split { flex-direction: row; gap: 14px; }
.form-row-split > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.84rem; font-weight: 600; color: var(--navy-800); }
.form-row .optional { font-weight: 400; color: var(--slate-400); }
.form-row input, .form-row textarea, .form-row select {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy-900);
  background: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
  appearance: auto;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--accent-500);
}
.form-row input.field-invalid,
.form-row textarea.field-invalid,
.form-row select.field-invalid { border-color: #e11d48; }
.form-disclaimer { font-size: 0.78rem; color: var(--slate-400); text-align: center; margin-top: 4px; }

.form-error {
  font-size: 0.85rem;
  color: #e11d48;
  background: rgba(225,29,72,0.08);
  border: 1px solid rgba(225,29,72,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.btn.is-loading #demoSubmitLabel::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  vertical-align: -2px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.modal-success { text-align: center; padding-top: 8px; }
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  color: var(--success-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-success h3 { margin-bottom: 10px; }
.modal-success p { color: var(--slate-500); font-size: 0.94rem; margin-bottom: 26px; line-height: 1.55; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .process-number { font-size: 1.25rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 140px 0 80px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .form-row-split { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .modal { padding: 32px 22px; }
  .header-actions .btn-sm { display: none; }
}
