/* ================================
   Theme variables (dark default + light override)
   ================================ */
:root {
  --bg: #0d1117;
  --surface: #161b27;
  --surface-alt: #0f1520;
  --surface-alt2: #0b0f15;
  --surface-hover: #1a2030;
  --border: #1e2535;
  --border-strong: #2a3242;
  --text: #ffffff;
  --text-body: #6d7081;
  --text-muted: #64748b;
  --text-soft: #64748b;
  --nav-bg: rgba(13, 17, 23, 0.92);
  --shadow-rgb: 0, 0, 0;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --surface-alt2: #eaeef4;
  --surface-hover: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #64748b;
  --text: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-soft: #334155;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --shadow-rgb: 100, 116, 139;
  color-scheme: light;
}

/* ================================
   HVAC Digital — Stylesheet
   ================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-lg {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
}

.btn-orange {
  background: #f97316;
  color: #fff;
}
.btn-orange:hover {
  background: #ea6510;
  transform: translateY(-2px);
}

.btn-blue {
  background: #3b82f6;
  color: #fff;
}
.btn-blue:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: #475569;
  background: rgba(255, 255, 255, 0.03);
}

.btn-white {
  background: #fff;
  color: #1e293b;
}
.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  background: linear-gradient(
    to right bottom in oklab,
    rgb(37, 99, 235) 0%,
    rgb(249, 115, 22) 100%
  );
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  color: var(--text);
  font-weight: 700;
  font-size: 20px;
}
.logo-tagline {
  color: #64748b;
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 2px;
  position: relative;
}
.nav-links a.active {
  color: #2563eb;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}
.nav-links a:hover {
  color: #2563eb;
}
.caret {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav-item:hover .caret {
  transform: rotate(180deg);
}

/* Services dropdown */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item .dropdown-toggle {
  color: #64748b;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
}
.nav-item .dropdown-toggle:hover {
  color: #2563eb;
}
.nav-item .dropdown-toggle.active {
  color: #2563eb;
}
.nav-item .dropdown-toggle.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 0;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 110;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  border: 0;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  color: #2563eb;
  background: rgba(255, 255, 255, 0.04);
}
.dropdown-menu a.active {
  color: #2563eb;
}
.dropdown-menu a.active::after {
  display: none;
}

/* Rich dropdown (icon + name + sublabel) — Locations menu */
.dropdown-menu.rich {
  min-width: 260px;
  padding: 8px;
}
.dropdown-menu.rich a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: normal;
}
.dropdown-menu.rich .dd-icon {
  flex-shrink: 0;
  color: #3b82f6;
  display: grid;
  place-items: center;
}
.dropdown-menu.rich .dd-name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 1.2;
}
.dropdown-menu.rich .dd-sub {
  color: #64748b;
  font-size: 12px;
  margin-top: 2px;
  display: block;
}
.dropdown-menu.rich a:hover {
  background: rgba(59, 130, 246, 0.08);
}
.dropdown-menu.rich a:hover .dd-name {
  color: #3b82f6;
}
.dropdown-menu.rich a.active .dd-name {
  color: #3b82f6;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ============ HERO ============ */
.hero {
  padding: 168px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.45);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 500;
  background: rgba(59, 130, 246, 0.08);
  margin-bottom: 28px;
}
.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(
    to right in oklab,
    rgb(37, 99, 235) 0%,
    rgb(249, 115, 22) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.ico-phone {
  font-size: 14px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.stat-blue {
  color: #3b82f6;
}
.stat-orange {
  color: #f97316;
}
.stat-label {
  color: #64748b;
  font-size: 13px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}
.float-badge {
  position: absolute;
  bottom: -28px;
  left: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}
.badge-num {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.badge-text {
  color: #6d7081;
  font-size: 12px;
}

/* ============ SECTION HEADS ============ */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}
.section-head p {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
}

/* ============ CARDS BASE ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.card:hover {
  background: var(--surface-hover);
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 40px rgba(var(--shadow-rgb), 0.35);
}
.service-card:hover,
.svc-card:hover {
  border-color: #3b82f6;
}

/* Full-card clickable pattern — pseudo overlay on the learn-more link */
.featured-card .read-link::after,
.blog-card .read-link::after,
.card .learn-more::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.learn-more {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.featured-card:hover .read-link,
.card:hover .learn-more {
  color: #60a5fa;
  margin-left: 3px;
  transform: translateX(3px);
}

/* ============ SERVICES ============ */
.services {
  padding: 90px 0;
  background: var(--surface-alt);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 28px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.center-btn {
  text-align: center;
  margin-top: 48px;
}

/* ============ CASE STUDIES ============ */
.case-studies {
  padding: 90px 0;
  background: var(--surface-alt2);
}
.case-studies .section-head h2 {
  font-size: 40px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  overflow: hidden;
}
.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.case-body {
  padding: 24px;
}
.case-body h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.case-body .loc {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 18px;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-val {
  color: #3b82f6;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.case-stats div:nth-child(2) .cs-val {
  color: #f97316;
}
.case-stats div:nth-child(3) .cs-val {
  color: #fff;
}
.cs-lbl {
  color: #64748b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============ WHY US ============ */
.why-us {
  padding: 90px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text h2 {
  font-size: 36px;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}
.why-text > p {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.features h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.features p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
}
.why-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 90px 0;
  background: var(--surface-alt2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 28px;
}
.stars {
  color: #f97316;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.quote {
  color: #64748b;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.who .name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.who .role {
  color: #64748b;
  font-size: 13px;
  margin-top: 2px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #1e3a5f 0%, #7c3aed 50%, #f97316 100%);
  text-align: center;
}
.cta-inner {
  padding: 80px 24px;
}
.cta-banner h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 32px;
  background: var(--surface-alt2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-col h5 {
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--text);
}
.foot-col ul li {
  margin-bottom: 10px;
}
.foot-col ul li a,
.contact-list li {
  color: #6d7081;
  font-size: 14px;
}
.foot-col ul li a:hover {
  color: #fff;
}
.contact-list li {
  margin-bottom: 10px;
}
.foot-desc {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

/* =================================================
   SERVICES PAGE
   ================================================= */

/* Services hero */
.svc-hero {
  padding: 168px 24px 60px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.svc-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.svc-hero .pill {
  margin-bottom: 28px;
}
.svc-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.gradient-text-2 {
  background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.svc-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* Services grid */
.svc-grid-section {
  padding: 40px 0 80px;
  background: var(--surface-alt2);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.svc-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.svc-head h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.svc-head p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
}
.svc-included {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  margin: 24px 0 14px;
  font-weight: 600;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}
.feature-list .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  color: #3b82f6;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.svc-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.svc-stat {
  color: #3b82f6;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

/* Process section */
.process-section {
  padding: 90px 0;
  background: var(--bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-num {
  font-size: 44px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.8);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
}

.btn-blue-outline {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-blue-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

/* Services CTA banner */
.svc-cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a2a4a 0%, #2d1b69 50%, #c2410c 100%);
}
.svc-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.svc-cta-banner h2 {
  font-size: 44px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.svc-cta-banner p {
  color: #e2e8f0;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Floating call button */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
  z-index: 90;
  transition: transform 0.25s ease;
}
.float-call:hover {
  transform: scale(1.08);
}

/* Services responsive overrides */
@media (max-width: 1024px) {
  .svc-hero h1 {
    font-size: 44px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    padding: 130px 16px 50px;
  }
  .svc-hero h1 {
    font-size: 36px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    padding: 24px;
  }
  .feature-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .svc-cta-banner h2 {
    font-size: 32px;
  }
  .svc-cta-banner {
    padding: 70px 0;
  }
  .process-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .svc-hero h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .svc-hero .btn {
    width: 100%;
  }
  .svc-cta-banner h2 {
    font-size: 28px;
  }
  .svc-cta-banner .btn {
    width: 100%;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =================================================
   SERVICE DETAIL PAGES (shared template)
   ================================================= */

.sd-hero {
  padding: 130px 0 60px;
  border-bottom: 1px solid var(--border);
}
.sd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sd-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-top: 16px;
}
.sd-sub {
  color: #3b82f6;
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}
.sd-hero p.lead {
  color: #6d7081;
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin-top: 16px;
}
.sd-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-dark {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
}
.btn-dark:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.sd-img-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}
.sd-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Problem / Solution */
.sd-cols-2 {
  padding: 60px 0;
}
.sd-cols-2 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sd-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.sd-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.sd-card p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.7;
}

/* What's Included */
.sd-included {
  background: var(--surface-alt);
  padding: 80px 0;
}
.sd-included .section-head {
  margin-bottom: 48px;
}
.sd-included .section-head h2 {
  font-size: 36px;
}
.sd-included .section-head p {
  font-size: 15px;
  max-width: 460px;
  margin: auto;
}

.sd-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sd-feat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.sd-feat-item:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}
.sd-feat-item .check-blue {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* How It Works */
.sd-how {
  padding: 80px 0;
}
.sd-how .section-head h2 {
  font-size: 36px;
}
.sd-how .section-head p {
  font-size: 15px;
  max-width: 420px;
}

.sd-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 1040px;
  margin: 56px auto 0;
}
.sd-step-num {
  font-size: 44px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.8);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
}
.sd-step h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.sd-step p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
}

/* Expected Results */
.sd-results {
  padding: 80px 0;
  background: var(--surface-alt);
}
.sd-results .section-head h2 {
  font-size: 36px;
}
.sd-results .section-head p {
  font-size: 15px;
}

.sd-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}
.sd-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.sd-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}
.sd-stat-num {
  color: #3b82f6;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}
.sd-stat-lbl {
  color: #6d7081;
  font-size: 14px;
  margin-top: 10px;
}

/* SD CTA banner */
.sd-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, #1a2a4a 0%, #2d1b69 50%, #c2410c 100%);
}
.sd-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.sd-cta h2 {
  font-size: 44px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 auto;
  max-width: 560px;
}
.sd-cta p {
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin: 16px auto 0;
}
.sd-cta .btn {
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .sd-hero h1 {
    font-size: 40px;
  }
  .sd-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sd-hero {
    padding: 110px 0 40px;
  }
  .sd-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sd-hero h1 {
    font-size: 32px;
  }
  .sd-img-card {
    height: 220px;
  }
  .sd-cols-2 .grid {
    grid-template-columns: 1fr;
  }
  .sd-card {
    padding: 24px;
  }
  .sd-feat-grid {
    grid-template-columns: 1fr;
  }
  .sd-results-grid {
    grid-template-columns: 1fr;
  }
  .sd-included,
  .sd-how,
  .sd-results {
    padding: 64px 0;
  }
  .sd-cta {
    padding: 70px 16px;
  }
  .sd-cta h2 {
    font-size: 30px;
  }
  .sd-included .section-head h2,
  .sd-how .section-head h2,
  .sd-results .section-head h2 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .sd-hero h1 {
    font-size: 28px;
  }
  .sd-hero-ctas .btn {
    width: 100%;
  }
  .sd-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sd-cta h2 {
    font-size: 26px;
  }
  .sd-cta .btn {
    width: 100%;
  }
}

/* =================================================
   INDUSTRIES PAGE
   ================================================= */

.ind-hero {
  padding: 168px 24px 60px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.ind-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.ind-hero .pill {
  margin-bottom: 24px;
}
.ind-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.ind-gradient-text {
  background: linear-gradient(90deg, #3b82f6 0%, #a78bfa 45%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ind-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* Industry sections */
.ind-section {
  padding: 70px 0;
}
.ind-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.ind-grid.reverse {
  grid-template-columns: 1fr 1.4fr;
}
.ind-text h2 {
  font-size: 32px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.ind-text .ind-lead {
  color: #6d7081;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 8px;
  max-width: 540px;
}
.ind-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 28px;
}
.ind-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.ind-col-label.muted {
  color: #64748b;
}
.ind-col-label.blue {
  color: #3b82f6;
}

.ind-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ind-list.challenges li {
  position: relative;
  padding-left: 16px;
  color: #6d7081;
  font-size: 14px;
  line-height: 1.5;
}
.ind-list.challenges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
}
.ind-list.solutions li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}
.ind-list.solutions .check-blue {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  color: #3b82f6;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right-side "Perfect For" card */
.ind-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
  border-color: var(--border-strong);
}
.ind-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.25);
}
.ind-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.ind-card p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
  margin: 12px auto 0;
  max-width: 260px;
}

/* Why HVAC-Specific section */
.ind-why {
  padding: 90px 0;
  background: var(--surface-alt2);
}
.ind-why .section-head {
  margin-bottom: 48px;
}
.ind-why .section-head h2 {
  font-size: 36px;
}
.ind-why .section-head p {
  font-size: 15px;
  max-width: 600px;
  margin: auto;
}

.ind-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ind-why-card {
  padding: 28px 32px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.ind-why-card:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}
.ind-why-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}
.ind-why-card p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.65;
}

/* Industries responsive */
@media (max-width: 1024px) {
  .ind-hero h1 {
    font-size: 44px;
  }
  .ind-grid,
  .ind-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
  }
  .ind-text h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .ind-hero {
    padding: 130px 16px 50px;
  }
  .ind-hero h1 {
    font-size: 34px;
  }
  .ind-grid,
  .ind-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* On mobile the "Perfect For" card always shows AFTER the text */
  .ind-grid.reverse > .ind-card {
    order: 2;
  }
  .ind-grid.reverse > .ind-text {
    order: 1;
  }
  .ind-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ind-section {
    padding: 56px 0;
  }
  .ind-why-grid {
    grid-template-columns: 1fr;
  }
  .ind-why {
    padding: 64px 0;
  }
  .ind-why .section-head h2 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .ind-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .ind-hero .btn {
    width: 100%;
  }
  .ind-text h2 {
    font-size: 24px;
  }
  .ind-card {
    padding: 32px 24px;
  }
}

/* =================================================
   CASE STUDIES PAGE
   ================================================= */

.cs-hero {
  padding: 150px 24px 60px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.cs-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.cs-hero .pill {
  margin-bottom: 22px;
}
.cs-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
}
.blue-text {
  color: #3b82f6;
}
.orange-text {
  background: linear-gradient(90deg, #f97316 0%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cs-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Hero stats row */
.cs-stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cs-stat {
  padding: 0 36px;
  border-right: 1px solid var(--border);
  min-width: 140px;
}
.cs-stat:last-child {
  border-right: 0;
}
.cs-stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
}
.cs-stat-lbl {
  color: #64748b;
  font-size: 13px;
  margin-top: 4px;
}

/* Case studies list */
.cs-list {
  padding: 60px 0 90px;
}
.cs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  margin-bottom: 32px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.cs-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.cs-card:hover .cs-quote {
  border-color: #60a5fa;
}

.cs-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.cs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cs-card:hover .cs-img img {
  transform: scale(1.03);
}
.cs-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(13, 17, 23, 0.85) 100%
  );
  pointer-events: none;
}
.cs-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(59, 130, 246, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}
.cs-img-meta {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}
.cs-company {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.cs-city {
  color: #64748b;
  font-size: 13px;
  margin-top: 3px;
}

/* Card body */
.cs-body {
  padding: 36px 40px;
}
.cs-section + .cs-section {
  margin-top: 22px;
}
.cs-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cs-lbl.muted {
  color: #64748b;
}
.cs-lbl.blue {
  color: #3b82f6;
}
.cs-section p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.65;
}

/* Results grid */
.cs-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.cs-result {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
}
.cs-result .arrow {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 2px;
}
.cs-result-val {
  color: #3b82f6;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: inline-block;
  margin-left: 6px;
}
.cs-result-lbl {
  color: #64748b;
  font-size: 12px;
  margin-top: 4px;
}

/* Quote */
.cs-quote {
  margin-top: 24px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid #3b82f6;
  transition: border-color 0.25s ease;
}
.cs-quote p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
}
.cs-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.cs-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.cs-author-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.cs-author-role {
  color: #64748b;
  font-size: 12px;
  margin-top: 2px;
}

/* Case Studies responsive */
@media (max-width: 1024px) {
  .cs-hero h1 {
    font-size: 42px;
  }
  .cs-card {
    grid-template-columns: 45% 55%;
  }
  .cs-body {
    padding: 28px 28px;
  }
  .cs-stat {
    padding: 0 24px;
    min-width: 120px;
  }
}
@media (max-width: 768px) {
  .cs-hero {
    padding: 130px 16px 40px;
  }
  .cs-hero h1 {
    font-size: 32px;
  }
  .cs-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
    margin-top: 32px;
  }
  .cs-stat {
    padding: 0 16px;
    border-right: 0;
    border-bottom: 0;
  }
  .cs-stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .cs-stat-num {
    font-size: 26px;
  }

  .cs-card {
    grid-template-columns: 1fr;
  }
  .cs-img {
    min-height: 260px;
  }
  .cs-body {
    padding: 24px;
  }
  .cs-results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cs-result-val {
    font-size: 20px;
  }
  .cs-company {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .cs-hero h1 {
    font-size: 26px;
    letter-spacing: -1px;
  }
  .cs-results-grid {
    grid-template-columns: 1fr;
  }
  .cs-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .cs-stat-num {
    font-size: 22px;
  }
}

/* =================================================
   LOCATIONS PAGE
   ================================================= */

.loc-hero {
  padding: 150px 24px 0;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.loc-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.loc-hero .pill {
  margin-bottom: 22px;
}
.loc-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.loc-orange {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.loc-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.loc-hero .btn-orange {
  margin-bottom: 60px;
}

/* Quick nav bar */
.loc-quicknav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.loc-quicknav-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
  color: #6d7081;
  transition: color 0.2s ease;
  display: block;
}
.loc-quicknav-item:last-child {
  border-right: 0;
}
.loc-quicknav-item svg {
  color: #3b82f6;
  margin: 0 auto 8px;
  display: block;
  transition: transform 0.2s ease;
}
.loc-quicknav-item .qn-city {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.loc-quicknav-item .qn-pop {
  color: #3b82f6;
  font-size: 13px;
  margin-top: 2px;
}
.loc-quicknav-item:hover .qn-city {
  color: #3b82f6;
}
.loc-quicknav-item:hover svg {
  transform: translateY(-2px);
}

/* Location cards grid */
.loc-cards-section {
  padding: 30px 0 80px;
}
.loc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.loc-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}
.loc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.loc-pin {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.14);
  color: #3b82f6;
  display: grid;
  place-items: center;
}
.loc-pop {
  text-align: right;
}
.loc-pop-lbl {
  color: #64748b;
  font-size: 11px;
}
.loc-pop-val {
  color: #3b82f6;
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}
.loc-card h3 {
  font-size: 20px;
  margin-top: 16px;
  letter-spacing: -0.3px;
}
.loc-card .loc-sub {
  color: #6d7081;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}
.loc-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.loc-stat.right {
  text-align: right;
}
.loc-stat-lbl {
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.loc-stat-val {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}
.loc-stat-val.orange {
  color: #f97316;
}

.loc-kw {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.loc-kw-lbl {
  color: #64748b;
  font-size: 12px;
  margin-bottom: 8px;
}
.loc-kw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kw-pill {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.kw-pill:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.6);
}
.loc-link {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  margin-top: 18px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.loc-link:hover {
  transform: translateX(3px);
}

/* Why Local section */
.loc-why {
  padding: 90px 0;
  background: var(--surface-alt2);
}
.loc-why-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.loc-why-text h2 {
  font-size: 36px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.loc-why-text > p {
  color: #6d7081;
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  margin-top: 18px;
}
.loc-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.loc-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.loc-feat-ico {
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 2px;
}
.loc-features h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.loc-features p {
  color: #6d7081;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.55;
}

/* Florida stats card */
.loc-stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}
.loc-stats-card-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}
.loc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.loc-stat-cell {
  text-align: center;
  padding: 18px 12px;
}
.loc-stat-cell:nth-child(1) {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.loc-stat-cell:nth-child(2) {
  border-bottom: 1px solid var(--border);
}
.loc-stat-cell:nth-child(3) {
  border-right: 1px solid var(--border);
}
.lsc-val {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
}
.lsc-val.blue {
  color: #3b82f6;
}
.lsc-val.orange {
  color: #f97316;
}
.lsc-lbl {
  color: #64748b;
  font-size: 13px;
  margin-top: 6px;
}

/* Locations CTA buttons row */
.loc-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Locations responsive */
@media (max-width: 1024px) {
  .loc-hero h1 {
    font-size: 44px;
  }
  .loc-quicknav {
    flex-wrap: wrap;
    gap: 16px 0;
    padding: 20px 8px;
  }
  .loc-quicknav-item {
    flex: 0 0 33.333%;
    border-right: 0;
    padding: 12px 8px;
  }
  .loc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-why-grid {
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .loc-hero {
    padding: 130px 16px 0;
  }
  .loc-hero h1 {
    font-size: 34px;
  }
  .loc-quicknav-item {
    flex: 0 0 50%;
  }
  .loc-why {
    padding: 64px 0;
  }
  .loc-why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .loc-why-text h2 {
    font-size: 28px;
  }
  .loc-stats-card {
    padding: 32px 24px;
  }
  .lsc-val {
    font-size: 26px;
  }
}
@media (max-width: 560px) {
  .loc-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .loc-cards-grid {
    grid-template-columns: 1fr;
  }
  .loc-cta-buttons {
    flex-direction: column;
  }
  .loc-cta-buttons .btn {
    width: 100%;
  }
}

/* =================================================
   LOCATION DETAIL PAGES (Miami, Orlando, Tampa, etc.)
   ================================================= */

.ld-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.ld-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ld-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid #3b82f6;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 22px;
}

.ld-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.ld-orange {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ld-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}
.ld-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats bar */
.ld-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ld-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.ld-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.ld-stat-ico {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}
.ld-stat-ico.blue {
  color: #3b82f6;
}
.ld-stat-ico.orange {
  color: #f97316;
}
.ld-stat-num {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1;
}
.ld-stat-num.orange-num {
  color: #f97316;
}
.ld-stat-lbl {
  color: #6d7081;
  font-size: 13px;
  margin-top: 6px;
}

/* Keywords */
.ld-keywords {
  background: var(--surface-alt);
  padding: 72px 0;
}
.ld-keywords .section-head {
  margin-bottom: 36px;
}
.ld-keywords .section-head h2 {
  font-size: 32px;
}
.ld-keywords .section-head p {
  font-size: 15px;
  max-width: 460px;
  margin: auto;
}

.ld-kw-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.ld-kw-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.ld-kw-pill:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

/* Neighborhoods */
.ld-hoods {
  background: var(--bg);
  padding: 72px 0;
}
.ld-hoods .section-head {
  margin-bottom: 36px;
}
.ld-hoods .section-head h2 {
  font-size: 32px;
}
.ld-hoods .section-head p {
  font-size: 15px;
}

.ld-hood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.ld-hood {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.ld-hood:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}
.hood-pin {
  color: #3b82f6;
  display: grid;
  place-items: center;
}

/* Challenges + Opportunities */
.ld-co {
  background: var(--surface-alt);
  padding: 80px 0;
}
.ld-co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.ld-co-h {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.ld-co-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ld-co-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #64748b;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.ld-co-list li:hover {
  border-color: var(--border-strong);
}
.co-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.co-dot.orange {
  background: #f97316;
}
.co-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Location detail responsive */
@media (max-width: 1024px) {
  .ld-hero h1 {
    font-size: 44px;
  }
  .ld-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .ld-hood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ld-hero {
    padding: 120px 16px 40px;
  }
  .ld-hero h1 {
    font-size: 32px;
  }
  .ld-hero-ctas .btn {
    flex: 1 1 100%;
  }
  .ld-co-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ld-co {
    padding: 60px 0;
  }
  .ld-keywords,
  .ld-hoods {
    padding: 56px 0;
  }
  .ld-keywords .section-head h2,
  .ld-hoods .section-head h2 {
    font-size: 26px;
  }
}
@media (max-width: 560px) {
  .ld-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .ld-hood-grid {
    grid-template-columns: 1fr;
  }
  .ld-stats-bar {
    gap: 12px;
  }
  .ld-stat-num {
    font-size: 24px;
  }
}

/* =================================================
   PROCESS PAGE
   ================================================= */

.proc-hero {
  padding: 150px 24px 70px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.proc-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.proc-hero .pill {
  margin-bottom: 22px;
}
.proc-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
}
.proc-orange {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.proc-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Steps */
.proc-steps {
  padding: 60px 0 90px;
}
.proc-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.proc-step-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
  position: sticky;
  top: 100px;
}
.proc-num {
  font-size: 72px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.8);
  letter-spacing: -2px;
  line-height: 1;
  transition: color 0.25s ease;
}
.proc-step:hover .proc-num {
  color: rgba(59, 130, 246, 1);
}
.proc-step-icon {
  margin-top: 14px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  color: #3b82f6;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.proc-step:hover .proc-step-icon {
  background: rgba(59, 130, 246, 0.18);
  border-color: #3b82f6;
}

.proc-step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.proc-step:hover .proc-step-card {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.1);
}

.proc-step-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.proc-step-head h3 {
  font-size: 22px;
  letter-spacing: -0.3px;
}
.proc-step-head p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 6px;
  max-width: 520px;
}
.proc-week {
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.proc-what-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  font-weight: 600;
  margin-top: 26px;
  margin-bottom: 14px;
}
.proc-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.proc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
}
.proc-item .check-blue {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.proc-deliv {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  transition:
    padding-left 0.2s ease,
    border-left-color 0.2s ease;
}
.proc-step:hover .proc-deliv {
  padding-left: 12px;
  border-left: 3px solid #f97316;
}
.deliv-ico {
  flex-shrink: 0;
  color: #f97316;
}
.deliv-lbl {
  display: block;
  color: #f97316;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.deliv-txt {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

/* Expect section */
.proc-expect {
  background: var(--surface-alt);
  padding: 90px 0;
}
.proc-expect .section-head h2 {
  font-size: 36px;
}
.proc-expect .section-head p {
  font-size: 15px;
  max-width: 520px;
  margin: auto;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.expect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 30px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.expect-card:hover {
  transform: translateY(-3px);
  border-color: #3b82f6;
}
.expect-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.expect-card p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
}

/* Process responsive */
@media (max-width: 1024px) {
  .proc-hero h1 {
    font-size: 44px;
  }
  .expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .proc-hero {
    padding: 130px 16px 50px;
  }
  .proc-hero h1 {
    font-size: 34px;
  }
  .proc-step {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .proc-step-left {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-top: 0;
  }
  .proc-num {
    font-size: 48px;
  }
  .proc-step-icon {
    margin-top: 0;
    width: 40px;
    height: 40px;
  }
  .proc-step-card {
    padding: 24px;
  }
  .proc-step-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .proc-what-grid {
    grid-template-columns: 1fr;
  }
  .proc-expect {
    padding: 64px 0;
  }
  .proc-expect .section-head h2 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .proc-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .proc-hero .btn {
    width: 100%;
  }
  .proc-num {
    font-size: 40px;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   ABOUT PAGE
   ================================================= */

.about-hero {
  padding: 140px 0 80px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero .pill {
  margin-bottom: 22px;
}
.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.2px;
}
.about-orange {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about-hero-sub {
  color: #6d7081;
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin: 20px 0 32px;
}
.about-hero-img img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease;
}
.about-hero-img img:hover {
  transform: scale(1.02);
}

/* Mission */
.about-mission {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
  text-align: center;
}
.about-mission h2 {
  font-size: 36px;
  letter-spacing: -0.8px;
}
.about-mission p {
  color: #6d7081;
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 18px auto 0;
}

/* Why we're different */
.about-diff {
  padding: 90px 0;
}
.about-diff .section-head {
  margin-bottom: 48px;
}
.about-diff .section-head h2 {
  font-size: 36px;
}
.about-diff .section-head p {
  font-size: 15px;
  max-width: 520px;
  margin-inline: auto;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.diff-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}
.diff-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}
.diff-card:hover .diff-icon {
  background: rgba(59, 130, 246, 0.2);
}
.diff-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-card p {
  color: #6d7081;
  font-size: 13px;
  line-height: 1.6;
}

/* Why HVAC */
.about-why {
  background: var(--surface-alt);
  padding: 90px 0;
}
.about-why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-why-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}
.about-why-img img:hover {
  transform: scale(1.02);
}
.about-why-text h2 {
  font-size: 36px;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.about-why-text p {
  color: #6d7081;
  font-size: 15px;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 14px;
}

.about-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid #3b82f6;
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin-top: 28px;
  max-width: 540px;
  transition: border-left-color 0.2s ease;
}
.about-quote:hover {
  border-left-color: #60a5fa;
}
.about-quote p {
  color: #64748b;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}
.about-quote-author {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
}

/* Our values */
.about-values {
  padding: 90px 0;
}
.about-values .section-head {
  margin-bottom: 48px;
}
.about-values .section-head h2 {
  font-size: 36px;
}
.about-values .section-head p {
  font-size: 15px;
  max-width: 420px;
  margin: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: #3b82f6;
}
.value-num {
  font-size: 44px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.8);
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}
.value-card:hover .value-num {
  color: rgba(59, 130, 246, 1);
}
.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.value-card p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
}

/* About responsive */
@media (max-width: 1024px) {
  .about-hero h1 {
    font-size: 40px;
  }
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 60px;
  }
  .about-hero-grid,
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-hero h1 {
    font-size: 32px;
  }
  .about-hero-img img {
    max-height: 300px;
  }
  .about-why-img img {
    max-height: 280px;
  }
  .about-mission {
    padding: 56px 16px;
  }
  .about-mission h2 {
    font-size: 28px;
  }
  .about-mission p {
    font-size: 16px;
  }
  .about-diff,
  .about-why,
  .about-values {
    padding: 64px 0;
  }
  .about-diff .section-head h2,
  .about-why-text h2,
  .about-values .section-head h2 {
    font-size: 28px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .about-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .about-hero .btn {
    width: 100%;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   BLOG PAGE
   ================================================= */

.blog-hero {
  padding: 150px 24px 50px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.blog-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.blog-hero .pill {
  margin-bottom: 22px;
}
.blog-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
}
.blog-orange {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.blog-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Filter bar */
.blog-filter {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar {
  display: none;
}
.filter-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #6d7081;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
}
.filter-pill:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
.filter-pill.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
  font-weight: 600;
}
.hidden {
  display: none !important;
}

/* Featured card */
.blog-featured {
  padding: 60px 0 40px;
}
.featured-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 280px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.featured-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(var(--shadow-rgb), 0.45);
}
.featured-img {
  position: relative;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-card:hover .featured-img img {
  transform: scale(1.03);
}
.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.featured-body {
  padding: 40px 44px;
}
.cat-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.cat-pill.blue {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.featured-body h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
.featured-body > p {
  color: #6d7081;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 12px;
  max-width: 480px;
}
.post-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 13px;
}
.meta-item svg {
  flex-shrink: 0;
}
.read-link {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
  transition: all 0.2s ease;
}
.read-link:hover {
  margin-left: 3px;
  color: #60a5fa;
}
.read-link.sm {
  font-size: 13px;
}

/* Blog grid */
.blog-grid-section {
  padding: 40px 0 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  background: var(--surface-hover);
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(var(--shadow-rgb), 0.4);
}
.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.cat-badge.seo {
  background: #0d3b6e;
  color: #60a5fa;
}
.cat-badge.paid {
  background: #2d1b00;
  color: #f97316;
}
.cat-badge.strategy {
  background: #1a0d2e;
  color: #a78bfa;
}
.cat-badge.business {
  background: #0d2b1a;
  color: #34d399;
}
.cat-badge.web {
  background: #1a1a0d;
  color: #facc15;
}

.blog-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.blog-body > p {
  color: #6d7081;
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-body .post-meta {
  margin-top: 14px;
  gap: 16px;
}
.blog-body .post-meta .meta-item {
  font-size: 12px;
}
.blog-body .read-link {
  margin-top: 14px;
}

/* Newsletter card */
.blog-newsletter {
  padding: 30px 0 60px;
}
.newsletter-card {
  background: linear-gradient(135deg, #1a2a4a 0%, #2d1b69 60%, #7c3a00 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.newsletter-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 16px;
}

.newsletter-card h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
[data-theme="light"] .newsletter-card h3 {
  --text: #fff;
}
.newsletter-card > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  margin-top: 10px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 28px auto 0;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 15px;
  font-family: inherit;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.newsletter-form input:focus + button {
  transform: none;
}
.newsletter-form button {
  background: #f97316;
  color: var(--bg);
  font-weight: 700;
  padding: 14px 24px;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  font-family: inherit;
}
[data-theme="dark"] .newsletter-form button {
  --bg: #fff;
}
.newsletter-form button:hover {
  background: #ea6510;
}
.newsletter-fine {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 14px;
}
.newsletter-error {
  margin-top: 14px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.newsletter-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.newsletter-success {
  display: none;
  color: #6ee7b7;
  font-size: 15px;
  font-weight: 600;
  margin-top: 28px;
  animation: fadeIn 0.3s ease;
}
.newsletter-success.show {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Bottom CTA */
.blog-bottom-cta {
  padding: 60px 0 80px;
}
.blog-bottom-cta .section-head h2 {
  font-size: 36px;
  max-width: 480px;
  margin-inline: auto;
}
.blog-bottom-cta .section-head p {
  font-size: 15px;
  max-width: 440px;
  margin-inline: auto;
}
.blog-bottom-cta .center-btn {
  margin-top: 32px;
}

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-hero h1 {
    font-size: 42px;
  }
  .featured-card {
    grid-template-columns: 45% 55%;
  }
  .featured-body {
    padding: 32px 32px;
  }
  .featured-body h2 {
    font-size: 24px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 130px 16px 40px;
  }
  .blog-hero h1 {
    font-size: 34px;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-img {
    height: 220px;
  }
  .featured-body {
    padding: 28px;
  }
  .featured-body h2 {
    font-size: 22px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-card {
    padding: 36px 24px;
  }
  .newsletter-card h3 {
    font-size: 22px;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
    background: transparent;
    border: 0;
    gap: 10px;
  }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 8px;
    width: 100%;
  }
  .newsletter-form input {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
  }
  .blog-bottom-cta .section-head h2 {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .blog-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   CONTACT PAGE
   ================================================= */

.ct-hero {
  padding: 150px 24px 60px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.ct-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.ct-hero .pill {
  margin-bottom: 22px;
}
.ct-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.ct-orange {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ct-hero-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Form + sidebar layout */
.ct-main {
  padding: 60px 0 90px;
}
.thank-you {
  padding-top: 150px;
}
.ct-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Form card */
.ct-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  position: relative;
}
.thank-you .ct-form-card {
  max-width: 768px;
  margin: 0 auto;
}
.ct-form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.ct-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.ct-row.two .ct-field {
  margin-bottom: 0;
}
.ct-row.two + .ct-field {
  margin-top: 18px;
}
.ct-row.two + .ct-row.two {
  margin-top: 18px;
}

.ct-field label {
  color: #6d7081;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #4b5563;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
}
.ct-field input.error,
.ct-field select.error,
.ct-field textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.ct-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.ct-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.ct-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  min-height: 0;
}

.ct-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 0;
  cursor: pointer;
  color: #6d7081;
  font-size: 13px;
  line-height: 1.5;
}
.ct-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #3b82f6;
  cursor: pointer;
}

.ct-consent input[type="checkbox"].error + span {
  color: #ef4444;
}

.ct-submit {
  background: #f97316;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 24px;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
  font-family: inherit;
}
.ct-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.ct-privacy {
  color: #64748b;
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
}

.ct-error-banner {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.ct-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success state */
.ct-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.ct-success.show {
  display: block;
  animation: fadeIn 0.3s ease;
}
.ct-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 28px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.ct-success h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.ct-success p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

/* Sidebar */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ct-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
}
.ct-side-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}
.ct-side-title.sm {
  font-size: 15px;
  margin-bottom: 16px;
}

.ct-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ct-info-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.ct-info-list li:hover .ct-info-ico {
  background: rgba(59, 130, 246, 0.2);
}
.ct-info-lbl {
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.ct-info-val {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.ct-info-sub {
  color: #64748b;
  font-size: 13px;
  margin-top: 2px;
}

.ct-expect-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}
.dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
  margin-top: 6px;
}

.ct-mini-stat {
  text-align: center;
  padding: 8px 0;
}
.ct-mini-stat + .ct-mini-stat {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 24px;
}
.ct-mini-val {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1;
}
.ct-mini-val.blue {
  color: #3b82f6;
}
.ct-mini-val.orange {
  color: #f97316;
}
.ct-mini-lbl {
  color: #64748b;
  font-size: 13px;
  margin-top: 6px;
}

/* FAQ */
.ct-faq {
  background: var(--bg);
  padding: 80px 0;
}
.ct-faq .section-head {
  margin-bottom: 48px;
}
.ct-faq .section-head h2 {
  font-size: 36px;
}
.ct-faq .section-head p {
  font-size: 15px;
  max-width: 440px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}
.faq-q:hover {
  background: rgba(59, 130, 246, 0.04);
}
.faq-icon {
  color: #3b82f6;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-a {
  max-height: 400px;
}
.faq-a p {
  color: #6d7081;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* Contact responsive */
@media (max-width: 1024px) {
  .ct-hero h1 {
    font-size: 46px;
  }
  .ct-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
  }
  .ct-form-card {
    padding: 32px 28px;
  }
  .ct-side-card {
    padding: 24px 24px;
  }
}
@media (max-width: 768px) {
  .ct-hero {
    padding: 130px 16px 40px;
  }
  .ct-hero h1 {
    font-size: 36px;
  }
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ct-faq {
    padding: 60px 0;
  }
  .ct-faq .section-head h2 {
    font-size: 28px;
  }
  .faq-q {
    font-size: 14px;
    padding: 18px 20px;
  }
}
@media (max-width: 560px) {
  .ct-hero h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .ct-form-card {
    padding: 24px 20px;
  }
  .ct-row.two {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   404 PAGE
   ================================================= */

.nf-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 68px - 320px);
  padding: 100px 24px 60px;
}
.nf-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

@keyframes nfFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nfGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.nf-num {
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #8b5cf6 40%,
    #f97316 80%,
    #ef4444 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 32px;
  animation:
    nfFadeUp 0.5s ease both,
    nfGradientShift 4s ease infinite;
}
.ty-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.14);
  animation: nfFadeUp 0.5s ease both;
}
.nf-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  opacity: 0;
  animation: nfFadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}
.nf-sub {
  color: #6d7081;
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: nfFadeUp 0.5s ease forwards;
  animation-delay: 0.2s;
}
.nf-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: nfFadeUp 0.5s ease forwards;
  animation-delay: 0.3s;
}
.nf-divider {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 28px;
  border: 0;
  border-top: 1px solid var(--border);
}
.nf-hint {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0;
  animation: nfFadeUp 0.5s ease forwards;
  animation-delay: 0.4s;
}
.nf-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: nfFadeUp 0.5s ease forwards;
  animation-delay: 0.5s;
}
.nf-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nf-pill:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
}

@keyframes nfPulse {
  0% {
    box-shadow:
      0 4px 20px rgba(249, 115, 22, 0.4),
      0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  70% {
    box-shadow:
      0 4px 20px rgba(249, 115, 22, 0.4),
      0 0 0 14px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow:
      0 4px 20px rgba(249, 115, 22, 0.4),
      0 0 0 0 rgba(249, 115, 22, 0);
  }
}
.float-call.pulse {
  animation: nfPulse 2s infinite;
}

@media (max-width: 1024px) {
  .nf-num {
    font-size: 120px;
    letter-spacing: -2px;
  }
}
@media (max-width: 768px) {
  .nf-main {
    padding: 80px 16px 40px;
  }
  .nf-num {
    font-size: 96px;
  }
  .nf-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .nf-num {
    font-size: 88px;
    letter-spacing: -1px;
  }
  .nf-title {
    font-size: 26px;
  }
  .nf-ctas {
    flex-direction: column;
  }
  .nf-ctas .btn {
    width: 100%;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .hero-text h1 {
    font-size: 46px;
  }
  .service-grid,
  .case-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 4px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .nav-links a.active::after {
    display: none;
  }

  .nav-item {
    width: 100%;
    display: block;
  }
  .nav-item .dropdown-toggle {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-item .dropdown-toggle.active::after {
    display: none;
  }
  /* Accordion: collapsed by default, opens when .nav-item.open */
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 16px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      padding 0.25s ease,
      visibility 0.25s ease;
  }
  .nav-item.open .dropdown-menu {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 4px 0 10px 16px;
  }
  .dropdown-menu a {
    padding: 8px 0;
    border-bottom: 0;
    font-size: 13px;
    color: #6d7081;
  }
  /* Override desktop hover-rotation; use .open to drive chevron */
  .nav-item:hover .caret {
    transform: none;
  }
  .nav-item.open .caret {
    transform: rotate(180deg);
  }
  .nav-item.open .dropdown-toggle {
    color: #fff;
  }
  .nav-phone {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo-tagline {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-text h1 {
    font-size: 38px;
  }
  .hero-ctas .btn {
    flex: 1 1 100%;
  }
  .hero-stats {
    gap: 24px;
    justify-content: space-between;
  }
  .stat-num {
    font-size: 22px;
  }
  .float-badge {
    left: 8px;
    bottom: -20px;
    padding: 10px 14px;
  }

  .section-head h2,
  .case-studies .section-head h2,
  .why-text h2,
  .cta-banner h2 {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services,
  .case-studies,
  .why-us,
  .testimonials {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }
  .service-grid,
  .case-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-desc {
    max-width: none;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .hero-stats {
    gap: 18px;
  }
  .stat-num {
    font-size: 20px;
  }
  .stat-label {
    font-size: 11px;
  }
  .hero-text h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .case-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .cs-val {
    font-size: 18px;
  }
}

/* ================================
   Light mode — element-level fine-tuning
   ================================ */
[data-theme="light"] body {
  color: var(--text-body);
}
[data-theme="light"] .nav-links a {
  color: var(--text-body);
}
[data-theme="light"] .nav-links a:hover {
  color: var(--text);
}
[data-theme="light"] .nav-item .dropdown-toggle {
  color: var(--text-body);
}
[data-theme="light"] .nav-item .dropdown-toggle:hover,
[data-theme="light"] .nav-item .dropdown-toggle.active {
  color: var(--text);
}
[data-theme="light"] .dropdown-menu a {
  color: var(--text-body);
}
[data-theme="light"] .dropdown-menu a:hover {
  color: var(--text);
  background: rgba(59, 130, 246, 0.06);
}
[data-theme="light"] .dropdown-menu.rich .dd-name {
  color: var(--text);
}
[data-theme="light"] .hamburger span {
  background: var(--text);
}

[data-theme="light"] .btn-dark {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
[data-theme="light"] .btn-dark:hover {
  background: #f1f5f9;
  border-color: var(--border-strong);
}
[data-theme="light"] .btn-outline {
  color: var(--text);
  border-color: var(--border);
}
[data-theme="light"] .btn-outline:hover {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .pill,
[data-theme="light"] .ld-badge {
  background: rgba(59, 130, 246, 0.08);
}

/* Cards: tighten borders + add subtle shadow on light bg */
[data-theme="light"] .card,
[data-theme="light"] .svc-card,
[data-theme="light"] .sd-card,
[data-theme="light"] .testi-card,
[data-theme="light"] .service-card,
[data-theme="light"] .case-card,
[data-theme="light"] .cs-card,
[data-theme="light"] .loc-card,
[data-theme="light"] .ind-why-card,
[data-theme="light"] .ind-card,
[data-theme="light"] .ld-stat-card,
[data-theme="light"] .diff-card,
[data-theme="light"] .value-card,
[data-theme="light"] .expect-card,
[data-theme="light"] .proc-step-card,
[data-theme="light"] .ct-side-card,
[data-theme="light"] .ct-form-card,
[data-theme="light"] .featured-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .ld-hood,
[data-theme="light"] .loc-quicknav,
[data-theme="light"] .loc-stats-card {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

/* Form inputs */
[data-theme="light"] .ct-field input,
[data-theme="light"] .ct-field select,
[data-theme="light"] .ct-field textarea {
  background: #fff;
  color: var(--text);
}
[data-theme="light"] .ct-field input::placeholder,
[data-theme="light"] .ct-field textarea::placeholder {
  color: #6d7081;
}
[data-theme="light"] .filter-pill {
  color: var(--text-body);
}
[data-theme="light"] .filter-pill.active {
  color: #fff;
}
[data-theme="light"] .ld-kw-pill {
  color: var(--text-soft);
}
[data-theme="light"] .nf-pill {
  color: var(--text-soft);
}
[data-theme="light"] .faq-q {
  color: var(--text);
}

/* FAQ icon stays blue */
[data-theme="light"] .faq-icon {
  color: #3b82f6;
}

/* Case-study image overlay text stays white because it sits on a dark gradient */
[data-theme="light"] .cs-company,
[data-theme="light"] .cs-city,
[data-theme="light"] .featured-badge,
[data-theme="light"] .cs-badge {
  color: #fff;
}

/* Flip text from #fff to dark on elements that sit on surfaces (cards, page bg)
   that turn light. Each of these had an explicit color: #fff that overrode the
   generic heading rule, so we re-target them by class. */
[data-theme="light"] .badge-num,
[data-theme="light"] .case-stats div:nth-child(3) .cs-val,
[data-theme="light"] .features h4,
[data-theme="light"] .who .name,
[data-theme="light"] .dropdown-menu.rich .dd-name,
[data-theme="light"] .cs-author-name,
[data-theme="light"] .loc-quicknav-item .qn-city,
[data-theme="light"] .loc-stat-val,
[data-theme="light"] .loc-features h4,
[data-theme="light"] .ld-stat-num,
[data-theme="light"] .ld-hood,
[data-theme="light"] .ct-info-val,
[data-theme="light"] .ct-field input,
[data-theme="light"] .ct-field select,
[data-theme="light"] .ct-field textarea,
[data-theme="light"] .faq-q,
[data-theme="light"] .foot-col ul li a:hover {
  color: var(--text);
}

/* Process page step icon — its tinted blue bg should keep dark icon color */
[data-theme="light"] .proc-step-icon {
  color: #2563eb;
}

/* Mobile-only "Book Free Audit" CTA inside the hamburger drawer */
.nav-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  /* Hide the desktop header CTA on mobile */
  .nav-cta > .btn-orange {
    display: none;
  }
  /* Reveal & style the mobile CTA inside the open drawer */
  .nav-mobile-cta {
    display: inline-flex !important;
    width: 100%;
    margin-top: 14px;
    padding: 12px 20px !important;
    justify-content: center;
    border-bottom: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600;
  }
}

/* =================================================
   BLOG DETAIL PAGE
   ================================================= */

.bd-hero {
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin-top: 68px;
}
.bd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 90px;
}

/* Article column */
.bd-article h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.bd-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.bd-meta .bd-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.bd-meta svg {
  color: #3b82f6;
  flex-shrink: 0;
}
.bd-meta .bd-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}
.bd-article p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
}
.bd-article h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 38px 0 16px;
}
.bd-article h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 12px;
}
.bd-article ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.bd-article ul li {
  position: relative;
  padding-left: 26px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.bd-article ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f97316;
}
.bd-article ul li strong {
  color: var(--text);
  font-weight: 600;
}
.bd-figure {
  margin: 30px 0;
}
.bd-figure img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
}
.bd-figure figcaption {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
}

/* Sidebar CTA */
.bd-sidebar {
  position: sticky;
  top: 92px;
}
.bd-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
}
.bd-cta-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
}
.bd-cta-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.bd-cta-card p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Related blogs */
.bd-related {
  padding: 0 0 80px;
}
.bd-related h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.bd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bd-related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.bd-related-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(var(--shadow-rgb), 0.18);
}
.bd-related-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.bd-related-body {
  padding: 20px 22px;
}
.bd-related-body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.bd-related-body .bd-related-meta {
  color: var(--text-muted);
  font-size: 12px;
}

/* Blog detail responsive */
@media (max-width: 1024px) {
  .bd-hero {
    height: 340px;
  }
  .bd-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bd-sidebar {
    position: static;
  }
  .bd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .bd-hero {
    height: 240px;
  }
  .bd-wrap {
    padding-top: 36px;
    padding-bottom: 60px;
  }
  .bd-article h1 {
    font-size: 30px;
  }
  .bd-article h2 {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .bd-hero {
    height: 190px;
  }
  .bd-related-grid {
    grid-template-columns: 1fr;
  }
  .bd-meta {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}

/* Theme toggle button */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-body);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.theme-toggle:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
.theme-toggle svg {
  display: block;
}
.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}
[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}
[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}
@media (max-width: 768px) {
  .theme-toggle {
    width: 36px;
    height: 36px;
  }
}
