/* ================================================================
   SEO Landing Pages — Data Poshish House
   Shared styles for all keyword-targeted pages
   ================================================================ */

/* ── Page Hero ──────────────────────────────────────────────────── */
.seo-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 100px 0 60px;
}

.seo-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  z-index: 0;
}

.seo-hero .container { position: relative; z-index: 1; }

.seo-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.seo-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

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

.seo-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.seo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-hero-badge {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  min-width: 180px;
}

.seo-hero-badge-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.seo-hero-badge-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Trust Bar ──────────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Section Base ───────────────────────────────────────────────── */
.seo-section {
  padding: 72px 0;
}

.seo-section-alt {
  background: var(--dark-section);
}

.seo-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.seo-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.seo-section h2 span { color: var(--gold); }

.seo-section .lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ── Features Grid ──────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Photo Grid ─────────────────────────────────────────────────── */
.seo-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.seo-photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.seo-photo-grid img:hover {
  transform: scale(1.03);
  border-color: rgba(201,168,76,0.5);
}

/* ── Two-column layout ──────────────────────────────────────────── */
.seo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seo-two-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.seo-two-col .text-col h2 {
  margin-bottom: 16px;
}

.seo-two-col .text-col p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.seo-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.seo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.seo-check-list li:last-child { border-bottom: none; }

.seo-check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Pricing Teaser ─────────────────────────────────────────────── */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.price-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.price-card.featured {
  border-color: rgba(201,168,76,0.6);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
}

.price-card-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-card-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 24px;
}

.price-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 36px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(201,168,76,0.4); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--dark-card);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  user-select: none;
}

.faq-q .faq-icon {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  background: var(--dark-section);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 16px 22px 20px;
}

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a0a14 0%, #141220 50%, #0a0a14 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner h2 span { color: var(--gold); }

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.cta-banner .cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Related Pages ──────────────────────────────────────────────── */
.related-pages {
  padding: 56px 0;
  background: var(--dark-section);
}

.related-pages h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.related-card {
  display: block;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.related-card:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.related-card .related-icon {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: block;
}

/* ── Nav override for SEO pages ─────────────────────────────────── */
.seo-nav-logo-link { text-decoration: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .seo-hero-badge { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .seo-photo-grid { grid-template-columns: 1fr 1fr; }
  .price-cards { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .seo-two-col { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  .seo-hero { padding: 90px 0 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .seo-photo-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
