/* styles.css — Shared stylesheet for Ibuyanyhouseasis */
/* Update this file once, changes apply to every page */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #212E78;
  --navy-light: #2d3a8e;
  --navy-dark: #1a2460;
  --gold: #E8A33D;
  --gold-light: #f0b858;
  --gold-dark: #c8862e;
  --white: #ffffff;
  --off-white: #f7f7f9;
  --light-gray: #e8e8ec;
  --mid-gray: #999;
  --dark-gray: #333;
  --text: #2a2a2a;
  --green: #2e7d32;
  --red: #c62828;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-gold { background: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,163,61,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33,46,120,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-large { padding: 20px 48px; font-size: 1.2rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.5rem; font-weight: 800;
}

.logo-text { font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-text span { display: block; font-size: 0.7rem; font-weight: 500; color: var(--mid-gray); letter-spacing: 0.5px; }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  color: var(--text); font-weight: 500; font-size: 0.95rem; position: relative;
}

.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--navy); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}

.menu-toggle span {
  width: 26px; height: 3px; background: var(--navy);
  border-radius: 2px; transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }

.nav-dropdown-content {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 200px;
  box-shadow: var(--shadow-lg); border-radius: 8px; padding: 8px 0; z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content { display: block; }

.nav-dropdown-content a { display: block; padding: 10px 20px; font-size: 0.9rem; color: var(--text); }
.nav-dropdown-content a:hover { background: var(--off-white); color: var(--navy); }

/* ===== HERO (Homepage) ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); padding: 100px 0 80px; text-align: center;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,163,61,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 20px; line-height: 1.15; }
.hero h1 .highlight { color: var(--gold); }

.hero-subtitle {
  font-size: 1.25rem; color: rgba(255,255,255,0.85); margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-trust { margin-top: 40px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }

.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
}

.hero-trust-item svg { width: 20px; height: 20px; fill: var(--gold); }

/* ===== HERO (City Pages) ===== */
.city-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); padding: 80px 0 60px; text-align: center;
  position: relative; overflow: hidden;
}

.city-hero::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,163,61,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.city-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.city-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 16px; }
.city-hero h1 .highlight { color: var(--gold); }

.city-hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.city-hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--off-white); padding: 28px 0; border-bottom: 1px solid var(--light-gray); }

.trust-bar-inner {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 24px;
}

.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.trust-item svg { width: 22px; height: 22px; fill: var(--gold); }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }

.step {
  text-align: center; padding: 32px 24px; border-radius: var(--radius);
  background: var(--off-white); transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.step-number {
  width: 56px; height: 56px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px;
}

.step h3 { margin-bottom: 12px; font-size: 1.3rem; }
.step p { color: var(--dark-gray); font-size: 0.95rem; margin-bottom: 0; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--dark-gray); margin-bottom: 0; }

.section-tag {
  display: inline-block; background: rgba(232,163,61,0.12);
  color: var(--gold-dark); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}

/* ===== CALCULATOR CTA (Homepage) ===== */
.calc-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}

.calc-cta::before {
  content: ''; position: absolute; bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,163,61,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.calc-cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.calc-cta h2 { color: var(--white); margin-bottom: 16px; }
.calc-cta p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; }

.calc-cta-features { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }

.calc-cta-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
}

.calc-cta-feature svg { width: 18px; height: 18px; fill: var(--gold); }

/* ===== CITY CARDS ===== */
.city-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

.city-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; display: block;
}

.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.city-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.city-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,163,61,0.15) 0%, transparent 50%);
}

.city-card-image span { color: var(--white); font-size: 1.4rem; font-weight: 700; z-index: 1; }

.city-card-body { padding: 24px; }
.city-card-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.city-card-body p { color: var(--dark-gray); font-size: 0.9rem; margin-bottom: 16px; }

.city-card-link { color: var(--gold); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.city-card:hover .city-card-link { color: var(--gold-dark); }

/* ===== SITUATIONS GRID ===== */
.situations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.situation-card {
  background: var(--white); border: 2px solid var(--light-gray);
  border-radius: var(--radius); padding: 28px; transition: all var(--transition);
}

.situation-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }

.situation-icon {
  width: 48px; height: 48px; background: rgba(33,46,120,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}

.situation-icon svg { width: 26px; height: 26px; fill: var(--navy); }

.situation-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.situation-card p { font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 20px; height: 20px; fill: var(--gold); }

.testimonial-text {
  font-size: 1rem; color: var(--text); margin-bottom: 24px;
  flex-grow: 1; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 48px; height: 48px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}

.testimonial-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial-location { font-size: 0.85rem; color: var(--mid-gray); }

/* ===== FAQ ACCORDION ===== */
.faq-section { background: var(--white); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--light-gray); border-radius: var(--radius);
  margin-bottom: 16px; overflow: hidden; transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  background: var(--off-white); border: none;
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: background var(--transition);
}

.faq-question:hover { background: var(--light-gray); }

.faq-question .faq-icon {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--transition);
}

.faq-item.open .faq-question .faq-icon { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner { padding: 20px 24px; color: var(--dark-gray); font-size: 0.95rem; line-height: 1.7; }

/* ===== CITY PAGE CONTENT ===== */
.city-about { background: var(--white); }

.city-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.city-about-text h2 { margin-bottom: 20px; }
.city-about-text p { color: var(--dark-gray); margin-bottom: 16px; }
.city-about-text ul { margin: 20px 0; }

.city-about-text li {
  padding: 6px 0 6px 28px; position: relative; color: var(--dark-gray);
}

.city-about-text li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}

.city-about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius); height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.city-about-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,163,61,0.15) 0%, transparent 50%);
}

.city-about-visual .city-icon { font-size: 5rem; z-index: 1; }

.city-benefits { background: var(--off-white); }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }

.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); display: flex; gap: 16px;
}

.benefit-card-icon {
  width: 44px; height: 44px; background: rgba(232,163,61,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.benefit-card-icon svg { width: 24px; height: 24px; fill: var(--gold); }

.benefit-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.benefit-card p { font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 0; }

/* ===== CALCULATOR PAGE ===== */
.calc-page { background: var(--off-white); min-height: 70vh; }

.calculator-wrapper {
  max-width: 640px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 48px;
}

.calculator-wrapper h1 { text-align: center; margin-bottom: 8px; }

.calculator-subtitle { text-align: center; color: var(--dark-gray); margin-bottom: 32px; font-size: 1.05rem; }

.calc-field { margin-bottom: 24px; }

.calc-field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }

.calc-field input, .calc-field select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--light-gray);
  border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color var(--transition);
}

.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--gold); }
.calc-field .hint { font-size: 0.85rem; color: var(--mid-gray); margin-top: 4px; }

.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.calc-divider { height: 1px; background: var(--light-gray); margin: 32px 0; }

.calc-results { display: none; background: var(--off-white); border-radius: var(--radius); padding: 32px; margin-top: 24px; }
.calc-results.visible { display: block; }

.calc-result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--light-gray);
}

.calc-result-row:last-of-type { border-bottom: none; }

.calc-result-label { font-size: 0.95rem; color: var(--dark-gray); }
.calc-result-value { font-weight: 700; color: var(--navy); font-size: 1.05rem; }

.calc-result-total {
  background: var(--navy); color: var(--white); border-radius: 8px; padding: 16px 20px;
  margin-top: 16px; display: flex; justify-content: space-between; align-items: center;
}

.calc-result-total .calc-result-label { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.calc-result-total .calc-result-value { color: var(--gold); font-size: 1.6rem; }

.calc-lead-capture { display: none; margin-top: 32px; padding-top: 32px; border-top: 2px solid var(--light-gray); }
.calc-lead-capture.visible { display: block; }

.calc-lead-capture h3 { text-align: center; margin-bottom: 8px; }
.calc-lead-capture p { text-align: center; color: var(--dark-gray); margin-bottom: 24px; font-size: 0.95rem; }

.calc-success {
  display: none; text-align: center; padding: 24px;
  background: rgba(46,125,50,0.08); border-radius: var(--radius);
  color: var(--green); font-weight: 600;
}

.calc-success.visible { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,163,61,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; }

.cta-phone { display: inline-block; margin-top: 16px; font-size: 1.5rem; font-weight: 700; color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }

.footer-about { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}

.footer-social a:hover { background: var(--gold); }
.footer-social a svg { width: 20px; height: 20px; fill: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .city-about-grid { grid-template-columns: 1fr; }
  .city-about-visual { height: 240px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }
  .section { padding: 56px 0; }
  .menu-toggle { display: flex; }

  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px 24px 24px;
    gap: 0; box-shadow: var(--shadow-lg);
  }

  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--light-gray); width: 100%; }
  .nav-cta { margin-top: 12px; text-align: center; border-bottom: none; }

  .nav-dropdown-content { position: static; display: none; box-shadow: none; padding-left: 16px; }
  .nav-dropdown.open .nav-dropdown-content { display: block; }

  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.05rem; }

  .city-hero { padding: 56px 0 40px; }
  .city-hero h1 { font-size: 1.9rem; }

  .steps, .city-cards, .situations, .testimonial-grid { grid-template-columns: 1fr; }

  .hero-trust { flex-direction: column; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .calculator-wrapper { padding: 28px 20px; }
  .calc-row { grid-template-columns: 1fr; }
  .calc-cta-features { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .city-hero h1 { font-size: 1.6rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .city-hero-cta { flex-direction: column; }
  .city-hero-cta .btn { width: 100%; }
  .container { padding: 0 16px; }
  .calculator-wrapper { padding: 24px 16px; }
}
