/* ══ PAGE CONTENT (Service Pages & Blog) ══════════════════════ */

.breadcrumb-nav {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  margin-top: 70px;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
}
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before {
  content: "/";
  color: #999;
  margin: 0 8px;
}
.breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: #F5C800; }
.breadcrumb [aria-current="page"] {
  color: #0A0A0A;
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .badge {
  display: inline-block;
  background: rgba(245,200,0,0.15);
  color: #F5C800;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 800px;
}
.page-hero .lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.page-hero .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-content {
  background: #fff;
  padding: 60px 0 80px;
}
.container.narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-content section {
  margin-bottom: 56px;
}
.page-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
}
.page-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}
.page-content strong { color: #0A0A0A; }
.page-content a:not(.btn):not(.related-card) {
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-color: #F5C800;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 500;
  transition: color 0.15s;
}
.page-content a:not(.btn):not(.related-card):hover { color: #F5C800; }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.info-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 20px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.info-card:hover {
  transform: translateY(-2px);
  border-color: #F5C800;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.info-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
}
.info-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* PROCESS LIST */
.process-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.process-list li {
  position: relative;
  counter-increment: step;
  padding: 16px 18px 16px 64px;
  margin-bottom: 12px;
  background: #fafafa;
  border-left: 3px solid #F5C800;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #333;
}
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: #0A0A0A;
  color: #F5C800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.process-list strong { color: #0A0A0A; }

/* BENEFIT LIST */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.benefit-list li {
  position: relative;
  padding: 12px 18px 12px 38px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 22px;
  height: 22px;
  background: #F5C800;
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
}

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, #F5C800 0%, #F5D400 100%);
  border-radius: 16px;
  padding: 42px 36px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 {
  color: #0A0A0A;
  margin-bottom: 10px;
}
.cta-block p {
  color: #2a2a2a;
  margin-bottom: 22px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .hero-btns { justify-content: center; }
.cta-block .btn-primary {
  background: #0A0A0A;
  color: #F5C800;
  border-color: #0A0A0A;
}
.cta-block .btn-primary:hover {
  background: #1a1a1a;
}
.cta-block .btn-outline {
  border-color: #0A0A0A;
  color: #0A0A0A;
}
.cta-block .btn-outline:hover {
  background: #0A0A0A;
  color: #F5C800;
}

/* FAQ */
.faq-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: #F5C800; }
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 0.98rem;
  color: #0A0A0A;
  padding: 4px 0;
  outline: none;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: #F5C800;
  transition: transform 0.18s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.94rem;
  color: #555;
  line-height: 1.7;
}

/* RELATED CARDS */
.related-block { border-top: 1px solid #eee; padding-top: 40px; }
.related-card {
  display: block;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 20px;
  text-decoration: none;
  color: #0A0A0A;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: #F5C800;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.related-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0A0A0A;
}
.related-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* BLOG META */
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.blog-meta time { color: #F5C800; }
.blog-meta .read-time { color: rgba(255,255,255,0.5); }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: #F5C800;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.blog-card .tag {
  display: inline-block;
  background: rgba(245,200,0,0.15);
  color: #946800;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #0A0A0A;
}
.blog-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
}
.blog-card .read-more {
  margin-top: auto;
  font-size: 0.85rem;
  color: #F5C800;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 700px) {
  .page-hero { padding: 60px 0 70px; }
  .page-content { padding: 40px 0 60px; }
  .cta-block { padding: 32px 22px; }
  .process-list li { padding: 14px 16px 14px 56px; font-size: 0.92rem; }
  .breadcrumb-nav { margin-top: 60px; }
}
