/* Claude Code Deep Dive Page */

.cc-deep-dive-page {
  padding: 60px 24px 80px;
  direction: rtl;
}

.cc-deep-dive-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Hero ─────────────────────────────────────── */

.cc-hero {
  text-align: center;
  margin-bottom: 64px;
}

.cc-hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary-color);
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.cc-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.cc-hero-title-en {
  display: block;
  color: var(--primary-color);
  font-family: "Open Sans", sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cc-hero-title-he {
  display: block;
  color: #1d1d1f;
  font-size: 42px;
  font-weight: 600;
}

.cc-hero-sub {
  font-size: 20px;
  color: #424242;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

/* ── Sections ─────────────────────────────────── */

.cc-section {
  margin-bottom: 56px;
}

.cc-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.cc-why p {
  font-size: 17px;
  color: #424242;
  line-height: 1.7;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

/* ── Sessions Grid ────────────────────────────── */

.cc-sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cc-session-card {
  background: #fafbfc;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cc-session-card:hover {
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: 0 2px 12px rgba(0, 113, 227, 0.08);
}

.cc-session-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  opacity: 0.6;
}

.cc-session-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
  font-family: "Open Sans", sans-serif;
}

.cc-session-card p {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

/* ── Stats Bar ────────────────────────────────── */

.cc-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 36px 0;
  margin-bottom: 56px;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
}

.cc-stat {
  text-align: center;
}

.cc-stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Open Sans", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.cc-stat-label {
  font-size: 14px;
  color: #6e6e73;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

/* ── CTA ──────────────────────────────────────── */

.cc-cta {
  text-align: center;
}

.cc-cta p {
  font-size: 18px;
  color: #424242;
  line-height: 1.55;
  margin-bottom: 28px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

.cc-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Tablet ────────────────────────────────────── */

@media (max-width: 1024px) {
  .cc-hero-title-en {
    font-size: 44px;
  }

  .cc-hero-title-he {
    font-size: 34px;
  }

  .cc-hero-sub {
    font-size: 18px;
  }

  .cc-section h2 {
    font-size: 26px;
  }
}

/* ── Phone ─────────────────────────────────────── */

@media (max-width: 767px) {
  .cc-deep-dive-page {
    padding: 40px 16px 60px;
  }

  .cc-hero-title-en {
    font-size: 34px;
  }

  .cc-hero-title-he {
    font-size: 26px;
  }

  .cc-hero-sub {
    font-size: 16px;
  }

  .cc-section h2 {
    font-size: 22px;
  }

  .cc-sessions-grid {
    grid-template-columns: 1fr;
  }

  .cc-stats-bar {
    gap: 24px;
  }

  .cc-stat-num {
    font-size: 28px;
  }

  .cc-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
