/* ============================================================
   FreshSpace Cleaning Co. — Main Stylesheet
   Design System: Teal/Emerald primary, Amber accent
   ============================================================ */

:root {
  --primary: #0D9488;
  --primary-dark: #0F766E;
  --primary-light: #99F6E4;
  --primary-bg: #F0FDFA;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --dark: #134E4A;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --nav-h: 72px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.hidden { display: none !important; }
.mt-16 { margin-top: 16px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: white; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,.35); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-bg); }
.btn-ghost { background: rgba(255,255,255,.15); color: white; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary-bg); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,.25); }
.btn-ghost-white { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 6px; }
.btn-full { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--primary-bg); color: var(--primary);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--text); }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== NAV ===== */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-header.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; }
.logo-text { font-size: 18px; font-weight: 800; color: var(--dark); }
.logo-sub { font-weight: 400; color: var(--text-muted); font-size: 15px; }
.logo-text-white .logo-sub { color: rgba(255,255,255,.7); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color .15s; }
.nav-links a:hover { color: var(--primary); }
.nav-ctas { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }
.nav-phone:hover { color: var(--primary); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F766E 0%, #134E4A 40%, #1E293B 100%);
  padding-top: var(--nav-h); overflow: hidden; position: relative;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 20%; background: rgba(94,234,212,.08); }
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding-top: 64px; padding-bottom: 80px; position: relative; z-index: 1;
}
.hero-text { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); padding: 8px 18px; border-radius: 24px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hero-title { font-size: clamp(40px, 5vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }
.trust-icon { color: var(--primary-light); font-weight: 700; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg);
  color: white; padding: 28px;
}
.hero-card-main { max-width: 340px; width: 100%; }
.card-header-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.card-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.card-name { font-weight: 600; font-size: 15px; }
.card-status { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }
.hero-stars { color: var(--accent); font-size: 20px; margin-bottom: 12px; }
.hero-review { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.85); margin-bottom: 12px; }
.hero-reviewer { font-size: 12px; color: rgba(255,255,255,.6); }
.hero-card-float {
  position: absolute; background: white; color: var(--text);
  padding: 12px 18px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; min-width: 180px;
  border: none; backdrop-filter: none;
}
.hero-card-float-1 { top: 10%; right: -20px; animation: float 3s ease-in-out infinite; }
.hero-card-float-2 { bottom: 10%; left: -20px; animation: float 3s ease-in-out infinite 1.5s; }
.float-icon { font-size: 24px; }
.float-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.float-value { font-size: 14px; font-weight: 700; color: var(--text); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== TRUST BAR ===== */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-inner { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-pill {
  background: var(--primary-bg); color: var(--primary-dark);
  padding: 8px 18px; border-radius: 24px; font-size: 13px; font-weight: 600;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all .25s ease; position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(13,148,136,.12); transform: translateY(-4px); }
.service-card-featured { border-color: var(--primary); background: linear-gradient(145deg, #F0FDFA, white); }
.service-badge-top {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: white; padding: 4px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-includes { list-style: none; margin-bottom: 24px; }
.service-includes li { font-size: 13px; color: var(--text-muted); padding: 4px 0; }
.service-includes li::before { content: ''; }
.service-price { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.service-price strong { font-size: 24px; font-weight: 800; color: var(--primary); }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step-card { flex: 1; text-align: center; padding: 40px 32px; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.step-arrow { font-size: 28px; color: var(--primary); padding: 40px 16px; flex-shrink: 0; align-self: center; }
.step-number { font-size: 48px; font-weight: 900; color: var(--primary-bg); line-height: 1; margin-bottom: 16px; }
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== QUOTE CALCULATOR ===== */
.quote-section { background: linear-gradient(180deg, #F0FDFA 0%, white 100%); }
.quote-wrapper { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.quote-calculator {
  background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 40px; border: 1px solid var(--border);
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 0; }
.option-card { cursor: pointer; }
.option-card input[type="radio"] { display: none; }
.option-content {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 12px; border: 2px solid var(--border); border-radius: var(--radius);
  text-align: center; transition: all .18s; cursor: pointer;
}
.option-card input:checked + .option-content {
  border-color: var(--primary); background: var(--primary-bg);
  box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.option-content:hover { border-color: var(--primary); }
.opt-icon { font-size: 24px; }
.opt-label { font-size: 13px; font-weight: 600; }
.opt-desc { font-size: 11px; color: var(--text-muted); }
.quote-step { margin-bottom: 32px; }
.quote-step:last-child { margin-bottom: 0; }
.property-selectors { display: flex; gap: 32px; }
.selector-group { flex: 1; }
.selector-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.selector-hint { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.counter-row { display: flex; align-items: center; gap: 16px; }
.counter-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border);
  background: white; font-size: 18px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
  color: var(--text);
}
.counter-btn:hover { border-color: var(--primary); color: var(--primary); }
.counter-value { font-size: 22px; font-weight: 700; min-width: 32px; text-align: center; }
.frequency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.freq-option { cursor: pointer; }
.freq-option input { display: none; }
.freq-content {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  transition: all .18s; cursor: pointer;
}
.freq-option input:checked + .freq-content { border-color: var(--primary); background: var(--primary-bg); }
.freq-label { font-size: 14px; font-weight: 600; }
.freq-price { font-size: 12px; color: var(--text-muted); }
.freq-discount { font-size: 12px; color: var(--primary); font-weight: 600; }
.optional-tag { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.addon-card { cursor: pointer; }
.addon-card input { display: none; }
.addon-content {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 10px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  text-align: center; transition: all .18s; cursor: pointer;
}
.addon-card input:checked + .addon-content { border-color: var(--accent); background: var(--accent-light); }
.addon-icon { font-size: 22px; }
.addon-name { font-size: 12px; font-weight: 600; }
.addon-price { font-size: 13px; color: var(--primary); font-weight: 700; }
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.field-full { grid-column: 1 / -1; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.field-group input, .field-group textarea, .field-group select {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text); transition: border-color .15s;
  background: white;
}
.field-group input:focus, .field-group textarea:focus, .field-group select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-disclaimer { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* Quote Summary */
.quote-summary {
  background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 28px; border: 1.5px solid var(--border); position: sticky; top: 90px;
}
.summary-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.summary-header h3 { font-size: 18px; font-weight: 700; }
.summary-badge {
  background: var(--primary-bg); color: var(--primary); padding: 4px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { opacity: 1; } 50% { opacity: .6; } }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-line span:first-child { color: var(--text-muted); }
.summary-line span:last-child { font-weight: 500; }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.summary-discount { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.discount-green { color: #16A34A; font-weight: 700; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; font-size: 16px; font-weight: 700;
  border-top: 2px solid var(--border); margin-top: 4px;
}
.total-price { font-size: 32px; font-weight: 900; color: var(--primary); }
.summary-rate { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.summary-note {
  background: var(--accent-light); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 12px; color: #92400E; margin-bottom: 0;
}
.summary-cta-sub { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.summary-cta-sub a { color: var(--primary); font-weight: 600; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-item { text-align: center; padding: 32px 24px; }
.why-icon { font-size: 44px; margin-bottom: 16px; }
.why-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== PRICING TABLE ===== */
.pricing-tabs { display: flex; gap: 8px; margin-bottom: 32px; justify-content: center; }
.tab-btn {
  padding: 10px 24px; border-radius: 8px; border: 2px solid var(--border);
  background: white; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .15s; color: var(--text-muted);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.pricing-table-wrapper { overflow-x: auto; margin-bottom: 40px; }
.pricing-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pricing-table thead { background: var(--primary); color: white; }
.pricing-table th { padding: 16px 24px; text-align: left; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.pricing-table td { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 15px; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--bg-alt); }
.pricing-table strong { color: var(--primary); font-size: 18px; }
.table-note td { font-size: 13px; color: var(--text-muted); background: var(--bg-alt); }
.addons-pricing { margin-bottom: 40px; }
.addons-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; text-align: center; }
.addons-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon-price-item {
  display: flex; justify-content: space-between; align-items: center;
  background: white; padding: 16px 20px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 14px;
}
.addon-price-item strong { color: var(--primary); font-size: 16px; }
.recurring-discount-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white; border-radius: var(--radius-lg); padding: 36px 40px; text-align: center;
}
.recurring-discount-box h4 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.discount-list { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.disc-item { text-align: center; }
.disc-freq { display: block; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.disc-pct { font-size: 14px; color: var(--primary-light); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.avg-rating { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 12px; }
.stars-big { font-size: 24px; color: var(--accent); }
.rating-num { font-size: 24px; font-weight: 800; }
.rating-count { font-size: 15px; color: var(--text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: all .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.testimonial-featured { border-color: var(--primary); background: var(--primary-bg); }
.test-stars { color: var(--accent); font-size: 16px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 14px; }
.test-service { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 16px; font-weight: 600; cursor: pointer;
  background: none; border: none; text-align: left; color: var(--text); gap: 12px;
  transition: color .15s;
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-arrow { font-size: 18px; transition: transform .25s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1E293B 100%);
  padding: 96px 0;
}
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta-content h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-badge-stack { display: flex; flex-direction: column; gap: 12px; }
.cta-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 500; white-space: nowrap;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-tag { margin-bottom: 16px; display: inline-block; }
.contact-info h2 { font-size: 32px; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.c-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.c-value { font-size: 16px; font-weight: 500; color: var(--text); }
.c-value a { color: var(--primary); }
.contact-form {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
}

/* ===== FOOTER ===== */
.footer { background: #0F172A; color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 56px; }
.footer-brand { }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-social a:hover { color: white; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: white; margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9999;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 48px 40px;
  text-align: center; max-width: 420px; width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: modal-in .3s ease;
}
@keyframes modal-in { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-icon { font-size: 56px; margin-bottom: 16px; }
.modal h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.modal p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-wrapper { grid-template-columns: 1fr; }
  .quote-summary { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-list { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-badge-stack { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; background: white;
    padding: 24px; gap: 20px; box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { font-size: 16px; padding: 8px 0; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-fields { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .addons-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-badge { font-size: 13px; }
  .frequency-grid { grid-template-columns: repeat(2, 1fr); }
  .discount-list { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .property-selectors { flex-direction: column; }
  .trust-bar-inner { gap: 8px; }
  .trust-pill { font-size: 12px; padding: 6px 12px; }
  .footer-links { grid-template-columns: 1fr; }
}
