@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════════════════════
   CheckMyWater.ca — Glossy Glass Theme
   Drop-in replacement for css/style.css
   All class names match the original HTML — no HTML changes needed.
   ══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-glow: rgba(37, 99, 235, 0.18);
  --secondary: #10B981;
  --secondary-glow: rgba(16, 185, 129, 0.25);
  --warning: #F0C040;
  --danger: #EF4444;
  --text-primary: #0D1117;
  --text-secondary: #475569;
  --text-muted: #6B7A90;
  --text-faint: #9DAABB;
  --border: #DDE1EA;
  --border-light: rgba(255, 255, 255, 0.9);

  /* Glass surfaces */
  --glass-bg: linear-gradient(160deg, #F9FAFE 0%, #F3F5FB 35%, #ECEEF6 100%);
  --glass-bg-hover: linear-gradient(160deg, #F5F8FE 0%, #EFF2FA 35%, #E8EBF4 100%);
  --glass-shadow: 0 8px 32px -6px rgba(100,115,150,0.13), 0 2px 8px rgba(100,115,150,0.06);
  --glass-shadow-hover: 0 16px 48px -6px rgba(100,115,150,0.18), 0 4px 14px rgba(100,115,150,0.08);
  --glass-inset: inset 0 2px 3px rgba(255,255,255,0.85), inset 0 -2px 4px rgba(170,185,210,0.1);
  --glass-shine: linear-gradient(178deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 22%, rgba(255,255,255,0.15) 48%, transparent 62%);

  --page-bg: #EEF1F6;
  --white: #FFFFFF;
  --radius-sm: 13px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background-color: var(--page-bg) !important;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--page-bg);
  background-image:
    radial-gradient(ellipse 500px 400px at 75% 5%, rgba(59,130,246,0.04), transparent),
    radial-gradient(ellipse 400px 350px at 20% 90%, rgba(16,185,129,0.03), transparent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #E2E6EE;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(100,115,150,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  width: 250px;
  height: 68px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 15px;
  padding: 17px 34px;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,99,235,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: all 0.25s ease;
  font-family: var(--font);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.4), inset 0 1px 0 rgba(255,255,255,0.22);
  text-decoration: none;
  color: white;
}
.btn-primary:hover::before { left: 120%; }
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37,99,235,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1.5px solid var(--primary);
  border-radius: 15px;
  padding: 16px 32px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(100,115,150,0.06);
  transition: all 0.2s ease;
  font-family: var(--font);
  text-decoration: none;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   GLASS PILL SELECTS
   ══════════════════════════════════════════════════════════ */
.pill-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 52px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--glass-bg);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(100,115,150,0.05), inset 0 1px 1px rgba(255,255,255,0.7);
  transition: all 0.2s ease;
  user-select: none;
  font-family: var(--font);
  color: var(--text-secondary);
}
.pill-select:hover {
  border-color: #93A3BA;
}
.pill-select.selected {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   GLASS ICON CARDS
   ══════════════════════════════════════════════════════════ */
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--glass-bg);
  cursor: pointer;
  min-width: 96px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(100,115,150,0.05), inset 0 1px 1px rgba(255,255,255,0.7);
  transition: all 0.2s ease;
  user-select: none;
}
.icon-card:hover {
  border-color: #93A3BA;
}
.icon-card.selected {
  border-color: rgba(37,99,235,0.4);
  background: linear-gradient(160deg, #EFF3FE, #E6EDFC);
  box-shadow: 0 4px 14px rgba(37,99,235,0.14), inset 0 1px 1px rgba(255,255,255,0.7);
}
.icon-card .icon { font-size: 1.9rem; }
.icon-card .label { font-size: 0.83rem; font-weight: 500; color: var(--text-secondary); }

.icon-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ══════════════════════════════════════════════════════════
   HERO / LANDING CARDS
   ══════════════════════════════════════════════════════════ */
.hero-card {
  width: 100%;
  max-width: 420px;
  padding: 48px 36px;
  position: relative;
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  text-align: center;
  cursor: pointer;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--glass-shine);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  pointer-events: none;
  z-index: 1;
}
.hero-card > * { position: relative; z-index: 2; }
.hero-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--glass-shadow-hover), var(--glass-inset);
  text-decoration: none;
  color: var(--text-primary);
}
.hero-card .hero-icon { font-size: 3rem; }
.hero-card h2 { font-size: 1.35rem; font-weight: 700; }
.hero-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.5; }

/* ── Landing Page ──────────────────────────────────────── */
.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
}
.landing-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.landing-hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-faint);
  padding: 20px 0;
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 28px 20px;
  font-size: 0.82rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.footer a { color: var(--text-faint); }
.footer a:hover { color: var(--primary); }
.footer .footer-links { font-size: 0.78rem; margin-top: 3px; }

/* ══════════════════════════════════════════════════════════
   LOCATION BAR
   ══════════════════════════════════════════════════════════ */
.location-bar {
  background: var(--glass-bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  box-shadow: var(--glass-shadow), var(--glass-inset);
}
.location-bar .location-msg {
  font-weight: 600;
  font-size: 1rem;
  flex: 1;
  min-width: 200px;
}
.location-bar .location-sub {
  width: 100%;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -4px;
}
.location-bar .btn-sm {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.15s ease;
}

.btn-confirm {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.btn-confirm:hover { opacity: 0.9; }
.btn-change {
  background: var(--glass-bg);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn-change:hover { border-color: #93A3BA; }

/* ══════════════════════════════════════════════════════════
   TABS
   ══════════════════════════════════════════════════════════ */
.tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--glass-bg);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: var(--font);
  color: var(--text-secondary);
  box-shadow: 0 2px 6px rgba(100,115,150,0.05), inset 0 1px 1px rgba(255,255,255,0.7);
}
.tab-btn:hover { border-color: #93A3BA; }
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════════════════════════
   FORM SECTIONS
   ══════════════════════════════════════════════════════════ */
.form-section { margin-bottom: 24px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #1E293B;
}
.form-note { font-size: 0.84rem; color: var(--text-faint); margin-top: 4px; }
.form-hint { font-size: 0.84rem; color: var(--text-faint); margin-top: 8px; }

/* ══════════════════════════════════════════════════════════
   NUMBER INPUTS
   ══════════════════════════════════════════════════════════ */
.number-input {
  width: 115px;
  height: 52px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: linear-gradient(160deg, #FBFCFE, #F3F5FA);
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--font);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text-primary);
  box-shadow: inset 0 1px 3px rgba(100,115,150,0.06);
}
.number-input:focus {
  outline: none;
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1), inset 0 1px 3px rgba(100,115,150,0.06);
}

.number-field {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.number-field .field-label {
  min-width: 98px;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.number-field .field-unit {
  font-size: 0.83rem;
  color: var(--text-faint);
}

/* ══════════════════════════════════════════════════════════
   UPLOAD ZONE
   ══════════════════════════════════════════════════════════ */
.upload-zone {
  border: 2px dashed #CDD3E0;
  border-radius: 20px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--glass-bg);
  margin-bottom: 20px;
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: rgba(37,99,235,0.4);
  background: var(--glass-bg-hover);
}
.upload-zone .upload-icon { font-size: 2.8rem; margin-bottom: 10px; }
.upload-zone .upload-text { font-weight: 600; font-size: 1rem; color: var(--text-secondary); }
.upload-zone .upload-hint { font-size: 0.83rem; color: var(--text-faint); margin-top: 5px; }
.upload-zone .upload-preview { margin-top: 14px; }
.upload-zone .upload-preview img {
  max-height: 180px;
  border-radius: 12px;
  margin: 0 auto;
}
.upload-zone .file-name {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 6px;
}
.upload-zone input[type="file"] { display: none; }

/* ══════════════════════════════════════════════════════════
   CITY DETECTED / SEARCH
   ══════════════════════════════════════════════════════════ */
.city-detected {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.city-detected .detected-name {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: auto;
  padding: 10px 26px 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px var(--secondary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  font-family: var(--font);
  line-height: 1.2;
}
.city-detected .detected-hardness {
  font-weight: 400;
  opacity: 0.55;
  font-size: 0.73rem;
  margin-top: -2px;
  line-height: 1.1;
}
.city-detected .btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--glass-bg);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(100,115,150,0.04);
  transition: all 0.15s ease;
  font-family: var(--font);
  color: var(--text-secondary);
}
.city-detected .btn-sm:hover { border-color: #93A3BA; }
.city-detected .btn-confirm {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.city-detected .btn-confirm:hover {
  background: linear-gradient(135deg, #1D4ED8, #1E40AF);
  border-color: transparent;
}
.city-detected .btn-change {
  background: var(--glass-bg);
  color: var(--text-secondary);
}

/* City Search */
.city-search-wrap { position: relative; width: 100%; }
.city-search-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  background: linear-gradient(160deg, #FBFCFE, #F3F5FA);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  color: var(--text-primary);
}
.city-search-input:focus {
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.city-search-input.geo-filled {
  border-color: var(--secondary);
  background: rgba(16, 185, 129, 0.04);
}

.city-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #FBFCFE;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(100,115,150,0.14);
  z-index: 100;
}
.city-dropdown.open { display: block; }

.city-dropdown-item {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.93rem;
  border-bottom: 1px solid #F0F2F5;
  transition: background 0.15s;
}
.city-dropdown-item:last-child { border-bottom: none; }
.city-dropdown-item:hover,
.city-dropdown-item.highlighted {
  background: #F0F3F8;
}
.city-dropdown-item .city-match {
  font-weight: 600;
  color: var(--primary);
}
.city-dropdown-item .city-hardness {
  float: right;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-left: 16px;
  padding-left: 12px;
}
.city-dropdown-empty {
  padding: 16px 18px;
  color: var(--text-faint);
  font-size: 0.88rem;
  text-align: center;
}

/* Sub-area pills */
.subarea-pills .pill-select {
  min-width: 115px;
  text-align: center;
  flex-direction: column;
  height: auto;
  padding: 10px 18px 8px;
  line-height: 1.2;
}
.subarea-pills .subarea-hardness {
  display: block;
  font-size: 0.73rem;
  color: var(--text-faint);
  margin-top: -2px;
  line-height: 1.1;
}
.subarea-pills .pill-select.selected .subarea-hardness {
  color: rgba(255, 255, 255, 0.55);
}

/* Privacy note */
.privacy-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-faint);
  margin-top: 14px;
}

/* ══════════════════════════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════════════════════════ */
.loading-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.loading-screen.active { display: flex; }

.loading-droplet {
  width: 80px; height: 80px;
  margin-bottom: 28px;
  position: relative;
}
.loading-droplet .drop {
  font-size: 3.8rem;
  animation: dropPulse 1.5s ease-in-out infinite;
}

@keyframes dropPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.7; }
}

.ripple {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 12px;
  border-radius: 50%;
  background: rgba(37,99,235,0.12);
  animation: rippleExpand 1.5s ease-out infinite;
}

@keyframes rippleExpand {
  0% { transform: translateX(-50%) scale(0.6); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1.8); opacity: 0; }
}

.loading-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
.loading-steps { list-style: none; text-align: left; }
.loading-steps li {
  font-size: 0.95rem;
  padding: 7px 0;
  color: var(--text-faint);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loading-steps li.done { color: var(--secondary); }
.loading-steps li .step-icon { width: 22px; text-align: center; flex-shrink: 0; }
.loading-steps li.active-step { color: var(--primary); font-weight: 600; }
.loading-steps li.active-step .step-icon {
  display: inline-block;
  width: 18px; height: 18px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: stepSpin 0.8s linear infinite;
}
@keyframes stepSpin { to { transform: rotate(360deg); } }
.loading-steps li.done .step-icon { color: var(--secondary); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   RESULTS SCREEN
   ══════════════════════════════════════════════════════════ */
.results-screen {
  display: none;
  padding: 20px 0 60px;
}
.results-screen.active { display: block; }

.results-header {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Score Gauge */
.score-section { display: flex; flex-direction: column; align-items: center; margin-bottom: 44px; }
.score-gauge { position: relative; width: 200px; height: 200px; margin-bottom: 18px; }
.score-gauge svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.score-gauge .gauge-bg { fill: none; stroke: var(--border); stroke-width: 12; }
.score-gauge .gauge-fill { fill: none; stroke-width: 12; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease, stroke 0.5s; }
.score-value { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.score-value .number { font-size: 2.8rem; font-weight: 800; line-height: 1; }
.score-value .out-of { font-size: 0.88rem; color: var(--text-faint); }
.score-label { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.score-summary { font-size: 0.95rem; color: var(--text-muted); max-width: 480px; text-align: center; }

/* Estimate banner */
.estimate-banner {
  background: linear-gradient(160deg, #FFFBEF, #FEF5D6);
  border: 1.5px solid #F0D68E;
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 0.88rem;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #856404;
}

/* Section titles */
.section-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }

/* ══════════════════════════════════════════════════════════
   PARAMETER CARDS
   ══════════════════════════════════════════════════════════ */
.param-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 44px;
}

.param-card {
  background: var(--glass-bg);
  border-radius: 14px;
  padding: 18px 18px 18px 22px;
  box-shadow: 0 2px 8px rgba(100,115,150,0.06), inset 0 1px 1px rgba(255,255,255,0.6);
  border-left: 5px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.param-card:hover { box-shadow: 0 4px 16px rgba(100,115,150,0.1); }

.param-card.status-good,
.param-card.status-estimated_good { border-left-color: var(--secondary); }
.param-card.status-moderate,
.param-card.status-estimated_moderate { border-left-color: var(--warning); }
.param-card.status-caution,
.param-card.status-estimated_caution { border-left-color: #E67E22; }
.param-card.status-action,
.param-card.status-estimated_action { border-left-color: var(--danger); }
.param-card.status-not-tested { border-left-color: var(--text-faint); }

.param-card .param-header { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }
.param-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(0,0,0,0.04); }
.param-dot.good, .param-dot.estimated_good { background: var(--secondary); }
.param-dot.moderate, .param-dot.estimated_moderate { background: var(--warning); }
.param-dot.caution, .param-dot.estimated_caution { background: #E67E22; }
.param-dot.action, .param-dot.estimated_action { background: var(--danger); }
.param-dot.not-tested { background: var(--text-faint); }

.param-name { font-weight: 700; font-size: 0.95rem; }
.param-value {
  font-size: 0.88rem; font-weight: 700;
  margin-left: auto;
  padding: 2px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.param-card.status-good .param-value,
.param-card.status-estimated_good .param-value { background: #E8F5E9; color: #1B9E5A; }
.param-card.status-moderate .param-value,
.param-card.status-estimated_moderate .param-value { background: #FEF9E0; color: #B8860B; }
.param-card.status-caution .param-value,
.param-card.status-estimated_caution .param-value { background: #FEF3D6; color: #E67E22; }
.param-card.status-action .param-value,
.param-card.status-estimated_action .param-value { background: #FDE8E4; color: var(--danger); }
.param-card.status-not-tested .param-value { background: #F0F2F5; color: var(--text-faint); }

.param-label {
  font-size: 0.83rem; font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
}
.param-card.status-good .param-label,
.param-card.status-estimated_good .param-label { background: #E8F5E9; color: #1B9E5A; }
.param-card.status-moderate .param-label,
.param-card.status-estimated_moderate .param-label { background: #FEF9E0; color: #B8860B; }
.param-card.status-caution .param-label,
.param-card.status-estimated_caution .param-label { background: #FEF3D6; color: #E67E22; }
.param-card.status-action .param-label,
.param-card.status-estimated_action .param-label { background: #FDE8E4; color: var(--danger); }
.param-card.status-not-tested .param-label { background: #F0F2F5; color: var(--text-faint); }

.param-estimated { font-size: 0.73rem; color: var(--text-faint); font-style: italic; margin-top: 5px; }

/* "More details in your report" subtle links */
.more-details-link {
  font-size: 0.78rem;
  color: var(--primary);
  opacity: 0.65;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.more-details-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.param-report-link {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--grey-100);
}

/* ══════════════════════════════════════════════════════════
   RECOMMENDATIONS
   ══════════════════════════════════════════════════════════ */
.recommendations {
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(100,115,150,0.06), inset 0 1px 1px rgba(255,255,255,0.6);
  margin-bottom: 44px;
}
.rec-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E8EBF0;
}
.rec-item:last-child { border-bottom: none; }
.rec-number {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.rec-urgency {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: 8px;
  margin-left: 8px;
}
.rec-urgency.critical,
.rec-urgency.high,
.rec-urgency.high_priority { background: #FDE8E4; color: var(--danger); }
.rec-urgency.moderate,
.rec-urgency.moderate_priority,
.rec-urgency.recommended { background: #FEF3D6; color: #E67E22; }
.rec-urgency.optional { background: #E8F5E9; color: var(--secondary); }

.rec-category { font-weight: 600; font-size: 0.95rem; }
.rec-reason { font-size: 0.88rem; color: var(--text-muted); margin-top: 3px; }
.rec-sizing { font-size: 0.83rem; color: var(--primary); margin-top: 5px; font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   EMAIL GATE
   ══════════════════════════════════════════════════════════ */
.email-gate {
  background: var(--glass-bg);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 44px;
  box-shadow: var(--glass-shadow), inset 0 2px 3px rgba(255,255,255,0.7);
}
.email-gate .gate-icon { font-size: 1.8rem; margin-bottom: 10px; }
.email-gate h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.email-gate .gate-benefits { list-style: none; text-align: left; margin: 14px 0 20px; }
.email-gate .gate-benefits li { padding: 3px 0; font-size: 0.93rem; color: var(--text-secondary); }
.email-gate input {
  width: 100%;
  height: 52px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  font-family: var(--font);
  margin-bottom: 10px;
  background: linear-gradient(160deg, #FBFCFE, #F3F5FA);
  transition: border-color 0.2s;
  color: var(--text-primary);
}
.email-gate input:focus { outline: none; border-color: rgba(37,99,235,0.5); }
.email-gate .gate-privacy { font-size: 0.78rem; color: var(--text-faint); margin-top: 10px; }
.gate-city-section { margin-bottom: 14px; text-align: left; }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════════════════════ */
.products-section { display: none; margin-bottom: 44px; }
.products-section.visible,
.products-section.unlocked { display: block; }

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--glass-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(100,115,150,0.08), inset 0 1px 1px rgba(255,255,255,0.6);
  border: 1.5px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}
.product-card .product-img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: #fff;
  padding: 16px;
}
.product-card .product-body { padding: 22px; }
.product-card .product-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.product-card .product-tagline { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.product-card .product-features { list-style: none; margin-bottom: 16px; }
.product-card .product-features li {
  font-size: 0.83rem;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
}
.product-card .product-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
}
.product-card .product-sizing {
  font-size: 0.83rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 10px;
}
.product-card .product-actions { display: flex; gap: 10px; }
.product-card .btn-detail,
.product-card .btn-quote {
  flex: 1;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-card .btn-detail {
  background: linear-gradient(160deg, #F0F2F5, #E8EBF0);
  color: var(--text-secondary);
}
.product-card .btn-detail:hover { background: #E2E5EA; text-decoration: none; }
.product-card .btn-quote {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}
.product-card .btn-quote:hover { opacity: 0.92; text-decoration: none; }

/* Shipping banner */
.shipping-banner { margin-top: 16px; }
.shipping-banner-inner {
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.shipping-banner-inner.in-area {
  background: #e8f5e9;
  color: #1b7a3d;
  border: 1px solid #c8e6c9;
}
.shipping-banner-inner.in-area a {
  color: #1b7a3d;
  font-weight: 700;
  text-decoration: none;
}
.shipping-banner-inner.in-area a:hover { text-decoration: underline; }
.shipping-banner-inner.ship-canada {
  background: #fff3e0;
  color: #bf360c;
  border: 1px solid #ffe0b2;
}

/* ══════════════════════════════════════════════════════════
   SERVICE AREA
   ══════════════════════════════════════════════════════════ */
.service-section { margin-bottom: 44px; }
.service-card {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--glass-shadow);
  text-align: center;
  border: 1.5px solid var(--border-light);
}
.service-card.featured { border: 2px solid var(--primary); }
.service-card .service-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.service-card .service-office { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.service-card .service-phone { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }

/* Share */
.share-section {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.share-btn {
  padding: 11px 22px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--glass-bg);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
}
.share-btn:hover { border-color: #93A3BA; color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   ANALYZE PAGE
   ══════════════════════════════════════════════════════════ */
.analyze-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.analyze-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.analyze-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════
   STEP FLOW — progressive reveal
   ══════════════════════════════════════════════════════════ */
.step-flow {
  position: relative;
  padding-left: 22px;
}
.step-flow::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--border);
  border-radius: 2px;
}

.flow-step {
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.5s ease, margin 0.45s ease;
  margin-bottom: 0;
}
.flow-step.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
  overflow: visible;
  margin-bottom: 22px;
}
.flow-step.answered {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
  overflow: visible;
  margin-bottom: 8px;
}
.flow-step.answered .form-section {
  opacity: 0.35;
  transform: scale(0.86);
  transform-origin: top left;
  transition: opacity 0.3s, transform 0.3s;
}
.flow-step.answered:hover .form-section {
  opacity: 0.6;
  transform: scale(0.92);
}
.flow-step.answered .form-label::after {
  content: ' ✓';
  color: var(--secondary);
  font-size: 0.85em;
}
.flow-step[data-skipped="true"] {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════
   METHOD CARDS — glass-themed (Step 1)
   ══════════════════════════════════════════════════════════ */
.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 36px 20px;
  background: var(--glass-bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  min-height: 180px;
  justify-content: center;
  overflow: hidden;
}
/* Glass shine */
.method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--glass-shine);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
  z-index: 1;
}
.method-card > * { position: relative; z-index: 2; }

.method-card:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--glass-shadow-hover), var(--glass-inset);
}
.method-card.selected {
  border-color: rgba(37,99,235,0.35);
  background: linear-gradient(160deg, #F0F4FE, #E8EDFC);
  box-shadow: 0 8px 36px -4px rgba(37,99,235,0.15), 0 2px 10px rgba(37,99,235,0.08), var(--glass-inset);
}

.method-card .method-icon { font-size: 3rem; flex-shrink: 0; }
.method-card .method-title { font-weight: 700; font-size: 1.1rem; display: block; }
.method-card .method-desc { font-size: 0.83rem; color: var(--text-muted); display: block; margin-top: 2px; line-height: 1.3; }

/* ══════════════════════════════════════════════════════════
   WELL WATER BLOCK
   ══════════════════════════════════════════════════════════ */
.well-block-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--glass-shadow), var(--glass-inset);
}
.well-block-icon { font-size: 2.4rem; margin-bottom: 10px; }
.well-block-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.well-block-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 18px; }
.well-block-actions { display: flex; flex-direction: column; gap: 14px; max-width: 340px; margin: 0 auto; }

.well-test-contact {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(160deg, #F0F2F5, #E8EBF0);
  border-radius: 14px;
  text-align: center;
}
.well-test-contact .service-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.well-test-contact .service-office { font-size: 0.88rem; color: var(--text-muted); }
.well-test-contact .service-phone { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-top: 4px; }

.well-office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.well-office-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  position: relative;
}
.well-office-card.well-office-detected {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}
.well-office-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.well-office-card .service-name { font-size: 0.93rem; font-weight: 700; margin-bottom: 8px; }
.well-office-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 4px;
}
.well-office-phone:hover { text-decoration: underline; }
.well-office-email { display: block; font-size: 0.83rem; color: var(--text-muted); text-decoration: none; }
.well-office-email:hover { text-decoration: underline; color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   EXPLORE HUB
   ══════════════════════════════════════════════════════════ */
.explore-container { max-width: 1080px; margin: 0 auto; padding: 40px 20px 60px; }
.explore-title { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 8px; letter-spacing: -0.02em; }
.explore-subtitle { text-align: center; color: var(--text-faint); font-size: 0.98rem; margin-bottom: 32px; }

.explore-search-wrap { position: relative; max-width: 480px; margin: 0 auto 24px; }
.explore-search {
  width: 100%;
  padding: 14px 20px 14px 44px;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font);
  background: linear-gradient(160deg, #FBFCFE, #F3F5FA);
  color: var(--text-primary);
}
.explore-search:focus { border-color: rgba(37,99,235,0.5); box-shadow: 0 0 0 3px var(--primary-glow); }
.explore-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; pointer-events: none; }

.explore-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 32px; }
.explore-stat { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.5px; }

.explore-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.explore-empty { grid-column: 1 / -1; text-align: center; color: var(--text-faint); padding: 60px 20px; font-size: 0.98rem; }

.city-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(100,115,150,0.05), inset 0 1px 1px rgba(255,255,255,0.6);
}
.city-card:hover { box-shadow: 0 6px 20px rgba(100,115,150,0.1); transform: translateY(-2px); }
.city-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.city-card-name { font-size: 1.05rem; font-weight: 600; }
.city-card-badge {
  font-size: 0.68rem; font-weight: 600;
  padding: 3px 8px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap;
}
.badge-soft { background: #D4EDDA; color: #155724; }
.badge-slight { background: #D1ECF1; color: #0C5460; }
.badge-moderate { background: #FFF3CD; color: #856404; }
.badge-hard { background: #FDE2D4; color: #A0522D; }
.badge-veryhard { background: #F8D7DA; color: #721C24; }

.city-card-hardness { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.city-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-faint); margin-bottom: 10px; }
.city-card-zones { background: #F0F2F5; padding: 2px 8px; border-radius: 4px; font-size: 0.73rem; }
.city-card-cta { display: inline-block; font-size: 0.83rem; font-weight: 600; color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   GEO BLOCK
   ══════════════════════════════════════════════════════════ */
.geo-block-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.geo-block-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 34px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.geo-block-icon { font-size: 2.8rem; margin-bottom: 14px; }
.geo-block-card h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.geo-block-card p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }

/* City chips legacy */
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* ══════════════════════════════════════════════════════════
   MOBILE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav { padding: 12px 18px; }
  .nav-links { gap: 18px; }

  .landing-hero h1 { font-size: 1.7rem; }
  .hero-card { padding: 34px 22px; max-width: 100%; }
  .hero-cards { gap: 16px; }

  .method-cards { grid-template-columns: 1fr; }
  .method-card {
    min-height: auto;
    padding: 22px 18px;
    flex-direction: row;
    gap: 14px;
    text-align: left;
  }

  .btn-primary { padding: 15px 26px; font-size: 0.98rem; }
  .btn-secondary { padding: 14px 26px; font-size: 0.98rem; }
  .tab-bar { gap: 6px; }
  .tab-btn { padding: 11px 16px; font-size: 0.83rem; }
  .param-cards { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: 1fr; }
  .email-gate { padding: 26px 18px; }
  .analyze-container { padding: 20px 16px 60px; }
  .number-field { flex-wrap: wrap; }
  .icon-card { min-width: 78px; padding: 14px 10px; }
  .explore-title { font-size: 1.35rem; }
  .explore-stats { gap: 22px; }
  .stat-number { font-size: 1.25rem; }
  .explore-grid { grid-template-columns: 1fr; }
  .well-office-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .nav-links { display: none; }
  .analyze-title { font-size: 1.35rem; }
}
