/* ========================================
   Rock Water Ponds — Design System
   Brand: #0f1129 (midnight navy) + #ff721a (orange)
   Vibe: premium-luxury
   Font: Inter (400, 500, 600, 700, 800)
   Ref: porsche.com + gardenstatekoi.com
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: var(--fs-base); line-height: 1.7; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Custom Properties --- */
:root {
  --primary: #0f1129;
  --primary-light: #1a1d3d;
  --primary-mid: #252952;
  --secondary: #ff721a;
  --secondary-light: #ff8c42;
  --secondary-dark: #e5620e;
  --accent: #ff721a;
  --accent-light: #ff9a56;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F9;
  --bg-warm: #FFF8F3;
  --bg-dark: #0f1129;
  --bg-dark-alt: #161938;
  --text: #1A1A1A;
  --text-light: #4B5563;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --white: #FFFFFF;
  --error: #DC2626;
  --success: #16A34A;
  --bronze: #CD7F32;
  --gold: #D4A843;
  --platinum: #8FA4B5;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.5rem;
  --radius: 2px;
  --radius-sm: 2px;
  --radius-lg: 4px;
  --shadow: none;
  --shadow-md: 0 2px 8px rgba(15,17,41,0.08);
  --shadow-lg: 0 4px 16px rgba(15,17,41,0.1);
  --max-width: 1200px;
  --section-pad: 6rem;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--primary); }
h1 { font-size: var(--fs-4xl); margin-bottom: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-3xl); margin-bottom: 0.75rem; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-2xl); margin-bottom: 0.5rem; font-weight: 700; }
h4 { font-size: var(--fs-xl); margin-bottom: 0.5rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-light); }
strong { font-weight: 600; color: var(--text); }
.section-title { font-size: var(--fs-3xl); text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: var(--fs-md); max-width: 640px; margin: 0 auto 3.5rem; }
.section-label { display: inline-block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--secondary); margin-bottom: 0.75rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark .section-label { color: var(--secondary-light); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* --- Skip Link --- */
.skip-link { position: absolute; top: -100%; left: 1rem; padding: 0.75rem 1.5rem; background: var(--secondary); color: var(--white); border-radius: var(--radius-sm); z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* --- Header --- */
.header { position: sticky; top: 0; z-index: 1000; background: var(--primary); transition: box-shadow var(--transition); }
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.header-brand { display: flex; align-items: center; gap: 1rem; }
.logo { height: 70px; width: auto; }
.nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 0.15rem; align-items: center; }
.nav-link { padding: 0.5rem 0.75rem; font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,0.8); border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: 0.25rem; padding: 0.5rem 0.75rem; font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,0.8); transition: color var(--transition); }
.nav-dropdown-btn:hover { color: var(--white); }
.nav-dropdown-btn svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 0.5rem 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 100; }
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 0.6rem 1.25rem; font-size: var(--fs-sm); color: var(--text); font-weight: 500; transition: background var(--transition), color var(--transition); }
.nav-dropdown-menu a:hover { background: var(--bg-alt); color: var(--secondary); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-weight: 600; color: rgba(255,255,255,0.9); font-size: var(--fs-sm); white-space: nowrap; }
.header-phone:hover { color: var(--secondary); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); position: relative; transition: var(--transition); }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; width: 22px; height: 2px; background: var(--white); transition: var(--transition); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 2rem; font-size: var(--fs-sm); font-weight: 700; border-radius: var(--radius); transition: all var(--transition); min-height: 48px; text-decoration: none; cursor: pointer; letter-spacing: 0.02em; text-transform: uppercase; }
.btn-primary { background: var(--secondary); color: var(--white); border: 2px solid var(--secondary); }
.btn-primary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--fs-xs); min-height: 40px; }
.btn-lg { padding: 1.1rem 2.75rem; font-size: var(--fs-base); }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Hero (Homepage) --- */
.hero { position: relative; overflow: hidden; padding: 8rem 0 7rem; background: var(--bg-dark); min-height: 600px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,17,41,0.72) 0%, rgba(15,17,41,0.45) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero h1 { color: var(--white); font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
.hero h1 span { color: var(--secondary); }
.hero p { color: rgba(255,255,255,0.85); font-size: var(--fs-lg); margin-bottom: 2.5rem; max-width: 560px; line-height: 1.8; }
.hero .btn-group { margin-bottom: 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.15rem; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-size: var(--fs-sm); font-weight: 500; }
.hero-badge svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--secondary); }

/* --- Hero (Inner Pages) --- */
.hero--inner { padding: 4rem 0 3.5rem; min-height: auto; }
.hero--inner h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
.hero--inner p { font-size: var(--fs-md); max-width: 600px; margin-bottom: 2rem; }

/* --- Breadcrumbs --- */
.breadcrumbs { padding: 0 0 1rem; font-size: var(--fs-sm); }
.hero .breadcrumbs { padding: 0 0 1.5rem; }
.hero .breadcrumbs a { color: rgba(255,255,255,0.5); }
.hero .breadcrumbs a:hover { color: var(--secondary); }
.hero .breadcrumbs .current { color: rgba(255,255,255,0.7); }
.hero .breadcrumbs span { color: rgba(255,255,255,0.3); margin: 0 0.4rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--secondary); }
.breadcrumbs .current { color: var(--text-light); }
.breadcrumbs span { margin: 0 0.4rem; color: var(--border); }

/* --- Trust Bar --- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; padding: 1.35rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: var(--fs-sm); color: var(--text-muted); white-space: nowrap; }
.trust-item strong { color: var(--primary); font-size: var(--fs-lg); font-weight: 700; }
.trust-item svg { width: 22px; height: 22px; color: var(--secondary); flex-shrink: 0; }

/* --- Cards --- */
.card { background: var(--white); overflow: hidden; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card-body { padding: 1.75rem; }
.card-body h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.card-body p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1rem; }
.card-link { font-size: var(--fs-sm); font-weight: 700; color: var(--secondary); display: inline-flex; align-items: center; gap: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.card-link:hover { gap: 0.5rem; color: var(--secondary-dark); }
.card-link::after { content: '\2192'; transition: all var(--transition); }

/* --- Split Sections --- */
.split-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }

/* --- Image System --- */
.card-img, .img-wrap, .split-img { position: relative; overflow: hidden; }
.card-img { aspect-ratio: 16/9; }
.img-real { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img .img-real { position: absolute; top: 0; left: 0; }
.split-img .img-real { position: absolute; top: 0; left: 0; }
.img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); color: var(--text-muted); font-size: var(--fs-sm); text-align: center; padding: 1rem; }

/* --- Stats Section --- */
.stats-bar { padding: 4rem 0; background: var(--bg-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-value { display: block; font-size: var(--fs-5xl); font-weight: 800; color: var(--secondary); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.5rem; }
.stat-label { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* --- Membership Tiers --- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tier-card { background: var(--white); border: 2px solid var(--border); padding: 2.5rem 2rem; position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card--bronze { border-top: 4px solid var(--bronze); }
.tier-card--gold { border-top: 4px solid var(--gold); }
.tier-card--platinum { border-top: 4px solid var(--platinum); }
.tier-card--featured { border: 2px solid var(--secondary); }
.tier-card--featured::after { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: var(--white); font-size: var(--fs-xs); font-weight: 700; padding: 0.3rem 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.tier-name { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.tier-name--bronze { color: var(--bronze); }
.tier-name--gold { color: var(--gold); }
.tier-name--platinum { color: var(--platinum); }
.tier-price { font-size: var(--fs-4xl); font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; line-height: 1; }
.tier-price span { font-size: var(--fs-sm); font-weight: 500; color: var(--text-muted); }
.tier-frequency { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.tier-features { list-style: none; margin-bottom: 2rem; }
.tier-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.5rem 0; font-size: var(--fs-sm); color: var(--text-light); }
.tier-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.tier-features li svg.check { color: var(--success); }
.tier-features li svg.dash { color: var(--border); }
.tier-features li.disabled { color: var(--text-muted); opacity: 0.5; }

/* --- ClearWater Guarantee --- */
.cw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 3rem 0; }
.cw-step { text-align: center; position: relative; }
.cw-step::after { content: ''; position: absolute; top: 24px; right: -1rem; width: calc(100% - 48px); height: 2px; background: var(--border); z-index: 0; }
.cw-step:last-child::after { display: none; }
.cw-step-num { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 2px solid var(--secondary); color: var(--secondary); font-weight: 700; font-size: var(--fs-lg); margin: 0 auto 1rem; position: relative; z-index: 1; background: var(--white); }
.cw-step h4 { font-size: var(--fs-base); margin-bottom: 0.5rem; }
.cw-step p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 0; }
.section-dark .cw-step-num { background: var(--bg-dark); border-color: var(--secondary); color: var(--secondary); }
.section-dark .cw-step::after { background: rgba(255,255,255,0.15); }

/* --- Process Steps --- */
.process-steps { counter-reset: step; }
.process-step { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.process-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; min-width: 48px; background: var(--primary); color: var(--white); font-weight: 700; font-size: var(--fs-lg); }
.process-step-content h3 { font-size: var(--fs-lg); margin-bottom: 0.25rem; }
.process-step-content p { font-size: var(--fs-sm); margin-bottom: 0; }

/* --- CTA Section --- */
.cta-section { background: var(--secondary); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: var(--fs-md); max-width: 600px; margin: 0 auto 2rem; }
.cta-section .btn-white { text-transform: uppercase; }
.cta-dark { background: var(--bg-dark); }
.cta-dark h2 { color: var(--white); }
.cta-dark p { color: rgba(255,255,255,0.8); }

/* --- FAQ Accordion --- */
.faq-item { border: 1px solid var(--border); margin-bottom: 0.5rem; overflow: hidden; background: var(--white); }
.faq-item__question { width: 100%; padding: 1.25rem 1.5rem; text-align: left; font-size: var(--fs-base); font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; align-items: center; min-height: 48px; background: var(--white); transition: background var(--transition); }
.faq-item__question:hover { background: var(--bg-alt); }
.faq-item__icon { font-size: 1.25rem; font-weight: 400; color: var(--secondary); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { padding: 0 1.5rem 1.25rem; color: var(--text-light); line-height: 1.7; display: none; }
.faq-item__answer.active { display: block; }

/* --- Testimonials --- */
.testimonial-card { background: var(--white); padding: 2.25rem; border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 0.5rem; left: 1.5rem; font-size: 4rem; color: var(--secondary); opacity: 0.15; font-family: Georgia, serif; line-height: 1; }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { width: 18px; height: 18px; color: var(--secondary); }
.testimonial-text { font-size: var(--fs-base); line-height: 1.7; color: var(--text-light); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--primary); font-size: var(--fs-sm); }
.testimonial-service { color: var(--text-muted); font-size: var(--fs-xs); }

/* --- Feature List --- */
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-light); }
.feature-list li svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

/* --- Service Intro --- */
.service-intro { font-size: var(--fs-lg); color: var(--text); line-height: 1.8; max-width: 800px; }

/* --- Area Page --- */
.area-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.area-stat { text-align: center; padding: 1.75rem; background: var(--bg-alt); }
.area-stat strong { display: block; font-size: var(--fs-2xl); color: var(--primary); font-weight: 800; }
.area-stat span { font-size: var(--fs-sm); color: var(--text-muted); }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item:hover .img-real { transform: scale(1.05); }
.gallery-item .img-real { position: absolute; top: 0; left: 0; transition: transform .4s ease; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.gallery-filter button { padding: 0.5rem 1.25rem; font-size: var(--fs-sm); font-weight: 600; color: var(--text-muted); border: 1px solid var(--border); background: var(--white); transition: all var(--transition); cursor: pointer; }
.gallery-filter button:hover, .gallery-filter button.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* --- Lightbox --- */
.lightbox { position: fixed; inset: 0; background: rgba(15,17,41,0.95); z-index: 10000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; cursor: pointer; background: rgba(255,255,255,0.1); transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; cursor: pointer; background: rgba(255,255,255,0.1); transition: background var(--transition); }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* --- Comparison Table --- */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.comparison-table th, .comparison-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); font-size: var(--fs-sm); }
.comparison-table th { background: var(--primary); color: var(--white); font-weight: 600; }
.comparison-table tr:nth-child(even) { background: var(--bg-alt); }
.comparison-table .check-cell { text-align: center; }

/* --- Blog --- */
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.blog-tag { background: rgba(255,114,26,0.1); color: var(--secondary-dark); padding: 0.2rem 0.75rem; font-size: var(--fs-xs); font-weight: 600; }
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { margin-top: 2.5rem; font-size: var(--fs-2xl); }
.blog-content h3 { margin-top: 2rem; font-size: var(--fs-xl); }
.blog-content ul, .blog-content ol { margin: 1rem 0 1rem 1.5rem; color: var(--text-light); }
.blog-content li { margin-bottom: 0.5rem; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.blog-content th, .blog-content td { padding: 0.75rem 1rem; text-align: left; border: 1px solid var(--border); font-size: var(--fs-sm); }
.blog-content th { background: var(--bg-alt); font-weight: 700; color: var(--primary); }
.blog-content blockquote { border-left: 4px solid var(--secondary); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--bg-alt); }

/* --- Forms --- */
.form-container { background: var(--white); padding: 2.5rem; border: 1px solid var(--border); }
.form-container h3 { margin-bottom: 0.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 0; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--primary); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); font-family: var(--font-body); font-size: var(--fs-base); color: var(--text); background: var(--white); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.thanks-msg { text-align: center; padding: 3rem 1rem; }
.thanks-msg h2 { color: var(--success); margin-bottom: 1rem; }

/* --- Footer --- */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer h4 { color: var(--white); font-size: var(--fs-base); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.footer__brand { max-width: 300px; }
.footer__brand .logo { height: 60px; margin-bottom: 1rem; }
.footer__brand p { font-size: var(--fs-sm); line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); transition: color var(--transition); }
.footer ul a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: var(--fs-sm); }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--secondary); }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--secondary); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer__social a:hover { border-color: var(--secondary); color: var(--secondary); }
.footer__social a svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--secondary); }
.footer__legal { display: flex; gap: 1.5rem; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.muted { color: var(--text-muted); font-size: var(--fs-sm); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* --- Print Styles --- */
@page { margin: 0; }
@media print {
  body { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .header, .footer, .nav-toggle, .mobile-cta { display: none; }
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cw-steps { grid-template-columns: repeat(2, 1fr); }
  .cw-step::after { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  :root { --section-pad: 4rem; --header-height: 64px; }
  .logo { height: 52px; }
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .area-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-value { font-size: var(--fs-3xl); }
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; padding: 1rem; }
  .hero { padding: 5rem 0 4rem; min-height: 450px; }
  .hero--inner { padding: 3rem 0 2.5rem; }
  .cw-steps { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  /* Mobile Nav */
  .nav { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--primary); z-index: 999; transform: translateX(100%); transition: transform var(--transition); padding: 2rem 1.5rem; overflow-y: auto; }
  .nav.active { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { display: block; padding: 1rem 0; font-size: var(--fs-lg); border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; min-height: 48px; color: rgba(255,255,255,0.85); }
  .nav-dropdown-btn { display: block; padding: 1rem 0; font-size: var(--fs-lg); border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; padding: 0 0 0 1rem; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { color: rgba(255,255,255,0.65); padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--secondary); }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .header-cta-desktop { display: none; }

  /* Mobile CTA bar */
  .mobile-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--primary); border-top: 1px solid rgba(255,255,255,0.1); }
  .mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; font-weight: 700; font-size: var(--fs-sm); min-height: 56px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.03em; }
  .mobile-cta .mobile-call { background: var(--primary); color: var(--white); }
  .mobile-cta .mobile-quote { background: var(--secondary); color: var(--white); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-direction: column; gap: 0.5rem; align-items: center; }
  body { padding-bottom: 56px; }
}

@media (min-width: 769px) {
  .mobile-cta { display: none; }
}
