/*
Theme Name: 855for1095
Theme URI: https://855for1095.com
Author: 855for1095
Author URI: https://855for1095.com
Description: Custom WordPress theme for 855for1095.com — Free ACA 1095-A tax form retrieval service.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 855for1095
Tags: custom-theme, healthcare, tax-forms
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy: #0f1b2d;
  --navy-mid: #162035;
  --navy-light: #1e2d47;
  --teal: #2dd4bf;
  --teal-dark: #14b8a2;
  --teal-darker: #0d9488;
  --green-btn: #22c55e;
  --green-btn-hover: #16a34a;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --orange-border: #fed7aa;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --text-dark: #0f172a;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.entry-content p { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-gray { background: var(--gray-100); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn--green {
  background: var(--green-btn);
  color: var(--white);
}
.btn--green:hover { background: var(--green-btn-hover); transform: translateY(-1px); }
.btn--teal {
  background: var(--teal);
  color: var(--navy);
}
.btn--teal:hover { background: var(--teal-dark); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.btn--sm {
  padding: 12px 24px;
  font-size: 16px;
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover { background: #ea6c00; }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.top-bar svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.top-bar .sep { color: rgba(255,255,255,0.3); margin: 0 4px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}
.site-logo span.for { color: var(--gray-400); font-weight: 400; }
.site-logo span.num { color: var(--teal); }
.site-logo span.dot { color: var(--gray-400); font-weight: 400; }

/* Nav menu */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}
.header-phone svg { color: var(--teal); width: 18px; height: 18px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 16px; }
  .header-phone { display: none; }
}

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.urgency-banner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}
.urgency-banner svg { color: var(--orange); width: 16px; height: 16px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 100px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.08) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 span { color: var(--teal); }
.hero__sub {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__trust {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   STICKY ALERT BAR
   ============================================================ */
.alert-bar {
  background: var(--orange-light);
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
  padding: 14px 0;
}
.alert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.alert-bar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
}
.alert-bar__text svg { color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }
.alert-bar__text strong { color: var(--orange); }

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-is {
  background: var(--white);
  padding: 80px 0;
}
.what-is__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.what-is__content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}
.what-is__content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}
.what-is__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.info-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.info-card__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.what-is__cta { margin-top: 32px; }

@media (max-width: 768px) {
  .what-is__grid { grid-template-columns: 1fr; gap: 40px; }
  .what-is__cards { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW TO SECTION
   ============================================================ */
.how-to {
  background: var(--gray-100);
  padding: 80px 0;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.step-card__num {
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY YOU NEED SECTION
   ============================================================ */
.why-need {
  background: var(--white);
  padding: 80px 0;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.checklist__item svg {
  color: var(--teal-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .checklist { grid-template-columns: 1fr; }
}

/* ============================================================
   RECONCILIATION SECTION
   ============================================================ */
.reconciliation {
  background: var(--gray-100);
  padding: 80px 0;
}
.recon-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.7;
}
.warning-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.warning-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--orange);
}
.warning-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.warning-card__title span { font-size: 18px; }
.warning-card p { font-size: 14px; color: var(--gray-600); }

@media (max-width: 600px) {
  .warning-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY CALL US
   ============================================================ */
.why-us {
  background: var(--white);
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.feature-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(45,212,191,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-600); }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--gray-100); padding: 80px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial-card__quote {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 14px; }
.testimonial-card__location { font-size: 12px; color: var(--gray-400); }

@media (max-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.final-cta h2 { font-size: 36px; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.trust-badge svg { color: var(--teal); width: 18px; height: 18px; }

/* ============================================================
   BLOG / ARTICLE SECTION
   ============================================================ */
.article-section { padding: 80px 0; background: var(--white); }
.article-section h2 { font-size: 28px; margin-bottom: 16px; }
.article-section h3 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; }
.article-section p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.article-section ol { padding-left: 24px; margin-bottom: 16px; }
.article-section ol li { font-size: 15px; color: var(--gray-600); margin-bottom: 8px; }

.step-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  border-left: 4px solid var(--teal);
}
.step-block__num {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.step-block h4 { font-size: 16px; margin-bottom: 8px; }
.step-block p { font-size: 14px; color: var(--gray-600); margin: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.service-card__icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.whatis-explainer {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
}
.whatis-explainer h2 { font-size: 28px; margin-bottom: 16px; }
.whatis-explainer p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }

.reasons-list { counter-reset: reasons; }
.reasons-list li {
  counter-increment: reasons;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  color: var(--gray-700);
}
.reasons-list li::before {
  content: counter(reasons);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATES PAGE
   ============================================================ */
.states-hero-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.state-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.state-tab {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-700);
  transition: all 0.2s;
  text-decoration: none;
}
.state-tab:hover, .state-tab.active {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.state-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
  scroll-margin-top: 80px;
}
.state-block h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.state-block__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(45,212,191,0.1);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.state-block p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.state-mid-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: var(--white);
  margin: 32px 0;
}
.state-mid-cta p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stat-card {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.stat-card__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.stat-card__label { font-size: 14px; color: var(--gray-500); }

.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.mission-block h2 { font-size: 32px; margin-bottom: 16px; }
.mission-block p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.value-card__icon { font-size: 28px; margin-bottom: 12px; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .mission-block { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  line-height: 1.4;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--teal-dark);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-top: 16px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 28px; margin-bottom: 8px; }
.contact-info > p { font-size: 15px; color: var(--gray-600); margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(45,212,191,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-detail h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--gray-500); }
.contact-detail a { color: var(--teal-dark); }

.contact-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.contact-cta-box h3 { font-size: 22px; margin-bottom: 12px; }
.contact-cta-box p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.contact-phone-big {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}
.contact-cta-box .hours { font-size: 13px; color: rgba(255,255,255,0.5); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 12px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-line svg { color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom__links { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  .btn { font-size: 16px; padding: 14px 24px; }
  .hero h1 { font-size: 30px; }
  .site-header__inner { padding: 12px 16px; }
}
