/* ═══════════════════════════════════════════
   Geo/city landing pages — specific styles
   Uses design tokens from styles.css
   ═══════════════════════════════════════════ */

/* ─── Utility classes ─── */
.grad {
  background: linear-gradient(135deg, #00e676, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.green { color: #10b981; }
.sub { font-size: 1rem; color: var(--text-2); max-width: 500px; margin-bottom: 48px; letter-spacing: -0.01em; }

/* ─── Breadcrumb ─── */
.breadcrumb { padding: 80px 0 0; }
.bc-inner { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-3); font-weight: 500; }
.bc-inner a { color: var(--text-3); transition: color .15s; }
.bc-inner a:hover { color: var(--text-2); }
.bc-sep { color: var(--border); }

/* ─── Hero (geo pages use .hero, not .geo-hero) ─── */
.hero { padding: 40px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(2,132,199,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.geo-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(2,132,199,0.06); border: 1px solid rgba(2,132,199,0.15);
  border-radius: 100px; padding: 5px 14px 5px 10px;
  font-size: .75rem; font-weight: 600; color: var(--accent); margin-bottom: 24px;
}
.geo-badge .loc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.85)} }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.1; color: var(--text);
  max-width: 720px; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.0625rem; color: var(--text-2); max-width: 520px;
  line-height: 1.7; letter-spacing: -0.01em; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: .75rem; color: var(--text-3); }

/* ─── Cities ─── */
.cities-section { background: var(--surface); padding: 80px 0; }
.cities-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  color: var(--text); margin-bottom: 12px;
}
.cities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.city-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.city-card:hover { border-color: rgba(2,132,199,0.3); box-shadow: 0 4px 16px rgba(2,132,199,0.07); }
.city-name { font-weight: 700; color: var(--text); font-size: .9375rem; margin-bottom: 4px; letter-spacing: -0.02em; }
.city-type { font-size: .75rem; color: var(--text-3); margin-bottom: 12px; }
.city-platforms { display: flex; gap: 6px; flex-wrap: wrap; }
.plat-chip { font-size: .6875rem; font-weight: 600; padding: 2px 7px; border-radius: 4px; }
.plat-airbnb { background: rgba(255,90,95,0.08); color: #d63031; border: 1px solid rgba(255,90,95,0.15); }
.plat-booking { background: rgba(0,53,128,0.07); color: #003580; border: 1px solid rgba(0,53,128,0.12); }
.plat-expedia { background: rgba(251,175,23,0.1); color: #b8880a; border: 1px solid rgba(251,175,23,0.2); }

/* ─── Problem ─── */
.problem-section { padding: 80px 0; }
.problem-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  color: var(--text); margin-bottom: 12px;
}
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prob-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.prob-icon { font-size: 1.25rem; margin-bottom: 12px; }
.prob-title { font-weight: 700; color: var(--text); font-size: .9375rem; margin-bottom: 6px; letter-spacing: -0.02em; }
.prob-desc { font-size: .8125rem; color: var(--text-2); line-height: 1.6; }

/* ─── How it works ─── */
.how-section { background: var(--surface); padding: 80px 0; }
.how-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  color: var(--text); margin-bottom: 12px;
}
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.step { padding: 36px 28px; position: relative; }
.step .step-n { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.step h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.step p { font-size: .875rem; color: var(--text-2); line-height: 1.7; }

/* ─── Features ─── */
.features-section { padding: 80px 0; }
.features-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  color: var(--text); margin-bottom: 12px;
}
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.feat { padding: 32px 28px; border-radius: 14px; transition: background .2s; }
.feat:hover { background: var(--surface); }
.feat-icon, .feat .feat-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1rem; transition: all .2s;
}
.feat:hover .feat-icon { background: rgba(2,132,199,0.06); border-color: rgba(2,132,199,0.2); }
.feat h3 { font-size: .9375rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 6px; }
.feat p { font-size: .875rem; color: var(--text-2); line-height: 1.7; }

/* ─── FAQ ─── */
.faq { padding: 80px 0; background: var(--surface); }
.faq-wrap { max-width: 620px; }
.faq h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800;
  letter-spacing: -0.04em; margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; font-family: var(--font-body);
  font-size: .9375rem; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text); text-align: left; transition: color .2s;
}
.faq-btn:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-chevron svg { width: 14px; height: 14px; stroke: var(--text-3); transition: stroke .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-chevron svg { stroke: var(--accent); }
.faq-body {
  font-size: .9375rem; color: var(--text-2);
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(0.16, 1, 0.3, 1), padding .4s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.75;
}
.faq-item.open .faq-body { max-height: 400px; padding-bottom: 20px; }

/* ─── Related ─── */
.related { padding: 60px 0; }
.related h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.rel-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; font-size: .875rem; font-weight: 600;
  color: var(--text-2); transition: all .2s; text-decoration: none;
}
.rel-card:hover { border-color: rgba(2,132,199,0.3); color: var(--accent); }
.rel-card svg { flex-shrink: 0; stroke: currentColor; }

/* ─── CTA band ─── */
.cta-band {
  background: var(--accent); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse 60% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band > .section-inner, .cta-band > .wrap { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-heading); color: white; margin-bottom: 14px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.04em; font-weight: 800; }
.cta-band .cta-sub { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; }
.cta-band .cta-local { font-size: .875rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─── Eyebrow ─── */
.eyebrow { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 10px; }

/* ─── Responsive ─── */
@media (max-width: 700px) { .cities-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) { .problems-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .problems-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) { .cities-grid { grid-template-columns: 1fr; } }
