/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.page-hero-sm {
  padding: 130px 24px 60px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 16px 0 20px;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb span { color: var(--border); }

/* ========== NAV ACTIVE ========== */
.nav-active {
  color: var(--text) !important;
  background: rgba(255,255,255,0.06) !important;
}
.nav-active-cta {
  box-shadow: 0 0 0 2px var(--purple-light);
}

/* ========== SERVICES DETAIL ========== */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
}
.service-detail.reverse {
  direction: rtl;
}
.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: rgba(103,61,230,0.12);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--purple-light);
}

.service-detail-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.service-detail-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-detail-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.service-detail-content strong { color: var(--text); }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-tags span {
  background: rgba(103,61,230,0.1);
  border: 1px solid var(--border-purple);
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.service-divider {
  height: 1px;
  background: var(--border);
}

/* ========== STATS ========== */
.stats-section { background: var(--bg-2); padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
}
.stat-big {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== BOOKING ========== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.booking-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.booking-info > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-muted); }

.booking-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(103,61,230,0.08);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.guarantee-icon { font-size: 2rem; }
.guarantee-title { font-weight: 700; margin-bottom: 4px; }
.guarantee-desc { font-size: 13px; color: var(--text-muted); }

/* ========== LEGAL ========== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.legal-content ul li {
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.legal-content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-weight: 700;
}
.legal-content strong { color: var(--text); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.legal-table th {
  background: var(--surface);
  color: var(--purple-light);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.legal-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-icon { width: 60px; height: 60px; }
  .service-detail-icon svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
