/* ==========================================================================
   Salventis Solutions - Holding Page & Secure Discovery Intake Stylesheet
   Pure CSS3 - Zero External CDN Dependencies - Privacy Preserving
   ========================================================================== */

:root {
  /* Color Palette - Authority, Calm, Dignity */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  
  --color-primary: #0f766e;        /* Deep Teal */
  --color-primary-hover: #115e59;
  --color-primary-light: #f0fdfa;
  --color-primary-border: #99f6e4;

  --color-navy: #0f172a;           /* Deep Midnight Navy */
  --color-navy-surface: #1e293b;
  --color-navy-muted: #334155;

  --color-gold: #b45309;          /* Discreet Warm Gold Accent */
  --color-gold-bg: #fffbeb;
  --color-gold-border: #fde68a;

  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-subtle: #64748b;
  --color-text-inverse: #ffffff;

  --border-light: #e2e8f0;
  --border-focus: #0d9488;
  --color-error: #dc2626;
  --color-error-bg: #fef2f2;
  --color-success: #16a34a;
  --color-success-bg: #f0fdf4;

  /* Typography */
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.05);

  /* Spacing & Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container-max: 1160px;
}

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

html {
  font-family: var(--font-stack);
  background-color: var(--bg-main);
  color: var(--color-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   Layout Containers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   Top Security & Notice Banner
   -------------------------------------------------------------------------- */
.top-notice-bar {
  background-color: var(--color-navy);
  color: #94a3b8;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.notice-badge-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.notice-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.notice-item svg {
  width: 14px;
  height: 14px;
  color: #38bdf8;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0f766e, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: 1.2;
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-action {
  background-color: var(--color-navy);
  color: #ffffff;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-header-action:hover {
  background-color: var(--color-navy-surface);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Hero Section & Dual Column Layout
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 3.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(15, 118, 110, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(180, 83, 9, 0.03) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-gold-bg);
  color: var(--color-gold);
  border: 1px solid var(--color-gold-border);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.highlight-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-navy);
  font-weight: 600;
}

.highlight-text span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.regulatory-mini-banner {
  background-color: #f1f5f9;
  border-left: 3px solid var(--color-primary);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Interactive Contact Card (Multi-Step Form Container)
   -------------------------------------------------------------------------- */
.form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.form-card-header {
  background-color: var(--color-navy);
  color: #ffffff;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-card-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.form-card-header p {
  font-size: 0.875rem;
  color: #cbd5e1;
}

/* Stepper Bar */
.form-stepper {
  display: flex;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

.step-indicator {
  flex: 1;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.step-indicator.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background-color: #ffffff;
}

.step-indicator.completed {
  color: var(--color-navy);
}

.step-number {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--border-light);
  color: var(--color-text-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.step-indicator.active .step-number {
  background-color: var(--color-primary);
  color: #ffffff;
}

.step-indicator.completed .step-number {
  background-color: var(--color-navy);
  color: #ffffff;
}

/* Form Body */
.form-card-body {
  padding: 1.75rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Groups & Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.form-label-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-subtle);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-text-main);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-control.has-error {
  border-color: var(--color-error);
  background-color: var(--color-error-bg);
}

.field-error-msg {
  color: var(--color-error);
  font-size: 0.75rem;
  margin-top: 0.35rem;
  display: none;
}

.field-error-msg.visible {
  display: block;
}

/* Radio Cards Selection (Amount & Timeframe) */
.radio-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (max-width: 480px) {
  .radio-cards-grid {
    grid-template-columns: 1fr;
  }
}

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-content {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radio-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
}

.radio-card-sub {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  display: block;
}

.radio-card input:checked + .radio-card-content {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.radio-card input:checked + .radio-card-content .radio-dot {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.radio-card input:checked + .radio-card-content .radio-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
}

/* Consents Box */
.consent-group {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  accent-color: var(--color-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.checkbox-label strong {
  color: var(--color-navy);
}

/* Button Controls */
.form-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-submit, .btn-next {
  flex: 1;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover, .btn-next:hover {
  background-color: var(--color-primary-hover);
}

.btn-prev {
  background-color: #ffffff;
  color: var(--color-text-muted);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-prev:hover {
  background-color: var(--bg-card-subtle);
  color: var(--color-navy);
}

.form-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  display: none;
}

.form-alert.error {
  display: block;
  background-color: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid #fecaca;
}

.form-alert.success {
  display: block;
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid #bbf7d0;
}

/* Form Success State Screen */
.success-screen {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: none;
}

.success-screen.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-success-bg);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.success-screen h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.success-screen p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-reference-box {
  background-color: #f8fafc;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  font-size: 0.875rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.success-next-steps {
  text-align: left;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  font-size: 0.8125rem;
  color: var(--color-primary-hover);
  line-height: 1.5;
}

.success-next-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Core Pillars / Value Props Section
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 860px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   How It Works (3 Steps)
   -------------------------------------------------------------------------- */
.how-it-works-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  padding: 1.5rem;
}

.step-header-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   UK Regulatory & Transparency Section
   -------------------------------------------------------------------------- */
.transparency-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 4.5rem 0;
}

.transparency-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.transparency-box h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.transparency-box p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.transparency-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.t-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.t-badge svg {
  color: #38bdf8;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  background-color: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-subtle);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.35rem 1.25rem 1.35rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --------------------------------------------------------------------------
   Footer & Legal Modals
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-navy);
  color: #94a3b8;
  padding: 3.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 440px;
}

.footer-links h5 {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a, .footer-links button {
  background: none;
  border: none;
  padding: 0;
  color: #94a3b8;
  font-size: 0.8125rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease;
}

.footer-links a:hover, .footer-links button:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.2s ease-in-out;
}

.modal-dialog {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background-color: #ffffff;
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-subtle);
  cursor: pointer;
  padding: 0.25rem;
}

.modal-body {
  padding: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.modal-body h4 {
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin: 1.25rem 0 0.35rem 0;
}

.modal-body p {
  margin-bottom: 0.85rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: right;
  background-color: #f8fafc;
}
