/* =========================================================
   KRYSTAL KLEAN EXTERIOR — MAIN STYLESHEET
   Brand: #0284c7 sky blue · #075985 deep blue · #f59e0b amber
   Fonts: Montserrat (headings) · Inter (body)
   Zero animation libs. CLS = 0. Lighthouse-first.
   ========================================================= */

:root {
  --blue: #0284c7;
  --blue-dark: #075985;
  --blue-deep: #0c4a6e;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --green: #16a34a;
  --red: #dc2626;
  --star: #fbbf24;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow: 0 4px 12px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.10);
  --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--gray-600); }
.accent, .blue { color: var(--blue); }
.amber { color: var(--amber); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }
.section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-600); font-size: 1.1rem; }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-blue { background: var(--blue); color: var(--white); }
.bg-blue-dark { background: var(--blue-dark); color: var(--white); }
.bg-blue-deep { background: var(--blue-deep); color: var(--white); }
.bg-blue *, .bg-blue-dark *, .bg-blue-deep * { color: inherit; }
.bg-blue h1, .bg-blue h2, .bg-blue h3,
.bg-blue-dark h1, .bg-blue-dark h2, .bg-blue-dark h3,
.bg-blue-deep h1, .bg-blue-deep h2, .bg-blue-deep h3 { color: var(--white); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--gray-900);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
}
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn-phone {
  background: var(--green);
  color: var(--white);
}
.btn-phone:hover { background: #15803d; color: var(--white); transform: translateY(-1px); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.site-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0;
}
.site-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-900);
  letter-spacing: 0;
  line-height: 1.1;
}
.site-logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0;
  text-transform: uppercase;
}
.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 2px;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--blue); }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.main-nav .has-dropdown:hover .dropdown { display: flex; }
.main-nav .dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.main-nav .dropdown li a:hover { background: var(--gray-50); color: var(--blue); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-phone {
  display: none;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1rem;
  padding: 6px 10px;
}
.header-phone:hover { color: var(--blue); }
.menu-toggle {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--gray-900);
  margin: 3px 0; transition: all var(--transition);
}
@media (min-width: 1024px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .header-phone { display: inline-flex; }
}
/* Mobile menu */
.main-nav.mobile-open {
  display: block;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.main-nav.mobile-open ul { flex-direction: column; align-items: stretch; gap: 4px; }
.main-nav.mobile-open a { padding: 10px 6px; display: block; border-bottom: 1px solid var(--gray-100); }
.main-nav.mobile-open .dropdown { display: flex; position: static; box-shadow: none; border: none; padding-left: 12px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background:
    linear-gradient(135deg, rgba(12, 74, 110, 0.90) 0%, rgba(2, 132, 199, 0.80) 100%),
    url('/images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-grid { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; } }
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 .accent { color: var(--amber); }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.92); margin-bottom: 28px; max-width: 600px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-size: 0.92rem; }
.hero-trust span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.92); }
.hero-trust .star { color: var(--star); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.20);
  border: 1px solid rgba(245,158,11,0.45);
  color: var(--amber);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Hero form card */
.hero-form {
  background: var(--white);
  color: var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-form h3 { color: var(--gray-900); margin-bottom: 8px; font-size: 1.35rem; }
.hero-form p.lead { margin-bottom: 20px; font-size: 0.95rem; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  transition: border-color var(--transition), background var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--blue-deep);
  color: var(--white);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0;
}
.trust-item .num { color: var(--amber); font-size: 1.3rem; }
.trust-item .star { color: var(--star); }

/* ---------- SERVICE CARDS ---------- */
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.svc-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.svc-card-icon svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 18px; flex-grow: 1; }
.svc-card .svc-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}
.svc-card-popular {
  position: relative;
  border-color: var(--amber);
}
.svc-card-popular::before {
  content: "Most Popular";
  position: absolute;
  top: 14px; right: 14px;
  background: var(--amber);
  color: var(--gray-900);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- TESTIMONIAL CARDS ---------- */
.t-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.t-stars { color: var(--star); font-size: 0.95rem; margin-bottom: 10px; }
.t-text { color: var(--gray-700); font-size: 0.95rem; line-height: 1.6; margin-bottom: 14px; flex-grow: 1; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.t-author-meta { display: flex; flex-direction: column; }
.t-author-name { font-weight: 700; color: var(--gray-900); font-size: 0.92rem; }
.t-author-date { color: var(--gray-500); font-size: 0.82rem; }

/* ---------- PROCESS / STEPS ---------- */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
}
.step h4 { color: var(--gray-900); margin-bottom: 6px; font-size: 1.15rem; }
.step p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary { background: var(--gray-50); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--gray-600); line-height: 1.7; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 24px;
}
.site-footer a { color: var(--gray-300); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col ul a { font-size: 0.92rem; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--gray-400); font-size: 0.92rem; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--blue); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(15,23,42,0.12);
  padding: 10px;
  gap: 8px;
}
.sticky-mobile-cta .btn { flex: 1; padding: 12px 10px; font-size: 0.88rem; }
@media (min-width: 768px) { .sticky-mobile-cta { display: none; } }

/* ---------- PAGE HEADER (non-hero pages) ---------- */
.page-hero {
  padding: 60px 0 48px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }
.breadcrumbs {
  padding: 14px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.87rem;
  color: var(--gray-600);
}
.breadcrumbs a { color: var(--gray-600); }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs .sep { margin: 0 8px; color: var(--gray-400); }

/* ---------- CONTENT PROSE ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 48px; margin-bottom: 16px; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose p { margin-bottom: 18px; font-size: 1.04rem; color: var(--gray-700); line-height: 1.75; }
.prose ul, .prose ol { margin: 16px 0 24px 24px; }
.prose ul li { list-style: disc; margin-bottom: 8px; color: var(--gray-700); }
.prose ol li { list-style: decimal; margin-bottom: 8px; color: var(--gray-700); }
.prose strong { color: var(--gray-900); }
.prose a { color: var(--blue); text-decoration: underline; }
.prose a:hover { color: var(--blue-dark); }

/* ---------- CALLOUT BOX ---------- */
.callout {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 36px 0;
}
.callout h3 { color: var(--white); margin-bottom: 10px; }
.callout p { color: rgba(255,255,255,0.90); margin-bottom: 18px; }
.callout .btn { margin: 4px; }

/* ---------- AREAS GRID ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.areas-grid a {
  background: var(--gray-50);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.areas-grid a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* ---------- COUNTY GROUP ---------- */
.county-group { margin-bottom: 40px; }
.county-group h3 { color: var(--gray-800); margin-bottom: 14px; border-bottom: 2px solid var(--blue); padding-bottom: 8px; display: inline-block; }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.blog-card-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card .excerpt { color: var(--gray-600); font-size: 0.92rem; flex-grow: 1; margin-bottom: 12px; }
.blog-card .meta { font-size: 0.82rem; color: var(--gray-500); }

/* ---------- GHL EMBED SLOT ---------- */
.ghl-embed {
  width: 100%;
  min-height: 620px;
  border: none;
  border-radius: var(--radius);
  background: var(--gray-50);
}
.ghl-placeholder {
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--gray-500);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 70px 0; }
  .hero { padding: 60px 0 70px; }
  body { padding-bottom: 72px; /* space for sticky CTA */ }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   ESTIMATE WIZARD (ported from JAB, KKE-branded)
   ========================================================= */
.kke-wiz {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(2, 132, 199, 0.08);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.kke-wiz-compact { box-shadow: none; border: none; padding: 0; }
.kke-wiz-head { text-align: center; margin-bottom: 20px; }
.kke-wiz-head h3 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--blue-deep); margin: 0 0 4px; letter-spacing: 0; }
.kke-wiz-head p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }
.kke-wiz-step-label { display: inline-block; background: var(--blue); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; letter-spacing: 0; text-transform: uppercase; }
.kke-wiz-heading { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin: 0 0 18px; }
.kke-wiz-panel { display: none; }
.kke-wiz-panel.kke-wiz-active { display: block; animation: kke-fadein 0.22s ease-out; }
@keyframes kke-fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.kke-wiz-2col { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.kke-wiz-field { position: relative; }
.kke-wiz-field-wide { grid-column: 1 / -1; }
.kke-wiz-field input { width: 100%; padding: 14px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 1rem; font-family: 'Inter', sans-serif; background: var(--white); color: var(--gray-900); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.kke-wiz-field input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15); }
.kke-wiz-field input.kke-wiz-invalid { border-color: var(--red); }
.kke-wiz-error { display: block; color: var(--red); font-size: 0.8rem; margin-top: 4px; min-height: 16px; }
.kke-type-btn, .kke-svc-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 22px 16px; border: 2px solid var(--gray-200); background: var(--white); border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gray-800); cursor: pointer; transition: all 0.15s ease; text-align: center; position: relative; }
.kke-type-btn:hover, .kke-svc-tile:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(2, 132, 199, 0.18); }
.kke-type-btn.kke-active, .kke-svc-tile.kke-active { border-color: var(--blue); background: linear-gradient(135deg, rgba(2, 132, 199, 0.08), rgba(2, 132, 199, 0.04)); box-shadow: 0 4px 14px rgba(2, 132, 199, 0.18); }
.kke-wiz-tile-icon { font-size: 2rem; line-height: 1; }
.kke-wiz-tile-text { font-size: 1.05rem; }
.kke-wiz-tiles { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.kke-svc-tile { padding: 16px 12px; min-height: 64px; }
.kke-wiz-pop { display: block; font-size: 0.7rem; color: var(--amber-dark); font-weight: 800; margin-top: 4px; letter-spacing: 0; }
.kke-wiz-back, .kke-wiz-edit { background: none; border: none; color: var(--blue); font-weight: 600; font-size: 0.9rem; cursor: pointer; padding: 8px 0; margin-top: 12px; font-family: 'Inter', sans-serif; }
.kke-wiz-back:hover, .kke-wiz-edit:hover { text-decoration: underline; }
.kke-wiz-summary { display: flex; justify-content: space-between; align-items: center; background: var(--gray-100); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--gray-700); margin-bottom: 16px; }
.kke-wiz-summary-text { font-weight: 600; }
.kke-wiz-details-toggle { margin: 14px 0; text-align: center; }
.kke-wiz-toggle-btn { background: none; border: 1px dashed var(--gray-300); color: var(--blue); font-weight: 600; font-size: 0.9rem; padding: 10px 16px; border-radius: var(--radius-sm); cursor: pointer; font-family: 'Inter', sans-serif; width: 100%; }
.kke-wiz-toggle-btn:hover { border-color: var(--blue); background: rgba(2, 132, 199, 0.04); }
.kke-wiz-details-body { border-top: 1px solid var(--gray-200); padding-top: 16px; margin-top: 8px; }
.kke-wiz-chipgroup { margin-bottom: 14px; display: none; }
.kke-wiz-chipgroup.kke-visible { display: block; }
.kke-wiz-chipgroup label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.kke-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.kke-chip { background: var(--white); border: 1.5px solid var(--gray-300); color: var(--gray-700); font-size: 0.85rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.12s ease; }
.kke-chip:hover { border-color: var(--blue); color: var(--blue); }
.kke-chip.kke-active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.kke-wiz-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.kke-wiz-submit { width: 100%; margin-top: 16px; padding: 16px 20px; font-size: 1.05rem; }
.kke-wiz-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.kke-wiz-submit.kke-loading { position: relative; color: transparent; }
.kke-wiz-submit.kke-loading::after { content: ''; position: absolute; top: 50%; left: 50%; margin: -10px 0 0 -10px; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: kke-spin 0.7s linear infinite; }
@keyframes kke-spin { to { transform: rotate(360deg); } }
.kke-wiz-disclaimer { font-size: 0.75rem; color: var(--gray-500); text-align: center; margin: 10px 0 0; }
.kke-wiz-result { text-align: center; padding: 20px 0; }
.kke-wiz-check { width: 72px; height: 72px; margin: 0 auto 14px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 800; box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3); }
.kke-wiz-result h3 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; color: var(--blue-deep); margin: 0 0 6px; }
.kke-wiz-result p { color: var(--gray-600); margin: 0 0 18px; }
.kke-wiz-call { display: block; text-align: center; margin-top: 16px; padding: 10px; color: var(--gray-600); text-decoration: none; font-size: 0.9rem; border-top: 1px solid var(--gray-200); }
.kke-wiz-call strong { color: var(--blue); }
.kke-wiz-call:hover strong { text-decoration: underline; }
@media (max-width: 560px) {
  .kke-wiz { padding: 20px 16px; }
  .kke-wiz-2col, .kke-wiz-tiles { grid-template-columns: 1fr; }
  .kke-wiz-head h3 { font-size: 1.3rem; }
  .kke-type-btn { padding: 18px 12px; }
}

/* ============================================================
   ESTIMATE WIZARD (KKE-branded, ported from JAB pattern)
   ============================================================ */
.kke-wiz {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-width: 720px;
  margin: 0 auto;
}
.kke-wiz-panel {
  animation: kke-fadein 0.28s ease both;
}
.kke-wiz-panel[hidden] { display: none !important; }
@keyframes kke-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.kke-wiz-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue, #0a4d8c);
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.kke-wiz-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--gray-900, #101828);
  margin: 0 0 20px;
  line-height: 1.25;
}
.kke-wiz-title small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600, #475467);
  margin-top: 4px;
}

/* Step 1: property-type buttons */
.kke-wiz-type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kke-type-btn {
  border: 2px solid var(--gray-200);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kke-type-btn:hover,
.kke-type-btn.kke-active {
  border-color: var(--blue, #0a4d8c);
  background: #f4f8fd;
  color: var(--blue, #0a4d8c);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 77, 140, 0.12);
}
.kke-type-icon { font-size: 32px; line-height: 1; }

/* Step 2: service tiles */
.kke-wiz-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kke-svc-tile {
  position: relative;
  border: 2px solid var(--gray-200);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.kke-svc-tile:hover,
.kke-svc-tile.kke-active {
  border-color: var(--blue, #0a4d8c);
  background: #f4f8fd;
  box-shadow: 0 4px 12px rgba(10, 77, 140, 0.1);
}
.kke-svc-tile-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.kke-svc-tile-desc {
  font-size: 13px;
  color: var(--gray-600);
}
.kke-svc-tile .kke-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--amber, #f59e0b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Step 3: contact + details */
.kke-wiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kke-wiz-field { display: flex; flex-direction: column; gap: 6px; }
.kke-wiz-field.kke-wiz-full { grid-column: 1 / -1; }
.kke-wiz-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700, #344054);
}
.kke-wiz-field input,
.kke-wiz-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.kke-wiz-field input:focus,
.kke-wiz-field textarea:focus {
  outline: none;
  border-color: var(--blue, #0a4d8c);
  box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.12);
}
.kke-wiz-field input.kke-wiz-invalid,
.kke-wiz-field textarea.kke-wiz-invalid {
  border-color: #dc2626;
}
.kke-wiz-err {
  font-size: 12px;
  color: #dc2626;
  min-height: 16px;
}

/* Chip groups (details) */
.kke-wiz-details {
  margin-top: 14px;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}
.kke-wiz-toggle-btn {
  background: none;
  border: none;
  color: var(--blue, #0a4d8c);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.kke-wiz-details-body { margin-top: 12px; }
.kke-wiz-chipgroup { display: none; margin-bottom: 14px; }
.kke-wiz-chipgroup.kke-visible { display: block; }
.kke-wiz-chipgroup label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.kke-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kke-chip {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s ease;
}
.kke-chip:hover { border-color: var(--blue, #0a4d8c); color: var(--blue, #0a4d8c); }
.kke-chip.kke-active {
  background: var(--blue, #0a4d8c);
  border-color: var(--blue, #0a4d8c);
  color: #fff;
}

/* Summary block */
.kke-wiz-summary {
  background: var(--gray-50, #f9fafb);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.kke-wiz-summary strong { color: var(--gray-900); }
.kke-wiz-edit {
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--gray-700);
  cursor: pointer;
  margin-left: auto;
}
.kke-wiz-edit:hover { border-color: var(--blue); color: var(--blue); }

.kke-wiz-intro {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: -8px 0 16px;
}
.kke-wiz-service-block {
  margin-top: 16px;
}
.kke-wiz-service-label {
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.kke-wiz-service-label span {
  color: var(--gray-500);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 2px;
}
.kke-service-select {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: #fbfaf7;
  color: var(--gray-900);
  font: inherit;
  padding: 0 42px 0 14px;
}
.kke-service-select:focus {
  border-color: var(--cypress);
  box-shadow: 0 0 0 4px rgba(15,118,110,0.12);
  outline: none;
}
.kke-wiz-single .kke-wiz-tiles {
  gap: 8px;
}
.kke-wiz-single .kke-svc-tile {
  min-height: 58px;
  padding: 12px 10px;
  text-align: center;
}
.kke-service-error {
  margin-top: 6px;
}

/* Buttons row */
.kke-wiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 10px;
}
.kke-wiz-back {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 4px;
}
.kke-wiz-back:hover { color: var(--blue); }
.kke-wiz-submit {
  background: var(--amber, #f59e0b);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  min-width: 180px;
  position: relative;
}
.kke-wiz-submit:hover:not(:disabled) {
  background: #d97706;
  transform: translateY(-1px);
}
.kke-wiz-submit:disabled { opacity: 0.7; cursor: wait; }
.kke-wiz-submit.kke-loading::after {
  content: '';
  position: absolute;
  top: 50%; right: 14px;
  width: 14px; height: 14px;
  margin-top: -7px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: kke-spin 0.7s linear infinite;
}
@keyframes kke-spin { to { transform: rotate(360deg); } }

/* Success panel */
.kke-wiz-success {
  text-align: center;
  padding: 20px 0;
}
.kke-wiz-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #d1fae5;
  color: #065f46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Hidden honeypot */
.kke-wiz-honey {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 560px) {
  .kke-wiz-type-row,
  .kke-wiz-svc-grid,
  .kke-wiz-grid { grid-template-columns: 1fr; }
  .kke-wiz-submit { width: 100%; min-width: 0; }
  .kke-wiz-actions { flex-direction: column-reverse; align-items: stretch; }
}

/* ============================================================
   DESIGN UPLIFT — new prefixed components (do not touch wizard)
   ============================================================ */

/* ---------- HERO WITH PHOTO BACKGROUND ---------- */
.hero-photo {
  position: relative;
  padding: 90px 0 100px;
  color: var(--white);
  overflow: hidden;
  background-color: var(--blue-deep);
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12, 74, 110, 0.78) 0%, rgba(7, 89, 133, 0.55) 55%, rgba(2, 132, 199, 0.40) 100%);
  z-index: 1;
}
.hero-photo > .container { position: relative; z-index: 2; }
.hero-photo h1 { color: var(--white); }
.hero-photo h1 .accent { color: var(--amber); }

/* ---------- PHOTO SERVICE CARDS ---------- */
.kk-svc-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.kk-svc-photo {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-900);
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.kk-svc-photo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--white); }
.kk-svc-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.kk-svc-photo:hover img { transform: scale(1.06); }
.kk-svc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.78) 100%);
}
.kk-svc-photo-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  z-index: 2;
}
.kk-svc-photo-body h3 {
  color: var(--white);
  font-size: 1.13rem;
  line-height: 1.08;
  margin-bottom: 5px;
}
.kk-svc-photo-body p {
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kk-svc-photo-body .link { color: var(--amber); font-weight: 700; font-size: 0.85rem; margin-top: 8px; display: inline-block; }

/* ---------- BEFORE/AFTER SLIDER (img-comparison-slider) ---------- */
.kk-ba-section { padding: 80px 0; }
.kk-ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; }
.kk-ba-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.kk-ba-card img-comparison-slider { width: 100%; display: block; aspect-ratio: 4 / 3; background: var(--gray-100); }
.kk-ba-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kk-ba-card .kk-ba-cap {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
}
.kk-ba-card .kk-ba-cap strong { color: var(--gray-900); display: block; margin-bottom: 2px; font-family: var(--font-head); }
img-comparison-slider {
  --handle-size: 40px;
  --default-handle-opacity: 1;
  --divider-width: 3px;
  --divider-color: var(--amber);
}
img-comparison-slider::part(handle) {
  background: var(--amber);
  color: var(--gray-900);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* ---------- GALLERY GRID ---------- */
.kk-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.kk-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  display: block;
  cursor: zoom-in;
}
.kk-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.kk-gallery-item:hover img { transform: scale(1.05); }
.kk-gallery-item-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.8) 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.kk-gallery-item:hover .kk-gallery-item-cap { opacity: 1; }

/* ---------- TEAM STRIP ---------- */
.kk-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.kk-team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  transition: all var(--transition);
}
.kk-team-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.kk-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}
.kk-team-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--gray-900); margin-bottom: 2px; }
.kk-team-role { color: var(--blue); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.kk-team-bio { color: var(--gray-600); font-size: 0.85rem; line-height: 1.55; margin: 0; }
.kk-team-ops { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kk-team-ops .kk-team-card { text-align: left; }
.kk-team-ops .kk-team-card:hover { transform: none; }
.kk-team-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 1.15fr);
  gap: 18px;
  align-items: stretch;
}
.kk-team-lead,
.kk-team-standards {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,24,32,0.06);
}
.kk-team-lead { padding: 24px; }
.kk-team-kicker {
  display: block;
  color: var(--cypress);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.kk-team-lead h3 { margin-bottom: 8px; }
.kk-team-lead p { color: var(--gray-600); line-height: 1.65; margin: 0; }
.kk-team-standards {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.kk-team-standards div {
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-200);
}
.kk-team-standards div:last-child { border-bottom: 0; }
.kk-team-standards strong {
  display: block;
  color: var(--gray-900);
  font-family: var(--font-head);
  margin-bottom: 4px;
}
.kk-team-standards span {
  display: block;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.45;
}
.footer-logo-mark img.kk-logo-png {
  opacity: 1;
}

/* ---------- TRUST STRIP ---------- */
.kk-trust-strip {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.kk-trust-strip::before {
  content: "";
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 320px;
  background-image: url('/images/optimized/krystal-klean-truck-brand.webp');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.14;
  filter: grayscale(0.2) contrast(1.2);
  z-index: 0;
  pointer-events: none;
}
.kk-trust-strip > .container { position: relative; z-index: 1; }
.kk-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 22px; align-items: center; }
.kk-trust-item { display: flex; flex-direction: column; gap: 2px; }
.kk-trust-label { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--white); letter-spacing: 0; }
.kk-trust-detail { color: rgba(255,255,255,0.78); font-size: 0.82rem; }
.kk-trust-item a { color: inherit; text-decoration: none; }
.kk-trust-item a:hover .kk-trust-label { color: var(--amber); }

/* ---------- HEADER LOGO (real PNG) ---------- */
.site-logo img.kk-logo-png { height: 42px; width: auto; display: block; }
.site-footer .footer-logo-mark {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.site-footer .footer-logo-mark img.kk-logo-png {
  height: 48px;
  max-width: 210px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .site-logo img.kk-logo-png { height: 34px; }
}

/* ---------- TESTIMONIAL AVATAR (real photo) ---------- */
.t-author-avatar-photo {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background: var(--gray-200);
}

/* ---------- CITY HERO IMAGE SUPPORT ---------- */
.page-hero-photo {
  position: relative;
  padding: 80px 0 70px;
  background-color: var(--blue-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12, 74, 110, 0.85) 0%, rgba(7, 89, 133, 0.70) 100%);
  z-index: 1;
}
.page-hero-photo > .container { position: relative; z-index: 2; }
.page-hero-photo h1 { color: var(--white); }
.page-hero-photo p { color: rgba(255,255,255,0.92); }

/* ---------- OUR WORK / CITY PHOTOS ---------- */
.kk-city-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: var(--shadow);
}

/* ---------- MOBILE OVERRIDES FOR NEW COMPONENTS ---------- */
@media (max-width: 768px) {
  .kk-svc-photos, .kk-ba-grid, .kk-gallery { grid-template-columns: 1fr; }
  .kk-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .kk-trust-strip::before { opacity: 0.06; }
  .kk-svc-photo { aspect-ratio: 3 / 2; }
  .hero-photo { padding: 70px 0 80px; }
}

/* ============================================================
   2026 POLISH PASS - premium local-service feel, no heavy JS
   ============================================================ */
:root {
  --ink: #101820;
  --graphite: #17212b;
  --cypress: #0f766e;
  --stone: #f5f3ef;
  --sand: #e7dac3;
}

body { background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cypress);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
}

.hero-photo {
  min-height: calc(100vh - var(--header-h) - 48px);
  display: flex;
  align-items: center;
}
.hero-photo::after {
  background:
    linear-gradient(90deg, rgba(16,24,32,0.92) 0%, rgba(16,24,32,0.76) 46%, rgba(15,118,110,0.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 100%);
}
.hero-grid { gap: clamp(28px, 5vw, 72px); }
.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}
.hero h1 .accent { color: #f7c66a; }
.hero-sub {
  max-width: 680px;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  color: rgba(255,255,255,0.9);
}
.hero-badge {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,198,106,0.42);
  color: #ffd37a;
}
.hero-form {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 24px 70px rgba(16,24,32,0.32);
}

.section-header h2,
.prose h2 { text-wrap: balance; }

.kk-svc-photo {
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(16,24,32,0.10);
}
.kk-svc-photo::after {
  background: linear-gradient(180deg, rgba(16,24,32,0.02) 24%, rgba(16,24,32,0.88) 100%);
}
.kk-svc-photo-body .link { color: #ffd37a; }

.kk-ba-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--stone) 100%);
}
.kk-ba-card {
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(16,24,32,0.10);
}

.kk-gallery-item { border-radius: 8px; }

.kk-team {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.kk-team-card {
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(16,24,32,0.06);
}
.kk-team-avatar {
  margin: 0 0 14px;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--cypress) 100%);
}
.kk-team-role { color: var(--cypress); }

@media (max-width: 800px) {
  .kk-team-ops { grid-template-columns: 1fr; }
  .kk-team-proof { grid-template-columns: 1fr; }
}

.kke-wiz {
  border-radius: 12px;
  border: 1px solid rgba(203,213,225,0.9);
  box-shadow: 0 18px 46px rgba(16,24,32,0.10);
}
.kke-wiz-compact {
  box-shadow: none;
}
.kke-type-btn,
.kke-svc-tile {
  border-radius: 10px;
  align-items: flex-start;
  text-align: left;
}
.kke-type-btn:hover,
.kke-type-btn.kke-active,
.kke-svc-tile:hover,
.kke-svc-tile.kke-active {
  border-color: var(--cypress);
  background: #f0fdfa;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(15,118,110,0.14);
}
.kke-wiz-tile-sub {
  display: block;
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}
.kke-svc-premium {
  border-color: rgba(245,158,11,0.55);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}
.kke-wiz-pop { color: var(--amber-dark); }
.kke-wiz-step-label { background: var(--graphite); color: #ffffff; }
.kke-wiz-field input {
  border-radius: 10px;
  background: #fbfaf7;
}
.kke-wiz-field input:focus {
  border-color: var(--cypress);
  box-shadow: 0 0 0 4px rgba(15,118,110,0.12);
}
.kke-wiz-toggle-btn {
  border-radius: 10px;
  border-color: var(--sand);
  color: var(--cypress);
}
.kke-chip.kke-active {
  background: var(--cypress);
  border-color: var(--cypress);
}
.kke-wiz-submit {
  background: linear-gradient(135deg, #f7c66a 0%, var(--amber) 100%);
  color: var(--ink);
}
.kke-wiz-submit:hover:not(:disabled) {
  background: var(--amber-dark);
  color: #ffffff;
}

.blog-hero {
  padding: clamp(64px, 10vw, 118px) 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(16,24,32,0.94), rgba(16,24,32,0.72)),
    url('/images/optimized/sealer_application-1-full.webp') center/cover no-repeat;
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}
.blog-hero h1 {
  color: #ffffff;
  max-width: 850px;
  text-wrap: balance;
}
.blog-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.84);
  font-size: 1.1rem;
}
.blog-hero .eyebrow { color: #ffd37a; }
.blog-hero-panel {
  background: rgba(255,255,255,0.94);
  color: var(--gray-800);
  border-radius: 12px;
  padding: 22px;
  display: grid;
  gap: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.blog-hero-panel strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.blog-hero-panel a {
  color: var(--cypress);
  font-weight: 800;
}
.blog-card {
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.blog-card:hover {
  border-color: var(--cypress);
}

@media (max-width: 900px) {
  .hero-photo { min-height: auto; }
  .blog-hero-grid { grid-template-columns: 1fr; }
  .hero-form { padding: 20px; }
}

/* Service cards: keep images readable by moving copy below the photo. */
.kk-svc-photo,
.kk-svc-photo:hover {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  min-height: 0;
  background: #fff;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,24,32,0.08);
}
.kk-svc-photo:hover {
  color: var(--gray-900);
  border-color: var(--cypress);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16,24,32,0.13);
}
.kk-svc-photo::after { display: none; }
.kk-svc-photo img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex: 0 0 auto;
}
.kk-svc-photo:hover img { transform: scale(1.025); }
.kk-svc-photo-body {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 18px 18px;
}
.kk-svc-photo-body h3 {
  color: var(--gray-900);
  font-size: 1.05rem;
  line-height: 1.18;
  margin-bottom: 8px;
}
.kk-svc-photo-body p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.45;
  -webkit-line-clamp: 4;
}
.kk-svc-photo-body .link {
  color: var(--cypress);
  margin-top: auto;
  padding-top: 12px;
}

@media (min-width: 900px) {
  .hero-photo {
    min-height: auto;
    padding: clamp(56px, 6vw, 86px) 0 clamp(64px, 7vw, 96px);
  }
  .hero h1 {
    font-size: clamp(2.75rem, 4.1vw, 4.25rem);
    line-height: 1;
  }
  .hero-grid {
    align-items: start;
  }
  .hero-sub {
    margin-bottom: 22px;
  }
  .hero-ctas {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .sticky-mobile-cta {
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  body.kke-form-in-view .sticky-mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }
}


/* Lightweight launch motion */
@media (prefers-reduced-motion: no-preference) {
  .kke-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.46s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
  }
  .kke-reveal.kke-reveal-in {
    opacity: 1;
    transform: translateY(-2px);
  }
  .kk-svc-photo.kke-reveal,
  .kk-ba-card.kke-reveal,
  .kk-gallery-item.kke-reveal,
  .t-card.kke-reveal,
  .kk-team-card.kke-reveal,
  .blog-card.kke-reveal {
    transition-duration: 0.52s;
  }
}
