:root {
  --navy: #1a2744;
  --navy-light: #243360;
  --gold: #b8955a;
  --gold-light: #d4af7a;
  --cream: #faf8f5;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-700: #374151;
  --text: #1f2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

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

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

.section { padding: 60px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; color: var(--navy); margin-bottom: 10px; }
.section--navy .section-header h2 { color: var(--white); }
.section-header p { color: var(--gray-700); font-size: 1.05rem; }

.divider { border: none; border-top: 2px solid var(--gray-200); margin: 20px 0; }

/* ── Header / Nav ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 7px 14px !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ── Hero (Homepage) ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a5f 100%);
  color: var(--white);
  padding: 80px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-family: 'Arial', sans-serif;
}

.hero-search-wrap {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-search-wrap input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  outline: none;
  box-shadow: var(--shadow-md);
}

.hero-search-wrap button {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
}

.hero-search-wrap button:hover { background: var(--gold-light); }

.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Arial', sans-serif;
}

.hero-trust span::before { content: '✓ '; color: var(--gold); }

/* ── Article Hero ── */
.article-hero {
  background: var(--navy);
  color: var(--white);
  padding: 50px 20px 40px;
}

.article-hero h1 { font-size: 2.1rem; margin-bottom: 12px; line-height: 1.25; }
.article-hero .subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 16px; font-family: 'Arial', sans-serif; }

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-family: 'Arial', sans-serif;
}

/* ── Listing Cards ── */
.listings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) { .listings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .listings-grid { grid-template-columns: repeat(3, 1fr); } }

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

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

.card-header {
  background: var(--navy);
  padding: 16px 18px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.card-title { font-size: 1rem; font-weight: 600; line-height: 1.3; }
.card-title a { color: var(--white); }
.card-title a:hover { color: var(--gold-light); }

.card-body { padding: 16px 18px; flex: 1; }
.card-footer { padding: 14px 18px; border-top: 1px solid var(--gray-100); display: flex; gap: 8px; }

.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 1px; }
.rating-num { font-size: 0.8rem; color: var(--gray-700); font-family: 'Arial', sans-serif; }

.card-address { font-size: 0.82rem; color: var(--gray-700); font-family: 'Arial', sans-serif; margin-bottom: 6px; }
.card-phone { font-size: 0.82rem; color: var(--navy); font-family: 'Arial', sans-serif; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--cream); color: var(--navy); }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-gold { background: var(--gold); color: var(--white); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-featured { background: #dc2626; color: var(--white); }

/* ── Sponsor Banner ── */
.sponsor-banner {
  background: linear-gradient(135deg, #fef9f0 0%, #fdf3e0 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sponsor-banner-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  display: block;
  margin-bottom: 4px;
}

.sponsor-banner-name { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sponsor-banner-tagline { font-size: 0.9rem; color: var(--gray-700); font-family: 'Arial', sans-serif; }
.sponsor-banner-actions { margin-left: auto; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

/* ── AdSense Placeholders ── */
.adsense-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px auto;
}

.adsense-placeholder--rectangle { width: 300px; height: 250px; }

/* ── Search Bar (Directory) ── */
.search-bar-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.search-bar-wrap input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-bar-wrap input[type="text"]:focus { border-color: var(--gold); }

.filter-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.filter-row select {
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Arial', sans-serif;
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  flex: 1;
  min-width: 160px;
}

.filter-row select:focus { border-color: var(--gold); }

#results-count { font-size: 0.9rem; color: var(--gray-700); font-family: 'Arial', sans-serif; margin-bottom: 20px; }

/* ── Detail Grid (Individual Listing) ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 768px) { .detail-grid { grid-template-columns: 1fr 340px; } }

.detail-hero {
  background: var(--navy);
  color: var(--white);
  padding: 40px 20px 32px;
}

.detail-hero h1 { font-size: 2rem; margin-bottom: 10px; line-height: 1.2; }

.detail-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  align-items: center;
}

.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

/* ── Info Cards ── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 22px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.info-card p, .info-card li { font-size: 0.9rem; color: var(--gray-700); font-family: 'Arial', sans-serif; line-height: 1.6; }
.info-card ul { padding-left: 18px; }
.info-card li { margin-bottom: 6px; }
.info-card a { color: var(--navy); text-decoration: underline; font-size: 0.9rem; font-family: 'Arial', sans-serif; }

/* ── About / Content Sections ── */
.about-section { padding: 28px 0; }
.about-section h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 14px; }
.about-section p { font-size: 0.95rem; color: var(--gray-700); font-family: 'Arial', sans-serif; margin-bottom: 12px; line-height: 1.7; }

/* ── FAQ ── */
.faq-section { padding: 40px 0; }
.faq-section h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 24px; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; padding: 14px 20px 18px; }

/* ── CTA Strip ── */
.cta-strip {
  background: var(--gold);
  padding: 36px 20px;
  text-align: center;
  color: var(--white);
}

.cta-strip h2 { font-size: 1.6rem; margin-bottom: 10px; }
.cta-strip p { font-size: 1rem; margin-bottom: 22px; opacity: 0.92; font-family: 'Arial', sans-serif; }
.cta-strip-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .blog-grid { grid-template-columns: repeat(4, 1fr); } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2.5rem;
}

.blog-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.75rem; color: var(--gray-400); font-family: 'Arial', sans-serif; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.35; flex: 1; }
.blog-card p { font-size: 0.85rem; color: var(--gray-700); font-family: 'Arial', sans-serif; line-height: 1.5; }
.blog-card-link { display: inline-block; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--gold); font-family: 'Arial', sans-serif; }

/* ── Article Body ── */
.article-body { max-width: 760px; margin: 0 auto; padding: 40px 20px; }
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 32px 0 14px; }
.article-body h3 { font-size: 1.15rem; color: var(--navy); margin: 24px 0 10px; }
.article-body p { font-size: 0.97rem; color: var(--gray-700); font-family: 'Arial', sans-serif; line-height: 1.75; margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { font-size: 0.95rem; color: var(--gray-700); font-family: 'Arial', sans-serif; line-height: 1.65; margin-bottom: 8px; }
.article-body a { color: var(--navy); text-decoration: underline; }

.article-callout {
  background: #f0f4ff;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
}

.article-callout strong { display: block; margin-bottom: 6px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gold); }

.author-box {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-top: 40px;
  font-family: 'Arial', sans-serif;
}

.author-box h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 8px; }
.author-box p { font-size: 0.88rem; color: var(--gray-700); line-height: 1.6; }

.disclaimer { font-size: 0.78rem; color: var(--gray-400); font-family: 'Arial', sans-serif; line-height: 1.6; padding: 20px 0; border-top: 1px solid var(--gray-200); margin-top: 32px; }

/* ── Comparison Table ── */
.compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-family: 'Arial', sans-serif; font-size: 0.9rem; }
.compare-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; }
.compare-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.compare-table tr:nth-child(even) td { background: var(--gray-100); }

/* ── Tools ── */
.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.tool-card h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 20px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-family: 'Arial', sans-serif; }

.form-group select,
.form-group input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group select:focus,
.form-group input:focus { border-color: var(--gold); }

.checkbox-group { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--gray-700); font-family: 'Arial', sans-serif; cursor: pointer; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }

.cost-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 24px;
  color: var(--white);
  display: none;
}

.cost-result.visible { display: block; }
.cost-result-range { font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.cost-result p { font-family: 'Arial', sans-serif; font-size: 0.9rem; opacity: 0.85; margin-bottom: 16px; }
.cost-breakdown { width: 100%; border-collapse: collapse; font-family: 'Arial', sans-serif; font-size: 0.875rem; }
.cost-breakdown td { padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.cost-breakdown td:last-child { text-align: right; color: var(--gold-light); font-weight: 600; }

/* ── Comparison Tool ── */
.compare-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin: 24px 0; }
.compare-slot {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  transition: border-color 0.2s;
}

.compare-slot.filled { border-style: solid; border-color: var(--gold); align-items: flex-start; }
.compare-slot-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.compare-slot-empty { color: var(--gray-400); font-family: 'Arial', sans-serif; font-size: 0.9rem; text-align: center; }
.compare-result-table { width: 100%; border-collapse: collapse; font-family: 'Arial', sans-serif; font-size: 0.875rem; margin-top: 24px; }
.compare-result-table th { background: var(--navy); color: var(--white); padding: 12px 16px; }
.compare-result-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.compare-result-table tr:nth-child(even) td { background: var(--gray-100); }
.compare-result-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  font-family: 'Arial', sans-serif;
}

.breadcrumb a { color: var(--gray-400); text-decoration: underline; }
.breadcrumb a:hover { color: var(--navy); }
.sep { margin: 0 6px; }

/* ── Why / About Section ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item { text-align: center; padding: 24px; }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-item h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 0.875rem; color: var(--gray-700); font-family: 'Arial', sans-serif; line-height: 1.6; }

/* ── Tools Section Cards ── */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }

.tool-promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-promo-card h3 { font-size: 1.2rem; color: var(--navy); }
.tool-promo-card p { font-size: 0.9rem; color: var(--gray-700); font-family: 'Arial', sans-serif; line-height: 1.6; flex: 1; }

/* ── Advertise ── */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.pricing-card.featured-plan { border-color: var(--gold); }
.pricing-card .plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; font-family: 'Arial', sans-serif; white-space: nowrap; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.plan-price { font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.plan-price span { font-size: 0.9rem; color: var(--gray-400); font-weight: 400; font-family: 'Arial', sans-serif; }
.plan-features { list-style: none; padding: 0; flex: 1; }
.plan-features li { font-size: 0.875rem; color: var(--gray-700); font-family: 'Arial', sans-serif; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.plan-features li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* ── Street View / Logo ── */
.street-view-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.listing-logo { width: 80px; height: 80px; object-fit: contain; border-radius: var(--radius); border: 1px solid var(--gray-200); margin-bottom: 12px; background: var(--white); padding: 6px; }

/* ── Others Grid ── */
.others-section { padding: 40px 0; }
.others-section h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 50px 20px 24px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto 36px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; font-family: 'Arial', sans-serif; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-family: 'Arial', sans-serif; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 0.8rem;
  font-family: 'Arial', sans-serif;
  color: rgba(255,255,255,0.5);
}

.rss-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.82rem !important;
  font-family: 'Arial', sans-serif;
  transition: color 0.2s;
}

.rss-link:hover { color: var(--gold) !important; }
.rss-link svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Search Results (comparison) ── */
.search-results-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.search-results-list.visible { display: block; }
.search-result-item { padding: 10px 14px; cursor: pointer; font-family: 'Arial', sans-serif; font-size: 0.875rem; border-bottom: 1px solid var(--gray-100); transition: background 0.15s; }
.search-result-item:hover { background: var(--cream); }
.search-result-item small { display: block; color: var(--gray-400); font-size: 0.78rem; }

.search-input-wrap { position: relative; }

/* ── Responsive utilities ── */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-search-wrap { flex-direction: column; }
  .hero-search-wrap button { width: 100%; }
  .detail-hero h1 { font-size: 1.5rem; }
  .sponsor-banner-actions { margin-left: 0; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-mobile-cta { display: inline-block; }
}

@media (min-width: 641px) {
  .nav-mobile-cta { display: none; }
}
