/*
Theme Name: ClearNest Water
Theme URI: https://clearnestwater.com
Author: ClearNest Water
Description: Custom WordPress theme for ClearNest Water — pixel-matched from Lovable design.
Version: 2.0.0
Text Domain: clearnest
*/

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --primary:        #2577B1;          /* rgb(37,119,177)   hsl(205,65%,42%) */
  --primary-10:     rgba(37,119,177,.10);
  --primary-20:     rgba(37,119,177,.20);
  --primary-shadow: rgba(37,119,177,.35);
  --bg:             #FCFCFD;
  --fg:             #111C27;
  --muted:          #6C8093;
  --border:         #E7EBEF;
  --muted-bg:       rgba(242,245,247,.50);
  --card-bg:        #FFFFFF;
  --footer-bg:      #111C27;
  --section-grad:   linear-gradient(180deg, #FCFCFD 0%, #F4F8FA 100%);
  --card-shadow:    0 4px 24px -4px rgba(96,128,159,.08);
  --card-shadow-h:  0 8px 32px -4px rgba(96,128,159,.14);
  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      16px;
  --radius-btn:     10px;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-heading:   'Playfair Display', Georgia, serif;
  --max-w:          1280px;
  --px:             clamp(20px, 4vw, 48px);
  --section-py:     clamp(64px, 8vw, 112px);
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--fg); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ─── LAYOUT ────────────────────────────────────────────────── */
.cn-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.cn-section    { padding: var(--section-py) 0; }
.cn-section-grad { background: var(--section-grad); }
.cn-section-muted { background: var(--muted-bg); }
.cn-text-center { text-align: center; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.cn-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px;
}
h1, .cn-h1 {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--fg);
}
h2, .cn-h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700; line-height: 1.2; color: var(--fg);
}
h3, .cn-h3 {
  font-family: var(--font-body); font-size: 14px;
  font-weight: 600; line-height: 1.4; color: var(--fg);
}
p, .cn-p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.cn-lead { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }
.cn-text-primary { color: var(--primary); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.cn-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-btn);
  border: 1px solid transparent; transition: all .2s ease;
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.cn-btn-primary {
  background: var(--primary); color: #fff !important;
  border-color: var(--primary);
  box-shadow: var(--primary-shadow) 0px 4px 16px -2px;
}
.cn-btn-primary:hover { background: #1c6299; border-color: #1c6299; transform: translateY(-1px); }

.cn-btn-outline {
  background: var(--bg); color: var(--fg) !important;
  border-color: var(--border);
}
.cn-btn-outline:hover { border-color: var(--primary); color: var(--primary) !important; }

.cn-btn-ghost {
  background: rgba(255,255,255,.15); color: #fff !important;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.cn-btn-ghost:hover { background: rgba(255,255,255,.25); }

.cn-btn-lg { padding: 14px 32px; font-size: 1rem; }
.cn-btn-full { width: 100%; justify-content: center; }

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────────── */
.cn-announcement {
  background: var(--footer-bg); color: rgba(255,255,255,.9);
  text-align: center; padding: 10px var(--px);
  font-size: 13px; font-weight: 500; letter-spacing: .2px;
}
.cn-announcement a { color: inherit; text-decoration: underline; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.cn-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,252,253,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(17,28,39,.04);
}
.cn-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--px); max-width: var(--max-w); margin: 0 auto; gap: 16px;
}
.cn-logo {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--fg) !important; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.cn-logo img { height: 36px; width: auto; }

/* Desktop nav */
.cn-nav { display: flex; align-items: center; gap: 2px; }
.cn-nav a {
  font-size: 14px; font-weight: 500; color: var(--fg) !important;
  padding: 8px 12px; border-radius: var(--radius-btn);
  transition: all .15s ease; white-space: nowrap;
}
.cn-nav a:hover, .cn-nav a.current { color: var(--primary) !important; background: var(--primary-10); }
.cn-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cn-header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--fg) !important;
}
.cn-hamburger {
  display: none; background: none; border: none; padding: 6px;
  color: var(--fg); line-height: 1; font-size: 22px;
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
.cn-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--bg); flex-direction: column;
  padding: 20px var(--px); overflow-y: auto;
}
.cn-mobile-nav.is-open { display: flex; }
.cn-mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.cn-mobile-close { background: none; border: none; font-size: 24px; color: var(--fg); }
.cn-mobile-nav ul { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cn-mobile-nav ul a {
  display: block; padding: 13px 16px; border-radius: var(--radius-btn);
  font-size: 1rem; font-weight: 500; color: var(--fg) !important;
  transition: all .15s;
}
.cn-mobile-nav ul a:hover { background: var(--primary-10); color: var(--primary) !important; }
.cn-mobile-nav .cn-btn { margin-top: 20px; }

/* ─── HERO ───────────────────────────────────────────────────── */
.cn-hero { padding: clamp(48px,7vw,96px) 0 clamp(48px,7vw,80px); overflow: hidden; }
.cn-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.cn-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-10); color: var(--primary);
  padding: 6px 14px; border-radius: 99px;
  font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.cn-hero-badge .stars { color: #F59E0B; letter-spacing: -1px; }
.cn-hero h1 { margin-bottom: 18px; }
.cn-hero .cn-lead { margin-bottom: 28px; max-width: 480px; }
.cn-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.cn-hero-trust { display: flex; flex-direction: column; gap: 8px; }
.cn-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.cn-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--muted); }
.cn-trust-item .cn-check { color: var(--primary); flex-shrink: 0; }

/* Hero image */
.cn-hero-img-wrap { position: relative; }
.cn-hero-img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px -12px rgba(17,28,39,.15);
  aspect-ratio: 5/4; object-fit: cover;
}
.cn-hero-img-placeholder {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 5/4;
  background: linear-gradient(135deg, #daeaf7 0%, #b8d4ed 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .9rem;
}
.cn-savings-card {
  position: absolute; bottom: -12px; left: -20px;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(17,28,39,.12); padding: 14px 20px; min-width: 155px;
}
.cn-savings-card .sc-label { font-size: 11px; color: var(--muted); font-weight: 400; }
.cn-savings-card .sc-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--fg); line-height: 1.1; }
.cn-savings-card .sc-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ─── FEATURES BAR ───────────────────────────────────────────── */
.cn-features-bar {
  background: var(--muted-bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.cn-features-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 48px); flex-wrap: wrap;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.cn-feat-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--fg); }
.cn-feat-item svg { color: var(--primary); flex-shrink: 0; }

/* ─── SECTION INTRO (centered) ───────────────────────────────── */
.cn-intro { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.cn-intro h2 { margin-bottom: 14px; }
.cn-intro .cn-lead { font-size: 1.05rem; }
.cn-intro-left { max-width: 640px; margin-bottom: 48px; }
.cn-intro-left h2 { margin-bottom: 14px; }

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.cn-problem-list { display: flex; flex-direction: column; gap: 24px; max-width: 640px; }
.cn-problem-item { display: flex; align-items: flex-start; gap: 16px; }
.cn-problem-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary-10); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px;
}
.cn-problem-text h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--fg); }
.cn-problem-text p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Problem image grid */
.cn-problem-images {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 48px;
}
.cn-problem-images img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 3/2; object-fit: cover;
}

/* ─── SYSTEMS CARDS (stacked) ────────────────────────────────── */
.cn-systems-stack { display: flex; flex-direction: column; gap: 24px; }
.cn-system-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--card-shadow); transition: box-shadow .2s ease;
}
.cn-system-card:hover { box-shadow: var(--card-shadow-h); }
.cn-system-card-img { margin-bottom: 24px; display: flex; justify-content: center; }
.cn-system-card-img img { height: 160px; width: auto; object-fit: contain; }
.cn-system-card-img .img-placeholder {
  height: 160px; width: 200px; background: var(--primary-10);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: .85rem;
}
.cn-system-card h3 { font-size: 1.2rem; font-weight: 700; font-family: var(--font-body); margin-bottom: 8px; color: var(--fg); }
.cn-system-card > p { font-size: .95rem; color: var(--muted); margin-bottom: 20px; }
.cn-system-learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 1rem; font-weight: 500; color: var(--fg); text-decoration: none;
  border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: 12px 20px; width: 100%; justify-content: center;
  transition: all .15s ease; background: var(--bg);
}
.cn-system-learn-more:hover { border-color: var(--primary); color: var(--primary) !important; }

/* ─── WHY CLEARNEST ──────────────────────────────────────────── */
.cn-why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.cn-why-item { display: flex; align-items: flex-start; gap: 16px; }
.cn-why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary-10); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px;
}
.cn-why-text h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--fg); }
.cn-why-text p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ─── GALLERY ────────────────────────────────────────────────── */
.cn-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 0;
}
.cn-gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.cn-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.cn-gallery-item.tall img { aspect-ratio: 2/3; }
.cn-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px; background: linear-gradient(0deg, rgba(17,28,39,.65) 0%, transparent 100%);
  color: #fff; font-size: 13px; font-weight: 500;
}
.cn-gallery-grid-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px;
}
.cn-gallery-grid-2col img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 4/3; object-fit: cover;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.cn-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.cn-review-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--card-shadow); display: flex; flex-direction: column; gap: 14px;
}
.cn-review-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; }
.cn-review-text { font-size: 14px; color: var(--muted); line-height: 1.65; font-style: italic; flex: 1; }
.cn-review-author strong { font-size: 14px; font-weight: 600; color: var(--fg); display: block; }
.cn-review-author span { font-size: 13px; color: var(--muted); }

/* ─── FINANCING CTA (bg photo + overlay) ─────────────────────── */
.cn-finance-cta {
  position: relative; overflow: hidden;
  padding: var(--section-py) 0; text-align: center; color: #fff;
}
.cn-finance-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1400&auto=format&fit=crop&q=70') center/cover no-repeat;
}
.cn-finance-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(17,28,39,.72);
}
.cn-finance-cta .cn-container { position: relative; z-index: 2; max-width: 680px; }
.cn-finance-cta h2 { color: #fff; margin-bottom: 14px; }
.cn-finance-cta p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1.05rem; }
.cn-finance-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cn-finance-disclaimer { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 16px; }

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.cn-contact-intro { max-width: 600px; margin: 0 auto 48px; text-align: center; }
.cn-contact-intro h2 { margin-bottom: 12px; }
.cn-contact-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--card-shadow); max-width: 720px; margin: 0 auto;
}
.cn-contact-card h3 {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--fg); margin-bottom: 6px;
}
.cn-contact-card .cn-sub { font-size: .9rem; color: var(--muted); margin-bottom: 28px; }
.cn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cn-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cn-form-group label { font-size: 13px; font-weight: 600; color: var(--fg); }
.cn-form-group input,
.cn-form-group select,
.cn-form-group textarea {
  padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-btn); font-family: var(--font-body);
  font-size: .95rem; color: var(--fg); background: var(--bg);
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.cn-form-group input::placeholder,
.cn-form-group select::placeholder { color: #9BAAB6; }
.cn-form-group input:focus,
.cn-form-group select:focus,
.cn-form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-20);
}
.cn-form-trust {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.cn-form-success {
  background: #d1fae5; border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: #065f46; font-size: .9rem; font-weight: 500;
  margin-bottom: 20px; display: none;
}
.cn-form-success.show { display: block; }

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.cn-page-hero {
  background: linear-gradient(135deg, hsl(205,65%,42%) 0%, hsl(190,55%,48%) 50%, hsl(160,38%,45%) 100%);
  padding: clamp(56px,8vw,96px) 0 clamp(48px,7vw,80px);
  text-align: center; color: #fff;
}
.cn-page-hero h1 { color: #fff; margin-bottom: 16px; }
.cn-page-hero p { color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.cn-mission-box { max-width: 720px; }
.cn-mission-box h2 { margin-bottom: 18px; }
.cn-mission-box p { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }
.cn-values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 40px;
}
.cn-value-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--card-shadow);
}
.cn-value-icon { font-size: 1.5rem; margin-bottom: 12px; }
.cn-value-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.cn-value-card p { font-size: 13px; }
.cn-steps { display: flex; flex-direction: column; gap: 32px; max-width: 580px; margin: 40px auto 0; }
.cn-step { display: flex; gap: 20px; align-items: flex-start; }
.cn-step-num {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.cn-step-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.cn-step-body p { font-size: 14px; }

/* ─── SYSTEMS PAGE ───────────────────────────────────────────── */
.cn-systems-page { display: flex; flex-direction: column; gap: 48px; }
.cn-system-full { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.cn-system-full-img img { width: 100%; border-radius: var(--radius-lg); }
.cn-system-full-img .img-ph {
  width: 100%; aspect-ratio: 1; background: var(--primary-10);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; color: var(--primary);
}
.cn-system-full-body h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cn-system-full-body > p { font-size: 1rem; margin-bottom: 24px; }
.cn-benefit-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.cn-benefit-item { display: flex; gap: 10px; font-size: 14px; color: var(--muted); }
.cn-benefit-item::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.cn-col-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.cn-col-head { font-size: 13px; font-weight: 700; color: var(--fg); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
hr.cn-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.cn-faq-list { max-width: 680px; margin: 40px auto 0; }
.cn-faq-item { border-bottom: 1px solid var(--border); }
.cn-faq-item summary {
  padding: 18px 0; cursor: pointer; font-weight: 600;
  font-size: .95rem; color: var(--fg); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); user-select: none;
}
.cn-faq-item summary::-webkit-details-marker { display: none; }
.cn-faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); font-weight: 300; }
.cn-faq-item[open] summary::after { content: '−'; }
.cn-faq-item .cn-faq-body { padding: 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── SERVICE AREAS ──────────────────────────────────────────── */
.cn-county-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.cn-county-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--card-shadow);
}
.cn-county-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.cn-county-card p { font-size: 14px; margin-bottom: 20px; }
.cn-cities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px; margin-top: 40px;
}
.cn-city-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.cn-city-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.cn-city-card p { font-size: 13px; margin-bottom: 12px; }

/* ─── FINANCING PAGE ─────────────────────────────────────────── */
.cn-financing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cn-financing-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.cn-fin-feature { display: flex; gap: 12px; align-items: flex-start; }
.cn-fin-check { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.cn-fin-text { font-size: 14px; font-weight: 500; color: var(--fg); }
.cn-pricing-box {
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; color: #fff;
}
.cn-pricing-box .pb-from { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.cn-pricing-box .pb-price {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
.cn-pricing-box .pb-note { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 28px; }

/* ─── CTA STRIP ──────────────────────────────────────────────── */
.cn-cta-strip {
  background: var(--section-grad); text-align: center;
  padding: var(--section-py) 0; border-top: 1px solid var(--border);
}
.cn-cta-strip h2 { margin-bottom: 12px; }
.cn-cta-strip p { margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.cn-footer { background: var(--footer-bg); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.cn-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.cn-footer-brand .fn-logo {
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; display: block;
}
.cn-footer-brand img { height: 32px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.cn-footer-brand p { font-size: 13px; max-width: 260px; line-height: 1.65; }
.cn-footer-brand a.fn-phone {
  display: block; color: rgba(255,255,255,.9) !important; font-size: 14px;
  font-weight: 600; margin-top: 16px;
}
.cn-footer-col h4 {
  font-size: 11px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.cn-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.cn-footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,.65) !important;
  transition: color .15s;
}
.cn-footer-col ul a:hover { color: #fff !important; }
.cn-footer-contact li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 10px; font-size: 14px; }
.cn-footer-contact li span:first-child { flex-shrink: 0; }
.cn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 12px;
}

/* ─── 404 ────────────────────────────────────────────────────── */
.cn-404 { text-align: center; padding: 120px 24px; }
.cn-404 .big { font-size: 6rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; font-family: var(--font-heading); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cn-nav, .cn-header-phone, .cn-header-cta-btn { display: none; }
  .cn-hamburger { display: block; }
  .cn-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cn-hero-inner { grid-template-columns: 1fr; }
  .cn-hero-img-wrap { order: -1; }
  .cn-savings-card { left: 10px; bottom: -10px; }
  .cn-problem-images { grid-template-columns: 1fr; }
  .cn-gallery-grid { grid-template-columns: 1fr 1fr; }
  .cn-system-full { grid-template-columns: 1fr; }
  .cn-financing-layout { grid-template-columns: 1fr; gap: 32px; }
  .cn-contact-layout { grid-template-columns: 1fr; }
  .cn-col-pair { grid-template-columns: 1fr; gap: 16px; }
  .cn-form-row { grid-template-columns: 1fr; }
  .cn-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cn-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .cn-hero-actions { flex-direction: column; }
  .cn-btn-lg { width: 100%; justify-content: center; text-align: center; }
  .cn-finance-cta-btns { flex-direction: column; align-items: center; }
  .cn-gallery-grid { grid-template-columns: 1fr; }
}
