*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #2563EB; --blue-dark: #1D4ED8; --blue-light: #EFF6FF;
  --blue-mid: #DBEAFE; --blue-border: #BFDBFE; --dark: #0F2952;
  --text: #1E3A5F; --muted: #64748B; --light: #94A3B8;
  --border: #E2EAF4; --bg: #F5F9FF; --white: #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; -webkit-font-smoothing: antialiased; }

.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #0F2952 0%, #1a3a6e 50%, #2563EB 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px 80px; position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(96,165,250,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: #93C5FD;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif; font-size: clamp(28px,7vw,46px);
  font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 16px; max-width: 560px;
}
.hero h1 span { color: #93C5FD; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 400px; line-height: 1.6; }
.hero-cta {
  display: inline-block; background: #fff; color: var(--blue);
  padding: 16px 36px; border-radius: 14px; font-size: 16px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2); transition: transform 0.15s, box-shadow 0.15s; margin-bottom: 32px;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.trust-bar { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.6); }
.trust-bar span { white-space: nowrap; }

.quiz-section { padding: 60px 16px 80px; display: flex; flex-direction: column; align-items: center; }
.quiz-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.quiz-title { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; color: var(--dark); text-align: center; margin-bottom: 32px; }
.quiz-card {
  width: 100%; max-width: 460px; background: var(--white); border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 8px 40px rgba(37,99,235,0.12), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}

.progress-wrap { margin-bottom: 24px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--light); margin-bottom: 8px; }
.progress-meta strong { color: var(--blue); }
.progress-bar { height: 4px; background: var(--border); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), #60A5FA); border-radius: 99px; transition: width 0.4s cubic-bezier(.4,0,.2,1); }

.step { display: none; animation: fadeUp 0.25s ease; }
.step.active { display: block; }
@keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.step-emoji { font-size: 30px; margin-bottom: 10px; display: flex; justify-content: center; color: var(--blue); }
.step-emoji svg { width: 32px; height: 32px; stroke-width: 1.75; }
.choice-card .label { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.label svg, .trust-bar svg, .hero-badge svg { width: 18px; height: 18px; flex-shrink: 0; stroke-width: 2; }
.icon-chain { display: inline-flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.icon-chain .sep { color: var(--light); font-size: 13px; font-weight: 600; line-height: 1; }
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
.multi-card .icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.success-emoji { display: flex; justify-content: center; margin-bottom: 14px; color: var(--blue); }
.success-emoji svg { width: 56px; height: 56px; stroke-width: 1.5; }
.why-icon { display: flex; justify-content: center; margin-bottom: 10px; color: var(--blue); }
.why-icon svg { width: 28px; height: 28px; stroke-width: 1.75; }
.lift-toggle svg { width: 16px; height: 16px; stroke-width: 2; }
.btn-call svg, .footer-call svg { width: 18px; height: 18px; }
.step-q { font-family: 'DM Serif Display', serif; font-size: 21px; font-weight: 400; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }

.choice-list { display: flex; flex-direction: column; gap: 8px; }
.choice-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 12px; border: 2px solid var(--border);
  background: #FAFCFF; cursor: pointer; transition: all 0.15s; user-select: none;
}
.choice-card:hover { border-color: #93C5FD; background: var(--blue-light); }
.choice-card.selected { border-color: var(--blue); background: var(--blue-light); }
.choice-card .label { font-size: 15px; font-weight: 500; color: var(--text); transition: color 0.15s; }
.choice-card.selected .label { color: var(--blue-dark); }
.choice-card .sub { font-size: 11px; color: var(--light); transition: color 0.15s; }
.choice-card.selected .sub { color: #60A5FA; }
.choice-card .check {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; transition: all 0.15s; flex-shrink: 0;
}
.choice-card.selected .check { background: var(--blue); border-color: var(--blue); }
.choice-badge { font-size: 10px; font-weight: 700; color: var(--blue); background: var(--blue-mid); border-radius: 99px; padding: 2px 8px; margin-left: 8px; }

#s2e .choice-card { gap: 10px; }
#s2e .label-text {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.15s;
}
#s2e .choice-card.selected .label-text { color: var(--blue-dark); }
#s2e .label-icons {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  color: var(--blue);
}
#s2e .label-icons svg { width: 18px; height: 18px; stroke-width: 2; }
#s2e .label-icons .sep { color: var(--light); font-size: 13px; font-weight: 600; line-height: 1; }

.floor-section { margin-bottom: 20px; }
.floor-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); margin-bottom: 10px; }
.floor-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stepper { display: flex; align-items: center; background: var(--blue-light); border-radius: 10px; overflow: hidden; }
.stepper button { width: 36px; height: 36px; border: none; background: transparent; font-size: 20px; color: var(--blue); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.1s; }
.stepper button:hover { background: var(--blue-mid); }
.stepper .val { min-width: 36px; width: 36px; text-align: center; font-weight: 700; font-size: 16px; color: var(--dark); }
.floor-note { font-size: 12px; color: var(--muted); }

.city-pickers { display: flex; flex-direction: column; gap: 16px; margin-bottom: 12px; }
.city-picker { display: flex; flex-direction: column; gap: 8px; position: relative; }
.city-step-note { font-size: 12px; color: var(--muted); text-align: center; margin: -4px 0 14px; line-height: 1.5; }
.city-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); }
.city-input-wrap { position: relative; }
.city-input {
  width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text); background: #FAFCFF;
  outline: none; transition: border 0.15s; box-sizing: border-box;
}
.city-input:focus { border-color: var(--blue); background: var(--white); }
.city-suggestions {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 20;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15,41,82,0.12); max-height: 220px; overflow-y: auto;
}
.city-suggestion {
  display: block; width: 100%; text-align: left; padding: 11px 14px; border: none; background: none;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text); cursor: pointer;
}
.city-suggestion:hover { background: var(--blue-light); color: var(--blue-dark); }
.city-fallback { margin-top: 4px; }
.city-fallback-label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.city-fallback-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.city-alt-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border-radius: 10px;
  border: 1px solid var(--blue-border); background: var(--blue-light); color: var(--blue-dark);
  font-size: 12px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.city-alt-btn:hover { background: var(--blue-mid); }
.city-alt-btn:disabled { opacity: 0.6; cursor: default; }
.city-hint { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 14px; min-height: 20px; }
.city-select {
  width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text); background: #FAFCFF;
  outline: none; cursor: pointer; transition: border 0.15s; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.city-select:focus { border-color: var(--blue); background-color: var(--white); }
.date-fields { display: flex; flex-direction: column; gap: 12px; margin: 4px 0 12px; }
.date-field { display: flex; flex-direction: column; gap: 8px; }

.lift-toggle { margin-left: auto; padding: 7px 14px; border-radius: 9px; border: 2px solid var(--border); background: var(--white); font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.15s; font-family: 'DM Sans', sans-serif; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.lift-toggle.on { border-color: var(--blue); background: var(--blue-light); color: var(--blue-dark); }

.multi-list { display: flex; flex-direction: column; gap: 8px; }
.multi-card { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px; border: 2px solid var(--border); background: #FAFCFF; cursor: pointer; transition: all 0.15s; user-select: none; }
.multi-card:hover { border-color: #93C5FD; }
.multi-card.selected { border-color: var(--blue); background: var(--blue-light); }
.multi-card .icon { display: flex; align-items: center; justify-content: center; width: 24px; flex-shrink: 0; color: var(--blue); }
.multi-card .mlabel { flex: 1; font-size: 14px; font-weight: 500; color: var(--text); }
.multi-card.selected .mlabel { color: var(--blue-dark); }
.multi-card .mprice { font-size: 12px; color: var(--light); }
.multi-card.selected .mprice { color: #60A5FA; }
.multi-check { width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--border); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; flex-shrink: 0; transition: all 0.15s; }
.multi-card.selected .multi-check { background: var(--blue); border-color: var(--blue); }

.price-preview { background: linear-gradient(135deg, var(--blue-light), var(--blue-mid)); border: 1px solid var(--blue-border); border-radius: 16px; padding: 18px 20px; margin-bottom: 20px; }
.price-preview .plabel { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.price-preview .pvalue { font-family: 'DM Serif Display', serif; font-size: 34px; color: var(--dark); line-height: 1; }
.price-preview .psub { font-size: 11px; color: var(--muted); margin-top: 5px; }
.price-how-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
}
.price-how-link:hover { text-decoration: underline; }
.field-input { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 12px; font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text); background: #FAFCFF; outline: none; margin-bottom: 10px; transition: border 0.15s; -webkit-appearance: none; }
.field-input:focus { border-color: var(--blue); background: var(--white); }
.field-input.invalid { border-color: #EF4444; }
textarea.field-input { resize: none; }
.form-error { font-size: 12px; color: #EF4444; text-align: center; margin-bottom: 8px; min-height: 18px; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 12px; font-size: 12px; color: var(--muted); line-height: 1.45; cursor: pointer; }
.consent-row input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }
.consent-row a { color: var(--blue); text-decoration: underline; }
.consent-row a:hover { color: var(--blue-dark); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.btn-primary { width: 100%; padding: 15px 0; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; box-shadow: 0 4px 16px rgba(37,99,235,0.35); transition: all 0.15s; margin-top: 4px; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:disabled { background: #CBD5E1; box-shadow: none; cursor: not-allowed; transform: none; }
.btn-back { display: block; width: 100%; margin-top: 12px; background: none; border: none; color: var(--light); font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; text-align: center; padding: 4px; }
.btn-back:hover { color: var(--muted); }

.success-screen { text-align: center; padding: 20px 0; }
.success-title { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--dark); margin-bottom: 8px; }
.success-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; border-radius: 12px; background: #25D366; color: #fff; border: none; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; box-shadow: 0 4px 14px rgba(37,211,102,0.35); margin-bottom: 10px; text-decoration: none; transition: all 0.15s; }
.result-actions-lead { font-size: 14px; color: var(--muted); text-align: center; margin: 16px 0 14px; line-height: 1.45; }
.result-split-btn {
  position: relative; width: 100%; height: 56px; border-radius: 14px;
  overflow: hidden; margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.22);
}
.result-split-half {
  position: absolute; inset: 0; display: flex; align-items: center;
  text-decoration: none; color: #fff; font-size: 13px; font-weight: 700;
  font-family: 'DM Sans', sans-serif; z-index: 1;
  transition: clip-path 0.22s ease, filter 0.15s ease;
}
.result-split-half .result-split-inner {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.result-split-half svg, .result-split-half i { flex-shrink: 0; width: 18px; height: 18px; }
.result-split-wa {
  background: #25D366;
  clip-path: polygon(0 0, 57% 0, 51% 100%, 0 100%);
  justify-content: flex-start; padding-left: 14px;
}
.result-split-wa:hover {
  clip-path: polygon(0 0, 63% 0, 57% 100%, 0 100%);
  filter: brightness(1.05);
  z-index: 2;
}
.result-split-call {
  background: var(--blue);
  clip-path: polygon(53% 0, 100% 0, 100% 100%, 47% 100%);
  justify-content: flex-end; padding-right: 12px;
}
.result-split-call:hover {
  clip-path: polygon(47% 0, 100% 0, 100% 100%, 41% 100%);
  filter: brightness(1.08);
  z-index: 2;
}
@media (max-width: 360px) {
  .result-split-half { font-size: 12px; }
  .result-split-wa { padding-left: 10px; }
  .result-split-call { padding-right: 8px; }
}
.btn-call { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; border-radius: 12px; background: var(--white); color: var(--blue); border: 2px solid var(--blue-border); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all 0.15s; margin-bottom: 16px; }
.btn-call:disabled { opacity: 0.7; cursor: default; }
.reset-link { font-size: 12px; color: var(--light); cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; text-decoration: underline; }

.why-section { padding: 60px 16px 70px; display: flex; flex-direction: column; align-items: center; background: var(--white); }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--dark); text-align: center; margin-bottom: 36px; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; width: 100%; max-width: 460px; }
@media(max-width:380px){ .cards-grid{ grid-template-columns:1fr; } }
.why-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 20px 14px; text-align: center; }
.why-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }

footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 40px 24px; text-align: center; }
.footer-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: #fff; margin-bottom: 6px; }
.footer-sub { font-size: 13px; margin-bottom: 24px; }
.footer-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; }
.footer-call { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); color: #fff; padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); }
.footer-callback { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.15s; }
.footer-callback:hover { background: var(--blue-dark); }
.footer-contact { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); color: #fff; padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: background 0.15s; }
.footer-contact:hover { background: rgba(255,255,255,0.15); }
.footer-info-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin-bottom: 16px; font-size: 13px; }
.footer-info-nav a { color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 500; }
.footer-info-nav a:hover { color: #fff; text-decoration: underline; }
.footer-info-nav a[aria-current="page"] { color: #fff; font-weight: 600; }
.footer-legal-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin-bottom: 14px; font-size: 12px; }
.footer-legal-nav a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-legal-nav a:hover { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-legal-nav a[aria-current="page"] { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

.exit-popup { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.exit-popup.open { display: flex; }
.exit-popup-backdrop { position: absolute; inset: 0; background: rgba(15,41,82,0.55); backdrop-filter: blur(4px); }
.exit-popup-card { position: relative; width: 100%; max-width: 380px; background: var(--white); border-radius: 20px; padding: 28px 24px 24px; text-align: center; box-shadow: 0 24px 48px rgba(15,41,82,0.2); animation: fadeUp 0.25s ease; }
.exit-popup-close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border: none; background: var(--bg); border-radius: 8px; font-size: 22px; line-height: 1; color: var(--muted); cursor: pointer; }
.exit-popup-close:hover { background: var(--blue-light); color: var(--blue); }
.exit-popup-icon { display: flex; justify-content: center; margin-bottom: 12px; color: var(--blue); }
.exit-popup-icon svg { width: 40px; height: 40px; }
.exit-popup-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--dark); margin-bottom: 8px; }
.exit-popup-text { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.exit-popup-card .btn-wa { margin-bottom: 10px; }
.exit-popup-callback { margin-bottom: 10px; }
.exit-popup-contact { display: inline-block; font-size: 13px; color: var(--blue); text-decoration: none; margin-bottom: 8px; }
.exit-popup-contact:hover { text-decoration: underline; }
.exit-popup-dismiss { background: none; border: none; font-size: 13px; color: var(--light); cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: underline; padding: 8px; }
.exit-popup-dismiss:hover { color: var(--muted); }

.callback-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.callback-modal.open { display: flex; }
.callback-modal-backdrop { position: absolute; inset: 0; background: rgba(15,41,82,0.55); backdrop-filter: blur(4px); }
.callback-modal-card { position: relative; width: 100%; max-width: 400px; background: var(--white); border-radius: 20px; padding: 28px 24px 24px; box-shadow: 0 24px 48px rgba(15,41,82,0.2); animation: fadeUp 0.25s ease; }
.callback-modal-close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border: none; background: var(--bg); border-radius: 8px; font-size: 22px; line-height: 1; color: var(--muted); cursor: pointer; }
.callback-modal-close:hover { background: var(--blue-light); color: var(--blue); }
.callback-modal-icon { display: flex; justify-content: center; margin-bottom: 12px; color: var(--blue); }
.callback-modal-icon svg { width: 40px; height: 40px; }
.callback-modal-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--dark); margin-bottom: 8px; text-align: center; }
.callback-modal-text { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; text-align: center; }
.callback-success { text-align: center; padding: 12px 0; }

.map-picker-modal { position: fixed; inset: 0; z-index: 10001; display: none; align-items: center; justify-content: center; padding: 16px; }
.map-picker-modal.open { display: flex; }
.map-picker-backdrop { position: absolute; inset: 0; background: rgba(15,41,82,0.55); backdrop-filter: blur(4px); }
.map-picker-card { position: relative; width: 100%; max-width: 520px; background: var(--white); border-radius: 20px; padding: 22px 20px 20px; box-shadow: 0 24px 48px rgba(15,41,82,0.2); }
.map-picker-close { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border: none; background: var(--bg); border-radius: 8px; font-size: 22px; color: var(--muted); cursor: pointer; }
.map-picker-title { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 6px; }
.map-picker-text { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.map-picker-container { height: 280px; border-radius: 12px; overflow: hidden; margin-bottom: 14px; border: 1px solid var(--border); }
