/* ════════════════════════════════════
   SEO SERVICE PAGES - PREMIUM UI
════════════════════════════════════ */

.seo-page { padding-top: 60px; padding-bottom: 60px; }
.seo-hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.1), var(--ink));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.seo-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.seo-hero h1 { font-family: var(--ff-d); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.seo-hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 800px; line-height: 1.8; }

.seo-section { padding: 80px 0; background: var(--paper); }
.seo-section.alt { background: var(--cream); }
.seo-section h2 { font-family: var(--ff-d); font-size: 2.2rem; font-weight: 800; color: var(--ink); margin-bottom: 30px; letter-spacing: -1px; }
.seo-section h3 { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-top: 30px; margin-bottom: 15px; }
.seo-section p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }

/* Grid Cards */
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.seo-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.seo-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); border-color: var(--gold); }
.seo-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; display: block; }

/* Process Timeline */
.seo-process { border-left: 2px solid var(--gold); padding-left: 30px; margin-top: 40px; }
.seo-process-item { position: relative; margin-bottom: 40px; }
.seo-process-item::before {
  content: ''; position: absolute; left: -39px; top: 0; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gold); border: 4px solid var(--paper);
}

/* FAQs */
.seo-faq { margin-top: 40px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
.faq-question { padding: 20px; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 20px 20px; display: none; color: var(--muted); line-height: 1.7; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--gold); }

/* Buttons & CTA */
.sticky-contact { position: fixed; bottom: 30px; left: 30px; z-index: 999; display: flex; gap: 15px; }
.btn-whatsapp { background: #25D366; color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: transform 0.3s; }
.btn-whatsapp:hover { transform: scale(1.1); color: #fff; }
