/* ============================================
   24/7 AIR SOLUTION — SOUTH FLORIDA HVAC
   Optimized for SEO, Speed & Conversion
   ============================================ */

:root {
  --primary: #0983D8;
  --primary-dark: #065A95;
  --primary-light: #3DA3E8;
  --accent: #FC351B;
  --accent-dark: #C92510;
  --accent-light: #FD5A44;
  --success: #00A86B;
  --warning: #FFB400;
  --danger: #DC2626;
  --text: #0F172A;
  --text-light: #475569;
  --text-muted: #94A3B8;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1240px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: .75rem; }
h4 { font-size: 1.125rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-alt { background: var(--bg-alt); }
.bg-primary { background: var(--primary); color: #fff; }
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary p { color: #fff; }
.bg-dark { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

/* ---------- EMERGENCY BAR ---------- */
.emergency-bar {
  background: var(--accent);
  color: #fff;
  padding: .5rem 1rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
}
.emergency-bar a { color: #fff; text-decoration: underline; font-weight: 800; }
.emergency-bar .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: .4rem;
  animation: pulse 1.5s infinite;
  vertical-align: middle;
}
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.3 } }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.25rem;
  color: var(--primary); white-space: nowrap;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1rem;
  box-shadow: var(--shadow);
}
.nav-menu {
  display: flex; gap: 2rem; align-items: center;
}
.nav-menu a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown > a::after { content: ' ▾'; font-size: .7em; }
.nav-menu .dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: .5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s;
}
.nav-menu .dropdown:hover .dropdown-menu,
.nav-menu .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: .6rem 1.2rem; font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--primary); }

.cta-phone {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent);
  color: #fff !important;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(252,53,27,.4);
  transition: transform .15s, box-shadow .15s;
}
.cta-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(252,53,27,.55);
}

.mobile-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--text);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(252,53,27,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61,163,232,.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}
.badge::before { content: '✓'; color: var(--accent-light); font-weight: 900; }

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(252,53,27,.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252,53,27,.55);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: transparent;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg { padding: 1.15rem 2.25rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ---------- HERO FORM ---------- */
.hero-form {
  background: #fff;
  color: var(--text);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.hero-form h3 {
  color: var(--text);
  margin-bottom: .25rem;
}
.hero-form .form-sub {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9,131,216,.12);
}
.form-disclaimer {
  font-size: .75rem; color: var(--text-muted);
  margin-top: .75rem;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--bg-alt);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
}
.trust-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
  flex-shrink: 0;
}

/* ---------- CARDS / GRIDS ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-align: left;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.card-icon.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}
.card h3 { margin-bottom: .5rem; font-size: 1.25rem; }
.card p { font-size: .95rem; margin-bottom: 1rem; }
.card .link-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 700; color: var(--primary);
}
.card .link-arrow::after {
  content: '→';
  transition: transform .15s;
}
.card .link-arrow:hover::after { transform: translateX(4px); }

/* ---------- SECTION HEADINGS ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-label {
  color: var(--text-light);
  font-weight: 600;
  margin-top: .5rem;
}

/* ---------- PROCESS / STEPS ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step { position: relative; padding-left: 0; counter-increment: step; }
.step-num {
  width: 50px; height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins'; font-weight: 800; font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1.15rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.stars { color: var(--warning); margin-bottom: .75rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700; color: var(--text); font-size: .95rem;
}
.testimonial-meta { font-size: .85rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .2s;
}
.faq-item.open .faq-q::after {
  content: '−';
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--text-light);
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: .75rem;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-section .btn-secondary { color: var(--accent); }
.cta-section .btn-secondary:hover { color: #fff; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--accent-light); }
.site-footer ul li { margin-bottom: .6rem; font-size: .92rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: .6rem;
  color: #fff; font-weight: 800; font-family: 'Poppins'; font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-cta {
  display: inline-block;
  margin-top: .75rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-light) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); margin: 0 .5rem; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  background: var(--bg-alt);
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs span { margin: 0 .4rem; color: var(--text-muted); }
.breadcrumbs .current { color: var(--text); font-weight: 600; }

/* ---------- PAGE HERO (smaller for inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 700px; margin: 0 auto 1.5rem; }

/* ---------- CONTENT PAGES ---------- */
.content {
  max-width: 800px;
  margin: 0 auto;
}
.content h2 { margin-top: 2.5rem; }
.content h3 { margin-top: 2rem; }
.content ul, .content ol {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--text-light);
}
.content ul li { list-style: disc; margin-bottom: .5rem; }
.content ol li { list-style: decimal; margin-bottom: .5rem; }
.content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 3rem;
  position: relative;
}
.blog-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,131,216,.2), rgba(252,53,27,.2));
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-tag {
  display: inline-block;
  background: rgba(252,53,27,.1);
  color: var(--accent-dark);
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  width: fit-content;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-meta {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Blog post body */
.post-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 1.5rem;
  text-align: center;
}
.post-header h1 { margin-bottom: 1rem; }
.post-meta {
  color: var(--text-muted);
  font-size: .95rem;
}
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 4rem;
  font-size: 1.075rem;
  line-height: 1.75;
}
.post-body h2 { margin-top: 2.5rem; }
.post-body h3 { margin-top: 1.75rem; }
.post-body p, .post-body li { color: var(--text); }
.post-body ul, .post-body ol { margin: 0 0 1.5rem 1.5rem; }
.post-body ul li { list-style: disc; margin-bottom: .6rem; }
.post-body ol li { list-style: decimal; margin-bottom: .6rem; }
.post-body a { text-decoration: underline; }

/* ---------- LOCATION PAGES ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.location-grid a {
  display: block;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.location-grid a:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
  transform: translateX(4px);
  color: var(--primary);
}
.location-grid a::before { content: '📍 '; }

/* ---------- SERVICE LIST (in service pages) ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-item {
  display: flex; gap: 1rem;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.feature-check {
  width: 28px; height: 28px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem;
  flex-shrink: 0;
}
.feature-item strong { display: block; margin-bottom: .15rem; color: var(--text); }
.feature-item span { color: var(--text-light); font-size: .9rem; }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent);
  padding: .75rem 1rem;
  z-index: 99;
  box-shadow: 0 -4px 12px rgba(0,0,0,.15);
}
.sticky-mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform .25s;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a {
    padding: .75rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu .dropdown > a::after { content: ''; }
  .nav-menu .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    padding-left: 1rem;
  }
  .mobile-toggle { display: block; }
  .cta-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 60px; }
  .trust-bar .container { justify-content: flex-start; }
}

/* ---------- UTILITIES ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none !important; }
