/* ============================================================
   dumpstercompanieskc.com — Custom Styles
   Brand palette inspired by Dump It KC: deep navy, bold orange,
   clean white. Accent: dark charcoal text.
   ============================================================ */

:root {
  --navy:       #0d2240;
  --navy-mid:   #163560;
  --orange:     #f97316;
  --orange-dk:  #ea6c0b;
  --gold:       #f59e0b;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --green:      #16a34a;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(13,34,64,.15);
  --shadow-lg:  0 8px 48px rgba(13,34,64,.22);
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dk); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
p  { margin-bottom: 1rem; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section { padding: 72px 0; }
.section-alt { background: var(--gray-100); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

/* ── Skip link ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top:-40px; left:0;
  background: var(--orange); color: var(--white);
  padding: .5rem 1rem; border-radius:0 0 var(--radius) 0;
  font-size:.875rem; z-index:9999;
  transition: top .2s;
}
.skip-link:focus { top:0; }

/* ── Top bar ────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  padding: 6px 0;
  text-align: center;
  letter-spacing: .03em;
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--orange); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,34,64,.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 1rem;
}
.site-logo img { height: 54px; width: auto; }
.header-tagline {
  font-family: var(--font-head);
  font-size: .8rem;
  color: var(--gray-600);
  font-weight: 600;
  text-align: right;
  line-height: 1.4;
}
.header-tagline span { display: block; color: var(--orange); font-size: 1rem; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a4a8a 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.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");
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero h1 span { color: var(--orange); }
.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge-orange { background: var(--orange); border-color: var(--orange); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  letter-spacing: .03em;
  text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-green  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #15803d; border-color: #15803d; color: var(--white); transform: translateY(-2px); }
.btn-sms    { background: #0ea5e9; color: var(--white); border-color: #0ea5e9; }
.btn-sms:hover { background: #0284c7; color: var(--white); }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ── Featured Provider ──────────────────────────────────── */
.featured-section {
  padding: 80px 0;
  background: var(--white);
}
.featured-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.featured-card {
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(249,115,22,.08), transparent 70%);
  pointer-events: none;
}
.featured-card-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.featured-logo-wrap { text-align: center; }
.featured-logo-wrap img { max-width: 220px; margin: 0 auto 1.5rem; }
.featured-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.featured-rating-text { font-size: .85rem; color: var(--gray-600); font-weight: 600; }
.featured-content h2 { margin-bottom: .75rem; }
.featured-content h2 span { color: var(--orange); }
.featured-tagline {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.featured-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.highlight-item {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.highlight-item .hi-icon { font-size: 1.75rem; margin-bottom: .4rem; }
.highlight-item .hi-label { font-size: .78rem; font-weight: 700; color: var(--navy); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; }
.featured-desc { color: var(--gray-600); margin-bottom: 2rem; font-size: .97rem; line-height: 1.75; }

/* ── Why / intro section ────────────────────────────────── */
.intro-section { padding: 72px 0; background: var(--navy); }
.intro-section h2, .intro-section h3 { color: var(--white); }
.intro-section p { color: rgba(255,255,255,.82); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.intro-text h6 { color: var(--gold); }
.intro-text h2 { color: var(--white); margin: .5rem 0 1.25rem; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }
.keyword-list { margin-top: 1.5rem; }
.keyword-list li {
  color: rgba(255,255,255,.78);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .93rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.keyword-list li::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ── Provider Cards (other sites) ──────────────────────── */
.providers-section { padding: 80px 0; background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h6 { margin-bottom: .5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-600); max-width: 600px; margin: 0 auto; }

.providers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.provider-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.provider-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.provider-logo-wrap { min-height: 80px; display: flex; align-items: center; margin-bottom: 1.25rem; }
.provider-logo-wrap img { max-height: 70px; max-width: 180px; object-fit: contain; }
.provider-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.provider-card h4 { font-size: .9rem; color: var(--orange); font-family: var(--font-head); font-weight: 600; margin-bottom: 1rem; }
.provider-card p { color: var(--gray-600); font-size: .93rem; flex: 1; line-height: 1.72; }
.provider-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0;
}
.meta-tag {
  background: var(--gray-100);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.provider-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }

/* ── How it works ───────────────────────────────────────── */
.how-section { padding: 80px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-card h4 { margin-bottom: .6rem; }
.step-card p { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--gray-100); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}
.faq-item h5 { color: var(--navy); margin-bottom: .5rem; font-size: .97rem; }
.faq-item p { color: var(--gray-600); font-size: .9rem; margin: 0; line-height: 1.65; }

/* ── Areas ───────────────────────────────────────────────── */
.areas-section { padding: 72px 0; background: var(--navy); }
.areas-section h2 { color: var(--white); text-align: center; margin-bottom: 1rem; }
.areas-section > .container > p { color: rgba(255,255,255,.75); text-align: center; margin-bottom: 2.5rem; }
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.area-tag {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 500;
  transition: background .2s, color .2s;
}
.area-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner .btn-outline { border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--orange); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 3rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-brand img { max-width: 180px; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h5 { color: var(--white); font-family: var(--font-head); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  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); }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--gray-100);
  padding: 10px 0;
  font-size: .82rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 .4rem; }

/* ── Scroll to top ───────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249,115,22,.45);
  z-index: 200;
  transition: background .2s, transform .2s;
}
#scrollTop:hover { background: var(--orange-dk); transform: translateY(-2px); }
#scrollTop.visible { display: flex; }

/* ── Sharethis override ──────────────────────────────────── */
.sharethis-wrap { padding: 1.5rem 0; text-align: center; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-card-inner { grid-template-columns: 1fr; gap: 2rem; }
  .featured-logo-wrap img { max-width: 180px; }
  .featured-highlights { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .providers-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .featured-card { padding: 28px 20px; }
  .featured-highlights { grid-template-columns: repeat(3,1fr); gap: .5rem; }
  .stat-row { grid-template-columns: repeat(3,1fr); }
  .header-tagline { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .featured-highlights { grid-template-columns: repeat(2,1fr); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  /* Keep inline groups on one row even on small screens */
  .btn-group-inline { flex-direction: row !important; align-items: center; flex-wrap: nowrap; }
  .btn-group-inline .btn { flex: 0 0 auto; white-space: nowrap; }
  /* Hero specifically — allow slight font shrink but stay inline */
  .hero .btn-group-inline .btn-lg { padding: .7rem 1rem; font-size: .88rem; }
  .hero { padding: 56px 0 48px; }
}

/* ── Sitemap page specifics ──────────────────────────────── */
.sitemap-list { padding: 2rem 0; }
.sitemap-list h3 { color: var(--navy); margin: 2rem 0 1rem; font-size: 1.1rem; border-bottom: 2px solid var(--orange); display: inline-block; padding-bottom: .25rem; }
.sitemap-list ul { margin-left: 1.5rem; }
.sitemap-list ul li { margin-bottom: .5rem; }
.sitemap-list ul li a { color: var(--gray-800); font-size: .93rem; }
.sitemap-list ul li a:hover { color: var(--orange); }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .cta-banner, #scrollTop, .topbar { display: none; }
  .hero { background: var(--navy) !important; -webkit-print-color-adjust: exact; }
}

/* ── Hero layout with right-side image ──────────────────────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap img {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-width: 100%; }
}

/* ── Inline button groups (all on one line) ──────────────────────────────── */
.btn-group-inline,
.provider-actions-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: .5rem;
  align-items: center;
}
/* Buttons shrink to content — do NOT stretch */
.btn-group-inline .btn,
.provider-actions-inline .btn {
  white-space: nowrap;
  flex: 0 0 auto;
  justify-content: center;
}
/* Featured card 3-button row: compact sizing so all 3 fit one line */
.featured-section .btn-group-inline .btn-lg {
  padding: .7rem 1.1rem;
  font-size: .88rem;
  gap: .35rem;
}
@media (max-width: 640px) {
  .featured-section .btn-group-inline .btn-lg {
    padding: .6rem .85rem;
    font-size: .82rem;
  }
}
@media (max-width: 480px) {
  /* provider actions can wrap, hero inline group stays on one line */
  .provider-actions-inline {
    flex-wrap: wrap;
  }
  .provider-actions-inline .btn {
    flex: 1 1 auto;
  }
}

/* ── Provider logos: larger + centered ──────────────────────────────────── */
.provider-logo-center {
  text-align: center;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 1.5rem;
}
.provider-logo-center img {
  max-width: 240px;
  max-height: 100px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* ── Contact / Quote Form ────────────────────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-form {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group-full {
  max-width: 860px;
  margin: 0 auto 1.5rem;
}
.form-group label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.form-group label .fa-solid { color: var(--orange); font-size: .9rem; }
.req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-submit-wrap {
  text-align: center;
  margin-top: 1.5rem;
}
.form-disclaimer {
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.form-disclaimer .fa-lock { color: var(--green); }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ── Topbar with Add Your Company link ─────────────────────────────────────── */
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-add-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.topbar-add-link:hover {
  background: var(--orange-dk) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ── Featured card overflow fix ─────────────────────────────────────────────── */
.featured-card-inner {
  overflow: hidden;
}
.featured-card-inner > * {
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
.featured-content {
  min-width: 0;
  overflow: hidden;
}
.featured-content h3,
.featured-content p,
.featured-content .featured-tagline {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
/* btn-group-inline: no wrap by default — only the featured card 3-btn row may wrap on tiny screens */
.featured-section .btn-group-inline {
  flex-wrap: wrap;
}

/* ── Spinner / loading button states ────────────────────────────────────────── */
.btn-loading {
  opacity: .85;
  pointer-events: none;
  cursor: not-allowed;
}
.btn-icon-spin { display: none !important; }
.btn-label-spin { display: none !important; }
.btn-loading .btn-icon-default { display: none !important; }
.btn-loading .btn-icon-spin { display: inline-block !important; }
.btn-loading .btn-label-default { display: none !important; }
.btn-loading .btn-label-spin { display: inline !important; }

/* ── Thank-you modal ────────────────────────────────────────────────────────── */
.ty-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ty-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,34,64,.72);
  backdrop-filter: blur(3px);
}
.ty-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(13,34,64,.35);
  animation: tyModalIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes tyModalIn {
  from { opacity: 0; transform: scale(.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.ty-modal-icon {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1;
}
.ty-modal-box h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.ty-modal-box p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.ty-modal-close {
  min-width: 180px;
}
@media (max-width: 480px) {
  .ty-modal-box {
    padding: 2rem 1.5rem;
    border-radius: 14px;
  }
  .ty-modal-icon { font-size: 3rem; }
  .ty-modal-box h3 { font-size: 1.4rem; }
}

/* ── Trusted section visual flair ───────────────────────────────────────────── */
.trusted-section-wrap {
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.trusted-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.trusted-header h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  margin-top: .75rem;
  color: var(--navy);
}
.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--orange);
}
.trusted-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.trusted-pillar {
  background: linear-gradient(145deg, #fff 60%, #fff7ed);
  border: 1.5px solid var(--gray-200);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.trusted-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(249,115,22,.15);
}
.tp-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.trusted-pillar h4 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.trusted-pillar p {
  font-size: .83rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}
.trusted-body {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border-left: 5px solid var(--orange);
}
.trusted-body p {
  color: var(--gray-800);
  font-size: .95rem;
  line-height: 1.78;
  margin-bottom: .85rem;
}
.trusted-body p:last-child { margin-bottom: 0; }
.trusted-body a { color: var(--orange); font-weight: 600; }
.trusted-body a:hover { color: var(--orange-dk); }
@media (max-width: 900px) {
  .trusted-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trusted-pillars { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .trusted-body { padding: 1.5rem 1.25rem; }
}

/* ── Directory listing form section ─────────────────────────────────────────── */
.dir-section { background: var(--gray-100); }
.dir-form { border-top: 4px solid var(--orange); }

/* ── Mobile responsive audit — additional fixes ─────────────────────────────── */
@media (max-width: 768px) {
  /* Featured card: ensure no overflow on mobile */
  .featured-card-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .featured-card {
    overflow: hidden;
  }
  /* Trusted pillars */
  .trusted-pillars { grid-template-columns: repeat(2, 1fr); }
  /* Topbar stacks on small screens */
  .topbar-inner { flex-direction: column; gap: .5rem; }
  /* Directory form grid */
  .dir-form .form-grid { grid-template-columns: 1fr; }
  /* Provider actions wrap on mobile */
  .provider-actions-inline { flex-wrap: wrap !important; }
}
@media (max-width: 480px) {
  /* Container padding */
  .container { padding: 0 .75rem; }
  /* Hero */
  .hero-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  /* Featured highlights 2-col on tiny screens */
  .featured-highlights { grid-template-columns: repeat(2, 1fr) !important; gap: .5rem; }
  /* btn-group full width on mobile */
  .btn-group-inline .btn { font-size: .8rem; padding: .65rem .75rem; }
  /* Typography scale */
  h1 { font-size: clamp(1.6rem, 6vw, 2.25rem); }
  h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  /* Stat row */
  .stat-row { grid-template-columns: 1fr 1fr; }
  /* Trusted pillars single col below 360 */
  .trusted-pillars { grid-template-columns: 1fr 1fr; }
  /* Add Your Company modal close */
  .ty-modal-close { width: 100%; }
}

/* ── Featured badge pill (above featured card) ──────────────────────────── */
.featured-badge-wrap {
  text-align: center;
  margin-bottom: -1.25rem;
  position: relative;
  z-index: 2;
}
.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem 1.25rem;
  border-radius: 999px;
  border: 2.5px solid var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,.25);
}

/* ── Listing tier badges (Premium / Standard) ───────────────────────────── */
.listing-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.listing-tier-premium {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(249,115,22,.3);
}
.listing-tier-standard {
  background: var(--gray-200);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}

/* ── Standard listings grid + placeholder ───────────────────────────────── */
.standard-listings-wrap {
  margin-top: 1rem;
}
.standard-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.standard-listing-placeholder {
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  min-height: 120px;
  justify-content: center;
}
.standard-listing-placeholder i {
  font-size: 2rem;
  color: var(--gray-400);
}
.standard-listing-placeholder p {
  font-size: .9rem;
  margin: 0;
  color: var(--gray-600);
}
.standard-listing-placeholder a {
  color: var(--orange);
  font-weight: 600;
}

/* ── Featured badge — sits ON the top border of the card ───────────────── */
.featured-badge-wrap {
  text-align: center;
  margin-bottom: -1.1rem;
  position: relative;
  z-index: 3;
}
.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem 1.25rem;
  border-radius: 999px;
  border: 2.5px solid var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,.25);
}

/* ── 10-Point Listing Criteria section ──────────────────────────────────── */
.criteria-section {
  background: var(--white);
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.criteria-card {
  background: var(--gray-50, #f8fafc);
  border: 1.5px solid var(--gray-200);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: transform .22s, box-shadow .22s;
}
.criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13,34,64,.1);
}
.criteria-number {
  position: absolute;
  top: .85rem;
  right: 1rem;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  user-select: none;
}
.criteria-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .85rem;
}
.criteria-card h4 {
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}
.criteria-card p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}
.criteria-cta {
  margin-top: 2.5rem;
  text-align: center;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border-left: 5px solid var(--orange);
}
.criteria-cta p {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0;
}
.criteria-cta a {
  color: var(--orange);
  font-weight: 700;
}
@media (max-width: 1100px) {
  .criteria-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .criteria-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .criteria-card { padding: 1.25rem 1rem; }
}
@media (max-width: 380px) {
  .criteria-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — FULL AUDIT REWRITE
   Covers: header, topbar, hero, featured card, providers,
           trusted section, criteria grid, forms, footer,
           modal, directory form, standard listings
   ════════════════════════════════════════════════════════════════ */

/* ── 1024px — tablet landscape ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .criteria-grid { grid-template-columns: repeat(4, 1fr); }
  .trusted-pillars { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px — tablet portrait ────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Header */
  .site-header .container { flex-wrap: wrap; gap: .75rem; }
  .header-tagline { display: none; }
  .nav-links { gap: .75rem; }

  /* Hero */
  .hero-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-image-wrap { order: -1; max-width: 480px; margin: 0 auto; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }

  /* Featured card */
  .featured-card-inner { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .featured-logo-wrap { text-align: center; }

  /* Trusted pillars */
  .trusted-pillars { grid-template-columns: repeat(2, 1fr); }

  /* Criteria */
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 768px — large mobile / small tablet ────────────────────────────────── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-inner { flex-direction: column; gap: .4rem; text-align: center; }
  .topbar-inner span { font-size: .78rem; }

  /* Header */
  .site-header .container { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .site-logo img { max-width: 180px; }
  .nav-links { flex-wrap: wrap; gap: .5rem; font-size: .82rem; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero-layout { gap: 1.25rem; }
  .hero p { font-size: .95rem; }

  /* Stats */
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .stat-number { font-size: 1.6rem; }

  /* Featured */
  .featured-card { padding: 24px 18px; }
  .featured-highlights { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .featured-tagline { font-size: .85rem; }

  /* Providers */
  .providers-grid { grid-template-columns: 1fr; }
  .provider-card { padding: 1.5rem; }

  /* Trusted body */
  .trusted-body { padding: 1.5rem; }
  .trusted-pillars { grid-template-columns: repeat(2, 1fr); gap: .85rem; }

  /* Criteria */
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  /* Dir form */
  .dir-form .form-grid { grid-template-columns: 1fr; }

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

  /* Standard listings */
  .standard-listings-grid { grid-template-columns: 1fr; }
}

/* ── 600px — mobile ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Container */
  .container { padding: 0 1rem; }

  /* Typography */
  h1 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  h2 { font-size: clamp(1.2rem, 5vw, 1.65rem) !important; }
  h3 { font-size: clamp(1rem, 4.5vw, 1.35rem); }

  /* Topbar */
  .topbar { padding: .5rem 0; font-size: .75rem; }
  .topbar-add-link { font-size: .72rem; padding: .28rem .7rem; }

  /* Hero */
  .hero { padding: 40px 0 32px; }
  .hero-image-wrap { display: none; } /* hide on very small — hero text is enough */
  .btn-group-inline { gap: .4rem; }
  .btn-group-inline .btn-lg { padding: .65rem .9rem; font-size: .84rem; }

  /* Stats */
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .stat-item { padding: .75rem .5rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: .68rem; }

  /* Featured card */
  .featured-card { padding: 20px 14px; border-radius: 14px; }
  .featured-highlights { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .highlight-item { padding: .6rem .5rem; font-size: .72rem; }
  .featured-section .btn-group-inline .btn-lg { padding: .55rem .7rem; font-size: .78rem; }

  /* Provider cards */
  .provider-card { padding: 1.25rem; }
  .provider-logo-center img { max-width: 180px; }
  .provider-actions-inline { flex-wrap: wrap; gap: .4rem; }
  .provider-actions-inline .btn { flex: 1 1 calc(50% - .4rem); text-align: center; justify-content: center; }

  /* Trusted section */
  .trusted-section-wrap { margin-top: 2rem; }
  .trusted-header h3 { font-size: 1.1rem; }
  .trusted-pillars { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .trusted-pillar { padding: 1rem .85rem; }
  .tp-icon { width: 40px; height: 40px; font-size: 1rem; }
  .trusted-pillar h4 { font-size: .85rem; }
  .trusted-pillar p { font-size: .77rem; }
  .trusted-body { padding: 1.25rem; }
  .trusted-body p { font-size: .88rem; }

  /* Criteria */
  .criteria-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .criteria-card { padding: 1.1rem .9rem; }
  .criteria-number { font-size: 1.2rem; }
  .criteria-icon { width: 36px; height: 36px; font-size: .95rem; }
  .criteria-card h4 { font-size: .82rem; }
  .criteria-card p { font-size: .76rem; }

  /* Forms */
  .contact-form { padding: 1.25rem; border-radius: 12px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: .9rem; padding: .65rem .85rem; }

  /* Modal */
  .ty-modal-box { padding: 1.75rem 1.25rem; border-radius: 12px; }
  .ty-modal-icon { font-size: 2.75rem; }
  .ty-modal-box h3 { font-size: 1.3rem; }
  .ty-modal-close { width: 100%; }

  /* Section padding */
  .section { padding: 48px 0; }

  /* Footer */
  .site-footer { padding: 2.5rem 0 1.5rem; }
  .footer-logo img { max-width: 140px; }
}

/* ── 400px — small phones ────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .container { padding: 0 .75rem; }

  /* Stat row — 3 col forced */
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .stat-number { font-size: 1.2rem; }

  /* Criteria — single col on tiny screens */
  .criteria-grid { grid-template-columns: 1fr; }

  /* Provider action buttons full width */
  .provider-actions-inline .btn { flex: 1 1 100%; }

  /* Featured buttons — allow wrap */
  .featured-section .btn-group-inline { flex-wrap: wrap; gap: .4rem; }
  .featured-section .btn-group-inline .btn-lg { flex: 1 1 100%; justify-content: center; }

  /* Trusted pillars single col */
  .trusted-pillars { grid-template-columns: 1fr; }
}
