/* AI Development — professional page styles */

.dev-main {
  padding-top: 72px;
}

/* Hero */
.dev-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 55%, #1a56db 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.dev-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}

.dev-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dev-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.dev-hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--blue-lt);
  border-radius: 50%;
}

.dev-hero h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.dev-hero h1 span {
  color: var(--sky-deep);
}

.dev-hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 520px;
}

.dev-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.dev-hero-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.dev-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dev-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.dev-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.dev-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  line-height: 1.4;
}

/* Stats bar */
.dev-stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding: 28px 0;
}

.dev-stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.bar-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
}

.bar-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Body */
.dev-body {
  padding: 72px 0 80px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head .label {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-head p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* Differentiator */
.dev-diff-band {
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #c5d8f7;
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dev-diff-band h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.dev-diff-band p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.dev-diff-highlight {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}

.dev-diff-highlight strong {
  color: var(--navy);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: #c5d8f7;
  box-shadow: 0 12px 40px rgba(26, 86, 219, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky);
  border: 1px solid var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.service-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}

.industry-card {
  background: var(--off);
  border: 1px solid var(--border-lt);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  border-color: #c5d8f7;
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.08);
}

.industry-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.industry-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 72px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.3);
}

.process-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

/* Solutions delivered */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.solution-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  border-color: #c5d8f7;
  box-shadow: 0 12px 36px rgba(26, 86, 219, 0.08);
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky);
  border: 1px solid var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.solution-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.solution-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.solution-metric {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--off);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-lt);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.feature-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--off);
  border: 1px solid var(--border-lt);
  border-radius: 14px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky);
  border: 1px solid var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Engagement models */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.engagement-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 86, 219, 0.1);
  border-color: #c5d8f7;
}

.engagement-card.featured {
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border-color: #c5d8f7;
}

.engagement-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.engagement-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.engagement-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--sky);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* CTA */
.dev-cta {
  background: linear-gradient(135deg, var(--navy), #1a56db);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}

.dev-cta h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}

.dev-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.dev-cta .btn-white,
.dev-cta .btn-ghost {
  margin: 0 6px;
}

/* Responsive */
@media (max-width: 960px) {
  .dev-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dev-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .dev-diff-band {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dev-hero {
    padding: 60px 0 48px;
  }

  .dev-body {
    padding: 48px 0 60px;
  }

  .dev-cta {
    padding: 40px 24px;
  }

  .dev-hero-actions {
    flex-direction: column;
  }

  .dev-hero-actions .btn-white,
  .dev-hero-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}
