/* ============================================================================
   Jasa Cloud Hosting - Modern Tech Design
   Purple (#8b5cf6) + Cyan (#06b6d4) + Slate (#1e293b)
   ============================================================================ */

:root {
  --ch-primary: #8b5cf6;
  --ch-primary-light: #a78bfa;
  --ch-primary-dark: #7c3aed;
  --ch-accent: #06b6d4;
  --ch-accent-light: #22d3ee;
  --ch-accent-dark: #0891b2;
  --ch-dark: #0f172a;
  --ch-darker: #020617;
  --ch-slate: #1e293b;
  --ch-text-light: #cbd5e1;
  --ch-text-lighter: #e2e8f0;
  --ch-border: rgba(148, 163, 184, 0.1);
  --ch-border-light: rgba(148, 163, 184, 0.15);
}

.ch-single {
  background: linear-gradient(135deg, var(--ch-dark) 0%, var(--ch-slate) 100%);
  color: var(--ch-text-light);
  overflow: hidden;
}

/* UTILITY CLASSES */
.ch-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.ch-btn--primary {
  background: linear-gradient(135deg, var(--ch-primary) 0%, var(--ch-accent) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.ch-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.ch-btn--ghost {
  background: transparent;
  color: var(--ch-accent);
  border: 2px solid var(--ch-accent);
}

.ch-btn--ghost:hover {
  background: rgba(6, 182, 212, 0.1);
}

.ch-btn--large {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============================================================================
   BREADCRUMB
   ============================================================================ */

.ch-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
  pointer-events: auto !important;
}

.ch-breadcrumb a {
  color: var(--ch-accent-light);
  text-decoration: none;
  transition: color 0.2s;
  pointer-events: auto !important;
  cursor: pointer;
}

.ch-breadcrumb a:hover {
  color: var(--ch-accent);
  text-decoration: underline;
}

.ch-breadcrumb span {
  color: var(--ch-text-light);
  opacity: 0.5;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.ch-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  margin-top: -100px;
  /* keep hero layer underneath fixed header/chips on scroll */
  z-index: 0;
}

/* explicitly ensure the hero's background/shapes never float above the nav */
.ch-hero__bg {
  z-index: -1;
}

/* header and chips already have high z-index but reinforce here */
.jz-header,
.chips {
  position: relative;
  z-index: 2000;
}

.ch-hero .ch-shell {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.ch-hero .ch-breadcrumb,
.ch-hero .ch-breadcrumb * {
  pointer-events: auto !important;
}

.ch-hero__bg {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: calc(100% + 140px);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.ch-hero__bg,
.ch-hero__bg * {
  pointer-events: none !important;
}

.ch-hero__shapes {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ch-shape {
  position: absolute;
  opacity: 0.08;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--ch-primary), var(--ch-accent));
}

.ch-shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
}

.ch-shape--2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: 10%;
  background: radial-gradient(circle at 30% 30%, var(--ch-accent), var(--ch-primary));
}

.ch-shape--3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 5%;
  background: radial-gradient(circle at 30% 30%, var(--ch-primary-light), var(--ch-accent-light));
  opacity: 0.06;
}

.ch-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.ch-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ch-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--ch-primary);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ch-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ch-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--ch-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ch-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ch-text-lighter);
  margin: 0;
  max-width: 540px;
}

.ch-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ch-hero__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ch-border-light);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
}

.ch-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Metrics Strip */
.ch-metrics-strip {
  background: rgba(139, 92, 246, 0.05);
  border-top: 1px solid var(--ch-border);
  border-bottom: 1px solid var(--ch-border);
  margin-top: 40px;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.ch-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.ch-metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ch-metric__icon {
  font-size: 28px;
}

.ch-metric__stat {
  font-weight: 700;
  font-size: 20px;
  color: var(--ch-text-lighter);
}

.ch-metric__label {
  font-size: 13px;
  color: var(--ch-text-light);
  opacity: 0.8;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.ch-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--ch-border);
}

.ch-section--highlights {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.ch-section--packages {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.ch-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1200px) {
  .ch-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ch-packages-grid {
    grid-template-columns: 1fr;
  }
}

.ch-package-card {
  position: relative;
  border: 1px solid var(--ch-border-light);
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.06);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ch-package-card.is-featured {
  border-color: var(--ch-accent);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.35);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(6, 182, 212, 0.10));
}

.ch-package-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--ch-accent);
  color: var(--ch-accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.ch-package-title {
  margin: 0;
  font-size: 22px;
  color: var(--ch-text-lighter);
}

.ch-package-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ch-package-price-old {
  color: var(--ch-text-light);
  opacity: 0.7;
  text-decoration: line-through;
  font-size: 14px;
}

.ch-package-price {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ch-text-lighter);
}

.ch-package-price.is-custom {
  font-size: 20px;
  color: var(--ch-accent-light);
}

.ch-package-desc {
  margin: 0;
  color: var(--ch-text-light);
  line-height: 1.7;
}

.ch-package-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ch-package-features li {
  position: relative;
  padding-left: 24px;
  color: var(--ch-text-light);
  line-height: 1.6;
}

.ch-package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ch-accent);
  font-weight: 700;
}

.ch-section--alt {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.ch-section--kpis {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.ch-section--cta {
  background: linear-gradient(135deg, var(--ch-primary) 0%, var(--ch-accent) 100%);
}

.ch-section__head {
  text-align: center;
  margin-bottom: 60px;
}

.ch-section__head h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--ch-accent-light), var(--ch-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ch-section--cta .ch-section__head h2 {
  color: white;
  -webkit-text-fill-color: unset;
  background: none;
}

.ch-section__head p {
  font-size: 16px;
  color: var(--ch-text-light);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ch-section--cta .ch-section__head p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   HIGHLIGHTS GRID
   ============================================================================ */

.ch-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.ch-highlight-card {
  padding: 32px;
  border: 1px solid var(--ch-border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-highlight-card:hover {
  border-color: var(--ch-accent);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.08));
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.1);
}

.ch-highlight__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ch-highlight__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ch-text-lighter);
}

.ch-highlight__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ch-text-light);
  margin: 0;
}

/* ============================================================================
   FEATURES GRID
   ============================================================================ */

.ch-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.ch-feature-item {
  padding: 24px;
  border: 1px solid var(--ch-border);
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.04);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-feature-item:hover {
  border-color: var(--ch-accent);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.ch-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--ch-accent);
  margin-bottom: 12px;
}

.ch-feature__name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ch-text-lighter);
}

.ch-feature__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ch-text-light);
  margin: 0;
}

/* ============================================================================
   KPI CARDS
   ============================================================================ */

.ch-kpis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ch-kpi-card {
  padding: 40px 24px;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-kpi-card:hover {
  border-color: var(--ch-accent);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.2);
}

.ch-kpi__value {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ch-accent-light), var(--ch-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.ch-kpi__suffix {
  font-size: 14px;
  color: var(--ch-text-light);
  margin-bottom: 8px;
  opacity: 0.8;
}

.ch-kpi__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ch-text-lighter);
  margin: 0;
}

/* ============================================================================
   TIMELINE
   ============================================================================ */

.ch-timeline {
  position: relative;
  padding: 40px 0;
}

.ch-timeline::before {
  content: '';
  position: absolute;
  left: calc(50% - 2px);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ch-primary), var(--ch-accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  animation: timelineGrow 1s ease-out 0.3s forwards;
}

@keyframes timelineGrow {
  to { transform: scaleY(1); }
}

.ch-timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
  position: relative;
}

.ch-timeline__item:nth-child(even) {
  grid-template-columns: 1fr auto 1fr;
}

.ch-timeline__item:nth-child(even) .ch-timeline__content {
  text-align: right;
}

.ch-timeline__marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ch-primary), var(--ch-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 24px;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--ch-dark);
}

.ch-timeline__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}

.ch-timeline__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ch-text-lighter);
  margin: 0 0 8px;
}

.ch-timeline__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ch-text-light);
  margin: 0 0 12px;
}

.ch-timeline__time {
  font-size: 13px;
  color: var(--ch-accent-light);
  font-weight: 600;
}

/* ============================================================================
   USE CASES GRID
   ============================================================================ */

.ch-usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ch-usecase-card {
  padding: 28px;
  border: 1px solid var(--ch-border-light);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.04), rgba(139, 92, 246, 0.04));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-usecase-card:hover {
  border-color: var(--ch-primary);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.08));
  transform: translateY(-4px);
}

.ch-usecase__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ch-text-lighter);
}

.ch-usecase__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ch-text-light);
  margin: 0 0 16px;
}

.ch-usecase__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ch-accent-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}

.ch-usecase__link:hover {
  color: var(--ch-accent);
  gap: 8px;
}

/* ============================================================================
   CONTENT SECTION
   ============================================================================ */

.ch-section--content {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.02), rgba(139, 92, 246, 0.02));
}

.ch-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.ch-content h2:not(:first-of-type) {
  display: none;
}

.ch-content p {
  margin: 0 0 20px;
  color: var(--ch-text-light);
}

.ch-content p:last-child {
  margin-bottom: 0;
}

.ch-content a {
  color: var(--ch-accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

.ch-content a:hover {
  color: var(--ch-accent);
  text-decoration: underline;
}

.ch-content strong {
  color: var(--ch-text-lighter);
  font-weight: 700;
}

.ch-content em {
  color: var(--ch-accent-light);
}

.ch-content ul,
.ch-content ol {
  margin: 24px 0;
  padding: 0;
  color: var(--ch-text-light);
  list-style: none;
}

.ch-content ul {
  display: grid;
  gap: 10px;
}

.ch-content ul li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 44px;
  border: 1px solid var(--ch-border-light);
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.05);
}

.ch-content ul li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--ch-primary), var(--ch-accent));
  box-shadow: inset 0 0 0 4px var(--ch-dark);
}

.ch-content ol {
  counter-reset: ch-ol;
  display: grid;
  gap: 10px;
}

.ch-content ol li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 50px;
  border: 1px solid var(--ch-border-light);
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.07);
}

.ch-content ol li::before {
  counter-increment: ch-ol;
  content: counter(ch-ol);
  position: absolute;
  left: 12px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--ch-primary), var(--ch-accent));
  color: var(--ch-text-lighter);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-content li {
  margin-bottom: 0;
}

.ch-content blockquote {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid var(--ch-border-light);
  border-left: 4px solid var(--ch-accent);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(139, 92, 246, 0.08));
  color: var(--ch-text-lighter);
  font-size: 17px;
  line-height: 1.75;
}

.ch-content blockquote p {
  margin: 0;
  color: inherit;
}

.ch-content blockquote cite {
  display: block;
  margin-top: 10px;
  color: var(--ch-accent-light);
  font-size: 14px;
  font-style: normal;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.ch-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ch-faq__item {
  border: 1px solid var(--ch-border-light);
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.05);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-faq__item:hover {
  border-color: var(--ch-accent);
  background: rgba(139, 92, 246, 0.08);
}

.ch-faq__item[open] {
  border-color: var(--ch-accent);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));
}

.ch-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ch-text-lighter);
  user-select: none;
  list-style: none;
}

.ch-faq__summary::-webkit-details-marker {
  display: none;
}

.ch-faq__question {
  flex: 1;
  font-size: 16px;
  text-align: left;
}

.ch-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ch-primary), var(--ch-accent));
  color: white;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-faq__item[open] .ch-faq__toggle {
  transform: rotate(45deg);
}

.ch-faq__answer {
  padding: 0 24px 24px;
  color: var(--ch-text-light);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--ch-border);
  max-height: 400px;
  overflow: hidden;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 400px;
  }
}

.ch-faq__answer a {
  color: var(--ch-accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

.ch-faq__answer a:hover {
  color: var(--ch-accent);
  text-decoration: underline;
}

/* ============================================================================
   CTA BLOCK
   ============================================================================ */

.ch-cta-block {
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-section--cta .ch-cta-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ch-cta__title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
  color: white;
}

.ch-section--cta .ch-cta__title {
  color: white;
}

.ch-cta__desc {
  font-size: 16px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
  .ch-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ch-title {
    font-size: 36px;
  }

  .ch-lead {
    font-size: 16px;
  }

  .ch-section__head h2 {
    font-size: 32px;
  }

  .ch-timeline::before {
    left: 30px;
  }

  .ch-timeline__item {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }

  .ch-timeline__item:nth-child(even) {
    grid-template-columns: auto 1fr;
  }

  .ch-timeline__item:nth-child(even) .ch-timeline__content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ch-shell {
    padding: 0 16px;
  }

  .ch-section {
    padding: 60px 0;
  }

  .ch-hero {
    padding: 60px 0;
  }

  .ch-title {
    font-size: 28px;
  }

  .ch-lead {
    font-size: 15px;
  }

  .ch-hero__cta {
    gap: 12px;
  }

  .ch-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .ch-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .ch-section__head h2 {
    font-size: 24px;
  }

  .ch-highlights-grid,
  .ch-features-grid,
  .ch-kpis-grid,
  .ch-usecases-grid {
    grid-template-columns: 1fr;
  }

  .ch-timeline__marker {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .ch-cta-block {
    padding: 40px 24px;
  }

  .ch-cta__title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .ch-shell {
    padding: 0 12px;
  }

  .ch-section {
    padding: 40px 0;
  }

  .ch-hero {
    padding: 40px 0;
  }

  .ch-title {
    font-size: 24px;
  }

  .ch-lead {
    font-size: 14px;
  }

  .ch-badge {
    font-size: 12px;
  }

  .ch-breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .ch-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ch-metric {
    gap: 8px;
  }

  .ch-metric__stat {
    font-size: 18px;
  }

  .ch-section__head h2 {
    font-size: 20px;
  }

  .ch-section__head p {
    font-size: 14px;
  }

  .ch-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
  }

  .ch-hero__cta {
    flex-direction: column;
  }

  .ch-timeline__item {
    gap: 16px;
  }

  .ch-timeline__title {
    font-size: 16px;
  }

  .ch-cta-block {
    padding: 32px 16px;
  }

  .ch-cta__title {
    font-size: 20px;
  }

  .ch-cta__desc {
    font-size: 14px;
  }
}

