/* =====================================================================
   Social On Table — Cloud & DevOps Service Page (cd-*)
   Uses the site's existing theme variables (--theme-color1 etc.)
   defined globally in css/style.css. Loaded only on service-cloud-devops.php
   ===================================================================== */

.cd-page { --cd-accent: var(--theme-color1, #FF6B1E); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.cd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cd-accent);
  background: rgba(255,107,30,0.1);
  border: 1px solid rgba(255,107,30,0.3);
  border-radius: 30px;
}
.cd-hero__eyebrow i { font-size: 13px; }

.cd-hero__title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 575px) {
  .cd-hero__title { font-size: 24px; }
}

/* ── Section kicker label ────────────────────────────────────────── */
.cd-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cd-accent);
}

/* ── Generic responsive grid ─────────────────────────────────────── */
.cd-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
.cd-grid--7 { grid-template-columns: repeat(3, 1fr); }
.cd-grid--4 { grid-template-columns: repeat(2, 1fr); }
.cd-grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 767px) {
  .cd-grid--7,
  .cd-grid--4,
  .cd-grid--2 { grid-template-columns: 1fr; }
}

/* ── Service cards ────────────────────────────────────────────────── */
.cd-card {
  padding: 26px 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cd-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,30,0.4);
  background: linear-gradient(160deg, rgba(255,107,30,0.08), rgba(255,255,255,0.01));
}
.cd-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--cd-accent);
  background: rgba(255,107,30,0.12);
  border-radius: 12px;
}
.cd-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
.cd-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #a9a9a9;
}

/* ── Checklist (business case) ───────────────────────────────────── */
.cd-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cd-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.025);
  border-left: 3px solid var(--cd-accent);
  border-radius: 8px;
}
.cd-check-list li i {
  margin-top: 3px;
  font-size: 16px;
  color: var(--cd-accent);
  flex-shrink: 0;
}
.cd-check-list li div {
  font-size: 14px;
  line-height: 1.65;
  color: #ccc;
}
.cd-check-list li strong {
  color: #fff;
}

/* ── Differentiator cards ────────────────────────────────────────── */
.cd-diff {
  position: relative;
  padding: 22px 20px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.cd-diff__num {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,107,30,0.35);
  font-family: var(--heading-font-family);
}
.cd-diff h4 {
  margin-bottom: 8px;
  font-size: 15.5px;
  font-weight: 700;
}
.cd-diff p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #a9a9a9;
}

/* ── Process timeline ────────────────────────────────────────────── */
.cd-timeline {
  position: relative;
  margin-top: 12px;
  padding-left: 26px;
  border-left: 2px dashed rgba(255,107,30,0.3);
}
.cd-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.cd-step:last-child { margin-bottom: 0; }
.cd-step__num {
  position: absolute;
  left: -37px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #0e0e0e;
  background: var(--cd-accent);
  border-radius: 50%;
}
.cd-step h4 {
  margin-bottom: 4px;
  font-size: 15.5px;
  font-weight: 700;
}
.cd-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #a9a9a9;
}

/* ── Industry pills ───────────────────────────────────────────────── */
.cd-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.cd-industries span {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #ddd;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cd-industries span:hover {
  color: var(--cd-accent);
  border-color: rgba(255,107,30,0.4);
  background: rgba(255,107,30,0.08);
}

/* ── Testimonial quotes ──────────────────────────────────────────── */
.cd-quote {
  position: relative;
  padding: 24px 22px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.cd-quote::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-size: 46px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255,107,30,0.25);
}
.cd-quote p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #ccc;
  font-style: italic;
}
.cd-quote__by {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cd-accent);
}

/* ── Final CTA banner ────────────────────────────────────────────── */
.cd-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 34px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(255,107,30,0.16), transparent 55%),
    linear-gradient(160deg, #1a1a1a 0%, #0e0e0e 100%);
  border: 1px solid rgba(255,107,30,0.25);
  border-radius: 16px;
}
.cd-cta__text h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}
.cd-cta__text p {
  margin: 0;
  font-size: 13.5px;
  color: #aaa;
}
.cd-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  color: #0e0e0e;
  background: var(--cd-accent);
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.cd-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,107,30,0.3);
  color: #0e0e0e;
}

@media (max-width: 575px) {
  .cd-cta { padding: 26px 22px; }
}
