*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a7f4b;
  --green-dark: #145f38;
  --green-light: #e8f5ee;
  --yellow: #f5a623;
  --yellow-dark: #d48b0f;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ─── TOP BAR ─── */
.topbar { background: var(--gray-900); color: var(--white); text-align: center; padding: 10px 16px; font-size: 14px; font-weight: 500; }
.topbar a { color: var(--yellow); text-decoration: none; }

/* ─── HEADER ─── */
header { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.logo { font-size: 20px; font-weight: 900; color: var(--green); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--yellow); }
nav { display: flex; gap: 24px; align-items: center; }
nav a { text-decoration: none; color: var(--gray-700); font-weight: 600; font-size: 14px; transition: color 0.2s; }
nav a:hover { color: var(--green); }
.header-phone { display: flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 16px; text-decoration: none; transition: background 0.2s; }
.header-phone:hover { background: var(--green-dark); }
.header-phone svg { width: 18px; height: 18px; }

/* ─── HERO ─── */
.hero { background: linear-gradient(135deg, #0f2a1e 0%, #1a4a30 50%, #0d3321 100%); color: var(--white); padding: 60px 24px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,127,75,0.3) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); color: var(--yellow); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: var(--yellow); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.9); }
.hero-bullets li::before { content: ''; width: 22px; height: 22px; border-radius: 50%; background: var(--green); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }

/* ─── FORM CARD ─── */
.form-card { background: var(--white); border-radius: 20px; padding: 36px 32px; box-shadow: var(--shadow-lg); position: relative; }
.form-card-header { text-align: center; margin-bottom: 24px; }
.form-card-header h2 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.form-card-header p { font-size: 14px; color: var(--gray-600); }

.step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-200); color: var(--gray-400); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; transition: all 0.3s; position: relative; z-index: 1; }
.step-dot.active { background: var(--green); color: var(--white); }
.step-dot.done { background: var(--green); color: var(--white); }
.step-line { flex: 1; height: 2px; background: var(--gray-200); max-width: 48px; transition: background 0.3s; }
.step-line.done { background: var(--green); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 16px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-group input, .form-group select { width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: 15px; font-family: inherit; color: var(--gray-900); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,127,75,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-next, .btn-submit { width: 100%; padding: 16px; border-radius: var(--radius); font-size: 17px; font-weight: 800; cursor: pointer; border: none; transition: all 0.2s; letter-spacing: 0.2px; }
.btn-next { background: var(--green); color: var(--white); }
.btn-next:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-submit { background: var(--yellow); color: var(--gray-900); }
.btn-submit:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-back { background: none; border: none; color: var(--gray-400); font-size: 13px; cursor: pointer; font-family: inherit; margin-top: 10px; display: block; width: 100%; text-align: center; padding: 6px; }
.btn-back:hover { color: var(--gray-600); }
.form-privacy { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 12px; line-height: 1.5; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.success-icon { width: 72px; height: 72px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 36px; height: 36px; color: var(--green); }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.form-success p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }
.form-success .call-cta { margin-top: 24px; padding: 14px 24px; background: var(--green); color: var(--white); border-radius: var(--radius); font-weight: 700; font-size: 16px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.form-success .call-cta:hover { background: var(--green-dark); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.06); padding: 24px; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.75); }
.trust-item svg { color: var(--yellow); width: 22px; height: 22px; }

/* ─── SECTIONS ─── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); margin-bottom: 12px; }
.section-title { text-align: center; font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.2; }
.section-sub { text-align: center; font-size: 17px; color: var(--gray-600); max-width: 560px; margin: 0 auto 56px; line-height: 1.7; }

/* ─── HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: calc(33.33% - 8px); width: calc(33.33%); height: 2px; background: var(--green-light); }
.step-card { background: var(--white); border: 2px solid var(--gray-100); border-radius: 16px; padding: 36px 28px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s; }
.step-card:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(26,127,75,0.1); }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ─── BENEFITS ─── */
.benefits-section { background: var(--gray-900); color: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; display: flex; gap: 18px; align-items: flex-start; transition: background 0.2s; }
.benefit-card:hover { background: rgba(255,255,255,0.08); }
.benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--white); }
.benefit-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.benefit-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ─── COMPARISON TABLE ─── */
.compare-section { background: var(--gray-50); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table th { padding: 20px 24px; text-align: left; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: var(--gray-50); color: var(--gray-600); border-bottom: 2px solid var(--gray-200); }
.compare-table th:nth-child(2) { background: var(--green); color: var(--white); text-align: center; }
.compare-table td { padding: 18px 24px; font-size: 15px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.compare-table td:nth-child(2) { text-align: center; font-weight: 700; color: var(--green); background: var(--green-light); }
.compare-table td:nth-child(3), .compare-table td:nth-child(4) { text-align: center; color: var(--gray-400); }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--green); font-size: 18px; }
.cross { color: #ef4444; font-size: 18px; }

/* ─── MARKETS ─── */
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market-card { background: var(--white); border: 2px solid var(--gray-100); border-radius: 16px; padding: 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.market-card:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(26,127,75,0.1); }
.market-flag { font-size: 28px; margin-bottom: 12px; }
.market-card h3 { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.market-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--gray-900); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; transition: background 0.2s; }
.testimonial-card:hover { background: rgba(255,255,255,0.08); }
.stars { color: var(--yellow); font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; color: var(--white); }
.author-info span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ─── FAQ ─── */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 700; color: var(--gray-900); text-align: left; transition: background 0.2s; }
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── BOTTOM CTA ─── */
.bottom-cta { background: linear-gradient(135deg, #0f2a1e 0%, #1a4a30 100%); color: var(--white); text-align: center; padding: 80px 24px; }
.bottom-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 16px; }
.bottom-cta p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--yellow); color: var(--gray-900); padding: 18px 36px; border-radius: var(--radius); font-weight: 800; font-size: 17px; text-decoration: none; transition: all 0.2s; }
.btn-cta-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-cta-secondary { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 18px 36px; border-radius: var(--radius); font-weight: 700; font-size: 17px; text-decoration: none; transition: all 0.2s; }
.btn-cta-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── FOOTER ─── */
footer { background: var(--gray-900); color: rgba(255,255,255,0.5); padding: 40px 24px; text-align: center; }
.footer-logo { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--yellow); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
footer p { font-size: 13px; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ─── STICKY MOBILE BAR ─── */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--green); z-index: 200; }
.sticky-mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; color: var(--white); text-decoration: none; font-weight: 800; font-size: 16px; }

/* ─── INNER PAGE HERO ─── */
.page-hero { background: linear-gradient(135deg, #0f2a1e 0%, #1a4a30 50%, #0d3321 100%); color: var(--white); padding: 60px 24px; }
.page-hero-inner { max-width: 860px; margin: 0 auto; }
.page-hero .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); color: var(--yellow); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 640px; line-height: 1.7; margin-bottom: 28px; }

/* ─── CONTENT SECTIONS ─── */
.content-section { padding: 64px 24px; }
.content-inner { max-width: 860px; margin: 0 auto; }
.content-inner h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--gray-900); margin-bottom: 20px; }
.content-inner h3 { font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 10px; margin-top: 32px; }
.content-inner p { font-size: 16px; color: var(--gray-700); line-height: 1.8; margin-bottom: 16px; }
.content-inner ul { list-style: none; padding: 0; margin-bottom: 16px; }
.content-inner ul li { display: flex; gap: 10px; font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 10px; }
.content-inner ul li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.info-card { background: var(--white); border: 2px solid var(--gray-100); border-radius: 16px; padding: 24px; }
.info-card h3 { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; margin-top: 0; }
.info-card p { font-size: 14px; color: var(--gray-600); margin: 0; }

.alert-box { background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; padding: 20px 24px; margin: 28px 0; }
.alert-box strong { display: block; color: #991b1b; margin-bottom: 6px; }
.alert-box p { color: #7f1d1d; font-size: 14px; margin: 0; }

.highlight-box { background: var(--green-light); border: 1px solid rgba(26,127,75,0.2); border-radius: 12px; padding: 20px 24px; margin: 28px 0; }
.highlight-box h3 { color: var(--green-dark); font-size: 15px; font-weight: 800; margin-bottom: 8px; margin-top: 0; }
.highlight-box p { color: #1a4a2e; font-size: 14px; margin: 0; }

.honest-note { display: flex; align-items: flex-start; gap: 14px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; padding: 18px 22px; margin-top: 24px; }
.honest-note-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.honest-note p { font-size: 14px; color: #78350f; margin: 0; line-height: 1.6; }
.honest-note strong { color: #92400e; }

.steps-list { list-style: none; padding: 0; counter-reset: steps; }
.steps-list li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.steps-list li:last-child { border-bottom: none; }
.step-badge { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-badge + div h3 { margin-top: 0; color: var(--gray-900); }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; max-width: 960px; margin: 0 auto; }
.contact-form-wrap h2 { font-size: 26px; font-weight: 900; color: var(--gray-900); margin-bottom: 24px; }
.contact-sidebar h2 { font-size: 22px; font-weight: 900; color: var(--gray-900); margin-bottom: 16px; }
.phone-cta { display: block; background: var(--green); color: var(--white); text-align: center; font-size: 24px; font-weight: 900; padding: 20px; border-radius: 14px; text-decoration: none; transition: background 0.2s; margin-bottom: 8px; }
.phone-cta:hover { background: var(--green-dark); }
.sidebar-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px; margin-top: 20px; }
.sidebar-card h3 { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.sidebar-card ol { padding-left: 20px; }
.sidebar-card ol li, .sidebar-card ul li { font-size: 14px; color: var(--gray-700); margin-bottom: 8px; line-height: 1.5; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; margin-right: 8px; }

/* ─── CITY PAGE ─── */
.market-snapshot { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 28px 24px; }
.snapshot-inner { max-width: 1100px; margin: 0 auto; }
.snapshot-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 16px; }
.snapshot-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { }
.stat-num { font-size: 32px; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }
.stat-note { font-size: 11px; color: var(--gray-400); margin-top: 16px; }

.neighborhoods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.neighborhood-tag { background: var(--white); border: 1px solid var(--gray-200); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gray-700); }

.situations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.situation-link { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; text-decoration: none; font-size: 14px; font-weight: 600; color: var(--gray-700); transition: all 0.2s; }
.situation-link:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-card { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 14px 16px; }
  .sticky-mobile-bar { display: block; }
  body { padding-bottom: 64px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  nav { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 40px 20px 60px; }
  .section { padding: 60px 20px; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  header { padding: 14px 16px; }
  .header-phone { font-size: 14px; padding: 9px 16px; }
  .snapshot-stats { gap: 24px; }
  .situations-grid { grid-template-columns: 1fr; }
}
