/* ==========================================================================
   OpenHome — Design System & Styles
   NZ Property Buyer Intelligence Platform
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --ink: #0a0f1a;
  --paper: #f8f6f1;
  --accent: #1a6b4a;
  --accent-dark: #145638;
  --accent-light: #e8f5ee;
  --accent-lighter: #f0faf5;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #d4d0c8;
  --border-light: #e8e4dc;
  --warm: #f0ebe0;
  --warm-dark: #e4ddd0;
  --white: #ffffff;
  --red: #dc2626;
  --red-light: #fef2f2;
  --red-border: #fecaca;
  --amber: #d97706;
  --amber-light: #fffbeb;
  --amber-border: #fde68a;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --green-border: #bbf7d0;
  --shadow-sm: 0 1px 2px rgba(10, 15, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 15, 26, 0.06);
  --shadow-lg: 0 8px 24px rgba(10, 15, 26, 0.08);
  --shadow-xl: 0 16px 48px rgba(10, 15, 26, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

a:hover {
  color: var(--accent-dark);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

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

.section {
  padding: 80px 0;
}

.section--warm {
  background: var(--warm);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.nav__logo-dot {
  color: var(--accent);
}

.nav__tag {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  background: var(--warm);
  border-radius: 100px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 48px;
  text-align: center;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 20px;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---------- Search ---------- */
.search {
  max-width: 580px;
  margin: 0 auto 16px;
  position: relative;
}

.search__wrapper {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search__wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(26, 107, 74, 0.08);
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  padding: 12px 0;
}

.search__input::placeholder {
  color: var(--muted-light);
}

.search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.search__btn:hover {
  background: var(--accent-dark);
}

.search__btn:active {
  transform: scale(0.97);
}

.search__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.search__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}

.search__dropdown.is-visible {
  display: block;
  animation: dropdownIn 0.15s ease;
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search__dropdown-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}

.search__dropdown-item:last-child {
  border-bottom: none;
}

.search__dropdown-item:hover,
.search__dropdown-item.is-highlighted {
  background: var(--accent-lighter);
}

.search__dropdown-item-name {
  font-weight: 600;
  color: var(--ink);
}

.search__dropdown-item-city {
  font-size: 0.875rem;
  color: var(--muted);
}

.search__dropdown-icon {
  width: 16px;
  height: 16px;
  color: var(--muted-light);
  flex-shrink: 0;
}

.search__dropdown-message {
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  text-align: center;
}

.search__quick {
  text-align: center;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}

.search__quick span {
  margin-right: 4px;
}

.search__quick-link {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.search__quick-link:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.search__quick-link + .search__quick-link {
  margin-left: 2px;
}

.search__quick-sep {
  color: var(--border);
  margin: 0 2px;
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: 64px 0 80px;
}

.how-it-works__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--ink);
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.how-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.how-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.how-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.how-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Value Props ---------- */
.value-props {
  padding: 64px 0;
  background: var(--warm);
  text-align: center;
}

.value-props__tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.value-props__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.value-props__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.value-stat {
  text-align: center;
}

.value-stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.value-stat__label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Results Section ---------- */
.results {
  display: none;
  padding: 0 0 48px;
  animation: fadeInUp 0.5s ease;
}

.results.is-visible {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

/* Suburb Header */
.suburb-header {
  margin-bottom: 32px;
}

.suburb-header__name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.suburb-header__city {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.suburb-header__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--warm);
  color: var(--ink);
}

.pill--accent {
  background: var(--accent-light);
  color: var(--accent);
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-sm);
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.stat-card__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat-card__sub {
  font-size: 0.8125rem;
  margin-top: 4px;
}

.stat-card__sub--positive {
  color: var(--green);
  font-weight: 600;
}

.stat-card__sub--negative {
  color: var(--red);
  font-weight: 600;
}

.stat-card__sub--neutral {
  color: var(--muted);
}

/* Comparables */
.comparables {
  margin-bottom: 40px;
}

.comparables__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.comparables__table {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparables__table table {
  width: 100%;
  border-collapse: collapse;
}

.comparables__table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 14px 20px;
  background: var(--warm);
  border-bottom: 1px solid var(--border-light);
}

.comparables__table td {
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border-light);
}

.comparables__table tr:last-child td {
  border-bottom: none;
}

.comparables__table tr:hover td {
  background: rgba(248, 246, 241, 0.5);
}

.comparables__table .price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

/* Comparables mobile cards */
.comparables__cards {
  display: none;
}

.comp-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
}

.comp-card__address {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 1rem;
}

.comp-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.comp-card__detail {
  font-size: 0.875rem;
}

.comp-card__detail-label {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comp-card__detail-value {
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}

.comp-card__detail-value.price {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent);
  font-size: 1.0625rem;
}

/* Generate Brief CTA */
.generate-cta {
  text-align: center;
  padding: 40px 0 16px;
}

.generate-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(26, 107, 74, 0.2);
}

.generate-cta__btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 107, 74, 0.28);
}

.generate-cta__btn:active {
  transform: translateY(0);
}

.generate-cta__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.generate-cta__btn svg {
  width: 20px;
  height: 20px;
}

.generate-cta__sub {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Brief Section ---------- */
.brief {
  display: none;
  padding: 0 0 64px;
  animation: fadeInUp 0.5s ease;
}

.brief.is-visible {
  display: block;
}

.brief__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.brief__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.brief__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
}

.brief__subtitle {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 4px;
}

.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.confidence-badge--high {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.confidence-badge--medium {
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid var(--amber-border);
}

.confidence-badge--low {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid var(--red-border);
}

.confidence-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* Fair Offer Range */
.fair-offer {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.fair-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.fair-offer__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.fair-offer__range {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.fair-offer__note {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Brief Cards */
.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.brief-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.brief-card--full {
  grid-column: 1 / -1;
}

.brief-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brief-card__title-icon {
  font-size: 1.125rem;
}

.brief-card__text {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.7;
}

/* Negotiation Tips */
.tips-list {
  list-style: none;
  counter-reset: tips;
}

.tips-list li {
  counter-increment: tips;
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}

.tips-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tips-list li::before {
  content: counter(tips);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent-light);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 50%;
  margin-top: 1px;
}

/* Red Flags */
.red-flags {
  background: var(--red-light);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.red-flags__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.red-flags__list {
  list-style: none;
}

.red-flags__list li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--ink);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.red-flags__list li::before {
  content: '\26A0';
  font-size: 0.875rem;
  margin-top: 2px;
}

/* Plain Language Summary */
.summary-box {
  background: var(--accent-lighter);
  border: 1px solid rgba(26, 107, 74, 0.15);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}

.summary-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.summary-box__text {
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.8;
}

/* ---------- Loading States ---------- */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

.loading-overlay {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.loading-overlay.is-visible {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.loading-overlay__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

.loading-overlay__text {
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}

.loading-overlay__sub {
  font-size: 0.875rem;
  color: var(--muted);
}

.loading-overlay__progress {
  width: 200px;
  height: 4px;
  background: var(--border-light);
  border-radius: 100px;
  margin: 20px auto 0;
  overflow: hidden;
}

.loading-overlay__progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  animation: progressIndeterminate 1.8s ease-in-out infinite;
  width: 40%;
}

@keyframes progressIndeterminate {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(150%); }
  100% { transform: translateX(-100%); }
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--warm) 25%, var(--warm-dark) 50%, var(--warm) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton--text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton--heading {
  height: 32px;
  width: 60%;
  margin-bottom: 16px;
}

.skeleton--card {
  height: 120px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer__text {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 0.8125rem;
  color: var(--muted-light);
  font-style: italic;
}

/* ---------- Utility Classes ---------- */
.text-positive { color: var(--green); }
.text-negative { color: var(--red); }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.font-mono {
  font-family: 'Space Grotesk', monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brief-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

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

  .how-it-works__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-props__stats {
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comparables__table {
    display: none;
  }

  .comparables__cards {
    display: block;
  }

  .brief__header {
    flex-direction: column;
  }

  .nav__tag {
    display: none;
  }

  .search__btn span {
    display: none;
  }

  .search__btn {
    padding: 12px 14px;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .comp-card__details {
    grid-template-columns: 1fr;
  }

  .fair-offer {
    padding: 24px 16px;
  }

  .value-props__stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero__title {
    font-size: 1.875rem;
  }

  .suburb-header__name {
    font-size: 1.5rem;
  }
}
