/**
 * ═══════════════════════════════════════════════════════════
 * FLOWBOTICS - SPRINT PAGES STYLES
 * css/pages/sprints.css
 * ═══════════════════════════════════════════════════════════
 * 
 * Shared styles for all sprint detail pages.
 * Sprint-specific colors defined below.
 */

/* ═══════════════════════════════════════════════════════════
   SPRINT COLOR DEFINITIONS - Vibrant Neon System
   ═══════════════════════════════════════════════════════════ */

/* Sprint 1: Inspector - Punchy Apricot */
.sprint-page.sprint-1,
.sprint-page[data-sprint="1"] {
  --sprint-color: #F5B7B7;
  --sprint-color-rgb: 245, 183, 183;
}

/* Sprint 2: Optimizer - Punchy Lavender */
.sprint-page.sprint-2,
.sprint-page[data-sprint="2"] {
  --sprint-color: #C084E8;
  --sprint-color-rgb: 192, 132, 232;
}

/* Sprint 3: Fortress - Punchy Blue */
.sprint-page.sprint-3,
.sprint-page[data-sprint="3"] {
  --sprint-color: #7EC8E3;
  --sprint-color-rgb: 126, 200, 227;
}

/* Sprint 4: Automator - Brand Blue */
.sprint-page.sprint-4,
.sprint-page[data-sprint="4"] {
  --sprint-color: #65AFE1;
  --sprint-color-rgb: 101, 175, 225;
}

/* Sprint 5: Migration - Punchy Teal */
.sprint-page.sprint-5,
.sprint-page[data-sprint="5"] {
  --sprint-color: #5EC4C4;
  --sprint-color-rgb: 94, 196, 196;
}

/* Sprint 6: Vault - Keepit Green */
.sprint-page.sprint-6,
.sprint-page[data-sprint="6"] {
  --sprint-color: #00D27A;
  --sprint-color-rgb: 0, 210, 122;
}

/* Sprint 7: Guardian - Punchy Gold */
.sprint-page.sprint-7,
.sprint-page[data-sprint="7"] {
  --sprint-color: #F9A826;
  --sprint-color-rgb: 249, 168, 38;
}

/* Sprint 8: Orchestrator - Punchy Indigo */
.sprint-page.sprint-8,
.sprint-page[data-sprint="8"] {
  --sprint-color: #6B74E6;
  --sprint-color-rgb: 107, 116, 230;
}

/* ═══════════════════════════════════════════════════════════
   SPRINT PAGE BASE
   ═══════════════════════════════════════────────── */

/* Hide background orbs */
.sprint-page .ambient-canvas .orb-1,
.sprint-page .ambient-canvas .orb-2,
.sprint-page .ambient-canvas .orb-bloom,
.sprint-page .ambient-canvas .orb {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Button Fix - ensure dark text on primary buttons */
.sprint-page .btn-primary {
  color: #000 !important;
}

/* ═══════════════════════════════════════════════════════════
   SPRINT HEADER
   ─────────────────────────────────────────────────────────── */

.sprint-header-compact {
  padding: 140px 0 60px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.sprint-header-compact .container {
  text-align: left;
}

/* Ambient Glow im Header-Bereich */
.sprint-header-compact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(var(--sprint-color-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Sprint Badge */
.sprint-page .hero-badge {
  background: rgba(var(--sprint-color-rgb), 0.15) !important;
  color: var(--sprint-color) !important;
  border: 1px solid rgba(var(--sprint-color-rgb), 0.3) !important;
  margin-left: 0;
}

/* Sprint Title */
.sprint-title-main {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 20px 0 16px;
  color: #fff;
  position: relative;
  text-shadow: 0 0 60px rgba(var(--sprint-color-rgb), 0.3);
  text-align: left;
}

.sprint-title-main span {
  color: var(--sprint-color);
  text-shadow: 0 0 40px rgba(var(--sprint-color-rgb), 0.5);
}

.sprint-subtitle {
  font-size: 1rem;
  color: #fff9f9;
  max-width: 640px;
  line-height: 1.7;
  margin: 0 0 40px 0 !important;
  text-align: left;
}

/* ═════════════════════════════════──────────────────────────
   SPRINT STATS
   ─────────────────────────────────────────────────────────── */

.sprint-page .hero-stats-premium,
.sprint-stats {
  justify-content: center !important;
  margin-top: 40px;
  max-width: 700px;
}

.sprint-page .hero-stats-premium .hero-stat-item,
.sprint-stats .hero-stat-item {
  text-align: center !important;
}

.sprint-stats .hero-stat-divider {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(var(--sprint-color-rgb), 0.5) 20%,
    rgba(var(--sprint-color-rgb), 0.8) 50%,
    rgba(var(--sprint-color-rgb), 0.5) 80%,
    transparent 100%);
  box-shadow: 0 0 10px rgba(var(--sprint-color-rgb), 0.3);
}

.sprint-stats .hero-stat-number {
  font-size: 2rem;
}

.sprint-stats .hero-stat-highlight .hero-stat-number {
  color: var(--sprint-color);
  text-shadow: 0 0 20px rgba(var(--sprint-color-rgb), 0.4);
}

.stat-suffix {
  font-size: 1.25rem;
  margin-left: 2px;
}

/* ═══════════════════════════════════════════════════════════
   WHY SECTION - Info Cards
   ═══════════════════════════════════════════════════════════ */

.sprint-why-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

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

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

.why-card {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--sprint-color);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(var(--sprint-color-rgb), 0.1);
  border-color: rgba(var(--sprint-color-rgb), 0.3);
}

.why-icon {
  color: var(--sprint-color);
  margin-bottom: 16px;
}

.why-icon svg {
  filter: drop-shadow(0 0 8px rgba(var(--sprint-color-rgb), 0.4));
}

.why-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION - Card-Based Layout
   ═══════════════════════════════════════════════════════════ */

.sprint-scope-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

/* 3-Spalten Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════
   PRICING CARDS - Solider Hintergrund
   ═══════════════════════════════════════════════════════════ */

.pricing-card {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--sprint-color);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Highlighted Card (Corporate) */
.pricing-card-highlight {
  border-left-color: rgba(var(--sprint-color-rgb), 0.3);
  border-right-color: rgba(var(--sprint-color-rgb), 0.3);
  border-bottom-color: rgba(var(--sprint-color-rgb), 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(var(--sprint-color-rgb), 0.15);
}

/* ═══════════════════════════════════════════════════════════
   CARD CONTENT
   ═══════════════════════════════════════════════════════════ */

.pricing-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 28px 12px 28px;
}

.pricing-icon {
  color: var(--sprint-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon svg {
  filter: drop-shadow(0 0 6px rgba(var(--sprint-color-rgb), 0.5));
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  padding: 0 28px;
}

.pricing-card-highlight .pricing-price {
  color: var(--sprint-color);
  text-shadow: 0 0 20px rgba(var(--sprint-color-rgb), 0.4);
}

.pricing-users {
  font-size: 0.875rem;
  color: var(--sprint-color);
  font-weight: 500;
  padding: 4px 28px 0;
}

.pricing-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  padding: 12px 28px;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--sprint-color-rgb), 0.4) 20%, rgba(var(--sprint-color-rgb), 0.6) 50%, rgba(var(--sprint-color-rgb), 0.4) 80%, transparent 100%);
  margin: 12px 20px;
}

.pricing-scope {
  padding: 0 28px 28px 28px;
  flex: 1;
}

/* Deliverables Header */
.pricing-scope .deliverables-header {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  color: var(--sprint-color);
  text-shadow: 0 0 8px rgba(var(--sprint-color-rgb), 0.3);
}

.pricing-scope .deliverables-header:not(:first-child) {
  margin-top: 16px;
}

/* Deliverables List */
.pricing-scope .deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-scope .deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  line-height: 1.4;
}

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

.pricing-scope .deliverables-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sprint-color);
  filter: drop-shadow(0 0 4px rgba(var(--sprint-color-rgb), 0.4));
}

/* ═══════════════════════════════════════════════════════════
   TECH SCOPE TOGGLE (Gatekeeper UX)
   ═══════════════════════════════════════════════════════════ */

.tech-scope-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.tech-scope-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--sprint-color);
  border-radius: 12px;
  padding: 18px 32px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.tech-scope-toggle:hover {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(var(--sprint-color-rgb), 0.3);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-scope-toggle .toggle-text {
  font-weight: 500;
}

.tech-scope-toggle .toggle-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.tech-scope-toggle .toggle-arrow {
  transition: transform 0.3s ease;
  color: var(--sprint-color);
  margin-left: 8px;
}

.tech-scope-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.tech-scope-toggle[aria-expanded="true"] .toggle-text {
  display: none;
}

.tech-scope-toggle[aria-expanded="true"] .toggle-subtext::before {
  content: "Technischen Scope ausblenden ";
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.tech-scope-toggle[aria-expanded="true"] .toggle-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Tech Scope Section Animation */
.sprint-tech-scope {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
}

.sprint-tech-scope:not([hidden]) {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Scope Grid - 4 Cards */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

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

/* Scope Cards */
.scope-card {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--sprint-color);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.scope-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--sprint-color-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(var(--sprint-color-rgb), 0.15);
}

.scope-icon {
  color: var(--sprint-color);
  margin-bottom: 16px;
}

.scope-icon svg {
  filter: drop-shadow(0 0 8px rgba(var(--sprint-color-rgb), 0.4));
}

.scope-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.scope-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.scope-deliverables {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 16px;
}

.scope-deliverables .deliverables-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--sprint-color);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

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

.scope-deliverables .deliverables-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.scope-deliverables .deliverables-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--sprint-color);
}

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

/* ═══════════════════════════════════════════════════════════
   SCOPE SECTION (Sprint Cards)
   ═══════════════════════════════════════════════════════════ */

/* Sprint Cards mit Akzent - Vibrant Neon */
.sprint-card .sprint-accent-top {
  background: var(--sprint-color);
  box-shadow: 0 0 20px rgba(var(--sprint-color-rgb), 0.6);
}

.sprint-card .sprint-accent-left {
  background: var(--sprint-color);
  box-shadow: 0 0 15px rgba(var(--sprint-color-rgb), 0.5);
}

.sprint-card:hover {
  border-color: var(--sprint-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(var(--sprint-color-rgb), 0.2);
}

.sprint-card:hover .sprint-accent-top,
.sprint-card:hover .sprint-accent-left {
  box-shadow: 0 0 30px rgba(var(--sprint-color-rgb), 0.8);
}

.sprint-card .badge-case,
.sprint-card .badge-migrator,
.sprint-page .badge-case,
.sprint-page .badge-migrator {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.sprint-page .badge-case svg {
  stroke: var(--sprint-color);
  filter: drop-shadow(0 0 4px rgba(var(--sprint-color-rgb), 0.5));
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */

.sprint-page .section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════
   ROI SECTION
   ═══════════════════════════════════════════════════════════ */

.sprint-roi-section {
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}

.roi-card {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.roi-title {
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.roi-desc {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.roi-item {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.roi-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--sprint-color);
}

.roi-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.roi-sublabel {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   DELIVERABLES SECTION
   ═══════════════════════════════════════════════════════════ */

.sprint-deliverables-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.deliverables-title {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.deliverables-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

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

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.deliverable-item:last-child {
  border-bottom: none;
}

.deliverable-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(var(--sprint-color-rgb), 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sprint-color);
}

.deliverable-content h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.deliverable-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   OUT OF SCOPE SECTION
   ═══════════════════════════════════════════════════════════ */

.sprint-out-of-scope-section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.sprint-out-of-scope-section .container {
  display: flex;
  justify-content: center;
}

.out-of-scope-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 700px;
  text-align: center;
}

.out-of-scope-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.out-of-scope-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 800px;
  width: 100%;
}

.out-of-scope-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sprint-color);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(var(--sprint-color-rgb), 0.3);
}

.out-of-scope-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 16px;
}

.out-of-scope-text strong {
  color: #fff;
}

.out-of-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.out-of-scope-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.out-of-scope-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.out-of-scope-list li strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */

.sprint-faq-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.faq-item summary {
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  padding: 0 20px;
  gap: 20px;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--sprint-color);
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  line-height: 1.6;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.sprint-cta-section {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.sprint-cta-card {
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sprint-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--sprint-color-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sprint-cta-title {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 12px;
}

.sprint-cta-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sprint-price {
  font-size: 2.5rem;
  color: var(--sprint-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.sprint-price-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* Sprint Links */
.sprint-page .sprint-link {
  color: var(--sprint-color);
  transition: all 0.2s ease;
}

.sprint-page .sprint-link:hover {
  color: var(--sprint-color);
  filter: brightness(1.2);
  text-shadow: 0 0 10px rgba(var(--sprint-color-rgb), 0.5);
}

.sprint-page .deliverables-header {
  color: var(--sprint-color);
  text-shadow: 0 0 8px rgba(var(--sprint-color-rgb), 0.3);
}

.sprint-page .deliverables-list svg {
  color: var(--sprint-color);
  filter: drop-shadow(0 0 4px rgba(var(--sprint-color-rgb), 0.4));
}

/* CTA Card */
.cta-card {
  text-align: center;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.cta-card h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 24px;
}

.cta-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-size: 1rem;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   KEEPIT LOGO (Sprint 6)
   ═══════════════════════════════════════════════════════════ */

.hero-partner-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.partner-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.keepit-logo {
  height: 24px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.keepit-logo:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   MAGIC PARTICLES (Sprint 2)
   ═══════════════════════════════════════════════════════════ */

.magic-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.magic-particles .particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  animation: floatUpMagic linear infinite;
  pointer-events: none;
}

@keyframes floatUpMagic {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity, 0.4);
  }
  90% {
    opacity: var(--particle-opacity, 0.4);
  }
  100% {
    transform: translateY(-110vh) translateX(var(--drift, 20px)) scale(0.5);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* ROI Grid: 2 Spalten */
  .roi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sprint Stats: Automatische Breite */
  .sprint-page .hero-stats-premium,
  .sprint-stats {
    max-width: 100%;
    width: auto;
    justify-content: flex-start !important;
    gap: 16px;
  }

  .sprint-stats .hero-stat-item {
    flex: 1 1 auto;
    min-width: 80px;
    padding: 12px 16px;
  }

  .sprint-stats .hero-stat-divider {
    display: none;
  }

  /* Pricing Grid: 1 Spalte */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  /* Mobile Reihenfolge: Essentials, Corporate, Enterprise */
  .pricing-card[data-card="1"] { order: 1; }
  .pricing-card[data-card="2"] { order: 2; }
  .pricing-card[data-card="3"] { order: 3; }

  /* Featured Card ohne Transform */
  .pricing-card-highlight {
    transform: none;
  }

  /* Mobile Padding */
  .pricing-header { padding: 24px 24px 10px 24px; }
  .pricing-price { padding: 0 24px; }
  .pricing-users { padding: 4px 24px 0; }
  .pricing-desc { padding: 12px 24px; }
  .pricing-divider { margin: 12px 16px; }
  .pricing-scope { padding: 0 24px 24px 24px; }
}

@media (max-width: 600px) {
  /* ROI Grid: 1 Spalte */
  .roi-grid {
    grid-template-columns: 1fr;
  }

  /* Sprint Header */
  .sprint-header-compact {
    padding: 120px 0 40px;
  }

  /* Sprint Stats */
  .sprint-stats {
    flex-direction: column;
    gap: 24px;
  }

  .sprint-stats .hero-stat-divider {
    display: none;
  }

  /* Pricing Cards */
  .pricing-price {
    font-size: 1.75rem;
  }

  .pricing-header,
  .pricing-price,
  .pricing-users,
  .pricing-desc,
  .pricing-scope {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-scope {
    padding-bottom: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   LEAD QUALIFICATION FORM (Sprint CTA)
   ═══════════════════════════════════════════════════════════ */

.sprint-qualification-form {
  max-width: 500px;
  margin: 32px auto 0;
  text-align: left;
}

.sprint-qualification-form .form-group {
  margin-bottom: 20px;
}

.sprint-qualification-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.sprint-qualification-form select,
.sprint-qualification-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.sprint-qualification-form select:focus,
.sprint-qualification-form input[type="email"]:focus {
  outline: none;
  border-color: var(--sprint-color, #65AFE1);
  background: rgba(255, 255, 255, 0.08);
}

.sprint-qualification-form select:hover,
.sprint-qualification-form input[type="email"]:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Custom Select Arrow */
.sprint-qualification-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Placeholder/Option Styling */
.sprint-qualification-form select option {
  background: #1a103c;
  color: #fff;
  padding: 8px;
}

/* ═══════════════════════════════════════════════════════════
   BUSINESS CASE SECTION
   ═══════════════════════════════════════════════════════════ */

.sprint-business-case-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.business-case-card {
  background: rgba(var(--sprint-color-rgb), 0.08);
  border: 1px solid rgba(var(--sprint-color-rgb), 0.2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.business-case-card h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}

.business-case-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

.business-case-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .business-case-card {
    padding: 32px 24px;
    margin: 0 20px;
  }
  
  .business-case-card h2 {
    font-size: 1.4rem;
  }
}

.sprint-qualification-form select option:disabled {
  color: rgba(255, 255, 255, 0.4);
}

/* Submit Button */
.sprint-qualification-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Note */
.sprint-qualification-form .form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 600px) {
  .sprint-qualification-form {
    margin-top: 24px;
  }
  
  .sprint-qualification-form select,
  .sprint-qualification-form input[type="email"] {
    padding: 14px 16px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
}
