/* Blog editorial surface */
.czc-blog-body {
  font-family: var(--font, 'Satoshi', sans-serif);
  background: var(--bg, #FAF8F5);
  color: var(--ink, #1A1A1A);
  line-height: 1.7;
  overflow-x: hidden;
}

.czc-blog-body *,
.czc-blog-body *::before,
.czc-blog-body *::after {
  box-sizing: border-box;
}

.czc-blog-hero {
  background: var(--bg-alt, #F2EDE6);
  border-bottom: 1px solid var(--border, rgba(0,0,0,.10));
  padding: 78px 40px 64px;
}

.czc-blog-hero-inner,
.czc-blog-main,
.czc-single-main {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.czc-blog-kicker,
.czc-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-lt, #F0DDD0);
  color: var(--accent, #C8622A);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.czc-blog-kicker::before,
.czc-section-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.czc-blog-hero h1,
.czc-single-header h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin: 0 0 22px;
}

.czc-blog-hero h1 em,
.czc-single-header h1 em {
  color: var(--accent, #C8622A);
  font-style: normal;
}

.czc-blog-hero p,
.czc-single-lead {
  max-width: 680px;
  color: var(--ink-soft, #5C5C5C);
  font-size: 18px;
  line-height: 1.75;
}

.czc-blog-main {
  padding: 56px 40px 76px;
}

.czc-blog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.czc-blog-toolbar h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0;
}

.czc-blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.czc-blog-cats a,
.czc-post-tags a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  background: #fff;
  color: var(--ink-soft, #5C5C5C);
  border-radius: 999px;
  padding: 8px 13px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color .18s, border-color .18s, background .18s;
}

.czc-blog-cats a:hover,
.czc-post-tags a:hover {
  background: var(--accent-lt, #F0DDD0);
  border-color: rgba(200,98,42,.28);
  color: var(--accent, #C8622A);
}

.czc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.czc-post-card {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.czc-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,98,42,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.czc-post-card-media {
  display: flex;
  min-height: 176px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  background:
    radial-gradient(circle at 85% 10%, rgba(200,98,42,.22), transparent 38%),
    linear-gradient(135deg, #15171D, #2B221D);
  color: #fff;
  text-decoration: none;
}

.czc-post-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: -18px;
}

.czc-post-card-media span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.czc-post-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.czc-post-meta,
.czc-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-soft, #5C5C5C);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.czc-post-card h2 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.025em;
  margin: 0 0 12px;
}

.czc-post-card h2 a {
  color: var(--ink, #1A1A1A);
  text-decoration: none;
}

.czc-post-card p {
  color: var(--ink-soft, #5C5C5C);
  font-size: 15px;
  margin: 0 0 22px;
}

.czc-read-more {
  color: var(--accent, #C8622A);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  margin-top: auto;
}

.czc-empty-state,
.czc-blog-cta,
.czc-single-cta {
  background: var(--bg-dark, #0F1117);
  color: #fff;
  border-radius: 22px;
  padding: 38px;
  margin-top: 42px;
  position: relative;
  overflow: hidden;
}

.czc-empty-state::after,
.czc-blog-cta::after,
.czc-single-cta::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -150px;
  background: radial-gradient(circle, rgba(200,98,42,.28), transparent 66%);
}

.czc-blog-cta h2,
.czc-single-cta h2,
.czc-empty-state h2 {
  max-width: 620px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: #fff;
}

.czc-blog-cta p,
.czc-single-cta p,
.czc-empty-state p {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  margin: 0 0 24px;
}

.czc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #C8622A);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.czc-pagination {
  margin-top: 38px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.czc-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  color: var(--ink, #1A1A1A);
  text-decoration: none;
  font-weight: 800;
}

.czc-pagination .current {
  background: var(--accent, #C8622A);
  color: #fff;
  border-color: var(--accent, #C8622A);
}

.czc-single-header {
  background: var(--bg-alt, #F2EDE6);
  border-bottom: 1px solid var(--border, rgba(0,0,0,.10));
  padding: 52px 40px 46px;
}

.czc-breadcrumb {
  max-width: 1120px;
  margin: 0 auto 34px;
  color: var(--ink-soft, #5C5C5C);
  font-size: 13px;
}

.czc-breadcrumb a {
  color: var(--ink-soft, #5C5C5C);
  text-decoration: none;
}

.czc-breadcrumb a:hover {
  color: var(--accent, #C8622A);
}

.czc-single-main {
  padding: 52px 40px 76px;
}

.czc-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 64px;
  align-items: start;
}

.czc-single-layout > *,
.czc-case-detail-grid > * {
  min-width: 0;
}

.czc-featured-image {
  margin: 0 0 36px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(0,0,0,.10));
}

.czc-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.czc-post-content {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 22px;
  padding: 42px;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

.czc-post-content > *:first-child {
  margin-top: 0;
}

.czc-post-content p,
.czc-post-content li {
  color: #2E2E2E;
  font-size: 18px;
  line-height: 1.82;
  max-width: 100%;
}

.czc-post-content ul,
.czc-post-content ol {
  padding-left: 1.35em;
}

.czc-post-content table,
.czc-post-content pre,
.czc-post-content iframe {
  max-width: 100%;
}

.czc-post-content table {
  display: block;
  overflow-x: auto;
}

.czc-post-content h2,
.czc-post-content h3 {
  color: var(--ink, #1A1A1A);
  letter-spacing: -.025em;
  line-height: 1.16;
  margin: 1.55em 0 .55em;
}

.czc-post-content h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.czc-post-content h3 {
  font-size: 25px;
}

.czc-post-content a {
  color: var(--accent, #C8622A);
  font-weight: 700;
}

.czc-post-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-alt, #F2EDE6);
  border-left: 4px solid var(--accent, #C8622A);
  border-radius: 14px;
}

.czc-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.czc-faq-accordion {
  margin-top: 34px;
  border-top: 1px solid var(--border, rgba(0,0,0,.10));
}

.czc-faq-accordion details {
  border-bottom: 1px solid var(--border, rgba(0,0,0,.10));
  padding: 0;
}

.czc-faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink, #1A1A1A);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.02em;
  list-style: none;
}

.czc-faq-accordion summary::-webkit-details-marker {
  display: none;
}

.czc-faq-accordion summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--accent-lt, #F0DDD0);
  color: var(--accent, #C8622A);
  font-size: 22px;
  line-height: 1;
  transition: transform .18s, background .18s, color .18s;
}

.czc-faq-accordion details[open] summary::after {
  content: '-';
  background: var(--accent, #C8622A);
  color: #fff;
}

.czc-faq-answer {
  padding: 0 48px 22px 0;
}

.czc-faq-answer > *:first-child {
  margin-top: 0;
}

.czc-faq-answer p {
  margin-bottom: 0;
}

.czc-sidebar {
  position: sticky;
  top: 86px;
}

.czc-sidebar-box {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
}

.czc-sidebar-box h3 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}

.czc-sidebar-box p {
  color: var(--ink-soft, #5C5C5C);
  font-size: 14px;
  margin: 0 0 16px;
}

.czc-case-signal-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.czc-case-signal-list div {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border, rgba(0,0,0,.10));
}

.czc-case-signal-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.czc-case-signal-list dt {
  color: var(--accent, #C8622A);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.czc-case-signal-list dd {
  color: var(--ink, #1A1A1A);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.czc-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.czc-sidebar-links li + li {
  border-top: 1px solid var(--border, rgba(0,0,0,.10));
}

.czc-sidebar-links a {
  display: block;
  color: var(--ink, #1A1A1A);
  font-weight: 700;
  text-decoration: none;
  padding: 11px 0;
}

.czc-related {
  margin-top: 54px;
}

.czc-related h2 {
  font-size: 28px;
  letter-spacing: -.03em;
  margin: 0 0 22px;
}

/* Case study surface */
.czc-case-archive-hero,
.czc-case-single-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(200,98,42,.20), transparent 32%),
    linear-gradient(135deg, #111319, #1C1714);
  color: #fff;
  padding: 58px 40px 70px;
}

.czc-case-archive-hero .czc-breadcrumb,
.czc-case-single-hero .czc-breadcrumb,
.czc-case-archive-hero .czc-breadcrumb a,
.czc-case-single-hero .czc-breadcrumb a {
  color: rgba(255,255,255,.68);
}

.czc-case-archive-grid,
.czc-case-single-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 62px;
  align-items: center;
}

.czc-case-archive-hero h1,
.czc-case-single-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 22px;
}

.czc-case-archive-hero p,
.czc-case-single-hero p {
  max-width: 690px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.75;
}

.czc-case-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.czc-case-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 800;
}

.czc-case-proof-panel,
.czc-case-identity {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.czc-case-panel-label,
.czc-case-mini,
.czc-case-service {
  display: inline-flex;
  color: var(--accent, #C8622A);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.czc-case-proof-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.czc-case-proof-panel li {
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.czc-case-intro {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 22px;
  padding: 34px;
  margin-bottom: 34px;
}

.czc-case-intro h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 10px 0 0;
}

.czc-case-intro p {
  margin: 0;
  color: var(--ink-soft, #5C5C5C);
  font-size: 17px;
  line-height: 1.75;
}

.czc-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.czc-case-card {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 14px 38px rgba(0,0,0,.05);
}

.czc-case-card-top {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  text-decoration: none;
  background:
    radial-gradient(circle at 90% 18%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #14161D, #3A2318);
}

.czc-case-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
}

.czc-case-card-body {
  padding: 24px;
}

.czc-case-client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.czc-case-logo,
.czc-case-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  background: var(--bg-alt, #F2EDE6);
  border: 1px solid var(--border, rgba(0,0,0,.10));
}

.czc-case-logo-placeholder,
.czc-case-logo-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #C8622A);
  font-weight: 900;
}

.czc-case-client-row strong {
  display: block;
  line-height: 1.2;
}

.czc-case-client-row span {
  color: var(--ink-soft, #5C5C5C);
  font-size: 13px;
}

.czc-case-card h2 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}

.czc-case-card h2 a {
  color: var(--ink, #1A1A1A);
  text-decoration: none;
}

.czc-case-card p {
  color: var(--ink-soft, #5C5C5C);
  margin: 0 0 18px;
}

.czc-case-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.czc-case-card-facts span,
.czc-case-service-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-lt, #F0DDD0);
  color: var(--accent, #C8622A);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.czc-case-identity {
  text-align: center;
}

.czc-case-logo-large {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  object-fit: contain;
  background: #fff;
  margin: 0 auto 18px;
}

.czc-case-logo-empty {
  font-size: 32px;
}

.czc-case-identity span,
.czc-case-identity small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.czc-case-identity strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  margin: 8px 0;
}

.czc-case-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.czc-case-facts div,
.czc-case-metric {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 18px;
  padding: 20px;
}

.czc-case-facts span,
.czc-case-metric span {
  display: block;
  color: var(--accent, #C8622A);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.czc-case-facts strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.czc-case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
  align-items: start;
}

.czc-case-story {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.10));
  border-radius: 24px;
  overflow: hidden;
}

.czc-case-step {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: 34px;
  border-bottom: 1px solid var(--border, rgba(0,0,0,.10));
}

.czc-case-step:last-child {
  border-bottom: none;
}

.czc-case-step > span {
  color: rgba(200,98,42,.35);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
}

.czc-case-step h2 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}

.czc-case-step p,
.czc-case-metric p {
  color: #2E2E2E;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

.czc-case-metric {
  margin-top: 24px;
  border-left: 4px solid var(--accent, #C8622A);
}

.czc-case-extra-content {
  margin-top: 24px;
}

.czc-case-side {
  position: sticky;
  top: 86px;
}

@media (max-width: 980px) {
  .czc-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .czc-single-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .czc-sidebar {
    position: static;
  }

  .czc-case-archive-grid,
  .czc-case-single-grid,
  .czc-case-intro,
  .czc-case-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .czc-case-grid,
  .czc-case-facts {
    grid-template-columns: 1fr 1fr;
  }

  .czc-case-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .czc-blog-hero,
  .czc-single-header {
    padding: 46px 20px 38px;
  }

  .czc-blog-main,
  .czc-single-main {
    padding: 42px 20px 56px;
  }

  .czc-blog-toolbar {
    display: block;
  }

  .czc-blog-cats {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .czc-post-grid {
    grid-template-columns: 1fr;
  }

  .czc-post-content {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .czc-post-content ul,
  .czc-post-content ol {
    padding-left: 1.15em;
  }

  .czc-post-content p,
  .czc-post-content li {
    font-size: 16px;
    line-height: 1.76;
  }

  .czc-faq-accordion summary {
    font-size: 18px;
    padding: 18px 0;
  }

  .czc-faq-answer {
    padding-right: 0;
  }

  .czc-empty-state,
  .czc-blog-cta,
  .czc-single-cta {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .czc-case-archive-hero,
  .czc-case-single-hero {
    padding: 42px 20px 48px;
  }

  .czc-case-grid,
  .czc-case-facts {
    grid-template-columns: 1fr;
  }

  .czc-case-intro,
  .czc-case-step {
    padding: 24px;
  }

  .czc-case-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
