/* =========================================================================
   SOL BY RZK — Landing page de cobertura
   Paleta:
     --color-green-900: verde escuro (texto Sol)
     --color-green-700, 500, 400: verdes do logo
     --color-lime: amarelo-esverdeado
     --color-yellow: amarelo
     --color-ink: preto suave
   ========================================================================= */

:root {
  --color-green-900: #0E3320;
  --color-green-700: #1A8217;
  --color-green-500: #3FAF2E;
  --color-green-400: #7DB91E;
  --color-lime: #C3D62E;
  --color-yellow: #F1D932;
  --color-ink: #1A1A1A;

  --color-bg: #F7F9F5;
  --color-bg-card: #FFFFFF;
  --color-border: #E3E8DE;
  --color-text: #1F2A22;
  --color-text-soft: #5A6A5E;
  --color-text-muted: #8A9A8E;

  --color-danger: #C73A2E;
  --color-warning: #E8A317;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(14, 51, 32, 0.06), 0 1px 2px rgba(14, 51, 32, 0.04);
  --shadow: 0 4px 14px rgba(14, 51, 32, 0.08), 0 2px 6px rgba(14, 51, 32, 0.04);
  --shadow-lg: 0 16px 48px rgba(14, 51, 32, 0.12), 0 6px 16px rgba(14, 51, 32, 0.06);

  --font-sans: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container-max: 1180px;
  --header-height: 72px;
}

/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

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

.hidden {
  display: none !important;
}

/* ---------- Logo (imagem PNG) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 60px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--color-green-700);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 130, 23, 0.25);
}

.btn-primary:hover {
  background: var(--color-green-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 130, 23, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: #fff;
  color: var(--color-green-900);
  border-color: var(--color-green-700);
}

.btn-secondary:hover {
  background: rgba(63, 175, 46, 0.07);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-soft);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--color-green-900);
  border-color: var(--color-green-700);
}

/* Spinner dentro do botão (loading do form) */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 90% 20%, rgba(241, 217, 50, 0.12), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(63, 175, 46, 0.10), transparent 55%),
    linear-gradient(180deg, #FBFCF8 0%, var(--color-bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 185, 30, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(63, 175, 46, 0.12);
  color: var(--color-green-700);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-green-900);
  letter-spacing: -1.5px;
  margin: 0 0 22px;
}

.text-accent {
  background: linear-gradient(90deg, var(--color-green-700), var(--color-green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--color-text-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 4px;
}

/* ---------- Coverage section ---------- */
.coverage-section {
  padding: 56px 0 80px;
}

.coverage-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-green-900);
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--color-text-soft);
  font-size: 1.02rem;
  margin: 0;
}

/* ---------- Wizard ---------- */
.wizard {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.wizard-progress {
  position: relative;
  height: 8px;
  background: var(--color-border);
  border-radius: 999px;
  margin-bottom: 32px;
  overflow: visible;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-green-500), var(--color-green-700));
  border-radius: 999px;
  transition: width 0.4s ease;
  box-shadow: 0 0 0 0 rgba(63, 175, 46, 0.4);
}

.wizard-progress-label {
  position: absolute;
  top: -28px;
  right: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-green-700);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.wizard-step {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.wizard-step.is-active {
  display: block;
}

.wizard-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-green-900);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.wizard-step-subtitle {
  color: var(--color-text-soft);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.wizard-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.wizard-nav .btn[disabled] {
  visibility: hidden;
}

.wizard-nav .btn-primary {
  margin-left: auto;
}

/* Selects, radios, checkboxes */
.req {
  color: var(--color-danger);
  font-weight: 700;
  margin-left: 2px;
}

.opt,
.hint-inline {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.82rem;
  margin-left: 4px;
}

.form-group select {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A8217' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--color-green-500);
  box-shadow: 0 0 0 3px rgba(63, 175, 46, 0.15);
}

.check-group,
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-size: 0.92rem;
  transition: all 0.15s;
  line-height: 1.3;
}

.check-item:hover,
.radio-item:hover {
  border-color: var(--color-green-400);
  background: rgba(63, 175, 46, 0.04);
}

.check-item input,
.radio-item input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-green-700);
  cursor: pointer;
}

.check-item:has(input:checked),
.radio-item:has(input:checked) {
  border-color: var(--color-green-700);
  background: rgba(63, 175, 46, 0.08);
}

/* Localização — tabs */
.location-mode {
  margin-top: 22px;
  border: 2px solid #c5c5c5;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 5px;
}

/* Form-groups dentro da location-mode (lat/lon) não têm borda própria —
 * o card já é o location-mode (especificidade maior pra sobrepor a regra do wizard) */
.wizard-step .location-mode .form-group,
.wizard-step .location-pane .form-group {
  border: none;
  padding: 0;
  background: transparent;
}

.location-mode-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}

.location-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  background: var(--color-bg);
  padding: 6px;
  border-radius: var(--radius);
}

.location-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--color-text-soft);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s;
}

.location-tab:hover {
  color: var(--color-green-900);
}

.location-tab.is-active {
  background: #fff;
  color: var(--color-green-900);
  box-shadow: 0 1px 3px rgba(14, 51, 32, 0.1);
}

.location-pane {
  display: none;
}

.location-pane.is-active {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.manual-coords-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* CTA card no final do wizard */
.cta-card {
  background: rgba(63, 175, 46, 0.07);
  border-left: 3px solid var(--color-green-500);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--color-text);
  margin-top: 18px;
  line-height: 1.5;
}

/* Result banner (após submit) */
.result-banner {
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid;
  animation: slideUp 0.3s ease-out;
}

.result-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.result-banner-content {
  flex: 1;
}

.result-banner-title {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.result-banner-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.result-banner.is-success {
  background: rgba(63, 175, 46, 0.07);
  border-color: rgba(63, 175, 46, 0.3);
  color: var(--color-green-900);
}

.result-banner.is-success .result-banner-icon {
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-700));
}

.result-banner.is-warning {
  background: rgba(232, 163, 23, 0.08);
  border-color: rgba(232, 163, 23, 0.35);
  color: #6B4800;
}

.result-banner.is-warning .result-banner-icon {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-warning));
}

/* Map wrapper */
.map-wrapper {
  margin-top: 8px;
}

/* Wizard desabilitado (após submit) */
.wizard.is-locked {
  opacity: 0.65;
  pointer-events: none;
  filter: saturate(0.7);
}

/* Form group genérico */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Form groups DENTRO do wizard ganham aparência de card */
.wizard-step .form-group {
  border: 2px solid #c5c5c5;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 5px;
}

/* Espaçamento entre perguntas consecutivas dentro do wizard */
.wizard-step .form-group+.form-group,
.wizard-step .form-group+.location-mode {
  margin-top: 22px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.2px;
}

.form-group input {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-green-500);
  box-shadow: 0 0 0 3px rgba(63, 175, 46, 0.15);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.form-hint.center {
  text-align: center;
}

.form-error {
  background: rgba(199, 58, 46, 0.08);
  border: 1px solid rgba(199, 58, 46, 0.25);
  color: var(--color-danger);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin: 8px 0;
}

/* Mapa */
#map {
  height: 60vh;
  min-height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

/* Status inline */
.status-message {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 22px;
  transition: all 0.2s;
}

.status-message.is-info {
  background: rgba(63, 175, 46, 0.06);
  border-color: rgba(63, 175, 46, 0.15);
  color: var(--color-green-700);
}

.status-message.is-success {
  background: rgba(63, 175, 46, 0.1);
  border-color: rgba(63, 175, 46, 0.25);
  color: var(--color-green-700);
}

.status-message.is-warning {
  background: rgba(232, 163, 23, 0.1);
  border-color: rgba(232, 163, 23, 0.3);
  color: var(--color-warning);
}

.status-message.is-error {
  background: rgba(199, 58, 46, 0.08);
  border-color: rgba(199, 58, 46, 0.25);
  color: var(--color-danger);
}

/* ---------- Loader overlay ---------- */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 51, 32, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
}

.loader-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-text {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 51, 32, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}

.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.25s ease-out;
}

.modal-wide {
  max-width: 520px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.modal-close:hover {
  background: var(--color-bg);
  color: var(--color-green-900);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
}

.modal-icon.success {
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-700));
  box-shadow: 0 6px 20px rgba(63, 175, 46, 0.35);
}

.modal-icon.warning {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-warning));
  box-shadow: 0 6px 20px rgba(241, 217, 50, 0.35);
}

.modal-title {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-green-900);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.modal-subtitle {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  margin: 0 0 22px;
  line-height: 1.55;
}

.modal-details {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-details .detail-item {
  min-width: 0;
}

.modal-details .detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.modal-details .detail-value {
  display: block;
  color: var(--color-text);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.modal-details .detail-full {
  grid-column: 1 / -1;
}

.modal-cta-text {
  background: rgba(63, 175, 46, 0.07);
  border-left: 3px solid var(--color-green-500);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Form do modal */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.lead-form .form-group {
  gap: 4px;
}

/* ---------- Página de obrigado ---------- */
.page-thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}

.thanks-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.thanks-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
}

.thanks-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-green-900);
  letter-spacing: -0.8px;
  margin: 0 0 16px;
}

.thanks-subtitle {
  color: var(--color-text-soft);
  font-size: 1.05rem;
  margin: 0 0 32px;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 32px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ---------- Popups Leaflet customizados ---------- */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--color-border);
}

.leaflet-popup-content {
  font-family: var(--font-sans);
  margin: 14px 16px !important;
  font-size: 0.88rem;
}

.area-popup-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-green-900);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-green-400);
}

.area-popup-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  font-size: 0.82rem;
}

.area-popup-label {
  color: var(--color-text-muted);
  font-weight: 600;
}

.area-popup-value {
  color: var(--color-text);
  overflow-wrap: anywhere;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsividade ---------- */
@media (max-width: 760px) {
  .header-inner {
    height: 64px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-img-footer {
    height: 48px;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero::before {
    width: 280px;
    height: 280px;
  }

  .coverage-section {
    padding: 36px 0 56px;
  }

  .wizard {
    padding: 22px 18px;
  }

  .wizard-step-title {
    font-size: 1.15rem;
  }

  .check-group,
  .radio-group {
    grid-template-columns: 1fr;
  }

  .location-tabs {
    grid-template-columns: 1fr;
  }

  .location-tab {
    padding: 12px;
  }

  .manual-coords-body {
    grid-template-columns: 1fr;
  }

  .wizard-nav {
    flex-direction: column-reverse;
  }

  .wizard-nav .btn {
    width: 100%;
  }

  .wizard-nav .btn-primary {
    margin-left: 0;
  }

  .wizard-nav .btn[disabled] {
    display: none;
    visibility: visible;
  }

  .result-banner {
    flex-direction: column;
    text-align: center;
  }

  #map {
    height: 50vh;
    min-height: 360px;
  }

  .modal {
    padding: 28px 22px 22px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-details {
    grid-template-columns: 1fr;
  }

  .thanks-card {
    padding: 40px 24px;
  }

  .thanks-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }
}