/* ============================================
   SparkClean Pros — styles.css
   Service-V3: The Independent Contractor
   ============================================ */

/* --- Custom Properties --- */
:root {
  --blue-600: #3B82F6;
  --blue-500: #60A5FA;
  --blue-400: #93C5FD;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 20px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 40px rgba(59,130,246,.12);
  --shadow-xl: 0 20px 60px rgba(59,130,246,.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Rubik', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--off-white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gray-900); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font-body); border: none; outline: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Navbar --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(248,250,252,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(226,232,240,.5); transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; }
.logo-icon { color: var(--blue-600); font-size: 1.4rem; }
.logo-accent { color: var(--blue-600); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-700); transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--blue-600); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue-600); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--blue-600) !important; color: var(--white) !important; padding: 8px 20px; border-radius: 50px; }
.nav-cta:hover { background: var(--blue-500) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--gray-900); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; border-radius: 50px; cursor: pointer; transition: var(--transition); font-size: .9rem; padding: 10px 24px; }
.btn-primary { background: var(--blue-600); color: var(--white); box-shadow: 0 4px 14px rgba(59,130,246,.35); }
.btn-primary:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,.4); }
.btn-outline { border: 2px solid var(--blue-600); color: var(--blue-600); background: transparent; }
.btn-outline:hover { background: var(--blue-600); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-card { background: var(--blue-50); color: var(--blue-600); font-size: .85rem; padding: 8px 20px; }
.btn-card:hover { background: var(--blue-600); color: var(--white); }

/* --- Section Shared --- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-tag { display: inline-block; background: var(--blue-50); color: var(--blue-600); font-weight: 600; font-size: .8rem; padding: 6px 16px; border-radius: 50px; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.section-header p { color: var(--gray-500); font-size: clamp(.95rem, 2vw, 1.05rem); }

/* --- Hero --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; background: linear-gradient(135deg, var(--off-white) 0%, var(--blue-50) 50%, var(--white) 100%); overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: .12; }
.shape-1 { width: 500px; height: 500px; background: var(--blue-500); top: -10%; right: -8%; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; background: var(--blue-400); bottom: 5%; left: -5%; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 180px; height: 180px; background: var(--blue-600); top: 40%; left: 30%; animation: float 12s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-content { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(59,130,246,.1); color: var(--blue-600); padding: 8px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; margin-bottom: 1.25rem; }
.text-gradient { background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--gray-500); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; color: var(--gray-700); background: var(--white); padding: 8px 16px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.badge-icon { font-size: 1.1rem; }
.hero-visual { display: flex; justify-content: center; }
.hero-card { background: rgba(255,255,255,.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-xl); max-width: 360px; width: 100%; }
.hero-card-header { display: flex; align-items: center; gap: 8px; color: var(--green-500); font-weight: 600; font-size: .9rem; margin-bottom: 1.5rem; }
.pulse-dot { width: 10px; height: 10px; background: var(--green-500); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); } 50% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } }
.hero-card-stat { text-align: center; margin-bottom: 1rem; }
.stat-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--blue-600); }
.stat-plus { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--blue-500); }
.stat-label { display: block; color: var(--gray-500); font-size: .9rem; }
.hero-card-rating { text-align: center; margin-bottom: 1.25rem; }
.stars { color: #FBBF24; font-size: 1.3rem; letter-spacing: 2px; }
.rating-text { display: block; color: var(--gray-500); font-size: .8rem; margin-top: 4px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tag { background: var(--blue-50); color: var(--blue-600); font-size: .75rem; font-weight: 500; padding: 4px 12px; border-radius: 50px; }
.hero-scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); text-align: center; color: var(--gray-500); font-size: .8rem; animation: bobble 2s ease-in-out infinite; }
.scroll-arrow { font-size: 1.2rem; margin-top: 4px; }
@keyframes bobble { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* --- Services --- */
.services { padding: 5rem 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); cursor: default; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card p { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.25rem; line-height: 1.6; }
.card-price { margin-bottom: 1.25rem; }
.price-amount { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--blue-600); }
.price-unit { color: var(--gray-500); font-size: .85rem; margin-left: 4px; }

/* --- How It Works --- */
.how-it-works { padding: 5rem 0; background: linear-gradient(180deg, var(--blue-50) 0%, var(--off-white) 100%); }
.steps-wrapper { position: relative; max-width: 900px; margin: 0 auto; }
.steps-line { display: none; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.step-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-md); position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background: var(--blue-600); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: .9rem; box-shadow: 0 4px 12px rgba(59,130,246,.3); }
.step-icon { font-size: 2.2rem; margin: .75rem 0; }
.step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; }

/* --- Reviews --- */
.reviews { padding: 5rem 0; background: var(--white); }
.carousel-wrapper { overflow: hidden; position: relative; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-card { min-width: 100%; padding: 2rem; background: var(--off-white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); margin: 0 .5rem; flex-shrink: 0; }
.review-stars { color: #FBBF24; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: .75rem; }
.review-text { font-size: 1rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 1.25rem; font-style: italic; }
.reviewer { display: flex; flex-direction: column; }
.reviewer strong { color: var(--gray-900); font-size: .95rem; }
.reviewer span { color: var(--gray-500); font-size: .8rem; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 1.5rem; }
.carousel-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); border: 1px solid var(--blue-100); }
.carousel-btn:hover { background: var(--blue-600); color: var(--white); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: var(--transition); border: none; }
.carousel-dot.active { background: var(--blue-600); width: 28px; border-radius: 10px; }

/* --- Service Area --- */
.service-area { padding: 5rem 0; background: linear-gradient(180deg, var(--off-white) 0%, var(--blue-50) 100%); }
.area-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.area-info .section-tag { margin-bottom: 1rem; }
.area-info h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.area-info > p { color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.7; }
.area-list { margin-bottom: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.area-list li { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--gray-700); }
.area-dot { width: 8px; height: 8px; background: var(--blue-600); border-radius: 50%; flex-shrink: 0; }
.map-display { position: relative; width: 100%; aspect-ratio: 1; max-width: 420px; margin: 0 auto; background: linear-gradient(135deg, var(--blue-50), var(--white)); border-radius: 50%; border: 2px solid var(--blue-100); overflow: hidden; }
.map-grid { position: absolute; inset: 0; }
.map-pin { position: absolute; width: 14px; height: 14px; background: var(--blue-600); border-radius: 50%; border: 2px solid var(--white); z-index: 3; cursor: pointer; transition: var(--transition); }
.map-pin:hover { transform: scale(1.5); background: var(--blue-500); }
.map-pin::after { content: attr(data-area); position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%); background: var(--gray-900); color: var(--white); font-size: .7rem; padding: 3px 8px; border-radius: 4px; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.map-pin:hover::after { opacity: 1; }
.pin-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--blue-500); animation: pulse 2s infinite; }
.map-radius { position: absolute; inset: 15%; border: 2px dashed var(--blue-300); border-radius: 50%; opacity: .4; }
.map-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 3; }
.center-icon { font-size: 1.8rem; color: var(--blue-600); }
.center-label { display: block; font-size: .7rem; font-weight: 700; color: var(--blue-600); margin-top: 2px; }

/* --- Quote Form --- */
.quote-section { padding: 5rem 0; background: var(--white); }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; }
.quote-info .section-tag { margin-bottom: 1rem; }
.quote-info h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.quote-info > p { color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.7; }
.quote-perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; }
.perk span { color: var(--green-500); font-weight: 700; font-size: 1.1rem; }
.quote-form-wrap { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select { padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); background: var(--white); font-size: .95rem; transition: var(--transition); color: var(--gray-900); }
.form-group input:focus, .form-group select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.form-group input.error, .form-group select.error { border-color: #EF4444; }
.form-error { color: #EF4444; font-size: .75rem; margin-top: 4px; display: none; }
.form-group input.error ~ .form-error,
.form-group select.error ~ .form-error { display: block; }

/* --- ADS Pricing --- */
.ads-pricing { padding: 5rem 0; background: linear-gradient(180deg, var(--off-white) 0%, var(--blue-50) 100%); }
.pricing-tiers { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.tier-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); position: relative; }
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-featured { border-color: var(--blue-500); box-shadow: var(--shadow-lg); }
.tier-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue-600); color: var(--white); font-size: .75rem; font-weight: 700; padding: 4px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: .06em; }
.tier-label { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--gray-500); margin-bottom: .5rem; }
.tier-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--gray-900); margin-bottom: .75rem; }
.currency { font-size: 1.5rem; vertical-align: super; color: var(--blue-600); }
.tier-plus { font-size: 1.5rem; color: var(--blue-600); }
.tier-desc { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.5rem; line-height: 1.5; }
.tier-features { text-align: left; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.tier-features li { font-size: .9rem; color: var(--gray-700); padding-left: 24px; position: relative; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-600); font-weight: 700; }
.addons-grid { text-align: center; }
.addons-title { font-size: 1.15rem; margin-bottom: 1rem; color: var(--gray-700); }
.addons-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: .5rem; }
.addon-chip { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; padding: 10px 20px; transition: var(--transition); }
.addon-chip:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.addon-name { font-size: .85rem; color: var(--gray-700); }
.addon-price { font-weight: 700; color: var(--blue-600); font-size: .85rem; }
.hosting-options { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 700px; margin: 0 auto; }
.hosting-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; transition: var(--transition); }
.hosting-card:hover { box-shadow: var(--shadow-md); }
.hosting-managed { border-color: var(--blue-400); background: var(--blue-50); }
.hosting-price { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--blue-600); margin-bottom: .25rem; }
.hosting-price span { font-size: .9rem; font-weight: 400; color: var(--gray-500); }
.hosting-card h4 { font-size: .95rem; margin-bottom: .5rem; }
.hosting-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

/* --- Footer --- */
.footer { background: var(--gray-900); color: var(--gray-300); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--gray-500); font-size: .9rem; margin-top: .75rem; line-height: 1.6; }
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 { color: var(--white); font-size: .95rem; margin-bottom: .75rem; }
.footer-links a { display: block; color: var(--gray-500); font-size: .85rem; margin-bottom: .5rem; transition: var(--transition); }
.footer-links a:hover { color: var(--blue-400); }
.footer-hours { color: var(--gray-500); font-size: .85rem; margin-top: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.footer-bottom p { font-size: .8rem; color: var(--gray-500); }
.ads-badge { display: inline-block; background: rgba(59,130,246,.1); color: var(--blue-400); font-size: .8rem; padding: 8px 20px; border-radius: 50px; transition: var(--transition); border: 1px solid rgba(59,130,246,.2); }
.ads-badge:hover { background: rgba(59,130,246,.2); border-color: rgba(59,130,246,.4); }
.ads-badge strong { color: var(--blue-400); }

/* --- Toast --- */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--white); border: 1px solid var(--green-100); border-left: 4px solid var(--green-500); border-radius: var(--radius-sm); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); transform: translateX(120%); transition: transform .4s cubic-bezier(.4,0,.2,1); z-index: 9999; max-width: 380px; }
.toast.show { transform: translateX(0); }
.toast-icon { width: 32px; height: 32px; background: var(--green-100); color: var(--green-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.toast-title { font-size: .9rem; color: var(--gray-900); }
.toast-message { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }
.toast-close { background: none; color: var(--gray-500); font-size: 1.3rem; cursor: pointer; padding: 4px; align-self: flex-start; }
.toast-close:hover { color: var(--gray-900); }

/* --- Animations --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE BREAKPOINTS === */

/* 480px+ */
@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .hosting-options { grid-template-columns: 1fr 1fr; }
}

/* 768px+ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .hero-content { grid-template-columns: 1.1fr .9fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .steps-line { display: block; position: absolute; top: 50px; left: 16%; right: 16%; height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); border-radius: 2px; z-index: 0; }
  .step-card { position: relative; z-index: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .review-card { min-width: 50%; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr 1.2fr; }
  .pricing-tiers { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .quote-form-wrap { padding: 2.5rem; }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .nav-links { display: flex !important; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { min-width: 33.333%; }
  .hero h1 { font-size: 3.25rem; }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .container { padding: 0 40px; }
}

/* Mobile Nav */
@media (max-width: 1023px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(248,250,252,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 1.5rem 20px 2rem; gap: 16px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
}
