/* ============================================================
   SMILE TODAY — Main Stylesheet
   ============================================================ */

/* 0. DESIGN TOKENS */
:root {
  --color-primary: #0891b2;
  --color-primary-dark: #0e7490;
  --color-primary-light: #67e8f9;
  --color-primary-bg: #ecfeff;
  --color-secondary: #1e40af;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-border: #e2e8f0;
  --color-success: #16a34a;
  --color-success-bg: #f0fdf4;
  --color-featured: #fef3c7;
  --color-featured-border: #fbbf24;
  --color-error: #dc2626;
  --color-error-bg: #fef2f2;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --transition: 150ms ease;
}

/* 1. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* 2. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--color-text); }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }
}

a { color: var(--color-primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }

/* 3. LAYOUT */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }

/* 4. HEADER & NAV */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  text-decoration: none;
}
.logo:hover { color: var(--color-primary); }
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle-label:hover { background: var(--color-bg-alt); }
.hamburger {
  width: 20px; height: 2px;
  background: var(--color-text);
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute;
  width: 20px; height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { background: var(--color-bg-alt); color: var(--color-primary-dark); }
.main-nav a.active { color: var(--color-primary-dark); background: var(--color-primary-bg); }

@media (max-width: 767px) {
  .nav-toggle-label { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .nav-toggle:checked ~ .nav-toggle-label .hamburger { background: transparent; }
  .nav-toggle:checked ~ .nav-toggle-label .hamburger::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label .hamburger::after { top: 0; transform: rotate(-45deg); }
  .main-nav a { padding: 0.75rem 1rem; width: 100%; }
  .main-nav .btn-cta { margin-top: 0.5rem; justify-content: center; }
}
@media (min-width: 768px) {
  .nav-toggle-label { display: none; }
}

/* 5. FOOTER */
.site-footer {
  background: var(--color-text);
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-col p { font-size: 0.875rem; line-height: 1.7; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

/* 6. HERO SECTIONS */
.hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #06b6d4 100%);
  color: #fff;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 1.5rem;
}
.hero .btn-cta { font-size: 1.0625rem; padding: 0.75rem 1.5rem; }

.hero-city {
  background: linear-gradient(135deg, #1e3a5f 0%, var(--color-primary-dark) 60%, var(--color-primary) 100%);
}

.hero-service {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary-dark) 100%);
}

@media (min-width: 768px) {
  .hero { padding: 4.5rem 0; }
  .hero h1 { font-size: 2.75rem; }
  .hero p { font-size: 1.25rem; }
}

/* 7. CARDS */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-service {
  text-align: center;
  padding: 2rem 1.5rem;
}
.card-service .card-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}
.card-service h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.card-service p { font-size: 0.875rem; color: var(--color-text-light); }

/* Practice cards */
.card-practice {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-practice .practice-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}
.card-practice .practice-name a { color: inherit; }
.card-practice .practice-name a:hover { color: var(--color-primary-dark); }
.card-practice .practice-address {
  font-size: 0.875rem;
  color: var(--color-text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
}
.card-practice .practice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.card-practice .practice-phone a {
  font-weight: 600;
  color: var(--color-primary-dark);
}
.card-practice .practice-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.card-practice .practice-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Featured/promoted card */
.card-featured {
  border-color: var(--color-featured-border);
  background: var(--color-featured);
  position: relative;
}
.card-featured::before {
  content: 'Featured';
  position: absolute;
  top: -1px; right: 1rem;
  background: var(--color-accent);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* City card */
.card-city {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}
.card-city .city-name { font-weight: 600; }
.card-city .city-count { font-size: 0.875rem; color: var(--color-text-light); }

/* 8. FORMS */
.form-section { max-width: 640px; margin: 0 auto; }

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .error-msg {
  font-size: 0.8125rem;
  color: var(--color-error);
  margin-top: 0.25rem;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select { border-color: var(--color-error); }
.form-group.has-error .error-msg { display: block; }

/* Multi-step form */
.form-steps { position: relative; overflow: hidden; }
.form-step {
  display: none;
  animation: fadeIn 300ms ease;
}
.form-step.active { display: block; }

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

.form-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.form-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  transition: background var(--transition);
}
.form-progress-step.completed { background: var(--color-primary); }
.form-progress-step.active { background: var(--color-primary-light); }

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

/* Option cards for form steps */
.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .option-grid { grid-template-columns: repeat(2, 1fr); } }

.option-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}
.option-card:hover { border-color: var(--color-primary-light); background: var(--color-primary-bg); }
.option-card.selected { border-color: var(--color-primary); background: var(--color-primary-bg); }
.option-card input[type="radio"] { display: none; }
.option-card .option-label { font-weight: 500; }

/* 9. FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  background: var(--color-bg);
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}
.faq-question:hover { background: var(--color-bg-alt); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* 10. BREADCRUMBS */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumbs li::after { content: '/'; color: var(--color-border); margin: 0 0.125rem; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--color-text-light); }
.breadcrumbs a:hover { color: var(--color-primary-dark); }

/* 11. DIRECTORY & LISTING */
.directory-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.directory-count { font-size: 0.875rem; color: var(--color-text-light); }

.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: var(--color-bg);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background: var(--color-primary-bg);
}

.listing-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 12. PRACTICE PAGE */
.practice-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .practice-header { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.practice-info h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.practice-info .practice-address { font-size: 1rem; color: var(--color-text-light); margin-bottom: 0.75rem; }

.practice-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.practice-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.practice-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .practice-details { grid-template-columns: 2fr 1fr; }
}

.practice-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hours-table {
  width: 100%;
  font-size: 0.875rem;
}
.hours-table td {
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--color-border);
}
.hours-table td:first-child { font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--color-text-light); }

/* 13. CTA BLOCKS */
.cta-block {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}
.cta-block h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-block p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-block .btn-cta { font-size: 1.0625rem; padding: 0.75rem 2rem; }

.cta-inline {
  background: var(--color-primary-bg);
  border: 1px solid #a5f3fc;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-inline { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-inline p { margin: 0; font-weight: 500; }

/* 14. BADGES & TAGS */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge-nhs { background: #dbeafe; color: #1e40af; }
.badge-private { background: #f3e8ff; color: #7c3aed; }
.badge-both { background: #d1fae5; color: #065f46; }
.badge-emergency { background: var(--color-error-bg); color: var(--color-error); }

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}
.tag:hover { border-color: var(--color-primary-light); color: var(--color-primary-dark); }

/* Star rating */
.stars { display: inline-flex; gap: 1px; color: var(--color-accent); }
.stars svg { width: 16px; height: 16px; }
.rating-text { font-size: 0.8125rem; color: var(--color-text-light); margin-left: 0.375rem; }

/* 15. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-cta {
  background: var(--color-accent);
  color: #1a1a1a;
}
.btn-cta:hover { background: var(--color-accent-dark); color: #1a1a1a; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-bg); }

.btn-white {
  background: #fff;
  color: var(--color-primary-dark);
}
.btn-white:hover { background: #f1f5f9; color: var(--color-primary-dark); }

.btn-sm { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1.0625rem; }

/* 16. HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-item {
  text-align: center;
  counter-increment: step;
}
.step-item::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary-bg);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.step-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.875rem; color: var(--color-text-light); }

/* 17. CONTENT */
.content-body { max-width: 768px; }
.content-body h2 { margin: 2rem 0 0.75rem; }
.content-body h3 { margin: 1.5rem 0 0.5rem; }
.content-body p { margin-bottom: 1rem; line-height: 1.7; }
.content-body ul, .content-body ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.content-body li { margin-bottom: 0.375rem; line-height: 1.6; list-style: disc; }
.content-body ol li { list-style: decimal; }

/* Sidebar layout for service+city pages */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .page-with-sidebar { grid-template-columns: 1fr 320px; }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.sidebar-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 0.375rem; }
.sidebar-card a { font-size: 0.875rem; }

/* 18. UTILITIES */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { padding: 3rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--color-text-light); margin-bottom: 2rem; }

@media (min-width: 768px) {
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.75rem; }
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* 19. FORM SUCCESS */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success .check-icon {
  width: 64px; height: 64px;
  color: var(--color-success);
  margin: 0 auto 1.5rem;
}
.form-success h2 { margin-bottom: 0.75rem; }
.form-success p { color: var(--color-text-light); max-width: 480px; margin: 0 auto 1.5rem; }

/* 20. 404 PAGE */
.error-page {
  text-align: center;
  padding: 4rem 1rem;
}
.error-page h1 { font-size: 4rem; color: var(--color-primary); margin-bottom: 1rem; }
.error-page p { color: var(--color-text-light); margin-bottom: 2rem; }

/* 21. PRINT */
@media print {
  .site-header, .site-footer, .cta-block, .cta-inline, .btn { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
