:root {
  --aicc-primary: #059669;
  --aicc-primary-dark: #064e3b;
  --aicc-indigo: #4338ca;
  --aicc-dark: #0f172a;
  --aicc-slate: #334155;
  --aicc-bg: #f8fafc;
  --aicc-border: #e2e8f0;
  --aicc-text-main: #0f172a;
  --aicc-text-muted: #64748b;
}

body {
  background-color: var(--aicc-bg) !important;
  font-family: "Celias", "Inter", system-ui, -apple-system, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.aicc-section-title,
.aicc-hero-title,
.aicc-cta-box h2,
.aicc-cta-box h3 {
  font-family: "Celias", "Inter", system-ui, sans-serif !important;
}

/* Hero Section */
.aicc-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #064e3b 85%, #059669 100%);
  color: #ffffff;
  padding: 4.5rem 1.5rem 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aicc-hero-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.aicc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.aicc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.aicc-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
}

.aicc-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: none;
}

.aicc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.aicc-hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.aicc-hero-title span {
  background: linear-gradient(135deg, #a7f3d0 0%, #34d399 50%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aicc-hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #e2e8f0;
  font-weight: 300;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.aicc-hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.aicc-btn-primary {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.35);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aicc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.45);
  color: #ffffff;
  text-decoration: none;
}

.aicc-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.aicc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}

/* Main Container */
.aicc-main-container {
  max-width: 1140px;
  margin: -2.75rem auto 4rem;
  padding: 0 1.25rem;
  position: relative;
  z-index: 10;
}

/* 4-Pillar Grid */
.aicc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .aicc-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.aicc-pillar-card {
  background: #ffffff;
  border: 1px solid var(--aicc-border);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aicc-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  border-color: #a7f3d0;
}

.aicc-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.aicc-pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--aicc-text-main);
  margin-bottom: 8px;
}

.aicc-pillar-card p {
  font-size: 0.95rem;
  color: var(--aicc-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Content Card */
.aicc-card {
  background: #ffffff;
  border: 1px solid var(--aicc-border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.aicc-badge-emerald {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 6px;
  background: #d1fae5;
  color: #065f46;
  margin-bottom: 10px;
}

.aicc-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--aicc-text-main);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.aicc-section-desc {
  font-size: 1.05rem;
  color: var(--aicc-text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Step by Step Timeline */
.aicc-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .aicc-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .aicc-timeline {
    grid-template-columns: 1fr;
  }
}

.aicc-step-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.aicc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #059669;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.aicc-step-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--aicc-text-main);
  margin-bottom: 6px;
}

.aicc-step-box p {
  font-size: 0.88rem;
  color: var(--aicc-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Checklist Grid */
.aicc-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 860px) {
  .aicc-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .aicc-check-grid {
    grid-template-columns: 1fr;
  }
}

.aicc-check-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aicc-check-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.98rem;
}

.aicc-check-item p {
  font-size: 0.86rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* FAQ Accordion */
.aicc-faq-card {
  border: 1px solid var(--aicc-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.aicc-faq-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--aicc-text-main);
  background: #ffffff;
  user-select: none;
}

.aicc-faq-header:hover {
  background: #f8fafc;
}

.aicc-faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}

/* Related Tools Cluster Grid */
.aicc-cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 860px) {
  .aicc-cluster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aicc-cluster-link-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--aicc-text-main);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.92rem;
}

.aicc-cluster-link-card:hover {
  background: #ffffff;
  border-color: #059669;
  color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.1);
  text-decoration: none;
}

/* Bottom CTA */
.aicc-cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #064e3b 85%, #059669 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #ffffff;
  margin-top: 3.5rem;
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.25);
}

.aicc-cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.aicc-cta-box p {
  font-size: 1.1rem;
  color: #a7f3d0;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 300;
}
