/* ═══════════════════════════════════════════════════════════
   FLOWBOTICS COMPONENTS CSS
   Extracted inline styles from index.html
   Includes: Hero, Sprint Cards, Case Studies, About, Contact
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   SPRINT COLOR SYSTEM - CSS Custom Properties
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Sprint Accent Colors - Pastel System */
  --sprint-inspector: rgba(249, 168, 212, 0.9);
  --sprint-inspector-border: rgba(249, 168, 212, 0.5);
  --sprint-inspector-bg: rgba(249, 168, 212, 0.08);
  
  --sprint-optimizer: rgba(196, 181, 253, 0.9);
  --sprint-optimizer-border: rgba(196, 181, 253, 0.5);
  --sprint-optimizer-bg: rgba(196, 181, 253, 0.08);
  
  --sprint-fortress: rgba(125, 211, 252, 0.9);
  --sprint-fortress-border: rgba(125, 211, 252, 0.5);
  --sprint-fortress-bg: rgba(125, 211, 252, 0.08);
  
  --sprint-automator: rgba(94, 234, 212, 0.9);
  --sprint-automator-border: rgba(94, 234, 212, 0.5);
  --sprint-automator-bg: rgba(94, 234, 212, 0.08);
  
  --sprint-vault: rgba(134, 239, 172, 0.9);
  --sprint-vault-border: rgba(134, 239, 172, 0.5);
  --sprint-vault-bg: rgba(134, 239, 172, 0.08);
  
  --sprint-cleaner: rgba(192, 132, 252, 0.9);
  --sprint-cleaner-border: rgba(192, 132, 252, 0.5);
  --sprint-cleaner-bg: rgba(192, 132, 252, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   BASE STYLES OVERRIDE
   ═══════════════════════════════════════════════════════════ */
body {
  background-color: #07040e;
  color: #E7E7EF;
}

/* Tech Grid Background */
.tech-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: 
    linear-gradient(to right, rgba(195, 183, 215, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(195, 183, 215, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 0%, black 30%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION STYLES
   ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 140px 0 100px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(101, 175, 225, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(195, 183, 215, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(72, 34, 129, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
  min-width: 0;
}

.hero-badge {
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #8BD7F8;
  background: rgba(139, 215, 248, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(139, 215, 248, 0.25);
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-title span {
  background: linear-gradient(90deg, #65AFE1 0%, #a5b4fc 25%, #65AFE1 50%, #8FB8E3 75%, #65AFE1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subline {
  color: #cbd5e1;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 640px;
}

.hero-stats-row {
  display: flex;
  gap: 24px;
  margin: 6px 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #888;
}

.hero-cta {
  margin-top: 10px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Trust Bar Small */
.hero-stats-sm {
  padding: 8px 16px;
  gap: 16px;
}

.hero-stats-sm .stat {
  transform: none;
  gap: 4px;
}

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

.hero-stats-sm .stat-icon svg {
  width: 12px;
  height: 12px;
}

.hero-stats-sm .stat-num {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-stats-sm .stat-label {
  font-size: 0.7rem;
  color: #C3B7D7;
}

.hero-stats-sm .stat-sep {
  height: 24px;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-title { font-size: 2.2rem; }
  .code-editor { display: none; }
  .hero-right { display: none !important; }
  .sprint-flow { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   CODE WINDOW / EDITOR VISUAL
   ═══════════════════════════════════════════════════════════ */
.code-window-wrapper {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.code-window {
  background: rgba(7, 8, 16, 0.7);
  border: 1px solid rgba(101, 175, 225, 0.25);
  border-radius: 14px;
  padding: 22px;
  max-width: 420px;
  backdrop-filter: blur(16px);
  box-shadow: 
    0 0 0 1px rgba(101, 175, 225, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(101, 175, 225, 0.15);
  transform: rotateY(-8deg) rotateX(4deg) translateZ(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.code-window:hover {
  transform: rotateY(-4deg) rotateX(2deg) translateZ(30px);
  box-shadow: 
    0 0 0 1px rgba(101, 175, 225, 0.2),
    0 35px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(101, 175, 225, 0.25);
}

@keyframes float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateZ(20px) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateZ(20px) translateY(-8px); }
}

.code-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(101, 175, 225, 0.15);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.code-dot.red { background: #ff5f56; color: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; color: #ffbd2e; }
.code-dot.green { background: #27c93f; color: #27c93f; }

.code-filename {
  margin-left: auto;
  font-size: 0.7rem;
  color: #64748b;
  font-family: 'Fira Code', monospace;
}

.code-content {
  font-family: 'Fira Code', monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.code-line { 
  display: flex; 
  gap: 12px; 
  opacity: 0;
  animation: type-in 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.5s; }
.code-line:nth-child(2) { animation-delay: 0.8s; }
.code-line:nth-child(3) { animation-delay: 1.1s; }
.code-line:nth-child(4) { animation-delay: 1.4s; }
.code-line:nth-child(5) { animation-delay: 1.7s; }
.code-line:nth-child(6) { animation-delay: 2.0s; }
.code-line:nth-child(7) { animation-delay: 2.3s; }
.code-line:nth-child(8) { animation-delay: 2.6s; }
.code-line:nth-child(9) { animation-delay: 2.9s; }
.code-line:nth-child(10) { animation-delay: 3.2s; }
.code-line:nth-child(11) { animation-delay: 3.5s; }
.code-line:nth-child(12) { animation-delay: 3.8s; }
.code-line:nth-child(13) { animation-delay: 4.1s; }

@keyframes type-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.code-num {
  color: #475569;
  min-width: 22px;
  text-align: right;
  user-select: none;
}

.code-comment { color: #64748b; font-style: italic; }
.code-cmd { color: #65AFE1; text-shadow: 0 0 10px rgba(101, 175, 225, 0.3); }
.code-str { color: #a5b4fc; }
.code-var { color: #f9a8d0; }
.code-keyword { color: #94e2d5; }

@media (max-width: 900px) {
  .hero-right { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   SPRINT CARDS - Masonry Grid Layout
   ═══════════════════════════════════════════════════════════ */
.sprints-section {
  padding: 80px 0;
  background: transparent;
}

.sprints-header {
  text-align: center;
  margin-bottom: 40px;
}

.sprints-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.sprints-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.sprints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

@media (max-width: 640px) {
  .sprints-grid { grid-template-columns: 1fr; }
}

/* Compact 2x2 Grid für Sprint-Unterseiten (4 Karten) */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .scope-grid { grid-template-columns: 1fr; }
}

/* Sprint Card Base */
.sprint-card {
  background: #0A0B12;
  border: 1px solid rgba(195, 183, 215, 0.1);
  border-top: 2px solid var(--card-color);
  border-left: 2px solid var(--card-color);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.sprint-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #0d0e16;
}

/* Varying padding for masonry effect */
.sprint-card:nth-child(odd) { padding-bottom: 48px; }
.sprint-card:nth-child(even) { padding-bottom: 32px; }
.sprint-card:nth-child(3n) { padding-bottom: 56px; }

/* Sprint Color Variables */
.card-inspector { --card-color: #f9a8d4; }
.card-optimizer { --card-color: #c4b5fd; }
.card-fortress { --card-color: #7dd3fc; }
.card-automator { --card-color: #5eead4; }
.card-vault { --card-color: #86efac; }
.card-cleaner { --card-color: #c084fc; }

/* Sprint Card Header */
.sprint-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* Sprint Meta (ID + Duration) */
.sprint-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sprint-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--card-color);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--card-color);
}

.sprint-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #C3B7D7;
}

/* Sprint Badges */
.sprint-badge {
  font-family: 'Fira Code', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
}

.sprint-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Badge Colors */
.badge-inspector,
.badge-optimizer,
.badge-fortress,
.badge-automator,
.badge-vault,
.badge-cleaner {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255, 255, 255, 0.85) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-inspector { border-top: 2px solid var(--sprint-inspector-border); }
.badge-inspector svg { stroke: var(--sprint-inspector); }

.badge-optimizer { border-top: 2px solid var(--sprint-optimizer-border); }
.badge-optimizer svg { stroke: var(--sprint-optimizer); }

.badge-fortress { border-top: 2px solid var(--sprint-fortress-border); }
.badge-fortress svg { stroke: var(--sprint-fortress); }

.badge-automator { border-top: 2px solid var(--sprint-automator-border); }
.badge-automator svg { stroke: var(--sprint-automator); }

.badge-vault { border-top: 2px solid var(--sprint-vault-border); }
.badge-vault svg { stroke: var(--sprint-vault); }

.badge-cleaner { border-top: 2px solid var(--sprint-cleaner-border); }
.badge-cleaner svg { stroke: var(--sprint-cleaner); }

/* Sprint Title & Description */
.sprint-title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.sprint-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Sprint Deliverables */
.sprint-deliverables {
  border-top: 1px solid rgba(195, 183, 215, 0.1);
  padding-top: 24px;
  background: rgba(7, 8, 16, 0.6);
  border: 1px solid rgba(195, 183, 215, 0.1);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.deliverables-header {
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  color: #65AFE1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #C3B7D7;
  margin-bottom: 8px;
  line-height: 1.4;
}

.deliverables-list li:last-child {
  margin-bottom: 0;
}

.deliverables-list svg {
  color: #65AFE1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sprint Link */
.sprint-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #65AFE1;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}

.sprint-link:hover {
  color: #8FB8E3;
}

@media (max-width: 768px) {
  .sprints-grid {
    padding: 0 15px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDY STYLES
   ═══════════════════════════════════════════════════════════ */
.case-study-header-fix {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 2rem !important;
  padding: 2rem !important;
}

.case-study-header-left-fix {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.case-study-title-fix {
  text-align: left !important;
  margin: 0 !important;
}

.case-study-title-fix h3 {
  font-size: 1.5rem !important;
  margin: 0 !important;
  background: linear-gradient(135deg, #fff, #4da8ff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.client-logo-link-fix {
  flex-shrink: 0 !important;
}

.client-logo-link-fix img {
  width: 140px !important;
  height: auto !important;
  max-height: 60px !important;
  object-fit: contain !important;
}

.case-study-tech-stack-custom {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  gap: 1rem !important;
}

@media (max-width: 768px) {
  .case-study-header-fix {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .case-study-header-left-fix {
    align-items: center !important;
  }
  .case-study-badges {
    justify-content: center !important;
  }
  .case-study-title-fix {
    text-align: center !important;
  }
  .case-study-title-fix h3 {
    text-align: center !important;
  }
  .client-logo-link-fix {
    margin-top: 1rem !important;
  }
}

/* Case Study Unified Grid */
.case-study-unified {
  padding: 3rem 2.5rem;
  background: transparent;
}

.unified-title {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.5rem 0;
}

.unified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .unified-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.unified-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.unified-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(101, 175, 225, 0.3);
  transform: translateY(-2px);
}

.unified-item.highlight {
  background: rgba(101, 175, 225, 0.1);
  border-color: rgba(101, 175, 225, 0.4);
}

.unified-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.unified-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #65AFE1;
  margin-bottom: 0.5rem;
}

.unified-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION STYLES
   ═══════════════════════════════════════════════════════════ */
.about-section {
  background: linear-gradient(180deg, transparent 0%, rgba(101, 175, 225, 0.05) 50%, transparent 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-animated-lines {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.about-dark-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-unified-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #65AFE1;
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-unified-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .about-unified-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
  }
  .about-left {
    display: flex;
    flex-direction: column;
  }
  .about-left .about-code-badge {
    order: -2;
  }
  .about-left .about-title {
    order: -1;
  }
  .about-right {
    order: 0;
  }
}

.about-code-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #65AFE1;
  background: rgba(101, 175, 225, 0.08);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #65AFE1;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-title {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-text {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.process-list-dark {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list-dark li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-list-dark li:last-child {
  border-bottom: none;
}

.process-num-dark {
  width: 32px;
  height: 32px;
  background: rgba(101, 175, 225, 0.1);
  border: 1px solid rgba(101, 175, 225, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #65AFE1;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.process-title-dark {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.process-desc-dark {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-profile-img {
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(249, 168, 212, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION STYLES
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  background: radial-gradient(ellipse at bottom, rgba(72, 34, 129, 0.15) 0%, transparent 60%);
  padding: 80px 0;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.contact-header p {
  color: #C3B7D7;
  font-size: 1.1rem;
}

.contact-form-bright {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px;
}

.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-modern.full {
  grid-column: 1 / -1;
}

.form-group-modern label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #65AFE1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group-modern input,
.form-group-modern textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  color: #070810;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: #65AFE1;
  background: #fff;
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
  color: #666;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #65AFE1;
  color: #070810;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #7AB8E3;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .form-row-modern {
    grid-template-columns: 1fr;
  }
  .contact-form-bright {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TECH STACK BAR STYLES
   ═══════════════════════════════════════════════════════════ */
.tech-stack-bar {
  background: #070810;
  padding: 16px 0;
  border-top: 1px solid rgba(195, 183, 215, 0.1);
}

.tech-stack-static {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.tech-stack-category {
  margin-bottom: 48px;
}

.tech-stack-category:last-child {
  margin-bottom: 0;
}

.stack-category-label {
  display: none;
}

.stack-icons-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stack-icon-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stack-icon-item:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.stack-icon-item img {
  width: 40px;
  height: 40px;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

.stack-icon-item:hover img {
  filter: grayscale(0%);
}

.stack-icon-item span {
  position: absolute;
  bottom: -28px;
  font-size: 0.7rem;
  color: #C3B7D7;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.stack-icon-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .stack-icons-grid {
    gap: 28px;
  }
  .stack-icon-item img {
    width: 32px;
    height: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE ABOUT GRID FIXES
   ═══════════════════════════════════════════════════════════ */
.about-grid { 
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  box-sizing: border-box !important;
  gap: 3rem !important;
}

.about-cards {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

.about-card {
  width: 100% !important;
  max-width: none !important;
}

.process-list-right {
  margin-top: 2rem !important;
  padding: 1.5rem !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
}

.process-list-right li {
  margin-bottom: 1rem !important;
}

@media screen and (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   SPRINT ICON COLORS (for card icons)
   ═══════════════════════════════════════════════════════════ */
.card-inspector .card-icon { color: var(--sprint-inspector); }
.card-optimizer .card-icon { color: var(--sprint-optimizer); }
.card-fortress .card-icon { color: var(--sprint-fortress); }
.card-automator .card-icon { color: var(--sprint-automator); }
.card-vault .card-icon { color: var(--sprint-vault); }
.card-cleaner .card-icon { color: var(--sprint-cleaner); }

/* Sprint Deliverables legacy styles */
.deliverables { 
  margin-top: 15px; 
  padding-top: 15px; 
  border-top: 1px dashed #e5e7eb; 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  line-height: 1.4;
}

.deliverables strong { 
  color: var(--text-color); 
  display: block; 
  margin-bottom: 4px; 
  font-weight: 600;
}
