/* Blog & Service Page Styles */

/* Service Page Hero */
.service-page-hero {
  padding: 120px 0 72px;
  background: #0a0a0a;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-page-hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.service-page-hero__label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #6366f1; margin-bottom: 1rem;
}
.service-page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fff;
  margin-bottom: 1.25rem; line-height: 1.15;
}
.service-page-hero__title span { color: #6366f1; }
.service-page-hero__sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.65);
  max-width: 600px; margin: 0 auto 2.5rem;
}

/* Keyword Cards Grid */
.service-keywords {
  padding: 80px 0;
  background: #f8f9fa;
}
.service-keywords__intro {
  max-width: 680px; margin-bottom: 0;
}
.service-keywords__intro p {
  font-size: 1.05rem; color: #555; line-height: 1.7;
}
.service-keywords__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-keyword-card {
  background: #fff; border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid #6366f1;
}
.service-keyword-card h2 {
  font-size: 1.05rem; font-weight: 700;
  color: #111; margin-bottom: 0.65rem; line-height: 1.35;
}
.service-keyword-card p {
  font-size: 0.9rem; color: #555; line-height: 1.6; margin: 0;
}

/* Service Content Section */
.service-content {
  padding: 80px 0;
  background: #fff;
}
.service-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.service-content h3 {
  font-size: 1.5rem; font-weight: 700;
  color: #111; margin-bottom: 1rem;
}
.service-content p {
  font-size: 1rem; color: #444; line-height: 1.75; margin-bottom: 1rem;
}
.service-content ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
}
.service-content ul li {
  font-size: 0.95rem; color: #333; padding: 0.5rem 0;
  border-bottom: 1px solid #eee; display: flex; align-items: flex-start; gap: 0.5rem;
}
.service-content ul li::before {
  content: "✓"; color: #6366f1; font-weight: 700; flex-shrink: 0;
}

/* Internal Links Section */
.internal-links {
  padding: 64px 0;
  background: #0a0a0a;
}
.internal-links__title {
  font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 1.5rem;
}
.internal-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.internal-link-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  text-decoration: none; transition: background 0.2s;
  display: block;
}
.internal-link-card:hover { background: rgba(99,102,241,0.15); }
.internal-link-card__label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #6366f1; display: block; margin-bottom: 0.4rem;
}
.internal-link-card__title {
  font-size: 0.95rem; font-weight: 600;
  color: #fff; line-height: 1.35;
}

/* Blog Index */
.blog-hero {
  padding: 120px 0 64px;
  background: #0a0a0a; text-align: center; position: relative;
}
.blog-hero__glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.blog-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fff; margin-bottom: 1rem;
}
.blog-hero__sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto;
}

.blog-index { padding: 80px 0; background: #f8f9fa; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.blog-card {
  background: #fff; border-radius: 14px;
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column; text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.blog-card__img {
  width: 100%; height: 180px;
  display: flex; align-items: center; justify-content: center;
  background: #F4F4F8;
}
.blog-card__img img {
  max-width: 55%; max-height: 55%;
  width: auto; height: auto;
  object-fit: contain;
}
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__category {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #6366f1; margin-bottom: 0.6rem;
}
.blog-card__title {
  font-size: 1.1rem; font-weight: 700; color: #111;
  margin-bottom: 0.75rem; line-height: 1.4;
}
.blog-card__excerpt {
  font-size: 0.875rem; color: #555;
  line-height: 1.6; flex: 1; margin-bottom: 1.25rem;
}
.blog-card__cta {
  font-size: 0.85rem; font-weight: 600;
  color: #6366f1; display: inline-flex; align-items: center; gap: 0.35rem;
}

/* Article / Blog Post */
.article-hero {
  padding: 120px 0 64px;
  background: #0a0a0a; text-align: center; position: relative;
}
.article-hero__glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.article-hero__category {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #6366f1; margin-bottom: 1rem;
}
.article-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; color: #fff;
  max-width: 800px; margin: 0 auto 1.25rem; line-height: 1.2;
}
.article-hero__meta { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.article-body { padding: 72px 0; background: #fff; }
.article-body .container { max-width: 760px; }
.article-body h2 {
  font-size: 1.5rem; font-weight: 700; color: #111;
  margin: 2.75rem 0 1rem; line-height: 1.3;
}
.article-body h3 {
  font-size: 1.15rem; font-weight: 700; color: #222;
  margin: 2rem 0 0.75rem;
}
.article-body p {
  font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem; margin-bottom: 1.25rem;
}
.article-body li {
  font-size: 1.05rem; line-height: 1.7; color: #333; margin-bottom: 0.5rem;
}
.article-body a { color: #6366f1; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: #4f46e5; }

.article-callout {
  background: #f0f0ff; border-left: 4px solid #6366f1;
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 2rem 0;
}
.article-callout p { margin: 0; font-weight: 500; color: #333; font-size: 1rem; }

.article-cta {
  background: #0a0a0a; border-radius: 16px;
  padding: 3rem; text-align: center; margin-top: 3rem;
}
.article-cta h3 {
  font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem;
}
.article-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }

/* Related posts */
.related-posts { padding: 72px 0; background: #f8f9fa; }
.related-posts__title {
  font-size: 1.5rem; font-weight: 700; color: #111; margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .service-content__inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .service-keywords__grid { grid-template-columns: 1fr; }
  .internal-links__grid { grid-template-columns: 1fr 1fr; }
  .article-cta { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .internal-links__grid { grid-template-columns: 1fr; }
}
