/* ===================================================================
   Lakeshore Pro Clean — Master Stylesheet
   Refined corporate aesthetic. Navy + teal. Editorial typography.
   =================================================================== */

:root {
  /* Brand palette */
  --navy: #0B2545;
  --navy-deep: #061830;
  --navy-soft: #133058;
  --teal: #1E88A8;
  --teal-bright: #2BA3C7;
  --teal-soft: #E8F4F8;

  /* Neutrals */
  --bone: #FAF9F6;
  --paper: #FFFFFF;
  --ink: #0B1B2C;
  --slate: #4A5A6E;
  --slate-soft: #8B97A8;
  --hairline: #E4E7EC;
  --hairline-soft: #F1F3F6;

  /* Accents */
  --gold: #C8A560;
  --success: #2D7A4A;

  /* Type scale */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Spatial */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.04);
  --shadow: 0 4px 24px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 24px 48px rgba(11, 37, 69, 0.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--teal); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 144; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-variation-settings: "opsz" 96; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); font-variation-settings: "opsz" 36; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--slate); margin-bottom: 1rem; }
.lede { font-size: 1.25rem; line-height: 1.5; color: var(--ink); font-weight: 400; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}
.italic-display { font-family: var(--font-display); font-style: italic; font-weight: 300; }

/* Layout */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
@media (max-width: 768px) {
  .section, .section-lg { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; }
.nav-brand-mark { width: 36px; height: 36px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text small { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--teal); margin-top: 2px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--navy); color: var(--paper) !important; padding: 10px 20px; border-radius: var(--radius); font-weight: 500; transition: all 0.2s ease; }
.nav-cta:hover { background: var(--teal); color: var(--paper) !important; transform: translateY(-1px); }
.nav-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; }
@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--bone); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--hairline); box-shadow: var(--shadow); }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative; padding: 120px 0 96px; overflow: hidden;
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
}
.hero::before {
  content: ''; position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(30, 136, 168, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; font-weight: 300; color: var(--teal); }
.hero-lede { font-size: 1.2rem; color: var(--slate); max-width: 540px; margin-bottom: 36px; line-height: 1.55; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 540px; }
.hero-meta-item small { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate-soft); display: block; margin-bottom: 6px; }
.hero-meta-item strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--navy); display: block; }

/* Hero visual — abstract architectural composition */
.hero-visual {
  position: relative; aspect-ratio: 4/5; max-width: 480px; margin: 0 auto; width: 100%;
}
.hero-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-visual-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 136, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 168, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-visual-card {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  background: var(--paper); padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-visual-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero-visual-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.15); }
.hero-visual-card-label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); }
.hero-visual-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--navy); }
.hero-visual-card p { font-size: 0.9rem; margin: 0; color: var(--slate); }
.hero-visual-floating {
  position: absolute; top: 32px; right: 32px;
  background: rgba(11, 37, 69, 0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px; border-radius: var(--radius); color: var(--paper);
}
.hero-visual-floating small { font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.7; display: block; margin-bottom: 4px; }
.hero-visual-floating strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 500; font-size: 0.95rem; letter-spacing: -0.01em;
  transition: all 0.2s ease; cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--navy); color: var(--paper) !important; }
.btn-primary:hover { background: var(--teal); transform: translateY(-1px); box-shadow: var(--shadow); color: var(--paper) !important; }
.btn-secondary { background: transparent; color: var(--navy) !important; border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--paper) !important; }
.btn-ghost { background: transparent; color: var(--navy) !important; padding: 14px 0; }
.btn-ghost:hover { color: var(--teal) !important; }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== TRUST BAR ===== */
.trust-bar { padding: 32px 0; background: var(--paper); border-bottom: 1px solid var(--hairline); }
.trust-bar-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 12px; color: var(--slate); font-size: 0.9rem; }
.trust-bar-item svg { color: var(--teal); flex-shrink: 0; }
.trust-bar-item strong { color: var(--navy); font-weight: 600; }

/* ===== SERVICES GRID ===== */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.services-header h2 { margin-bottom: 0; }
@media (max-width: 768px) { .services-header { grid-template-columns: 1fr; gap: 24px; } }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative; padding: 40px; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  transition: all 0.3s ease; overflow: hidden;
  display: flex; flex-direction: column; min-height: 320px;
}
.service-card.featured { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.service-card.featured h3, .service-card.featured h4 { color: var(--paper); }
.service-card.featured p { color: rgba(255, 255, 255, 0.75); }
.service-card.featured .service-eyebrow { color: var(--teal-bright); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.service-card.featured:hover { border-color: var(--teal-bright); }
.service-eyebrow { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--teal); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.service-eyebrow-num { background: var(--teal-soft); color: var(--teal); padding: 2px 8px; border-radius: 4px; font-size: 0.65rem; }
.service-card.featured .service-eyebrow-num { background: rgba(43, 163, 199, 0.15); color: var(--teal-bright); }
.service-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-card p { font-size: 0.95rem; line-height: 1.55; margin-bottom: 24px; flex: 1; }
.service-card-link { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.service-card.featured .service-card-link { color: var(--teal-bright); }
.service-card-link:hover { gap: 14px; }

/* ===== INDUSTRY FOCUS / MEDICAL EMPHASIS ===== */
.industry-section { background: var(--navy); color: var(--paper); position: relative; overflow: hidden; }
.industry-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(30, 136, 168, 0.15), transparent 50%);
  pointer-events: none;
}
.industry-section h2, .industry-section h3 { color: var(--paper); }
.industry-section p { color: rgba(255, 255, 255, 0.78); }
.industry-section .eyebrow { color: var(--teal-bright); }
.industry-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 980px) { .industry-grid { grid-template-columns: 1fr; gap: 48px; } }
.industry-list { display: flex; flex-direction: column; gap: 24px; }
.industry-item { display: flex; gap: 20px; padding: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); transition: all 0.3s; }
.industry-item:hover { background: rgba(255,255,255,0.06); border-color: var(--teal); transform: translateX(4px); }
.industry-item-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; font-style: italic; color: var(--teal-bright); flex-shrink: 0; line-height: 1; min-width: 48px; }
.industry-item h4 { color: var(--paper); font-family: var(--font-body); font-weight: 600; margin-bottom: 6px; font-size: 1.05rem; }
.industry-item p { font-size: 0.92rem; margin: 0; line-height: 1.5; }

/* ===== PROCESS / METHOD ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { padding-top: 32px; border-top: 2px solid var(--navy); }
.process-step-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--teal); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.process-step h4 { margin-bottom: 8px; color: var(--navy); }
.process-step p { font-size: 0.92rem; line-height: 1.55; }

/* ===== SERVICE AREAS ===== */
.areas-section { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.areas-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
@media (max-width: 880px) { .areas-grid { grid-template-columns: 1fr; gap: 32px; } }
.areas-list { columns: 3; column-gap: 24px; }
@media (max-width: 540px) { .areas-list { columns: 2; } }
.areas-list a {
  display: block; padding: 8px 0; font-size: 0.95rem; color: var(--ink);
  border-bottom: 1px solid var(--hairline-soft); transition: all 0.2s; break-inside: avoid;
}
.areas-list a:hover { color: var(--teal); padding-left: 6px; }

/* ===== TESTIMONIAL ===== */
.testimonial { padding: 96px 0; background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%); }
.testimonial-quote {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.3; letter-spacing: -0.02em;
  color: var(--navy); max-width: 880px; margin: 0 auto 32px; text-align: center;
}
.testimonial-attribution { text-align: center; }
.testimonial-attribution strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.testimonial-attribution small { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); }

/* ===== CTA BLOCK ===== */
.cta-block { background: var(--navy); color: var(--paper); padding: 96px 0; position: relative; overflow: hidden; }
.cta-block::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(30, 136, 168, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-block-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 880px) { .cta-block-grid { grid-template-columns: 1fr; gap: 32px; } }
.cta-block h2 { color: var(--paper); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-block .btn-primary { background: var(--teal); }
.cta-block .btn-primary:hover { background: var(--teal-bright); }
.cta-block .btn-secondary { color: var(--paper) !important; border-color: rgba(255,255,255,0.3); }
.cta-block .btn-secondary:hover { background: var(--paper); color: var(--navy) !important; }
.cta-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-stat { padding: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); }
.cta-stat strong { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--teal-bright); line-height: 1; margin-bottom: 8px; }
.cta-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--paper); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 16px; font-weight: 500; }
.footer-tagline { font-size: 0.9rem; line-height: 1.55; max-width: 320px; }
.footer h5 { color: var(--paper); font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-links a:hover { color: var(--teal-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 0.85rem; }

/* ===== PAGE HEADER (subpages) ===== */
.page-header { padding: 80px 0 64px; background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%); border-bottom: 1px solid var(--hairline); }
.page-header h1 { max-width: 800px; margin-bottom: 16px; }
.page-header .lede { max-width: 700px; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); margin-bottom: 24px; }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===== CONTENT SECTIONS ===== */
.content-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
@media (max-width: 880px) { .content-grid { grid-template-columns: 1fr; gap: 32px; } }
.content-grid aside { position: sticky; top: 100px; align-self: start; }
.content-grid aside h4 { margin-bottom: 16px; color: var(--navy); }
.content-grid aside ul { display: flex; flex-direction: column; gap: 8px; }
.content-grid aside a { font-size: 0.92rem; color: var(--slate); padding: 6px 0; display: block; border-left: 2px solid transparent; padding-left: 12px; transition: all 0.2s; }
.content-grid aside a:hover { color: var(--teal); border-left-color: var(--teal); }

.prose h2 { margin-top: 48px; margin-bottom: 20px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose p { margin-bottom: 16px; line-height: 1.7; color: var(--ink); }
.prose ul { margin-bottom: 24px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; line-height: 1.6; color: var(--ink); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 16px; height: 2px; background: var(--teal); }
.prose blockquote {
  margin: 32px 0; padding: 24px 32px; border-left: 3px solid var(--teal);
  background: var(--teal-soft); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--navy);
}
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--teal); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--navy); }

/* Service detail bullet lists */
.service-bullets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
@media (max-width: 640px) { .service-bullets { grid-template-columns: 1fr; } }
.service-bullets li {
  padding: 16px 20px; background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius); font-size: 0.95rem; color: var(--ink);
  display: flex; align-items: flex-start; gap: 12px;
}
.service-bullets li::before { display: none; }
.service-bullets li .check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; margin-top: 1px;
}

/* ===== FORM ===== */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); font-weight: 500; }
.form-group label .req { color: #B23A48; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 14px 16px;
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius); color: var(--ink); transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30, 136, 168, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
@media (max-width: 540px) { .form-checkbox-group { grid-template-columns: 1fr; } }
.form-checkbox { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; font-size: 0.92rem; }
.form-checkbox:hover { border-color: var(--teal); }
.form-checkbox input { accent-color: var(--teal); width: 16px; height: 16px; }
.form-checkbox input:checked + span { color: var(--navy); font-weight: 500; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 32px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease-out backwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
