
/* ===========================
   NEAT FREAKS — NeatFreaks.org
   Navy #1a3a6b | Red #d32f2f | White #ffffff
   =========================== */

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

:root {
  --navy: #1a3a6b;
  --navy-dark: #122a52;
  --navy-light: #2a4f8f;
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f4f5f8;
  --gray-100: #e8eaf0;
  --gray-300: #b0b8cc;
  --gray-600: #5a6580;
  --gray-800: #1e2535;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,58,107,0.10);
  --shadow-lg: 0 8px 40px rgba(26,58,107,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 12px 24px; border-radius: 8px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
/* Hero outline button — navy on white background */
.hero .btn-outline { color: var(--navy); border-color: var(--navy); }
.hero .btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-nav { background: var(--red); color: var(--white); border-color: var(--red); padding: 10px 20px; font-size: 14px; }
.btn-nav:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-family: var(--font-display); font-size: 20px; color: var(--navy); }
.logo-sub { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: var(--red); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  background: var(--white); border-top: 1px solid var(--gray-100); gap: 4px;
}
.mobile-menu a { padding: 12px 0; font-weight: 600; color: var(--gray-800); text-decoration: none; border-bottom: 1px solid var(--gray-100); }
.mobile-menu .btn { margin-top: 12px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  background: var(--white);
  padding: 100px 0 0;
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--navy);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.hero-content { padding-bottom: 64px; }
.hero-badge {
  display: inline-block; background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 62px);
  color: var(--navy); line-height: 1.05; margin-bottom: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease; min-height: 160px;
}
.hero-headline em { color: var(--red); font-style: italic; }
.hero-sub { font-size: 17px; color: var(--gray-600); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.hero-mascot { display: flex; align-items: flex-end; justify-content: center; }
.octo-img { width: 100%; max-width: 420px; object-fit: contain; }
.hero-wave { display: none; }

/* ---- QUOTE ROUTER ---- */
.quote-router {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.quote-router-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}
.router-kicker {
  color: #ffcdcd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.quote-router h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--white);
}
.quote-router p {
  font-size: 14px;
  color: rgba(255,255,255,0.74);
}
.router-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.router-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  transition: all 0.2s ease;
}
.router-links a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

/* ---- HOMEPAGE VIDEO ---- */
.video-feature-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-100);
}
.video-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}
.video-copy .section-title,
.video-copy .section-label {
  text-align: left;
}
.video-copy .section-title {
  max-width: 620px;
}
.video-copy .section-desc {
  margin-left: 0;
  max-width: 560px;
}
.homepage-video-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.homepage-ad-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 660px;
  object-fit: cover;
  background: var(--navy-dark);
  border-radius: 28px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.video-quote-btn {
  align-self: center;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--gray-600); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ---- SERVICES ---- */
.services-section { background: var(--off-white); }
.services-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 28px; border-radius: 100px; border: 2px solid var(--gray-100);
  background: var(--white); font-family: var(--font-body); font-size: 15px;
  font-weight: 700; color: var(--gray-600); cursor: pointer; transition: all 0.2s;
}
.tab-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tab-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-100); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.services-cta { text-align: center; margin-top: 48px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- WHY US ---- */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-title { text-align: left; }
.why-content .section-label { text-align: left; }
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.why-point h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-point p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.why-mascot { display: flex; justify-content: center; }
.why-mascot-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; position: relative;
  border: 2px solid var(--gray-100);
}
.why-octo { width: 220px; object-fit: contain; }
.why-stat {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 16px 24px; margin-top: 24px;
}
.stat-number { font-family: var(--font-display); font-size: 36px; color: var(--white); line-height: 1; }
.stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--off-white); }
.stars-row { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 8px; font-size: 20px; }
.stars-row span { font-size: 14px; font-weight: 600; color: var(--gray-600); }
.reviews-carousel { position: relative; max-width: 700px; margin: 0 auto; min-height: 240px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow); display: none; border: 1px solid var(--gray-100);
}
.review-card.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.review-stars { font-size: 20px; margin-bottom: 20px; }
.review-text { font-size: 17px; color: var(--gray-800); line-height: 1.75; font-style: italic; margin-bottom: 28px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  color: var(--white); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.review-source { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300);
  border: none; cursor: pointer; transition: all 0.2s; padding: 0;
}
.dot.active { background: var(--navy); transform: scale(1.2); }
.reviews-note {
  text-align: center; margin-top: 20px; font-size: 12px;
  color: var(--red); font-weight: 600; opacity: 0.7;
}

/* ---- ABOUT ---- */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-label, .about-content .section-title { text-align: left; }
.about-content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.about-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.contact-link { font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none; transition: color 0.2s; }
.contact-link:hover { color: var(--red); }
.about-mascot { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.about-octo { width: 260px; object-fit: contain; }
.about-bubble {
  background: var(--navy); color: var(--white); padding: 14px 20px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  text-align: center; max-width: 260px; line-height: 1.5;
  position: relative;
}
.about-bubble::before {
  content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: var(--navy);
}

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); color: var(--white); margin-bottom: 8px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- CONTACT ---- */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.contact-card-cta { background: var(--navy); border-color: var(--navy); }
.contact-card-cta h3, .contact-card-cta p { color: var(--white) !important; }
.contact-icon { font-size: 32px; }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.contact-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.contact-value { font-size: 15px; font-weight: 700; color: var(--navy); text-decoration: none; margin-top: 4px; }
.contact-value:hover { color: var(--red); }

/* ---- FOOTER ---- */
.footer { background: var(--gray-800); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-octo { width: 48px; object-fit: contain; }
.footer-name { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.footer-tagline { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: var(--red); }
.footer-desc { font-size: 14px; color: var(--gray-300); line-height: 1.7; }
.footer-slogan { font-family: var(--font-display); font-size: 16px; color: rgba(255,255,255,0.5); margin-top: 8px; font-style: italic; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4, .footer-contact h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-300); margin-bottom: 4px; }
.footer-links a, .footer-contact a, .footer-contact span { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-router-inner { grid-template-columns: 1fr; text-align: center; }
  .router-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 0 24px; }
  .hero-mascot { order: -1; padding-top: 20px; }
  .octo-img { max-width: 220px; }
  .hero-content { padding-bottom: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .video-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .video-copy .section-title,
  .video-copy .section-label,
  .video-copy .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .video-copy .inline-cta { justify-content: center; }
  .homepage-video-card { max-width: 360px; margin: 0 auto; }
  .homepage-ad-video { max-height: 560px; border-radius: 22px; border-width: 4px; }
  .service-area-grid { grid-template-columns: 1fr; }
  .service-area-cta { flex-direction: column; align-items: flex-start; }
  .service-area-cta .btn { width: 100%; text-align: center; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-mascot, .about-mascot { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .router-links { grid-template-columns: 1fr; }
  .quote-router { padding: 24px 0; }
  .hero-trust { flex-direction: column; gap: 8px; }
}


/* =====================================================
   GROWTH SITE ADDITIONS (multi-page)
   ===================================================== */

/* Nav active + dropdown-ready */
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { content: ''; display:block; height:2px; background:var(--red); border-radius:2px; margin-top:2px; }

/* skip link */
.skip-link { position:absolute; left:-9999px; top:0; background:var(--navy); color:#fff; padding:10px 16px; z-index:200; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }

/* ---- INTERIOR HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); padding: 128px 0 56px; position: relative;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }
.page-hero .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #ffd0d0; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); line-height: 1.08; margin-bottom: 18px; max-width: 900px; }
.page-hero h1 em { color: #ff9d9d; font-style: italic; }
.page-hero .lead { font-size: 18px; color: rgba(255,255,255,0.88); max-width: 680px; line-height: 1.7; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---- CONTENT / PROSE ---- */
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose { font-size: 17px; color: var(--gray-800); line-height: 1.75; }
.prose h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); color: var(--navy); margin: 44px 0 16px; line-height: 1.2; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--gray-800); }
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose li { margin-bottom: 10px; padding-left: 4px; }
.prose a { color: var(--red); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--navy); }
.prose blockquote {
  border-left: 4px solid var(--red); background: var(--off-white);
  padding: 20px 24px; margin: 28px 0; border-radius: 0 12px 12px 0;
  font-size: 18px; font-style: italic; color: var(--navy);
}
.checklist { list-style: none; margin-left: 0 !important; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: 12px; }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 800; }

/* callout box */
.callout {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px 32px; margin: 32px 0;
}
.callout h3 { margin-top: 0; }

/* ---- TWO-COL FEATURE ---- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media img { width: 100%; max-width: 380px; }
.feature-media { display: flex; justify-content: center; }
.feature-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); color: var(--navy); margin-bottom: 16px; }
.feature-text .section-label { text-align: left; }

/* ---- HUB CARD GRID ---- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.link-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: var(--radius-lg); padding: 30px 28px; text-decoration: none;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: all 0.3s;
  height: 100%;
}
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.link-card .lc-icon { font-size: 34px; margin-bottom: 14px; }
.link-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.link-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; flex-grow: 1; }
.link-card .lc-more { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--red); }

/* pill list of internal links */
.pill-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill-links a, .pill-links span {
  display: inline-block; padding: 8px 18px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--gray-100);
  font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none;
  transition: all 0.2s;
}
.pill-links a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.service-area-section { background: var(--white); }
.service-area-section .section-desc { max-width: 820px; }
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.area-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.area-card-premium {
  background: linear-gradient(135deg, rgba(26,58,107,0.06), rgba(230,57,70,0.06));
  border-color: rgba(26,58,107,0.18);
}
.area-card h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 14px;
}
.area-card .pill-links { justify-content: flex-start; }
.service-area-cta {
  max-width: 840px;
  margin: 26px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(26,58,107,0.16);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.service-area-cta p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
  font-size: 14px;
}
.service-area-cta .btn { white-space: nowrap; }

/* ---- FAQ ---- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 22px 0; }
.faq-item h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-item p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ---- BLOG CARDS ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: all 0.3s; height:100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card .bc-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display:flex; align-items:center; justify-content:center; font-size:52px; }
.blog-card .bc-body { padding: 24px 26px; display:flex; flex-direction:column; flex-grow:1; }
.blog-card .bc-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; flex-grow:1; }
.blog-card .bc-meta { font-size: 12px; color: var(--gray-600); margin-top: 16px; }

/* article header */
.article-meta { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 16px; }
.article-hero-img { width: 100%; max-width: 900px; margin: -32px auto 0; display:block; }
.article-body { padding-top: 56px; }
.article-cta {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 36px;
  text-align: center; margin: 48px 0 8px; border: 1px solid var(--gray-100);
}
.article-cta h3 { font-family: var(--font-display); color: var(--navy); font-size: 24px; margin-bottom: 10px; }
.article-cta p { color: var(--gray-600); margin-bottom: 20px; }

/* related */
.related-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }

/* stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center; }
.stat-block .num { font-family: var(--font-display); font-size: 40px; color: var(--navy); line-height:1; }
.stat-block .lbl { font-size: 13px; color: var(--gray-600); margin-top: 8px; font-weight:600; }

/* checklist two-col in service pages */
.two-col-list { columns: 2; column-gap: 40px; }
.two-col-list li { break-inside: avoid; }

/* section intro left align variant */
.section-header.left { text-align: left; margin-left:0; }
.section-header.left .section-desc { margin-left: 0; }

/* mini CTA inline */
.inline-cta { display:flex; gap:14px; flex-wrap:wrap; margin-top: 28px; }

/* nearby areas box */
.areas-box { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px; border:1px solid var(--gray-100); }
.areas-box .footer-links a { color: var(--navy); font-weight: 600; }
.areas-box .footer-links a:hover { color: var(--red); }

@media (max-width: 900px) {
  .card-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-media { order: -1; }
  .stats-strip { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card-grid, .blog-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .two-col-list { columns: 1; }
  .page-hero { padding: 108px 0 44px; }
}

/* ---- COMMERCIAL / PROPERTY MANAGER BLOCK ---- */
.commercial-block { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); }
.commercial-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 56px; align-items: center; }
.commercial-copy .section-label { color: #ffd0d0; text-align: left; }
.commercial-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); line-height: 1.15; margin-bottom: 16px; color: var(--white); }
.commercial-copy p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; max-width: 620px; }
.commercial-copy .checklist li { color: rgba(255,255,255,0.92); }
.commercial-copy .checklist li::before { color: #ff9d9d; }
.commercial-copy .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.6); }
.commercial-copy .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.commercial-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cstat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg); padding: 24px 20px; }
.cstat-num { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--white); margin-bottom: 8px; }
.cstat-lbl { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.4; font-weight: 600; }

/* ---- QUOTE CHECKLIST ---- */
.quote-checklist { background: var(--off-white); }
.qc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.qc-item { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 22px 20px; box-shadow: var(--shadow); }
.qc-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.qc-item h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.qc-item p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97); border-top: 1px solid var(--gray-100);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.08); backdrop-filter: blur(6px);
  }
  .sticky-cta a { display: flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 12px; font-weight: 800; font-size: 15px; text-decoration: none; }
  .sticky-call { flex: 0 0 34%; background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
  .sticky-quote { flex: 1; background: var(--red); color: var(--white); }
  body { padding-bottom: 74px; }
}

@media (max-width: 900px) {
  .commercial-inner { grid-template-columns: 1fr; gap: 36px; }
  .qc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .commercial-stats { grid-template-columns: 1fr; }
  .qc-grid { grid-template-columns: 1fr; }
}
