/* ============================================================
   COMPANY REVIEW — INDUSTRY-ADAPTIVE DESIGN SYSTEM
   Each body.theme-* class triggers a completely different aesthetic.
   ============================================================ */

/* --- Design Tokens (overridden per theme via inline style) --- */
:root {
  --primary: #2563eb;
  --accent: #1e40af;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-dark: #111827;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --max-width: 1140px;
  --hero-bg: var(--bg-alt);
  --hero-text: var(--text);
  --card-bg: var(--bg);
  --card-border: var(--border);
  --header-bg: var(--bg);
  --header-border: var(--border);
  --nav-text: var(--text);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-in {
  animation: fadeUp 0.6s ease-out both;
}
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* =========================
   HEADER
   ========================= */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--primary); text-decoration: none; }
.main-nav { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  color: var(--nav-text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { text-decoration: none; color: var(--primary); }
.header-phone {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.header-phone:hover { background: var(--accent); text-decoration: none; transform: translateY(-1px); }

/* Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s;
}

/* =========================
   BUTTONS
   ========================= */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 0.85rem 2rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.link-arrow { font-weight: 600; transition: gap 0.2s; display: inline-flex; align-items: center; gap: 0.25rem; }
.link-arrow::after { content: "→"; transition: transform 0.2s; }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow:hover { text-decoration: none; }

/* =========================
   HERO
   ========================= */
.hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.page-hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.hero-sub, .page-hero .hero-sub { font-weight: 300; }

/* =========================
   TRUST BAR
   ========================= */
.trust-bar {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.25rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trust-stars { color: #f59e0b; font-size: 1.15rem; letter-spacing: 2px; }

/* =========================
   SECTIONS
   ========================= */
section { padding: 4.5rem 0; }
section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* =========================
   SERVICES GRID
   ========================= */
.services-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.service-card, .feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover, .feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card h3, .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.service-card p, .feature p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Service Detail */
.service-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-card h2 { color: var(--primary); font-size: 1.75rem; }
.service-cta { margin-top: 1.5rem; }

/* =========================
   WHY US / FEATURES
   ========================= */
.why-us {
  background: var(--bg-alt);
  position: relative;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonial-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.testimonial-card, .review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before, .review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
}
.testimonial-card p, .review-card p {
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.review-card footer {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Rating */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.stars { font-size: 1.5rem; letter-spacing: 2px; }
.star.filled { color: #f59e0b; }
.star { color: #d1d5db; }

/* =========================
   FAQ
   ========================= */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-item summary::before {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::before { content: '−'; transform: rotate(180deg); }
.faq-item p { margin-top: 0.75rem; padding-left: 2.75rem; color: var(--text-light); line-height: 1.7; }

/* =========================
   CITATIONS
   ========================= */
.citations { text-align: center; padding: 3rem 0; }
.citations-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.citation-list { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.citation-badge {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.25s;
}
.citation-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =========================
   CTA STRIP
   ========================= */
.cta-strip {
  background: var(--primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-strip .btn-primary { background: #fff; color: var(--primary); }
.cta-strip .btn-primary:hover { background: rgba(255,255,255,0.9); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-strip .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-strip .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* =========================
   CONTACT
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-item { margin-bottom: 2rem; }
.contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.form-group input, .form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary), 0.1);
}
.contact-form-wrap { background: var(--bg-alt); border-radius: var(--radius); padding: 2.5rem; }

/* Content blocks */
.content-block { margin-bottom: 2.5rem; }
.content-block p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; }

/* =========================
   FOOTER
   ========================= */
.site-footer { background: var(--bg-dark); color: #d1d5db; padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-inner h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-heading); }
.footer-inner a { color: #9ca3af; display: block; margin-bottom: 0.5rem; font-size: 0.9rem; transition: color 0.2s; }
.footer-inner a:hover { color: #fff; text-decoration: none; }
.footer-inner p { font-size: 0.9rem; margin-bottom: 0.35rem; }
.footer-nav { display: flex; flex-direction: column; }
.footer-bottom { border-top: 1px solid #1f2937; padding: 1.25rem 0; }
.footer-bottom p { font-size: 0.8rem; color: #6b7280; }

/* Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* =============================================================
   THEME: HOME SERVICES
   Bold, industrial, trustworthy. Geometric accents, dark header.
   ============================================================= */
.theme-home-services {
  --hero-bg: var(--bg-dark);
  --hero-text: #fff;
  --header-bg: #0a0f1a;
  --header-border: #1f2937;
  --nav-text: #d1d5db;
  --radius: 6px;
}
.theme-home-services .logo { color: #fff; }
.theme-home-services .nav-link { color: #d1d5db; }
.theme-home-services .nav-link:hover { color: var(--accent); }
.theme-home-services .nav-toggle span { background: #fff; }
.theme-home-services .hero {
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 50%, #0f1923 100%);
  padding: 6rem 0 5rem;
}
.theme-home-services .hero::before {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
}
.theme-home-services .hero-sub { color: #9ca3af; }
.theme-home-services .trust-badge {
  background: rgba(22,163,74,0.15);
  border-color: rgba(22,163,74,0.3);
  color: #4ade80;
}
.theme-home-services .trust-item { color: #9ca3af; }
.theme-home-services .service-card {
  border: none;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.theme-home-services .service-card::before { background: var(--accent); }
.theme-home-services .why-us {
  background: #f0fdf4;
  border-top: 3px solid var(--primary);
}
.theme-home-services .cta-strip {
  background: linear-gradient(135deg, #0a0f1a, #1a2332);
}
.theme-home-services .site-footer { background: #050810; }
.theme-home-services .page-hero {
  background: linear-gradient(135deg, #0a0f1a, #1a2332);
  color: #fff;
}
.theme-home-services .page-hero .hero-sub { color: #9ca3af; }

/* =============================================================
   THEME: RESTAURANT
   Editorial luxury. Warm tones, serif elegance, organic shapes.
   ============================================================= */
.theme-restaurant {
  --bg-alt: #faf7f2;
  --border: #e8e0d4;
  --card-border: #e8e0d4;
  --radius: 2px;
}
.theme-restaurant .logo { font-style: italic; font-size: 1.75rem; letter-spacing: 0; }
.theme-restaurant .nav-link {
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.theme-restaurant .hero {
  background: linear-gradient(180deg, #faf7f2 0%, #f5ede0 100%);
  padding: 6rem 0 5rem;
}
.theme-restaurant .hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.theme-restaurant .hero-sub { font-weight: 300; font-size: 1.2rem; }
.theme-restaurant .hero::before {
  background: radial-gradient(ellipse at 50% 80%, rgba(146,64,14,0.04) 0%, transparent 70%);
}
.theme-restaurant .btn-primary {
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 1rem 2.5rem;
}
.theme-restaurant .btn-secondary {
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 1rem 2.5rem;
  border-width: 1px;
}
.theme-restaurant section h2 {
  font-weight: 400;
  font-style: italic;
}
.theme-restaurant .section-label { color: var(--accent); }
.theme-restaurant .service-card {
  border: none;
  background: transparent;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.theme-restaurant .service-card::before { display: none; }
.theme-restaurant .service-card h3 { font-family: var(--font-heading); font-weight: 400; font-size: 1.4rem; }
.theme-restaurant .service-card:hover { box-shadow: none; transform: none; background: var(--bg-alt); }
.theme-restaurant .testimonial-card, .theme-restaurant .review-card {
  border: none;
  border-left: 2px solid var(--primary);
  border-radius: 0;
  background: transparent;
}
.theme-restaurant .testimonial-card::before, .theme-restaurant .review-card::before {
  font-size: 5rem;
  opacity: 0.08;
}
.theme-restaurant .why-us { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.theme-restaurant .cta-strip { background: #1c1410; }
.theme-restaurant .site-footer { background: #1c1410; }
.theme-restaurant .page-hero { background: linear-gradient(180deg, #faf7f2, #f5ede0); }
.theme-restaurant .faq-item summary::before { border-radius: 2px; }

/* =============================================================
   THEME: PROFESSIONAL
   Corporate luxury. Navy + gold, structured, authoritative.
   ============================================================= */
.theme-professional {
  --bg-alt: #f8f9fb;
  --border: #dfe3ea;
  --card-border: #dfe3ea;
  --radius: 4px;
}
.theme-professional .logo {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.theme-professional .hero {
  background: linear-gradient(170deg, #0c1e35 0%, #1e3a5f 40%, #162d4a 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  --hero-text: #fff;
}
.theme-professional .hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.theme-professional .hero h1 { font-weight: 400; }
.theme-professional .hero-sub { color: rgba(255,255,255,0.7); }
.theme-professional .trust-badge {
  background: rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.3);
  color: #f5c842;
}
.theme-professional .trust-item { color: rgba(255,255,255,0.7); }
.theme-professional .service-card {
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}
.theme-professional .service-card::before { display: none; }
.theme-professional .service-card h3 { color: var(--primary); }
.theme-professional section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.75rem;
}
.theme-professional .text-center h2::after { margin-left: auto; margin-right: auto; }
.theme-professional .cta-strip { background: linear-gradient(170deg, #0c1e35, #1e3a5f); }
.theme-professional .site-footer { background: #0a1525; }
.theme-professional .testimonial-card, .theme-professional .review-card {
  border: none;
  background: var(--bg-alt);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.theme-professional .page-hero {
  background: linear-gradient(170deg, #0c1e35, #1e3a5f);
  color: #fff;
}
.theme-professional .page-hero .hero-sub { color: rgba(255,255,255,0.7); }
.theme-professional .faq-item summary::before { border-radius: 4px; background: var(--accent); }
.theme-professional .why-us { background: var(--bg-alt); border-top: 1px solid var(--border); }

/* =============================================================
   THEME: HEALTH / BEAUTY
   Soft, organic, welcoming. Flowing shapes, pastels, round.
   ============================================================= */
.theme-health {
  --bg-alt: #f0fdfa;
  --border: #ccfbf1;
  --card-border: #ccfbf1;
  --radius: 16px;
}
.theme-health .logo { font-weight: 700; letter-spacing: -0.01em; }
.theme-health .nav-link { text-transform: none; letter-spacing: 0; font-weight: 600; }
.theme-health .hero {
  background: linear-gradient(180deg, #f0fdfa 0%, #e0f7f3 40%, #ccfbf1 100%);
  padding: 5rem 0 4rem;
  border-radius: 0 0 48px 48px;
}
.theme-health .hero::before {
  background:
    radial-gradient(circle at 20% 60%, rgba(91,33,182,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(13,148,136,0.06) 0%, transparent 50%);
}
.theme-health .hero h1 {
  font-weight: 700;
  letter-spacing: -0.03em;
}
.theme-health .btn-primary {
  border-radius: 100px;
  padding: 0.85rem 2.5rem;
}
.theme-health .btn-secondary {
  border-radius: 100px;
  padding: 0.85rem 2.5rem;
}
.theme-health .header-phone { border-radius: 100px; }
.theme-health .service-card {
  border-radius: 16px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(13,148,136,0.08);
}
.theme-health .service-card::before { display: none; }
.theme-health .service-card:hover { box-shadow: 0 8px 30px rgba(13,148,136,0.12); }
.theme-health .feature {
  border-radius: 16px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(13,148,136,0.06);
}
.theme-health .why-us {
  background: linear-gradient(180deg, #fff, #f0fdfa);
  border-radius: 48px 48px 0 0;
}
.theme-health .testimonial-card, .theme-health .review-card {
  border-radius: 16px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(13,148,136,0.06);
}
.theme-health .cta-strip {
  border-radius: 32px;
  margin: 0 2rem 2rem;
  max-width: calc(var(--max-width) + 4rem);
  margin-left: auto;
  margin-right: auto;
}
.theme-health .cta-strip::before {
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%);
}
.theme-health .faq-item summary::before { border-radius: 50%; }
.theme-health .citation-badge { border-radius: 100px; }
.theme-health .contact-form-wrap { border-radius: 16px; }
.theme-health .page-hero {
  background: linear-gradient(180deg, #f0fdfa, #ccfbf1);
  border-radius: 0 0 48px 48px;
}
.theme-health .site-footer { border-radius: 32px 32px 0 0; }

/* =============================================================
   THEME: AUTO
   Dark, mechanical, bold. Sharp contrasts, racing energy.
   ============================================================= */
.theme-auto {
  --bg: #0f0f0f;
  --bg-alt: #1a1a1a;
  --bg-dark: #000;
  --text: #e5e5e5;
  --text-light: #a3a3a3;
  --text-muted: #737373;
  --border: #2a2a2a;
  --card-bg: #1a1a1a;
  --card-border: #2a2a2a;
  --header-bg: rgba(0,0,0,0.95);
  --header-border: #1a1a1a;
  --nav-text: #a3a3a3;
  --hero-bg: #000;
  --hero-text: #fff;
  --radius: 4px;
}
.theme-auto .logo {
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.theme-auto .nav-link { color: #a3a3a3; letter-spacing: 0.08em; font-size: 0.8rem; }
.theme-auto .nav-link:hover { color: var(--primary); }
.theme-auto .nav-toggle span { background: #fff; }
.theme-auto a { color: var(--primary); }
.theme-auto a:hover { color: var(--accent); }
.theme-auto .hero {
  background: #000;
  padding: 7rem 0 6rem;
  position: relative;
}
.theme-auto .hero::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(239,68,68,0.03) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255,255,255,0.015) 100px, rgba(255,255,255,0.015) 101px);
}
.theme-auto .hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.theme-auto .hero-sub { color: #737373; font-weight: 300; }
.theme-auto .btn-primary {
  background: var(--primary);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
}
.theme-auto .btn-secondary {
  color: #e5e5e5;
  border-color: #404040;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.theme-auto .btn-secondary:hover { background: #1a1a1a; border-color: var(--primary); color: #fff; }
.theme-auto .trust-badge {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: #ef4444;
}
.theme-auto .trust-item { color: #737373; }
.theme-auto section h2 { color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
.theme-auto .service-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.theme-auto .service-card::before { background: var(--primary); }
.theme-auto .service-card h3 { color: #fff; }
.theme-auto .service-card:hover { border-color: var(--primary); box-shadow: 0 0 20px rgba(239,68,68,0.1); }
.theme-auto .feature { background: #1a1a1a; border-color: #2a2a2a; }
.theme-auto .feature h3 { color: #fff; }
.theme-auto .why-us { background: #0a0a0a; border-top: 1px solid #1a1a1a; }
.theme-auto .testimonial-card, .theme-auto .review-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.theme-auto .cta-strip {
  background: linear-gradient(135deg, #1a0000, #2d0000);
  border-top: 2px solid var(--primary);
}
.theme-auto .site-footer { background: #000; }
.theme-auto .footer-bottom { border-color: #1a1a1a; }
.theme-auto .form-group input, .theme-auto .form-group textarea {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #e5e5e5;
}
.theme-auto .form-group input:focus, .theme-auto .form-group textarea:focus { border-color: var(--primary); }
.theme-auto .contact-form-wrap { background: #0a0a0a; }
.theme-auto .faq-section { background: #0a0a0a; }
.theme-auto .faq-item { border-color: #2a2a2a; }
.theme-auto .faq-item summary { color: #fff; }
.theme-auto .citation-badge { border-color: #2a2a2a; color: #737373; }
.theme-auto .citation-badge:hover { border-color: var(--primary); color: var(--primary); }
.theme-auto .mobile-cta-bar { background: #0f0f0f; border-color: #1a1a1a; }
.theme-auto .page-hero { background: #000; color: #fff; }
.theme-auto .page-hero .hero-sub { color: #737373; }
.theme-auto .header-phone { background: var(--primary); }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--header-border);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .header-phone { display: none; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  .site-footer { padding-bottom: 5rem; }
  .theme-health .cta-strip { margin: 0 1rem 1rem; border-radius: 20px; }
  .theme-health .hero, .theme-health .page-hero { border-radius: 0 0 24px 24px; }
}
