/*
 * carelabs.css — Carelabs Inc brand overrides & custom components
 * Color scheme: original template palette — #190a32 dark, #7D4196→#FF3494 gradient, #ff3494 accent
 */

/* =====================================================================
   0. DESIGN TOKENS — original template palette
   ===================================================================== */
:root {
  --cl-dark:        #190a32;   /* original template dark */

/* =====================================================================
   16. BLOG PAGES
   ===================================================================== */
.cl-blog-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(255,52,148,0.16), transparent 30%),
    radial-gradient(circle at right center, rgba(125,65,150,0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f4fe 100%);
}

.cl-blog-hero-article {
  padding-bottom: 70px;
}

.cl-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8a81a6;
  margin-bottom: 22px;
}

.cl-breadcrumbs a {
  color: var(--cl-purple);
}

.cl-blog-hero h1 {
  font-size: 48px;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.7px;
}

.cl-blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--cl-muted);
}

.cl-blog-section,
.cl-article-section {
  background: #fff;
}

.cl-blog-card,
.cl-blog-panel,
.cl-article-wrap {
  background: #fff;
  border: 1px solid #ede8f8;
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
}

.cl-blog-card {
  overflow: hidden;
  transition: var(--cl-transition);
}

.cl-blog-card:hover {
  box-shadow: var(--cl-shadow-hover);
  transform: translateY(-3px);
}

.cl-blog-card-media img,
.cl-article-cover {
  width: 100%;
  display: block;
  object-fit: cover;
}

.cl-blog-card-media img {
  height: 340px;
}

.cl-blog-card-content {
  padding: 32px;
}

.cl-blog-card-content h2,
.cl-blog-card-content h3 {
  margin-bottom: 16px;
  line-height: 1.25;
}

.cl-blog-card-content h2 {
  font-size: 32px;
}

.cl-blog-card-content h3 {
  font-size: 22px;
}

.cl-blog-card-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--cl-muted);
}

.cl-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #8a81a6;
}

.cl-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cl-blog-meta-center {
  justify-content: center;
  margin-top: 26px;
}

.cl-blog-list,
.cl-link-list {
  padding-left: 18px;
  margin-bottom: 24px;
}

.cl-blog-list li,
.cl-link-list li {
  margin-bottom: 12px;
  color: var(--cl-muted);
  line-height: 1.7;
}

.cl-link-list-tight li {
  margin-bottom: 10px;
}

.cl-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cl-blog-panel {
  padding: 28px;
}

.cl-blog-panel h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

.cl-blog-panel p {
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--cl-muted);
}

.cl-blog-panel-accent {
  background: var(--cl-surface);
}

.cl-blog-panel-accent p {
  margin-bottom: 20px;
}

.cl-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cl-tag-list-article {
  margin-top: 32px;
}

.cl-blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--cl-surface);
  color: var(--cl-purple);
  font-size: 13px;
  font-weight: 600;
}

.cl-article-wrap {
  overflow: hidden;
}

.cl-article-cover {
  height: 420px;
}

.cl-article-body {
  padding: 36px;
}

.cl-article-body p,
.cl-article-body li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--cl-muted);
}

.cl-article-body p {
  margin-bottom: 22px;
}

.cl-article-body h2 {
  font-size: 30px;
  margin: 38px 0 16px;
}

.cl-article-body ul {
  padding-left: 20px;
  margin-bottom: 22px;
}

.cl-article-body blockquote {
  margin: 32px 0;
  padding: 26px 28px;
  border-left: 4px solid var(--cl-pink);
  border-radius: 0 var(--cl-radius-sm) var(--cl-radius-sm) 0;
  background: var(--cl-surface);
  color: var(--cl-dark);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}
  --cl-purple:      #7D4196;   /* gradient start */
  --cl-pink:        #FF3494;   /* gradient end / accent */
  --cl-gradient:    linear-gradient(90deg, #7D4196 0%, #FF3494 100%);
  --cl-gradient-r:  linear-gradient(90deg, #FF3494 0%, #7D4196 100%);
  --cl-shadow-btn:  3px 4px 25px #C63A9580;

  --cl-surface:     #f7f4fe;   /* original template light bg */
  --cl-surface-2:   #f5f8fa;
  .cl-blog-hero h1 { font-size: 42px; }
  --cl-white:       #FFFFFF;
  --cl-text:        #190a32;
  --cl-muted:       #687068;

  /* product accent colours — tinted from the brand palette */
  --cl-health:      #1A88CC;
  --cl-health-bg:   #E8F4FC;
  --cl-wellness:    #FF3494;
  --cl-wellness-bg: #fff0f7;
  --cl-counseling:  #7D4196;
  --cl-counseling-bg: #f5eefa;
  --cl-education:   #D97706;
  --cl-education-bg:#FEF3CD;

  --cl-radius:      12px;
  --cl-radius-sm:   8px;
  --cl-shadow:      0 4px 24px rgba(25,10,50,0.10);
  --cl-shadow-hover:0 8px 36px rgba(25,10,50,0.16);
  --cl-transition:  all 0.28s cubic-bezier(.4,0,.2,1);
}

/* =====================================================================
   1. GLOBAL BASE OVERRIDES
   ===================================================================== */
body { color: var(--cl-muted); }

h1, h2, h3, h4, h5, h6 { color: var(--cl-dark); font-weight: 700; }

a { color: var(--cl-pink); }
a:hover { color: var(--cl-purple); text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =====================================================================
   1b. LOGO LOCKUP
   ===================================================================== */
.cl-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.cl-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =====================================================================
   1c. SECTION HEADING COLOR
   ===================================================================== */
#about-h2,
#solutions-h2,
#ai-h2,
#why-h2 {
  color: #7D4196 !important;
}

/* =====================================================================
   2. WORDMARK LOGO
   ===================================================================== */
.cl-wordmark {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--cl-dark);        /* #190a32 — readable on white */
  text-decoration: none;
  white-space: nowrap;
}
.cl-wordmark-accent { color: var(--cl-purple); }  /* #7D4196 — readable on white & dark */
.cl-wordmark-suffix { color: var(--cl-purple); font-weight: 700; }  /* "Inc." — solid purple, readable on both */

@media (max-width: 575.98px) {
  .cl-wordmark {
    font-size: 20px;
  }
}

/* On dark/footer background */
.cl-wordmark-light                      { color: #fff; }
.cl-wordmark-light .cl-wordmark-accent  { color: rgba(255,255,255,0.85); }
.cl-wordmark-light .cl-wordmark-suffix  { color: var(--cl-pink); font-weight: 700; }  /* pink pops on dark bg */

/* On sticky header (dark bg) — force all wordmark parts to be visible */
.sticky-menu .cl-wordmark              { color: #fff !important; }
.sticky-menu .cl-wordmark-accent       { color: rgba(255,255,255,0.85) !important; }
.sticky-menu .cl-wordmark-suffix       { color: var(--cl-pink) !important; }

/* =====================================================================
   3. STICKY HEADER
   ===================================================================== */
.menu-area {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(25,10,50,0.07);
  padding: 14px 0;
  transition: var(--cl-transition);
}
.sticky-menu {
  padding: 10px 0 !important;
  background: #190a32 !important;
  box-shadow: 0 4px 32px rgba(25,10,50,0.20) !important;
}
.sticky-menu .main-menu nav ul li > a { color: rgba(255,255,255,0.85); }
.sticky-menu .main-menu nav ul li > a:hover { color: var(--cl-pink); }

.main-menu nav ul li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cl-dark);
  padding: 8px 14px;
  transition: var(--cl-transition);
}
.main-menu nav ul li > a:hover { color: var(--cl-pink); }

/* =====================================================================
   4. BUTTONS
   ===================================================================== */
.btn.cl-btn-nav,
.btn.cl-btn-primary,
.btn.cl-btn-ghost,
.btn.cl-btn-white,
.btn.cl-btn-prod {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  transition: var(--cl-transition);
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* Primary — original template gradient */
.btn.cl-btn-primary,
.btn.cl-btn-nav {
  background: var(--cl-gradient);
  color: #fff !important;
  border: none;
  box-shadow: var(--cl-shadow-btn);
}
.btn.cl-btn-primary:hover,
.btn.cl-btn-nav:hover {
  background: var(--cl-gradient-r);
  box-shadow: 3px 4px 25px #C63A9580;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Ghost — used on dark hero background */
.btn.cl-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn.cl-btn-ghost:hover {
  border-color: var(--cl-pink);
  color: var(--cl-pink) !important;
  background: rgba(255,255,255,0.08);
}

/* White (on dark strip) */
.btn.cl-btn-white {
  background: #fff;
  color: var(--cl-dark) !important;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.btn.cl-btn-white:hover {
  background: var(--cl-pink);
  color: #fff !important;
  box-shadow: 3px 4px 25px #C63A9580;
  transform: translateY(-1px);
}

/* Product card button */
.btn.cl-btn-prod {
  background: transparent;
  color: var(--cl-purple) !important;
  border: 2px solid var(--cl-purple);
  padding: 9px 22px;
  font-size: 13px;
}
.btn.cl-btn-prod:hover {
  background: var(--cl-gradient);
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--cl-shadow-btn);
}

/* =====================================================================
   5. HERO SECTION
   ===================================================================== */
.cl-hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #190a32 0%, #2d1154 50%, #4a1870 100%);
  position: relative;
  overflow: hidden;
  align-items: center;
  padding: 130px 0 80px;
}

.cl-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cl-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--cl-pink);
}
.cl-shape-1 { width: 520px; height: 520px; top: -120px; right: -100px; }
.cl-shape-2 { width: 300px; height: 300px; bottom: 60px; left: -80px; opacity: 0.04; }
.cl-shape-3 { width: 160px; height: 160px; top: 40%; right: 38%; opacity: 0.06; }

.cl-hero-row { min-height: calc(100vh - 200px); }

/* Badge */
.cl-hero-badge { margin-bottom: 20px; }
.cl-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,52,148,0.15);
  border: 1px solid rgba(255,52,148,0.35);
  color: rgba(255,255,255,0.90);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}
.cl-badge-dot {
  font-size: 7px;
  color: var(--cl-pink);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Heading */
.cl-hero-h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.cl-hero-highlight {
  background: linear-gradient(90deg, var(--cl-pink) 0%, #ff7ab8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 530px;
}

.cl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.cl-hero-secondary-link {
  margin: -8px 0 30px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.cl-hero-secondary-link a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.45);
  text-underline-offset: 3px;
}

.cl-hero-secondary-link a:hover {
  color: var(--cl-pink);
  text-decoration-color: var(--cl-pink);
}

/* Domain tags */
.cl-hero-domains { display: flex; flex-wrap: wrap; gap: 10px; }
.cl-domain-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 50px;
}
.cl-domain-tag i { color: var(--cl-pink); font-size: 11px; }

/* Orbital visual */
.cl-hero-visual {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 0 auto;
}
.cl-hub-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,52,148,0.18);
}
.cl-hub-ring-outer {
  width: 420px; height: 420px;
  animation: slow-spin 30s linear infinite;
}
.cl-hub-ring-mid {
  width: 280px; height: 280px;
  border-style: dashed;
  border-color: rgba(125,65,150,0.35);
  animation: slow-spin 20s linear infinite reverse;
}
@keyframes slow-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.cl-hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: var(--cl-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  box-shadow: 0 0 40px rgba(255,52,148,0.45);
  z-index: 3;
}
.cl-hub-center span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.cl-orbit-node {
  position: absolute;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,52,148,0.30);
  backdrop-filter: blur(8px);
  border-radius: var(--cl-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  gap: 4px;
  transition: var(--cl-transition);
  z-index: 2;
}
.cl-orbit-node span {
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cl-orbit-node:hover {
  background: rgba(255,52,148,0.20);
  border-color: var(--cl-pink);
  transform: scale(1.08);
}

.cl-orbit-n1 { top: 10px;    left: 50%; transform: translateX(-50%); }
.cl-orbit-n2 { top: 50%;     right: 10px; transform: translateY(-50%); }
.cl-orbit-n3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.cl-orbit-n4 { top: 50%;     left: 10px; transform: translateY(-50%); }

/* =====================================================================
   6. ABOUT SECTION — service card icon overrides
   ===================================================================== */
.cl-about-section { background-color: var(--cl-surface); }

.cl-svc-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cl-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--cl-purple);
  font-size: 26px;
  transition: var(--cl-transition);
}
.s-single-services.active .cl-svc-icon,
.s-single-services:hover .cl-svc-icon {
  background: var(--cl-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(198,58,149,0.30);
}

/* =====================================================================
   7. PRODUCT CARDS
   ===================================================================== */
.cl-solutions-section { background-color: #fff; }

.cl-product-card {
  background: #fff;
  border: 1px solid #ede8f8;
  border-radius: var(--cl-radius);
  padding: 36px 32px;
  height: 100%;
  box-shadow: var(--cl-shadow);
  transition: var(--cl-transition);
  display: flex;
  flex-direction: column;
}
.cl-product-card:hover {
  box-shadow: var(--cl-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--cl-purple);
}

.cl-prod-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.cl-prod-icon {
  width: 60px; height: 60px;
  min-width: 60px;
  border-radius: var(--cl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cl-prod-health     { background: var(--cl-health-bg);     color: var(--cl-health); }
.cl-prod-wellness   { background: var(--cl-wellness-bg);   color: var(--cl-wellness); }
.cl-prod-counseling { background: var(--cl-counseling-bg); color: var(--cl-counseling); }
.cl-prod-education  { background: var(--cl-education-bg);  color: var(--cl-education); }

.cl-prod-title-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--cl-dark);
}
.cl-prod-tag { font-size: 13px; color: var(--cl-muted); margin: 0; font-weight: 500; }

.cl-prod-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cl-muted);
  margin-bottom: 20px;
}

.cl-prod-bullets { list-style: none; padding: 0; margin: 0 0 28px; }
.cl-prod-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--cl-text);
  margin-bottom: 10px;
  line-height: 1.55;
}
.cl-prod-bullets li i { color: var(--cl-pink); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.cl-product-card .btn.cl-btn-prod { margin-top: auto; align-self: flex-start; }

/* =====================================================================
   8. AI AT THE CORE
   ===================================================================== */
.cl-ai-section { background-color: var(--cl-surface); }

.cl-ai-icon-wrap {
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: var(--cl-radius-sm);
  background: var(--cl-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.cl-ai-section .app-work-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #ede8f8;
}
.cl-ai-section .app-work-content ul li:last-child { border-bottom: none; }
.cl-ai-section .app-work-content ul li .text h4 {
  font-size: 16px; margin-bottom: 5px; color: var(--cl-dark);
}
.cl-ai-section .app-work-content ul li .text p { margin: 0; }

/* 3×3 icon grid */
.cl-ai-grid-visual {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-template-rows: repeat(3, 120px);
  gap: 14px;
}

.cl-ai-tile {
  background: #fff;
  border: 1px solid #ede8f8;
  border-radius: var(--cl-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cl-dark);
  font-size: 22px;
  padding: 10px;
  text-align: center;
  transition: var(--cl-transition);
  box-shadow: 0 2px 12px rgba(25,10,50,0.06);
}
.cl-ai-tile span {
  font-size: 10px;
  font-weight: 600;
  color: var(--cl-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
}
.cl-ai-tile:hover {
  background: var(--cl-surface);
  border-color: var(--cl-purple);
  box-shadow: var(--cl-shadow);
  color: var(--cl-purple);
}

.cl-ai-tile-accent {
  background: var(--cl-surface);
  border-color: #e0d8f0;
}

.cl-ai-tile-center {
  background: var(--cl-gradient) !important;
  color: #fff !important;
  border: none !important;
  font-size: 30px !important;
  box-shadow: 0 6px 28px rgba(198,58,149,0.35) !important;
}
.cl-ai-tile-center span { color: rgba(255,255,255,0.90) !important; font-size: 11px !important; }
.cl-ai-tile-center:hover { transform: scale(1.04); }

/* =====================================================================
   9. WHY CARELABS CARDS
   ===================================================================== */
.cl-why-section { background: #fff; }

.cl-why-card {
  background: var(--cl-surface);
  border: 1px solid #ede8f8;
  border-radius: var(--cl-radius);
  padding: 36px 28px 32px;
  height: 100%;
  transition: var(--cl-transition);
}
.cl-why-card:hover {
  box-shadow: var(--cl-shadow-hover);
  border-color: var(--cl-purple);
  background: #fff;
  transform: translateY(-3px);
}

.cl-why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cl-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(198,58,149,0.28);
  transition: var(--cl-transition);
}
.cl-why-card:hover .cl-why-icon {
  background: var(--cl-gradient-r);
  box-shadow: 0 6px 20px rgba(198,58,149,0.40);
}

.cl-why-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--cl-dark); }
.cl-why-card p  { font-size: 14px; margin: 0; color: var(--cl-muted); }

/* =====================================================================
   10. LEADERSHIP SECTION
   ===================================================================== */
.cl-leadership-section { background: var(--cl-surface); }

.cl-expertise-stack { display: flex; flex-direction: column; gap: 20px; }

.cl-team-stack { display: flex; flex-direction: column; gap: 20px; }

.cl-team-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #ede8f8;
  border-radius: var(--cl-radius);
  padding: 24px;
  box-shadow: var(--cl-shadow);
  transition: var(--cl-transition);
}
.cl-team-card:hover {
  border-color: var(--cl-purple);
  box-shadow: var(--cl-shadow-hover);
  transform: translateY(-3px);
}

.cl-team-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--cl-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cl-team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--cl-pink);
  margin-bottom: 8px;
}

.cl-team-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cl-dark);
  margin-bottom: 10px;
}

.cl-team-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cl-muted);
  margin-bottom: 16px;
}

.cl-team-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cl-purple);
}
.cl-team-link:hover { color: var(--cl-pink); }

.cl-expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #ede8f8;
  border-radius: var(--cl-radius);
  padding: 22px;
  box-shadow: var(--cl-shadow);
  transition: var(--cl-transition);
}
.cl-expertise-item:hover {
  border-color: var(--cl-purple);
  box-shadow: var(--cl-shadow-hover);
  transform: translateX(4px);
}

.cl-exp-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: var(--cl-radius-sm);
  background: var(--cl-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cl-exp-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--cl-dark);
  margin-bottom: 5px;
}
.cl-exp-text span { font-size: 13px; color: var(--cl-muted); line-height: 1.5; }

.pl-xl-40 { padding-left: 40px; }

/* =====================================================================
   11. CTA STRIP
   ===================================================================== */
.cl-cta-strip {
  background: linear-gradient(135deg, #190a32 0%, #2d1154 50%, #4a1870 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cl-cta-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,52,148,0.08);
}
.cl-cta-strip::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(125,65,150,0.10);
}
.cl-cta-strip h3 { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.cl-cta-strip p  { color: rgba(255,255,255,0.70); margin: 0; font-size: 15px; }

/* =====================================================================
   12. CONTACT SECTION
   ===================================================================== */
.cl-contact-info { display: flex; flex-direction: column; gap: 18px; }

.cl-contact-item { display: flex; align-items: flex-start; gap: 16px; }

.cl-contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: var(--cl-radius-sm);
  background: var(--cl-surface);
  color: var(--cl-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #ede8f8;
}

.cl-contact-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cl-dark);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cl-contact-item span,
.cl-contact-item a { font-size: 14px; color: var(--cl-muted); }
.cl-contact-item a:hover { color: var(--cl-pink); }

/* Contact form */
.cl-contact-form .contact-field input,
.cl-contact-form .contact-field textarea {
  width: 100%;
  border: 1px solid #ddd8f0;
  border-radius: var(--cl-radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--cl-text);
  background: var(--cl-surface);
  transition: var(--cl-transition);
  outline: none;
}
.cl-contact-form .contact-field input:focus,
.cl-contact-form .contact-field textarea:focus {
  border-color: var(--cl-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125,65,150,0.10);
}
.cl-contact-form .contact-field input::placeholder,
.cl-contact-form .contact-field textarea::placeholder { color: #a89ec0; }

.cl-select {
  width: 100%;
  border: 1px solid #ddd8f0;
  border-radius: var(--cl-radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--cl-text);
  background: var(--cl-surface);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237D4196' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: var(--cl-transition);
  outline: none;
}
.cl-select:focus {
  border-color: var(--cl-purple);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(125,65,150,0.10);
}

/* =====================================================================
   13. FOOTER OVERRIDES
   ===================================================================== */
.footer-bg { background-color: #190a32 !important; }
.footer-text p { color: rgba(255,255,255,0.50); }
.f-widget-title h5 { color: rgba(255,255,255,0.90); margin-bottom: 18px; }
.footer-link ul li a,
.f-contact ul li span,
.f-contact ul li span a { color: rgba(255,255,255,0.50); font-size: 14px; transition: var(--cl-transition); }
.footer-link ul li { margin-bottom: 10px; }
.footer-link ul li a:hover,
.f-contact ul li span a:hover { color: var(--cl-pink); }
.f-contact ul li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.f-contact ul li i { color: var(--cl-pink); margin-top: 3px; min-width: 16px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  transition: var(--cl-transition);
}
.footer-social a:hover {
  background: var(--cl-pink);
  border-color: var(--cl-pink);
  color: #fff;
}

.copyright-wrap { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.copyright-text p { color: rgba(255,255,255,0.35); font-size: 13px; margin: 0; }

/* =====================================================================
   14. SECTION TITLE OVERRIDES
   ===================================================================== */
.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--cl-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-title.w-title h2 { color: var(--cl-dark); }
.section-title p { font-size: 16px; line-height: 1.75; color: var(--cl-muted); margin: 0; }

/* =====================================================================
   15. SCROLL-TO-TOP — original template style
   ===================================================================== */
#scrollUp {
  background: var(--cl-pink);
  border-radius: 50%;
  width: 45px; height: 45px;
  bottom: 30px; right: 30px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  transition: var(--cl-transition);
}
#scrollUp:hover { background: var(--cl-purple); }

/* =====================================================================
   16. RESPONSIVE
   ===================================================================== */
@media (max-width: 1199px) {
  .cl-hero-h1 { font-size: 42px; }
  .cl-ai-grid-visual {
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .cl-hero-section { padding: 110px 0 70px; }
  .cl-hero-h1 { font-size: 36px; }
  .cl-hero-lead { font-size: 15px; }
  .section-title h2 { font-size: 30px; }
  .pl-xl-40 { padding-left: 0; }
  .cl-cta-strip h3 { font-size: 22px; }
  .cl-team-card { padding: 22px; }
  .cl-blog-hero { padding: 130px 0 80px; }
  .cl-blog-card-content,
  .cl-blog-panel,
  .cl-article-body { padding: 28px; }
}

@media (max-width: 767px) {
  .cl-hero-section { padding: 100px 0 60px; min-height: auto; }
  .cl-hero-h1 { font-size: 30px; }
  .cl-hero-actions { flex-direction: column; }
  .cl-hero-actions .btn { width: 100%; justify-content: center; }
  .cl-hero-secondary-link { margin-bottom: 24px; }
  .section-title h2 { font-size: 26px; }
  .cl-product-card { padding: 28px 22px; }
  .cl-why-card { padding: 28px 20px; }
  .cl-cta-strip .text-lg-right { text-align: left !important; }
  .cl-cta-strip .btn { width: 100%; justify-content: center; }
  .cl-ai-grid-visual { display: none; }
  .cl-blog-hero h1 { font-size: 34px; }
  .cl-blog-hero p { font-size: 16px; }
  .cl-blog-card-media img,
  .cl-article-cover { height: 260px; }
  .cl-blog-card-content h2 { font-size: 28px; }
  .cl-article-body h2 { font-size: 24px; }
}

@media (max-width: 575px) {
  .cl-hero-h1 { font-size: 26px; }
  .cl-prod-header { flex-direction: column; }
  .cl-expertise-item { flex-direction: column; }
  .cl-team-card { flex-direction: column; }
  .cl-blog-card-content,
  .cl-blog-panel,
  .cl-article-body { padding: 22px; }
  .cl-blog-hero h1 { font-size: 28px; }
  .cl-blog-meta { gap: 10px; }
}
