/* Rapid POC Page Styles */

:root {
  --pale-blue: #acc1fc;
  --accent-yellow: #FF6F00;
  --dark-navy: #1f274e;
  --raisin-black: #1f2021;
  --off-white: #f9f6f1;
}

/* Hero Section */
.poc-hero {
  background: linear-gradient(165deg, #ffffff 0%, #f8f9fa 100%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.poc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(172, 193, 252, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 111, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.poc-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.poc-badge {
  display: inline-block;
  background: rgba(172, 193, 252, 0.15);
  color: var(--dark-navy);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(172, 193, 252, 0.4);
  font-family: 'Matter', sans-serif;
  animation: fadeInDown 0.6s ease-out;
}

.poc-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: 'Calsans', 'Matter', sans-serif;
  color: var(--raisin-black);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.poc-hero h1 .highlight {
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.poc-hero p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--raisin-black);
  font-family: 'Matter', sans-serif;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-primary,
.cta-secondary {
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Matter', sans-serif;
  display: inline-block;
}

.cta-primary {
  background: var(--pale-blue);
  color: var(--dark-navy);
  border: 2px solid var(--pale-blue);
}

.cta-primary:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: var(--raisin-black);
  border: 2px solid var(--raisin-black);
}

.cta-secondary:hover {
  background: var(--raisin-black);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Quick Overview Section */
.poc-overview {
  padding: 80px 20px;
  background: #ffffff;
}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.overview-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(172, 193, 252, 0.05), rgba(255, 111, 0, 0.05));
  border: 1px solid rgba(172, 193, 252, 0.2);
  border-radius: 12px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--item-index, 0) * 0.1s);
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--pale-blue);
  background: linear-gradient(135deg, rgba(172, 193, 252, 0.1), rgba(255, 111, 0, 0.1));
  box-shadow: 0 10px 30px rgba(172, 193, 252, 0.1);
}

.overview-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.overview-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 8px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.overview-card p {
  font-size: 15px;
  color: var(--raisin-black);
  opacity: 0.7;
  font-family: 'Matter', sans-serif;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mono-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--pale-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: 'Matter', sans-serif;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--raisin-black);
  font-family: 'Calsans', 'Matter', sans-serif;
}

.section-header p {
  font-size: 18px;
  color: var(--raisin-black);
  opacity: 0.7;
  font-family: 'Matter', sans-serif;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.timeline-item {
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  position: relative;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--item-index, 0) * 0.12s);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  border-color: var(--pale-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-number {
  position: absolute;
  top: -15px;
  left: 32px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 12px;
  margin-top: 12px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--raisin-black);
  opacity: 0.7;
  margin-bottom: 16px;
  font-family: 'Matter', sans-serif;
}

.timeline-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-tasks li {
  font-size: 14px;
  color: var(--raisin-black);
  opacity: 0.6;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-family: 'Matter', sans-serif;
}

.timeline-tasks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pale-blue);
  font-weight: 700;
}

/* POC Options Section */
.poc-options {
  padding: 80px 20px;
  background: #ffffff;
}

.options-container {
  max-width: 1200px;
  margin: 0 auto;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.poc-card {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  position: relative;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--item-index, 0) * 0.1s);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.poc-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--pale-blue);
}

.poc-card-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent-yellow);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Matter', sans-serif;
}

.poc-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.poc-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 8px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.poc-tagline {
  font-size: 16px;
  color: var(--pale-blue);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Matter', sans-serif;
}

.poc-what-included,
.poc-expected {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.poc-what-included h4,
.poc-expected h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-family: 'Matter', sans-serif;
}

.poc-what-included ul,
.poc-expected ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poc-what-included li,
.poc-expected li {
  font-size: 14px;
  color: var(--raisin-black);
  opacity: 0.7;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-family: 'Matter', sans-serif;
}

.poc-what-included li::before,
.poc-expected li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pale-blue);
  font-weight: 700;
}

.poc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--pale-blue);
  font-family: 'Calsans', 'Matter', sans-serif;
}

.price-desc {
  font-size: 14px;
  color: var(--raisin-black);
  opacity: 0.6;
  font-family: 'Matter', sans-serif;
}

.poc-cta {
  display: inline-block;
  background: var(--pale-blue);
  color: var(--dark-navy);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Matter', sans-serif;
}

.poc-cta:hover {
  background: var(--accent-yellow);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Why POC Section */
.why-poc {
  padding: 80px 20px;
  background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.why-card {
  padding: 36px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--item-index, 0) * 0.08s);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--pale-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 12px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--raisin-black);
  opacity: 0.7;
  margin: 0;
  font-family: 'Matter', sans-serif;
}

/* Success Stories Section */
.poc-success {
  padding: 80px 20px;
  background: #ffffff;
}

.success-container {
  max-width: 1200px;
  margin: 0 auto;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.success-card {
  padding: 36px;
  background: linear-gradient(135deg, var(--pale-blue) 0%, rgba(172, 193, 252, 0.9) 100%);
  border-radius: 12px;
  color: #ffffff;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--item-index, 0) * 0.1s);
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(172, 193, 252, 0.3);
}

.success-stat {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.success-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.success-company {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 16px;
  font-family: 'Matter', sans-serif;
}

.success-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 16px;
  font-style: italic;
  font-family: 'Matter', sans-serif;
}

.success-author {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  font-family: 'Matter', sans-serif;
}

/* FAQ Section */
.poc-faq {
  padding: 80px 20px;
  background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 50px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--raisin-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0;
  font-family: 'Matter', sans-serif;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--pale-blue);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--pale-blue);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--raisin-black);
  opacity: 0.7;
  margin: 0;
  font-family: 'Matter', sans-serif;
}

/* Final CTA Section */
.poc-final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--pale-blue), var(--accent-yellow));
  text-align: center;
  color: #ffffff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Calsans', 'Matter', sans-serif;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  font-family: 'Matter', sans-serif;
}

.cta-btn {
  display: inline-block;
  background: var(--dark-navy);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Matter', sans-serif;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--raisin-black);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .poc-hero {
    padding: 80px 20px 60px;
  }

  .poc-hero h1 {
    font-size: 36px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .overview-card {
    padding: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-number {
    top: -12px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .timeline-item {
    padding: 28px 28px 28px 60px;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .poc-card {
    padding: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .success-grid {
    grid-template-columns: 1fr;
  }

  .poc-final-cta {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

/* Accessibility */
.faq-question:focus,
.poc-cta:focus,
.cta-btn:focus,
.cta-primary:focus,
.cta-secondary:focus {
  outline: 2px solid var(--dark-navy);
  outline-offset: 2px;
}
