/* ═══════════════════════════════════════════════════════════════════
   Apple-Inspired City Landing Page Styles
   Matches apple.com aesthetic: SF Pro, clean whites, subtle grays,
   precise typography, generous whitespace
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.seo-hero {
  background: #000;
  color: #f5f5f7;
  padding: clamp(100px, 14vw, 160px) 24px clamp(60px, 10vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,113,227,.12) 0%, transparent 70%);
  pointer-events: none;
}
.seo-hero h1 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 800px;
}
.seo-hero h1 span {
  background: linear-gradient(90deg, #2997ff, #5ac8fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-hero p {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #86868b;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
  font-weight: 400;
}
.seo-hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.seo-hero .cta-row a {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  padding: 12px 28px;
  border-radius: 980px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.25,1,.5,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seo-hero .cta-primary {
  background: #0071e3;
  color: #fff;
}
.seo-hero .cta-primary:hover {
  background: #0077ed;
  transform: scale(1.02);
}
.seo-hero .cta-secondary {
  border: 1px solid rgba(255,255,255,.25);
  color: #f5f5f7;
  background: transparent;
}
.seo-hero .cta-secondary:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: #f5f5f7;
  padding: 48px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.trust-bar h2 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 28px;
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.trust-stat {
  text-align: center;
}
.trust-stat .num {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.trust-stat .label {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #6e6e73;
  margin-top: 4px;
  font-weight: 500;
}

/* ─── Content Section ─── */
.content-section {
  padding: clamp(56px, 8vw, 96px) 24px;
  max-width: 860px;
  margin: 0 auto;
}
.content-section h2 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.content-section h3 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #1d1d1f;
  margin: 40px 0 14px;
  letter-spacing: -0.015em;
}
.content-section p,
.content-section li {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #424245;
}
.content-section ul {
  padding-left: 20px;
  list-style: none;
}
.content-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0071e3;
}
.content-section a {
  color: #0071e3;
  text-decoration: none;
  font-weight: 500;
}
.content-section a:hover {
  text-decoration: underline;
}

/* ─── Feature Grid (Apple card tiles) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 36px 0;
}
.feature-card {
  background: #f5f5f7;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.3s cubic-bezier(.25,1,.5,1), box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #6e6e73;
  line-height: 1.45;
  margin: 0;
}

/* ─── Pricing Table (Apple-clean) ─── */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
}
.pricing-table th {
  background: #1d1d1f;
  color: #f5f5f7;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 0.92rem;
  color: #1d1d1f;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: rgba(0,113,227,.04);
}
.pricing-table td[style*="background:#f0f4ff"],
.pricing-table td[style*="background: #f0f4ff"] {
  background: rgba(0,113,227,.06) !important;
}

/* ─── FAQ Section ─── */
.faq-section {
  padding: clamp(56px, 8vw, 96px) 24px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-section h2 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 40px;
}
.faq-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.08);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(0,0,0,.08);
}
.faq-item summary {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  color: #1d1d1f;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #86868b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
  color: #0071e3;
}
.faq-item summary:hover {
  color: #0071e3;
}
.faq-item p {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  padding: 0 0 20px;
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: #1d1d1f;
  color: #f5f5f7;
  padding: clamp(56px, 8vw, 80px) 24px;
  text-align: center;
  border-radius: 0;
}
.cta-banner h2 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cta-banner p {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #86868b;
  margin-bottom: 28px;
}
.cta-banner a {
  display: inline-block;
  padding: 12px 36px;
  background: #0071e3;
  color: #fff;
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.25,1,.5,1);
}
.cta-banner a:hover {
  background: #0077ed;
  transform: scale(1.02);
}

/* ─── Internal Links (City cross-links) ─── */
.internal-links {
  background: #f5f5f7;
  padding: 56px 24px;
}
.internal-links .container {
  max-width: 860px;
  margin: 0 auto;
}
.internal-links h3 {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.internal-links a {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  color: #0071e3;
  margin-right: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.internal-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ─── Google Maps — hidden ─── */
.content-section iframe[src*="google.com/maps"] {
  display: none !important;
}
.content-section:has(iframe[src*="google.com/maps"]) {
  display: none !important;
}

/* ─── Review cards override ─── */
.feature-card[style*="text-align:left"] {
  background: #fbfbfd !important;
  border: 1px solid rgba(0,0,0,.04);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 734px) {
  .seo-hero {
    padding: 100px 20px 60px;
  }
  .seo-hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .seo-hero .cta-row a {
    padding: 11px 24px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }
  .trust-stats {
    gap: 20px;
  }
  .trust-stat .num {
    font-size: 1.5rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-card {
    padding: 24px 22px;
    border-radius: 16px;
  }
  .pricing-table {
    font-size: 0.85rem;
    border-radius: 14px;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 11px 14px;
  }
  .internal-links a {
    font-size: 0.85rem;
    margin-right: 16px;
  }
}

@media (max-width: 480px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .seo-hero h1 {
    font-size: 1.9rem;
  }
}
