:root {
  --teal: #0D9488;
  --navy: #0F172A;
  --orange: #F97316;
  --white: #FAFAF9;
  --text: #1E293B;
  --gray-light: #F1F5F9;
  --gray-border: #E2E8F0;
  --teal-light: #CCFBF1;
  --orange-hover: #EA580C;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin: 2rem 0 1rem; }
h3 { font-size: 1.4rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
}
.site-logo span { color: var(--navy); }

.header-phone {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}
.header-phone a { color: var(--navy); }
.header-phone a:hover { color: var(--teal); }

.btn-estimate {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-estimate:hover { background: var(--orange-hover); color: white; }

/* ===== NAVIGATION ===== */
.main-nav { background: var(--navy); }
.main-nav ul {
  list-style: none;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--orange); }

/* Dropdown */
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 0 0 6px 6px;
  z-index: 100;
}
.main-nav li:hover .sub-menu { display: block; }
.main-nav .sub-menu a {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.82)),
              url('') center/cover;
  padding: 80px 0;
  text-align: center;
  color: white;
}
.hero h1 { color: white; font-size: 3rem; margin-bottom: 16px; }
.hero .subhead { color: var(--teal); font-size: 1.3rem; margin-bottom: 32px; font-family: 'Inter', sans-serif; }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-hover); color: white; }
.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.2s;
}
.btn-outline:hover { background: white; color: var(--navy); }
.btn-ghost { color: rgba(255,255,255,0.8); padding: 12px 28px; font-weight: 500; }
.btn-ghost:hover { color: white; }

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-badge .icon {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--gray-light); }
.section-navy { background: var(--navy); color: white; }
.section-navy h2 { color: white; }
.section-teal { background: var(--teal); color: white; }
.section-teal h2 { color: white; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: #64748B; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== TREATMENT CARDS ===== */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.treatment-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.treatment-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.treatment-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.treatment-card .price {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 8px 0;
}
.treatment-card .card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== SAVINGS TABLE ===== */
.savings-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.savings-table thead { background: var(--navy); color: white; }
.savings-table th { padding: 14px 16px; text-align: left; font-weight: 600; }
.savings-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-border); }
.savings-table tbody tr:hover { background: var(--gray-light); }
.savings-pill {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== HOW IT WORKS ===== */
.steps-grid { display: flex; flex-direction: column; gap: 32px; }
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}
.step-content h3 { margin-top: 0; margin-bottom: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px;
}
.testimonial-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.testimonial-stars { color: var(--orange); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-quote { font-style: italic; color: #475569; line-height: 1.6; }
.testimonial-label { font-size: 0.8rem; color: #94A3B8; margin-top: 12px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--teal); transition: transform 0.2s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #475569;
  line-height: 1.6;
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* ===== LEAD MAGNET ===== */
.lead-magnet {
  background: var(--teal);
  color: white;
  padding: 48px;
  border-radius: 12px;
  text-align: center;
}
.lead-magnet h2 { color: white; margin-bottom: 12px; }
.lead-magnet p { opacity: 0.9; margin-bottom: 24px; }
.lead-magnet-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lead-magnet-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  min-width: 280px;
}
.lead-magnet-form button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 64px 20px;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  color: white;
  margin-bottom: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-sub {
  color: var(--teal);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== PAGE TOP CTA BAR ===== */
.page-top-cta {
  background: var(--gray-light);
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.95rem;
  color: var(--text);
}
.page-top-cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-top-cta a { color: var(--teal); }
.page-top-cta .btn-estimate {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ===== CONTENT PAGES ===== */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}
.page-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--teal);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gray-border);
  padding-bottom: 0.5rem;
}
.page-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.page-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.page-content a { color: var(--orange); font-weight: 500; }
.page-content a:hover { color: var(--teal); }
.page-content ul, .page-content ol { margin: 16px 0; padding-left: 24px; }
.page-content li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.page-content strong { color: var(--navy); }
.page-content blockquote {
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
}

/* Content tables — dark header pricing style */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.page-content table thead,
.page-content table th {
  background: var(--navy);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.page-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.95rem;
}
.page-content table tbody tr:nth-child(even) { background: #F8FAFC; }
.page-content table tbody tr:hover { background: var(--teal-light); }

/* AEO answer block styling */
.page-content .aeo-answer-block {
  margin-bottom: 32px;
  border-radius: 8px;
}

/* Inline CTA boxes */
.inline-cta {
  background: var(--teal);
  color: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  margin: 2.5rem 0;
}
.inline-cta h3, .inline-cta h2 { color: white !important; border: none !important; margin-top: 0; }
.inline-cta p { color: rgba(255,255,255,0.95) !important; font-size: 1.05rem; }
.inline-cta a, .inline-cta .btn {
  display: inline-block;
  background: var(--orange);
  color: white !important;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
  transition: background 0.2s;
}
.inline-cta a:hover { background: var(--orange-hover); }

/* Service areas section */
.service-areas {
  background: var(--teal);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin: 2.5rem 0;
}
.service-areas h2 {
  color: white !important;
  border-bottom: 1px solid rgba(255,255,255,0.3) !important;
}
.service-areas p { color: rgba(255,255,255,0.9) !important; }
.service-areas ul { columns: 2; }
.service-areas li { color: rgba(255,255,255,0.9); }

/* Bottom CTA bar */
.page-bottom-cta {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 64px 20px;
  margin-top: 60px;
}
.page-bottom-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: white;
  font-size: 2rem;
  margin-bottom: 12px;
  border: none;
}
.page-bottom-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 20px; }
.page-bottom-cta .phone {
  margin-bottom: 20px;
}
.page-bottom-cta .phone a {
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 700;
}
.page-bottom-cta .btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.2s;
}
.page-bottom-cta .btn:hover { background: var(--orange-hover); }

/* Phone CTA inline */
.phone-cta {
  background: var(--gray-light);
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.phone-cta a { font-weight: 700; font-size: 1.2rem; color: var(--teal); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-border);
  padding: 10px 16px;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
.mobile-sticky-inner { display: flex; gap: 12px; }
.mobile-sticky-inner a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.mobile-phone-btn { background: var(--navy); color: white !important; }
.mobile-estimate-btn { background: var(--orange); color: white !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .page-hero { padding: 48px 20px 40px; min-height: 200px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-top-cta .container { flex-direction: column; text-align: center; }
  .page-top-cta .btn-estimate { margin-left: 0 !important; }
  .page-content { padding: 40px 16px; }
  .page-bottom-cta { padding: 48px 16px; }
  .page-bottom-cta h2 { font-size: 1.6rem; }
  .inline-cta { padding: 24px 16px; }
  .service-areas { padding: 24px 16px; }
  .service-areas ul { columns: 1; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 48px 0; }
  .header-phone { display: none; }
  .hamburger { display: block; }
  .main-nav ul { flex-direction: column; display: none; }
  .main-nav.active ul { display: flex; }
  .main-nav .sub-menu { position: static; box-shadow: none; }
  .treatment-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 70px; }
  .trust-strip { gap: 16px; }
  .trust-badge { font-size: 0.8rem; }
  .lead-magnet { padding: 32px 20px; }
  .lead-magnet-form input[type="email"] { min-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
