/* ============================================================
   service-solutions-development.css
   Extracted from <style> block in service-solutions-development.html.
   ============================================================ */

/* ========== HERO · Solutions Console ========== */
.sd-hero-svg { width: 100%; height: auto; max-width: 480px; display: block; margin: 0 auto; }

@keyframes sdBlockSlide {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50%      { transform: translateX(60px); opacity: .7; }
}
.sd-block { animation: sdBlockSlide 4s ease-in-out infinite; }
.sd-block.b2 { animation-delay: .5s; }
.sd-block.b3 { animation-delay: 1s; }
.sd-block.b4 { animation-delay: 1.5s; }
.sd-block.b5 { animation-delay: 2s; }

@keyframes sdAssemble {
  0%, 100% { opacity: .9; }
  50%      { opacity: 1; }
}
.sd-assembled { animation: sdAssemble 2.4s ease-in-out infinite; }

@keyframes sdCursorBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
.sd-cursor { animation: sdCursorBlink 1s steps(1) infinite; }

@keyframes sdLineType {
  0%, 100% { width: 0; }
  20%, 80% { width: var(--w, 100%); }
}
.sd-line {
  animation: sdLineType 3.5s ease-in-out infinite;
  transform-origin: left center;
}
.sd-line.l2 { animation-delay: .2s; }
.sd-line.l3 { animation-delay: .4s; }
.sd-line.l4 { animation-delay: .6s; }
.sd-line.l5 { animation-delay: .8s; }

@keyframes sdLedBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}
.sd-led { animation: sdLedBlink 1.4s ease-in-out infinite; }
.sd-led.k2 { animation-delay: .25s; }
.sd-led.k3 { animation-delay: .5s; }

/* ========== SOLUTION TYPE PANEL SVGs ========== */
.sl-vis { width: 100%; max-width: 230px; height: auto; display: block; margin: 0 auto; }

@keyframes slCardSpin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.sl-card-rotate { animation: slCardSpin 8s linear infinite; transform-origin: center; transform-box: fill-box; }

@keyframes slMobileTap {
  0%, 100% { transform: scale(1); }
  20%, 50% { transform: scale(1.06); }
}
.sl-mobile { animation: slMobileTap 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes slApiPulse {
  0%, 100% { opacity: .6; }
  50%      { opacity: 1; }
}
.sl-api-line { animation: slApiPulse 1.6s ease-in-out infinite; }
.sl-api-line.l2 { animation-delay: .25s; }
.sl-api-line.l3 { animation-delay: .5s; }

@keyframes slIntegConnect {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -20; }
}
.sl-integ-line { stroke-dasharray: 4 6; animation: slIntegConnect 1.6s linear infinite; }

/* ========== TECH STACK MATRIX ========== */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 1100px) { .stack-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .stack-grid { grid-template-columns: 1fr; } }
.stack-col {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,30,63,.1);
  border-radius: 14px;
  padding: 24px 20px 20px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.stack-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(11,30,63,.08);
}
.stack-tag {
  font: 700 10px/1 'JetBrains Mono', monospace;
  color: #FF6B35;
  background: rgba(255,107,53,.1);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.stack-col h3 {
  font: 700 1.02rem/1.2 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin: 14px 0 14px;
}
.stack-tools {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.stack-tools li {
  font: 600 11px/1 'JetBrains Mono', monospace;
  color: #1E63E9;
  background: rgba(30,99,233,.08);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ========== SDLC SPRINT VISUALIZATION ========== */
.sdlc {
  margin-top: 40px;
  padding: 40px clamp(20px, 4vw, 50px);
  background: linear-gradient(140deg, rgba(11,30,63,.04), rgba(30,99,233,.05));
  border: 1px solid rgba(11,30,63,.1);
  border-radius: 18px;
}
.sdlc-sprint {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(11,30,63,.18);
}
.sdlc-sprint:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sdlc-sprint-tag {
  font: 800 14px/1 'Space Grotesk', sans-serif;
  color: #FF6B35;
}
.sdlc-sprint-tag small {
  display: block;
  font: 600 10px/1.2 'JetBrains Mono', monospace;
  color: rgba(11,30,63,.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.sdlc-bar {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  height: 50px;
}
.sdlc-cell {
  background: rgba(11,30,63,.08);
  border-radius: 4px;
  position: relative;
}
.sdlc-cell.done   { background: #1E63E9; }
.sdlc-cell.live   { background: #FF6B35; }
.sdlc-cell.next   { background: rgba(11,30,63,.15); }
.sdlc-cell::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font: 700 9px/1 'JetBrains Mono', monospace;
  color: var(--c-white);
  text-transform: uppercase;
}
.sdlc-cell.next::after { color: rgba(11,30,63,.5); }
@media (max-width: 720px) {
  .sdlc-sprint { grid-template-columns: 1fr; gap: 12px; }
  .sdlc-bar { grid-template-columns: repeat(5, 1fr); height: auto; }
  .sdlc-cell { height: 36px; }
}

/* ========== SAMPLE ARTEFACTS ========== */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 920px) { .art-grid { grid-template-columns: 1fr; } }
.art-card {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,30,63,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.art-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,30,63,.08); }
.art-preview {
  background: #0B1E3F;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
}
.art-preview-code {
  width: 88%;
  padding: 16px;
  background: rgba(0,0,0,.25);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.art-preview-code .tok-fn { color: #FF6B35; }
.art-preview-code .tok-kw { color: #5EEAD4; }
.art-preview-code .tok-str { color: #FFB47A; }
.art-preview-code .tok-co { color: rgba(255,255,255,.4); }
.art-preview-pr {
  width: 88%;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 14px;
  color: var(--c-white);
  font-family: 'Space Grotesk', sans-serif;
}
.art-preview-pr-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: .82rem; }
.art-preview-pr-tag { background: rgba(94,234,212,.2); color: #5EEAD4; padding: 3px 8px; border-radius: 999px; font: 700 9px/1 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.art-preview-pr-diff { display: grid; gap: 4px; font: 500 10px/1.4 'JetBrains Mono', monospace; }
.art-preview-pr-diff .plus { color: #5EEAD4; }
.art-preview-pr-diff .minus { color: #FF6B35; }
.art-preview-design {
  width: 88%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.art-preview-design .swatch {
  height: 32px;
  border-radius: 4px;
}
.art-preview-design .swatch.s1 { background: #1E63E9; }
.art-preview-design .swatch.s2 { background: #FF6B35; }
.art-preview-design .swatch.s3 { background: var(--c-white); }
.art-preview-design .swatch.s4 { background: #5EEAD4; }
.art-preview-design .swatch.s5 { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); }
.art-preview-design .swatch.s6 { background: rgba(255,255,255,.4); }
.art-preview-design .swatch.s7 { background: rgba(255,107,53,.4); }
.art-preview-design .swatch.s8 { background: rgba(94,234,212,.4); }
.art-preview-design .type-row {
  grid-column: 1 / -1;
  height: 12px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  margin-top: 6px;
}
.art-preview-design .type-row.tr2 { width: 70%; }
.art-preview-design .type-row.tr3 { width: 50%; }
.art-body { padding: 24px 22px 22px; }
.art-tag {
  font: 700 10px/1 'JetBrains Mono', monospace;
  color: #FF6B35;
  background: rgba(255,107,53,.1);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.art-card h3 {
  font: 700 1.1rem/1.2 'Space Grotesk', sans-serif;
  color: #0B1E3F;
  margin: 0 0 8px;
}
.art-card p {
  font: 500 .88rem/1.5 'Inter', sans-serif;
  color: #4D5A77;
  margin: 0;
}
