/* ================= BASE ================= */
body {
  font-family: 'Montserrat', sans-serif;
  color: #1b2a41;
  margin: 0;
}

/* ================= HERO ================= */
.pai-hero {
  padding: 100px 0;
}

.pai-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pai-hero-image img {
  max-width: 480px;
  width: 100%;
}

.pai-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pai-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* ================= BUILT SOLUTIONS ================= */
.pai-built-solutions {
  padding: 80px 0;
  text-align: center;
}

.pai-built-container {
  max-width: 1100px;
  margin: auto;
}

.pai-section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  background: linear-gradient(90deg,#ff6b6b 0%, #1b2a41 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pai-section-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.pai-section-desc {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.pai-solution-cards {
  display: flex;
  justify-content: center;
  gap: 56px;
}

.pai-solution-card {
  width: 300px;
  height: 260px;
  background: #e5e7eb;
  border-radius: 20px;
  display: flex;
  
  align-items: center;
  justify-content: center;
  text-align: center;
  
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.04),
    0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pai-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.1);
}

.pai-solution-logo {
  height: 80px;
  width: auto;
  object-fit: contain;

  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

.pai-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}

.pai-skillclad-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2a44;
  margin-bottom: 8px;
}

.pai-skillclad-text p {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* ================= AI & DATA SERVICES ================= */
.pai-services {
  padding: 80px 0;
}

.pai-services-inner {
  max-width: 1200px;
  margin: auto;
}

/* Section Header */
.pai-services-header {
  text-align: center;
  margin-bottom: 64px;
}

.pai-services-eyebrow {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ff6b6b 0%, #1b2a41 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pai-services-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pai-services-desc {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Services Grid */
.pai-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pai-services-grid + .pai-services-grid {
  margin-top: 80px;
}

/* Image */
.pai-services-image img {
  max-width: 360px;
  width: 100%;
}

/* Content */
.pai-services-content {
  padding-top: 12px;
}

.pai-services-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pai-services-text {
  font-size: 15px;
  color: #475569;
  margin-bottom: 16px;
}

.pai-services-list {
  padding-left: 18px;
}

.pai-services-list li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #334155;
}

/* Alternate layout (text left, image right) */
.pai-services-alt .pai-services-content {
  grid-column: 1;
}

.pai-services-alt .pai-services-image {
  grid-column: 2;
  text-align: right;
}
/* ================= ADVISORY & STRATEGY ================= */

.pai-advisory {
  padding: 80px 0;
}

.pai-advisory-inner {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.pai-advisory-header {
  text-align: center;
  margin-bottom: 72px;
}

.pai-advisory-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ff6b6b 0%, #1b2a41 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pai-advisory-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pai-advisory-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.pai-advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Content */
.pai-advisory-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pai-advisory-content p {
  margin-bottom: 16px;
  color: #334155;
}

.pai-advisory-content ul {
  padding-left: 20px;
}

.pai-advisory-content li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}

/* Image */
.pai-advisory-image img {
  max-width: 420px;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .pai-advisory-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pai-advisory-image {
    margin-top: 40px;
  }
}

/* SkillClad logo sizing */
.skillclad-logo{
  width:120px;
  height:auto;
}

/* Coming soon badge */
.pai-coming-soon{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.pai-coming-badge{
  position:absolute;
  bottom:14px;
  right:14px;

  background:#ff6b6b;
  color:#fff;

  font-size:11px;
  font-weight:600;

  padding:4px 10px;
  border-radius:999px;

  letter-spacing:.3px;
}