/* ============================================================
   KANHA GLOBAL EXPORTS — CAREERS PAGE STYLES (css/careers.css)
   Ultra-Premium, Modern, SVG-Infused Aesthetic
   ============================================================ */

:root {
  --c-primary: #1676B7;
  --c-primary-dark: #0f517e;
  --c-primary-light: #e0f2fe;
  --c-accent: #38bdf8;
  --c-emerald: #10b981;
  --c-emerald-light: #ecfdf5;
  --c-amber: #f59e0b;
  --c-amber-light: #fffbeb;
  --c-indigo: #6366f1;
  --c-indigo-light: #eef2ff;
  --c-text-dark: #0f172a;
  --c-text-body: #475569;
  --c-text-muted: #64748b;
  --c-border: #e2e8f0;
  --c-border-light: #f1f5f9;
  --c-card-bg: #ffffff;
  --c-bg-subtle: #f8fafc;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 12px 30px rgba(22, 118, 183, 0.16);
}

/* ------------------------------------------------------------
   1. HERO REFINEMENTS
   ------------------------------------------------------------ */
.careers-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.careers-hero-badge .radar-pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
}

.careers-hero-badge .radar-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.45);
  animation: pulseRadar 2s infinite ease-out;
}

@keyframes pulseRadar {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.8); opacity: 0.2; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-3px);
}

.hero-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
}

/* ------------------------------------------------------------
   2. WHY JOIN KANHA — 6 PILLARS WITH SVG ICONS
   ------------------------------------------------------------ */
.pillars-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.pillar-card-v2 {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 290px;
  max-width: 380px;
}

@media (max-width: 991px) {
  .pillar-card-v2 {
    flex: 0 1 calc(50% - 12px);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pillar-card-v2 {
    flex: 0 1 100%;
    min-width: 100%;
  }
}

.pillar-card-v2 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 34px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.pillar-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1676B7, #38bdf8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
  border-color: #bae6fd;
}

.pillar-card-v2:hover::before {
  opacity: 1;
}

.pillar-svg-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.pillar-svg-wrap svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.pillar-card-v2:hover .pillar-svg-wrap {
  transform: scale(1.08);
}

.pillar-card-v2:hover .pillar-svg-wrap svg {
  transform: scale(1.05);
}

/* Distinct themes for pillar icons */
.pillar-theme-blue { background: #f0f9ff; color: #0284c7; border: 1px solid #bae6fd; }
.pillar-theme-emerald { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.pillar-theme-amber { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.pillar-theme-indigo { background: #eef2ff; color: #4f46e5; border: 1px solid #c7d2fe; }
.pillar-theme-cyan { background: #ecfeff; color: #0891b2; border: 1px solid #a5f3fc; }
.pillar-theme-india { background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%); color: #ea580c; border: 1px solid #fed7aa; }

.pillar-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ------------------------------------------------------------
   3. INTEGRATED CULTURE & CORE VALUES PILL BAR
   ------------------------------------------------------------ */
.culture-pill-bar {
  margin-top: 36px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.culture-pill-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.culture-pills-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.culture-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.culture-pill:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-1px);
}

.culture-pill svg {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* ------------------------------------------------------------
   4. DOMAIN SPECIALIZATIONS (6 OPPORTUNITY TRACKS)
   ------------------------------------------------------------ */
.domain-cloud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .domain-cloud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .domain-cloud-grid {
    grid-template-columns: 1fr;
  }
}

.domain-chip-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.28s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  text-decoration: none;
}

.domain-chip-card:hover {
  border-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.1);
}

.domain-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.domain-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.domain-chip-card:hover .domain-icon-wrap {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: rotate(-4deg) scale(1.05);
}

.domain-info {
  display: flex;
  flex-direction: column;
}

.domain-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.domain-tag {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

/* ------------------------------------------------------------
   5. FEATURED OPEN POSITIONS & FILTER TABS
   ------------------------------------------------------------ */
.jobs-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.filter-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.filter-tab-btn svg {
  width: 16px;
  height: 16px;
  color: #64748b;
  transition: color 0.2s ease;
}

.filter-tab-btn:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

.filter-tab-btn.active {
  background: #1676B7;
  border-color: #1676B7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 118, 183, 0.25);
}

.filter-tab-btn.active svg {
  color: #ffffff;
}

.job-openings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.job-role-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  position: relative;
}

.job-role-card:hover {
  border-color: #0284c7;
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 820px) {
  .job-role-card {
    flex-direction: column;
    padding: 26px 22px;
    gap: 20px;
  }
}

.job-role-info {
  flex: 1;
}

.job-role-header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.job-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.job-category-tag svg {
  width: 13px;
  height: 13px;
}

.job-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.job-role-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.job-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 14px;
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-meta-item svg {
  width: 15px;
  height: 15px;
  color: #64748b;
  flex-shrink: 0;
}

.job-role-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.job-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-key-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 500;
}

.job-key-points li svg {
  width: 14px;
  height: 14px;
  color: #10b981;
  flex-shrink: 0;
}

.job-apply-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .job-apply-cta-wrap {
    align-items: flex-start;
    width: 100%;
  }
}

.job-apply-btn {
  padding: 13px 26px;
  background: linear-gradient(135deg, #1676B7 0%, #0284c7 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.93rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.job-apply-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.job-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.42);
}

.job-apply-btn:hover svg {
  transform: translateX(3px);
}

.job-quick-wa-link {
  font-size: 0.82rem;
  color: #15803d;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.job-quick-wa-link:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   6. DIRECT CV SUBMISSION DESK / FORM WITH SVGS
   ------------------------------------------------------------ */
.cv-desk-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 84px 0;
}

.cv-desk-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px 54px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
  .cv-desk-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
}

.cv-desk-header {
  text-align: center;
  margin-bottom: 38px;
}

.cv-desk-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.cv-desk-header p {
  font-size: 1.02rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 620px;
  line-height: 1.6;
}

.cv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 680px) {
  .cv-form-grid {
    grid-template-columns: 1fr;
  }
}

.cv-field-full {
  grid-column: 1 / -1;
}

.cv-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cv-form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cv-form-group label svg {
  width: 14px;
  height: 14px;
  color: #64748b;
}

.cv-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cv-input-wrap svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
}

.cv-input-wrap input,
.cv-input-wrap select {
  padding-left: 42px !important;
}

.cv-form-group input,
.cv-form-group select,
.cv-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.2s ease;
}

.cv-form-group input:focus,
.cv-form-group select:focus,
.cv-form-group textarea:focus {
  border-color: #0284c7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.16);
}

.cv-file-tip {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cv-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.cv-contact-direct {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.cv-contact-direct a {
  color: #0284c7;
  font-weight: 700;
  text-decoration: none;
}

.cv-contact-direct a:hover {
  text-decoration: underline;
}

.btn-submit-cv-form {
  padding: 15px 36px;
  background: linear-gradient(135deg, #1676B7 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
  transition: all 0.25s ease;
}

.btn-submit-cv-form svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-submit-cv-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(2, 132, 199, 0.5);
}

.btn-submit-cv-form:hover svg {
  transform: translateX(3px);
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   10. CAREER SHOWCASE IMAGE BANNER
   ------------------------------------------------------------ */
.career-showcase-wrapper {
  margin: 36px auto 52px auto;
  max-width: 980px;
  width: 100%;
  display: block;
}

.career-showcase-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(226, 232, 240, 0.9);
  background: #0f172a;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  margin: 0 auto;
}

.career-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-showcase-frame:hover .career-showcase-image {
  transform: scale(1.025);
}

.career-showcase-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.04) 40%, rgba(15, 23, 42, 0.76) 100%);
}

.career-badge-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.career-badge-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
}

.career-glass-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px 22px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.glass-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.glass-card-icon svg {
  width: 22px;
  height: 22px;
}

.glass-card-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.glass-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.glass-card-subtitle {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .career-showcase-wrapper {
    margin: 24px auto 38px auto;
  }
  .career-showcase-frame {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }
  .career-badge-tag {
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .career-glass-card {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    gap: 12px;
  }
  .glass-card-icon {
    width: 36px;
    height: 36px;
  }
  .glass-card-icon svg {
    width: 18px;
    height: 18px;
  }
  .glass-card-title {
    font-size: 0.92rem;
  }
  .glass-card-subtitle {
    font-size: 0.76rem;
  }
}

/* ------------------------------------------------------------
   11. CLIENT COPY REFINEMENTS & JOIN OUR TEAM BANNER
   ------------------------------------------------------------ */
.about-hero-sublead {
  max-width: 860px;
  margin: 16px auto 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.culture-content-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin: 40px auto 0 auto;
  max-width: 980px;
  text-align: center;
}

.culture-tags-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.culture-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.culture-tag-item svg {
  width: 15px;
  height: 15px;
  color: #0284c7;
}

.culture-lead-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto;
  font-weight: 500;
}

/* Join Our Team Call to Action Section */
.join-team-section {
  background: linear-gradient(135deg, #071927 0%, #0c2f49 50%, #082236 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.join-team-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.join-team-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.join-team-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.join-team-card p.join-team-lead {
  font-size: 1.15rem;
  color: #e0f2fe;
  max-width: 680px;
  margin: 0 auto 12px auto;
  line-height: 1.6;
}

.join-team-motto {
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.join-team-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.join-team-signature {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 600px;
  margin: 0 auto;
}

.signature-brand {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 4px;
}

.signature-motto {
  font-size: 0.92rem;
  color: #94a3b8;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .domain-cloud-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .culture-content-box {
    padding: 24px 20px;
  }
  .join-team-card h2 {
    font-size: 1.65rem;
  }
  .join-team-card p.join-team-lead {
    font-size: 1rem;
  }
  .join-team-motto {
    font-size: 1.15rem;
  }
}


