/* ============================================
   MAPLE CONNECTION JOOMLA TEMPLATE
   Clean Build | No Patches | Joomla 6
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */

:root {
  /* Backgrounds */
  --bg-primary: #0a0e14;
  --bg-surface: #0f1419;
  --bg-elevated: #151b24;
  
  /* Borders */
  --border-primary: #1a2332;
  --border-subtle: rgba(26, 35, 50, 0.4);
  
  /* Text */
  --text-primary: #e8edf4;
  --text-secondary: #b0b8c5;
  --text-muted: #8892a0;
  
  /* Brand Colors */
  --blue: #0066cc;
  --gold: #d4af37;
  --green: #00a86b;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4cf57 100%);
  --gradient-blue: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
  --gradient-tricolor: linear-gradient(90deg, #0066cc 0%, #d4af37 50%, #00a86b 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Other */
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ============================================
   2. BASE & RESET
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   3. JOOMLA CLASS NEUTRALIZATION
   ============================================ */

.moduletable,
.mod-menu,
.mod-custom,
.com-content,
.item-page {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

/* ============================================
   4. HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-tricolor);
  opacity: 0.7;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

.header-logo img {
  max-height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 102, 204, 0.3));
  transition: var(--transition);
}

.header-logo:hover img {
  filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.5));
  transform: translateY(-1px);
}

/* Navigation */

/* Mobile nav toggle (Joomla 6-only) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after  { top:  6px; }


.main-nav ul {
  display: flex;
  gap: var(--space-xs);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.main-nav li {
  display: inline-block;
}

.main-nav a {
  display: flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  min-height: 44px;
  color: var(--text-secondary);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}

.main-nav a:hover {
  color: var(--gold);
  background: rgba(0, 102, 204, 0.08);
}

.main-nav li.current a,
.main-nav li.active a {
  color: var(--gold);
  background: rgba(0, 102, 204, 0.15);
  box-shadow: 0 0 0 1px rgba(0, 102, 204, 0.3) inset, 0 0 20px rgba(0, 102, 204, 0.3);
}

/* Header CTA */
.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.header-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.header-cta a::after {
  content: '→';
  transition: var(--transition);
}

.header-cta a:hover::after {
  transform: translateX(4px);
}

/* ============================================
   5. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #e4bf47;
}

/* ============================================
   6. BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  min-height: 48px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.btn-primary::after {
  content: '→';
  transition: var(--transition);
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-secondary {
  background: var(--gradient-blue);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.35);
}

.btn-tertiary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-tertiary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

/* ============================================
   7. ARTICLE COMPONENTS
   ============================================ */

/* Eyebrow Label */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-left: 2rem;
  position: relative;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

/* Hero Section */
.hero-section {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.hero-section h1 {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.hero-section p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Stack Cards */
.stack-cards {
  display: grid;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.stack-cards .card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.stack-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 102, 204, 0.4);
}

.card-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(0, 102, 204, 0.03);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.card-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1.5rem;
}

.badge {
  padding: 0.4rem 0.9rem;
  background: rgba(0, 102, 204, 0.15);
  border: 1px solid rgba(0, 102, 204, 0.3);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-body {
  padding: var(--space-lg);
}

.card-body p {
  margin-bottom: var(--space-md);
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
}

.card-body li {
  padding: 0.6rem 0;
  display: flex;
  gap: 0.75rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.card-body li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-footer {
  padding: var(--space-md) var(--space-lg);
  background: rgba(0, 168, 107, 0.05);
  border-top: 1px solid var(--border-primary);
}

.card-footer p {
  margin: 0;
  color: var(--text-primary);
}

.card-footer strong {
  color: var(--green);
}

/* Two Column Layouts */
.why-us-content,
.intake-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin: var(--space-2xl) 0;
}

.why-us-text p,
.intake-text p {
  font-size: 1.05rem;
}

.why-us-text ul,
.intake-text ul {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0 0;
}

.why-us-text li,
.intake-text li {
  padding: 0.7rem 0;
  display: flex;
  gap: 0.75rem;
  color: var(--text-primary);
}

.why-us-text li::before,
.intake-text li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-us-image img,
.intake-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Process Steps */
.how-it-works-steps {
  display: grid;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: var(--transition);
}

.step:hover {
  transform: translateX(4px);
  border-color: rgba(0, 102, 204, 0.4);
}

.step:hover::before {
  opacity: 1;
}

.step .step-number {
  width: 56px;
  height: 56px;
  font-size: 1.75rem;
}

.step-content h3 {
  margin: 0 0 var(--space-sm) 0;
  color: var(--text-primary);
}

.step-content p {
  margin: 0;
  color: var(--text-secondary);
}

/* Setup Cards Grid */
.setups-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.setups-cards .card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.setups-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 102, 204, 0.4);
}

.card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-md);
}

.setups-cards h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.setups-cards p {
  margin: 0;
  font-size: 1rem;
}

/* Section Backgrounds */
.section-why-us,
.section-start-intake {
  background: rgba(0, 102, 204, 0.02);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0;
}

/* ============================================
   8. FOOTER
   ============================================ */

.site-footer {
  background: var(--bg-surface);
  border-top: 2px solid var(--border-primary);
  position: relative;
  margin-top: var(--space-3xl);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-tricolor);
  opacity: 0.7;
}

.footer-main {
  padding: var(--space-3xl) 0;
}

.footer-main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.footer-main h2,
.footer-main h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  display: inline-block;
}

.footer-main p {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.footer-main strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  transition: var(--transition);
  color: var(--text-secondary);
}

.footer-main li::before {
  content: '📍';
  position: absolute;
  left: 0;
  opacity: 0.7;
  font-size: 0.85rem;
}

.footer-main li:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-main a {
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--gold);
}

.footer-main a[href^="mailto"] {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 600;
}

.footer-main a[href^="mailto"]:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.footer-legal {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer-legal p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   9. RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }
  
  .main-nav {
    grid-column: 1 / -1;
  }
  
  .why-us-content,
  .intake-content {
    grid-template-columns: 1fr;
  }
  
  .why-us-image,
  .intake-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .header-inner {
    grid-template-columns: auto 44px;
    grid-template-areas: "logo toggle";
    align-items: center;

    /* prevent vertical dead space when nav/cta are hidden */
    gap: 0;
    column-gap: var(--space-md);
  }

  /* When menu is open, restore the 3-row layout + vertical gaps */
  .site-header.is-open .header-inner {
    grid-template-areas:
      "logo toggle"
      "nav nav"
      "cta cta";
    gap: var(--space-md);
  }


  .header-logo { grid-area: logo; }
  .nav-toggle { grid-area: toggle; display: inline-flex; }

  /* hide nav/cta until toggled */
  .main-nav { grid-area: nav; display: none; }
  .header-cta { grid-area: cta; display: none; }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta { display: block; }
  
  .header-logo {
    text-align: center;
  }
  
  .header-logo img {
    max-height: 44px;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .main-nav a {
    width: 100%;
    justify-content: center;
  }
  
  .header-cta {
    text-align: center;
  }
  
  .header-cta a {
    width: 100%;
    justify-content: center;
  }
  
  .hero-section {
    padding: var(--space-2xl) 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    width: 100%;
    justify-content: center;
  }
  
  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step .step-number {
    margin: 0 auto;
  }
  
  .setups-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-main .container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   10. UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.py-xl {
  padding-block: var(--space-xl);
}
/* ============================================
   SWENSMI Intake Module (styling moved from module into template)
   Keep identical behavior to prior versions: focus ring + hover lift + mobile section padding.
   ============================================ */

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: #ffd700 !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}

.form-submit .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3) !important;
}

@media (max-width: 768px) {
  .intake-form-section {
    padding: 1.5rem 1rem !important;
  }
}

/* ============================================
   Intake Module — complete styling (module outputs these classes)
   Uses existing Maple variables + visual language
   ============================================ */

/* Section wrapper */
.intake-form-section {
  padding: var(--space-3xl) 0;
  background: rgba(0, 102, 204, 0.02);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Header */
.form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-header h1,
.form-header h2,
.form-header h3 {
  margin-bottom: var(--space-sm);
}

.form-header p {
  max-width: 820px;
  margin: 0 auto;
}

/* Messages */
.form-message {
  max-width: 920px;
  margin: 0 auto var(--space-lg) auto;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-primary);
  background: var(--bg-elevated);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.form-message.success {
  border-color: rgba(0, 168, 107, 0.35);
  background: rgba(0, 168, 107, 0.08);
}

.form-message.error {
  border-color: rgba(212, 70, 70, 0.35);
  background: rgba(212, 70, 70, 0.08);
}

/* Success block (after submit) */
.success-message {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 168, 107, 0.35);
  background: rgba(0, 168, 107, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.success-message h2 {
  margin-bottom: var(--space-sm);
}

.success-message p {
  margin: 0;
}

/* Form container */
.intake-form {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

/* Field groups */
.form-section {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  background: rgba(0, 102, 204, 0.03);
}

.form-section legend {
  padding: 0 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 650;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--border-primary);
  background: rgba(10, 14, 20, 0.65);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 146, 160, 0.9);
}

/* Subtle hover state (focus ring handled by your existing block) */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(0, 102, 204, 0.45);
}

/* Submit area */
.form-submit {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: flex-start;
}

.form-submit .btn-primary {
  min-width: 220px;
}

/* Note under the button */
.form-note {
  margin-top: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .intake-form {
    padding: var(--space-lg);
  }

  .form-section {
    padding: var(--space-md);
  }

  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit .btn-primary {
    width: 100%;
  }
}

