/* ============================================
   ALL CLEAR CHARLOTTE — SHARED STYLESHEET
   allclearcharlotte.com | 941-285-0649
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy:   #1B3A6B;
  --navy-dark: #0f2348;
  --orange: #F97316;
  --orange-dark: #ea6d0a;
  --green:  #16A34A;
  --light:  #F8FAFC;
  --gray:   #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(27,58,107,.12);
  --shadow-lg: 0 16px 48px rgba(27,58,107,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .25s ease;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: #475569; line-height: 1.75; }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-navy   { color: var(--navy); }
.text-white  { color: #fff; }
.text-center { text-align: center; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.bg-light  { background: var(--light); }
.bg-navy   { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

/* --- SECTION LABEL --- */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,.1);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: .9rem;
}
.btn-block { width: 100%; justify-content: center; }

/* --- HEADER / NAVBAR --- */
.top-bar {
  background: var(--navy-dark);
  color: #fff;
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar i { margin-right: 5px; color: var(--orange); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(27,58,107,.1);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy-dark);
  font-weight: 800;
}
.logo-text span {
  font-size: .75rem;
  color: var(--gray);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: #334155;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(27,58,107,.06);
}
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
}
.nav-links .dropdown-menu a i {
  color: var(--orange);
  width: 16px;
  text-align: center;
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: #334155;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a i { color: var(--orange); width: 18px; text-align: center; }
.mobile-menu-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,27,66,.92) 0%, rgba(27,58,107,.75) 60%, rgba(249,115,22,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.2);
  border: 1px solid rgba(249,115,22,.4);
  color: #fdba74;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item i { color: var(--orange); font-size: 1rem; }

/* --- QUOTE FORM CARD --- */
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.quote-card h3 {
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.quote-card p { font-size: .9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: .78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}
.form-note i { color: var(--green); }

/* --- STATS BAR --- */
.stats-bar {
  background: var(--orange);
  padding: 24px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: .82rem;
  font-weight: 500;
  opacity: .9;
  margin-top: 4px;
}

/* --- CARDS --- */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-body { padding: 28px; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: rgba(27,58,107,.08);
  color: var(--navy);
}
.card-icon.orange { background: rgba(249,115,22,.1); color: var(--orange); }
.card-icon.green  { background: rgba(22,163,74,.1); color: var(--green); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 16px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* --- SERVICE CARDS --- */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img i {
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}
.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { font-size: .9rem; margin-bottom: 16px; }

/* --- HIGHLIGHT BOX (Estate Cleanout) --- */
.highlight-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.highlight-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(249,115,22,.08);
}
.highlight-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.highlight-text h2 { color: #fff; margin-bottom: 20px; }
.highlight-text p  { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.highlight-list { margin-bottom: 32px; }
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}
.highlight-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.highlight-visual h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.process-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.process-step:last-child { margin-bottom: 0; }
.step-num {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.step-content h5 { color: #fff; font-size: .95rem; margin-bottom: 3px; }
.step-content p  { color: rgba(255,255,255,.6); font-size: .83rem; line-height: 1.5; }

/* --- PRO SERVICES (B2B) --- */
.pro-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
  transition: var(--transition);
}
.pro-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.pro-card:hover::before { background: var(--orange); }
.pro-card .card-icon { margin-bottom: 20px; }
.pro-card h3 { margin-bottom: 10px; }
.pro-card p { font-size: .92rem; margin-bottom: 16px; }
.pro-perks { display: flex; flex-direction: column; gap: 8px; }
.pro-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #334155;
}
.pro-perks li i { color: var(--green); font-size: .8rem; }

/* --- HOW IT WORKS --- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.how-step {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.how-step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.how-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.how-step p  { font-size: .88rem; }
.how-step-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.2rem;
  z-index: 1;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stars {
  color: #f59e0b;
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: .92rem;
  color: #334155;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: #1e293b; }
.author-loc  { font-size: .78rem; color: var(--gray); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray);
  margin-left: auto;
}
.google-badge img { width: 16px; }

/* --- SERVICE AREAS --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.area-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.area-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* --- FAQ --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: #1e293b;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.1rem;
  transition: var(--transition);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: .92rem;
  color: #475569;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #c2410c 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 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,.08);
}
.footer-brand p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin: 14px 0 20px;
  line-height: 1.8;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-col ul a i { font-size: .7rem; color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }

/* --- FLOATING CALL BUTTON (mobile) --- */
.float-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
}
.float-call a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 99px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(249,115,22,.5);
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.float-call a i { font-size: 1.1rem; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 24px rgba(249,115,22,.5); }
  50%       { box-shadow: 0 8px 40px rgba(249,115,22,.8); }
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb i { font-size: .65rem; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }

/* --- CONTENT SECTIONS --- */
.content-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-two-col.reverse { grid-template-columns: 1fr 2fr; }
.prose h2 { margin-bottom: 14px; }
.prose h3 { color: var(--navy); margin: 28px 0 10px; }
.prose p  { margin-bottom: 16px; }
.prose ul { display: flex; flex-direction: column; gap: 8px; margin: 0 0 20px 0; }
.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: #334155;
}
.prose ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .8rem;
}
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.sidebar-card h4 { color: var(--navy-dark); margin-bottom: 16px; }

/* --- BADGE LIST --- */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,.1);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid rgba(22,163,74,.2);
}
.badge i { font-size: .7rem; }

/* --- NOTICE BOX --- */
.notice-box {
  background: rgba(27,58,107,.05);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.notice-box p { color: #334155; font-size: .9rem; margin: 0; }
.notice-box.orange { background: rgba(249,115,22,.06); border-left-color: var(--orange); }
.notice-box.green  { background: rgba(22,163,74,.06); border-left-color: var(--green); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 64px 0; }

  /* Hide desktop nav, show hamburger */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Top bar simplified */
  .top-bar-left span:not(.keep) { display: none; }

  /* Hero */
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .quote-card { padding: 24px 20px; }

  /* Stats */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Grids */
  .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  /* Dump trailer / two-col sections responsive */
  .two-col-grid { grid-template-columns: 1fr !important; }

  /* Highlight */
  .highlight-section .container { grid-template-columns: 1fr; gap: 40px; }

  /* Content */
  .content-two-col, .content-two-col.reverse { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* How step arrows */
  .how-step-arrow { display: none; }

  /* Float call button */
  .float-call { display: block; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- UTILITY --- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-y  { display: flex; flex-direction: column; gap: 16px; }

/* --- RESPONSIVE TABLE --- */
@media (max-width: 600px) {
  table { font-size: .8rem; }
  table th, table td { padding: 10px 12px !important; }
}

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* --- PHONE PULSE --- */
.phone-pulse {
  animation: phone-ring .8s ease-in-out infinite alternate;
}
@keyframes phone-ring {
  from { transform: rotate(-8deg); }
  to   { transform: rotate(8deg); }
}
