/* ============================================================================
   FIJARA STARTUP PROGRAM PAGE
   Premium founder credit application page with advanced animations
   ============================================================================ */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
  /* Startup Rainbow Colors */
  --startup-gold: #fab000;
  --startup-pink: #ff5996;

  /* Chart Colors */
  --chart-blue-start: #3023aa;
  --chart-blue-end: #2aafff;
  --chart-pink-start: #ff50b6;
  --chart-pink-end: #ff0066;
  --chart-yellow-start: #fce06a;
  --chart-yellow-end: #ec7217;
  --chart-bg: #e2e8f0;
}

[data-theme="dark"] {
  --chart-blue-start: #4f46e5;
  --chart-blue-end: #60a5fa;
  --chart-pink-start: #f472b6;
  --chart-pink-end: #ec4899;
  --chart-yellow-start: #fbbf24;
  --chart-yellow-end: #f59e0b;
  --chart-bg: #1e293b;
}

[data-theme="creamy"] {
  --chart-blue-start: #0ea5e9;
  --chart-blue-end: #38bdf8;
  --chart-pink-start: #f472b6;
  --chart-pink-end: #db2777;
  --chart-yellow-start: #fcd34d;
  --chart-yellow-end: #d97706;
  --chart-bg: #e8e4dd;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.startup-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-white, #fff);
}

[data-theme="dark"] .startup-hero {
  background: var(--bg-body, #0f172a);
}

[data-theme="creamy"] .startup-hero {
  background: #fffdf9;
}

/* Rainbow Diagonal Background */
.startup-hero-rainbow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.startup-hero-rainbow::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  bottom: -50%;
  left: -25%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 35%,
    rgba(250, 176, 0, 0.15) 40%,
    rgba(255, 89, 150, 0.15) 45%,
    rgba(99, 91, 255, 0.15) 50%,
    rgba(99, 91, 255, 0.15) 55%,
    rgba(255, 89, 150, 0.15) 60%,
    rgba(250, 176, 0, 0.15) 65%,
    transparent 70%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: rainbowDiagonalMove 8s ease-in-out infinite;
  transform-origin: bottom center;
}

[data-theme="dark"] .startup-hero-rainbow::before {
  background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 35%,
    rgba(250, 176, 0, 0.08) 40%,
    rgba(255, 89, 150, 0.08) 45%,
    rgba(99, 91, 255, 0.08) 50%,
    rgba(99, 91, 255, 0.08) 55%,
    rgba(255, 89, 150, 0.08) 60%,
    rgba(250, 176, 0, 0.08) 65%,
    transparent 70%,
    transparent 100%
  );
  background-size: 200% 200%;
}

@keyframes rainbowDiagonalMove {
  0%,
  100% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
}

/* Hero Content Layout */
.startup-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Hero Left Content */
.startup-hero-content {
  max-width: 580px;
}

.startup-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(67, 121, 255, 0.1);
  border: 1px solid rgba(67, 121, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary, #4379ff);
  margin-bottom: 1.5rem;
}

[data-theme="creamy"] .startup-hero-badge {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
  color: #0ea5e9;
}

/* Animated Gradient Title */
.startup-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-secondary, #64748b);
}

.startup-hero-title .gradient-text {
  background: linear-gradient(
    90deg,
    var(--text-secondary, #64748b) 0%,
    var(--text-secondary, #64748b) 20%,
    var(--startup-gold) 35%,
    var(--startup-pink) 50%,
    var(--color-primary, #4379ff) 65%,
    var(--text-secondary, #64748b) 80%,
    var(--text-secondary, #64748b) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientTextGlow 4s ease-in-out forwards;
  animation-delay: 0.5s;
}

/* Initial state - dark */
.startup-hero-title .gradient-text {
  background-position: 100% 0;
}

@keyframes gradientTextGlow {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* Re-trigger animation after 2 minutes via JS */
.startup-hero-title .gradient-text.animate-again {
  animation: gradientTextGlow 4s ease-in-out forwards;
}

.startup-hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary, #64748b);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Hero Buttons */
.startup-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.startup-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primary, #4379ff) 0%,
    #8b5cf6 100%
  );
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(67, 121, 255, 0.3);
}

.startup-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(67, 121, 255, 0.4);
  color: white;
}

.startup-cta-btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

[data-theme="creamy"] .startup-cta-btn {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

/* Startup Program Card (with CTA inside) */
.startup-program-card {
  position: relative;
  width: 380px;
  background: var(--bg-card, #fff);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color, #e2e8f0);
  overflow: hidden;
}

[data-theme="dark"] .startup-program-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Top gradient bar */
.startup-program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    -90deg,
    #fab000,
    #ff5996,
    var(--color-primary, #4379ff),
    var(--color-primary, #4379ff),
    #ff5996,
    #fab000
  );
  background-size: 200% 100%;
  animation: gradientBarMove 3s linear infinite;
}

@keyframes gradientBarMove {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.startup-program-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.25rem;
}

[data-theme="dark"] .startup-program-card-title {
  color: #f1f5f9;
}

.startup-program-card-subtitle {
  font-size: 0.8125rem;
  color: var(--color-primary, #4379ff);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

[data-theme="creamy"] .startup-program-card-subtitle {
  color: #0ea5e9;
}

.startup-program-card-content {
  font-size: 0.9375rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.startup-program-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.startup-program-card-actions .startup-cta-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.startup-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--color-primary, #4379ff);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--color-primary, #4379ff);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.startup-explore-btn:hover {
  background: var(--color-primary, #4379ff);
  color: white;
}

[data-theme="creamy"] .startup-explore-btn {
  color: #0ea5e9;
  border-color: #0ea5e9;
}

[data-theme="creamy"] .startup-explore-btn:hover {
  background: #0ea5e9;
  color: white;
}

.startup-explore-btn .arrow-down {
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ============================================================================
   HERO RIGHT - FOUR CARDS ARRANGEMENT (Desktop)
   ============================================================================ */
.startup-hero-cards {
  position: relative;
  height: 100%;
  min-height: 600px;
}

/* Card Container for positioning */
.startup-cards-container {
  position: absolute;
  /* top: 90px; */
  top: 50px;
  right: 0;
  width: 100%;
}

/* Base Card Styles */
.startup-demo-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 34px 69px -57px rgba(0, 0, 0, 0.1),
    0 34px 69px -11px rgba(50, 50, 93, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition:
    opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] .startup-demo-card {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(71, 85, 105, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.startup-demo-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Card 1 - Payment Demo (Biggest) */
.startup-card-1 {
  width: 320px;
  /* height: 40vh; */
  min-height: 340px;
  max-height: 520px;
  top: 0;
  right: 0;
  z-index: 4;
  transition-delay: 0.9s;
}

/* Card 2 - Kanban Preview (25% smaller) */
.startup-card-2 {
  width: 250px;
  height: calc(45vh * 0.8);
  min-height: 275px;
  max-height: 350px;
  /* top: calc(40vh - 280px); */
  top: calc(40vh - 220px);
  transition-delay: 0.6s;
  right: 340px;
  z-index: 3;
}

/* Card 3 - Project Submitted */
.startup-card-3 {
  width: 204px;
  height: 140px;
  /* top: calc(40vh + 20px); */
  top: calc(40vh + 70px);
  right: 200px;
  z-index: 2;
  transition-delay: 0.3s;
}

/* Card 4 - Affiliate (Smallest) */
.startup-card-4 {
  width: 164px;
  height: 113px;
  /* top: calc(40vh + 135px); */
  top: calc(40vh + 185px);
  right: 375px;
  z-index: 1;
  transition-delay: 0s;
}

/* ============================================================================
   CARD 1 - PAYMENT DEMO CONTENT
   ============================================================================ */
.payment-demo {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.payment-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

[data-theme="dark"] .payment-demo-header {
  border-color: #334155;
}

.payment-demo-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0;
}

[data-theme="dark"] .payment-demo-title {
  color: #f1f5f9;
}

.payment-demo-secure {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: #10b981;
}

/* Price Display */
.payment-price-section {
  margin-bottom: 1rem;
}

.payment-original-price {
  font-size: 1rem;
  color: var(--text-muted, #94a3b8);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.payment-final-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #10b981;
}

.payment-savings {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ============================================================================
   COUPON TICKET MINI (Matching Payment Page Design)
   ============================================================================ */
.coupon-ticket-mini {
  position: relative;
  display: flex;
  align-items: stretch;
  background: linear-gradient(
    135deg,
    var(--color-primary, #4379ff) 0%,
    var(--color-primary-dark, #2b5fe0) 100%
  );
  border-radius: 10px;
  overflow: visible;
  min-height: 60px;
  margin-bottom: 1rem;
}

/* Circular cutouts on sides */
.coupon-ticket-mini::before,
.coupon-ticket-mini::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--bg-card, #fff);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

[data-theme="dark"] .coupon-ticket-mini::before,
[data-theme="dark"] .coupon-ticket-mini::after {
  background: rgba(30, 41, 59, 0.92);
}

.coupon-ticket-mini::before {
  left: -8px;
}

.coupon-ticket-mini::after {
  right: -8px;
}

.coupon-ticket-mini-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-right: 2px dashed rgba(255, 255, 255, 0.3);
  min-width: 50px;
}

.coupon-ticket-mini-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: white;
}

.coupon-ticket-mini-content {
  flex: 1;
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.125rem;
}

.coupon-ticket-mini-label {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.coupon-ticket-mini-code {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.coupon-ticket-mini-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.15);
  min-width: 60px;
}

.coupon-ticket-mini-discount {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.coupon-ticket-mini-off {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.125rem;
}

/* Stripe Element Mock */
.stripe-element-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stripe-card-input {
  padding: 0.875rem;
  background: var(--bg-secondary, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .stripe-card-input {
  background: #0f172a;
  border-color: #334155;
}

.stripe-card-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stripe-card-number {
  flex: 1;
  font-size: 0.75rem;
  color: var(--text-primary, #1e293b);
  font-family: "SF Mono", monospace;
}

[data-theme="dark"] .stripe-card-number {
  color: #f1f5f9;
}

.stripe-card-icons {
  display: flex;
  gap: 0.375rem;
}

.stripe-card-icons i {
  font-size: 1.25rem;
  opacity: 0.4;
}

.stripe-card-icons i.active {
  opacity: 1;
  color: #1a1f71;
}

[data-theme="dark"] .stripe-card-icons i.active {
  color: #60a5fa;
}

.stripe-card-details {
  display: flex;
  gap: 1rem;
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px dashed var(--border-color, #e2e8f0);
}

[data-theme="dark"] .stripe-card-details {
  border-color: #334155;
}

.stripe-card-field {
  flex: 1;
}

.stripe-card-field span {
  font-size: 0.75rem;
  color: var(--text-muted, #94a3b8);
}

.payment-encryption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--text-muted, #94a3b8);
  margin-top: auto;
}

.payment-encryption i {
  color: #10b981;
}

/* ============================================================================
   CARD 2 - KANBAN PREVIEW (Updated with descriptions)
   ============================================================================ */
.kanban-preview {
  padding: 0.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.kanban-preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.kanban-preview-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0;
}

[data-theme="dark"] .kanban-preview-title {
  color: #f1f5f9;
}

.kanban-preview-columns {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  overflow: hidden;
}

.kanban-preview-column {
  background: var(--bg-secondary, #f8fafc);
  border-radius: 6px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-theme="dark"] .kanban-preview-column {
  background: #0f172a;
}

.kanban-preview-column.review {
  flex: 3;
}

.kanban-preview-column.done {
  flex: 1.2;
  padding-right: 0;
  border-radius: 6px 0 0 6px;
}

/* Done column scroll container */
.kanban-done-scroll {
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.kanban-column-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.375rem;
  border-bottom: 2px solid;
}

.kanban-column-header.review {
  border-color: #f59e0b;
}

.kanban-column-header.done {
  border-color: #10b981;
}

.kanban-column-header i {
  font-size: 0.5625rem;
}

.kanban-column-header.review i {
  color: #f59e0b;
}

.kanban-column-header.done i {
  color: #10b981;
}

.kanban-column-header span {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
}

[data-theme="dark"] .kanban-column-header span {
  color: #f1f5f9;
}

.kanban-mini-card {
  background: var(--bg-card, #fff);
  border-radius: 5px;
  padding: 0.4rem;
  margin-bottom: 0.3rem;
  border-left: 0px solid;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

[data-theme="dark"] .kanban-mini-card {
  background: #1e293b;
}

.kanban-mini-card.completed {
  border-color: #10b981;
  opacity: 0.8;
}

.kanban-mini-card-title {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme="dark"] .kanban-mini-card-title {
  color: #f1f5f9;
}

.kanban-mini-card-desc {
  font-size: 0.4375rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.3;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kanban-mini-card-meta {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.4375rem;
  color: var(--text-muted, #94a3b8);
}

/* ============================================================================
   CARD 3 - PROJECT SUBMITTED
   ============================================================================ */
.project-submitted {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.submitted-checkmark {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.submitted-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.375rem;
}

[data-theme="dark"] .submitted-title {
  color: #f1f5f9;
}

.submitted-description {
  font-size: 0.6875rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.4;
  margin: 0;
}

/* ============================================================================
   CARD 4 - AFFILIATE PROGRAM
   ============================================================================ */
.affiliate-preview {
  padding: 0.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.affiliate-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.affiliate-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: white;
  border-radius: 6px;
  font-size: 0.625rem;
}

.affiliate-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0;
}

[data-theme="dark"] .affiliate-title {
  color: #f1f5f9;
}

.affiliate-message {
  font-size: 0.5625rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.4;
  margin: 0 0 0.5rem;
  flex: 1;
}

.affiliate-link-section {
  border-top: 1px dashed var(--border-color, #e2e8f0);
}

[data-theme="dark"] .affiliate-link-section {
  border-color: #334155;
}

.affiliate-link-wrapper {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.125rem 0.375rem;
  background: var(--bg-secondary, #f8fafc);
  border-radius: 6px;
}

[data-theme="dark"] .affiliate-link-wrapper {
  background: #0f172a;
}

.affiliate-link-text {
  flex: 1;
  font-size: 0.5rem;
  color: var(--text-muted, #94a3b8);
  font-family: "SF Mono", monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.affiliate-copy-btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #4379ff);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.affiliate-copy-btn:hover {
  background: var(--color-primary-dark, #2b5fe0);
}

.affiliate-join-link {
  font-size: 0.625rem;
  color: var(--color-primary, #4379ff);
  text-decoration: none;
  font-weight: 600;
}

.affiliate-join-link:hover {
  text-decoration: underline;
}

/* ============================================================================
   MOBILE HERO CARDS CAROUSEL (Standalone Section)
   ============================================================================ */
.startup-mobile-carousel {
  display: none;
  position: relative;
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
  background: var(--bg-body, #fff);
}

[data-theme="dark"] .startup-mobile-carousel {
  background: var(--bg-body, #0f172a);
}

[data-theme="creamy"] .startup-mobile-carousel {
  background: #fffdf9;
}

.mobile-carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.mobile-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-carousel-slide {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s ease,
    left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Current slide - centered */
.mobile-carousel-slide.current {
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 1;
}

/* Next slide - peeking from right edge, full size, clipped by overflow */
.mobile-carousel-slide.next {
  left: auto;
  right: -260px; /* Position so only edge is visible, rest is clipped */
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}

/* Hidden slides (including prev) */
.mobile-carousel-slide.prev,
.mobile-carousel-slide.hidden {
  left: -100%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Mobile card wrapper - contains the card with padding for shadow */
.mobile-card-wrapper {
  padding: 1rem;
}

/* Mobile demo cards - override absolute positioning from desktop */
.mobile-carousel-slide .startup-demo-card {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  opacity: 1 !important;
  transform: none !important;
  transition: box-shadow 0.3s ease !important;
}

/* Card 1 mobile - Payment Demo (Largest) */
.mobile-carousel-slide .startup-card-1 {
  width: 320px !important;
  height: auto !important;
  min-height: 340px !important;
  max-height: none !important;
}

/* Card 2 mobile - Kanban Preview (Second largest) */
.mobile-carousel-slide .startup-card-2 {
  width: 300px !important;
  height: auto !important;
  min-height: 300px !important;
  max-height: none !important;
}

/* Card 3 mobile - Project Submitted (Medium - bigger than desktop) */
.mobile-carousel-slide .startup-card-3 {
  width: 280px !important;
  height: auto !important;
  min-height: 180px !important;
  max-height: none !important;
}

/* Card 4 mobile - Affiliate (Smallest - still bigger than desktop) */
.mobile-carousel-slide .startup-card-4 {
  width: 260px !important;
  height: auto !important;
  min-height: 160px !important;
  max-height: none !important;
}

/* Carousel Navigation */
.mobile-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}

.mobile-carousel-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 50%;
  color: var(--text-secondary, #64748b);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .mobile-carousel-btn {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-carousel-btn:hover {
  background: var(--color-primary, #4379ff);
  border-color: var(--color-primary, #4379ff);
  color: white;
}

.mobile-carousel-btn:active {
  transform: scale(0.95);
}

/* Carousel Dots */
.mobile-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color, #e2e8f0);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

[data-theme="dark"] .mobile-carousel-dot {
  background: #334155;
}

.mobile-carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-primary, #4379ff);
}

[data-theme="creamy"] .mobile-carousel-dot.active {
  background: #0ea5e9;
}

/* ============================================================================
   SECTION 2 - INDUSTRIES SLIDER
   ============================================================================ */
.startup-industries-section {
  position: relative;
  padding: 5rem 0;
  background-color: rgb(240 241 245);
  background-image:
    linear-gradient(rgb(210 213 219) 1px, transparent 1px),
    linear-gradient(to right, rgb(210 213 219) 1px, rgb(240 241 245) 1px);
  background-size: 60px 60px;
  overflow: hidden;
}

[data-theme="dark"] .startup-industries-section {
  background-color: #0f1419;
  background-image:
    linear-gradient(rgba(47, 51, 54, 0.5) 1px, transparent 1px),
    linear-gradient(to right, rgba(47, 51, 54, 0.5) 1px, #0f1419 1px);
}

[data-theme="creamy"] .startup-industries-section {
  background-color: #faf8f5;
  background-image:
    linear-gradient(rgba(216, 208, 196, 0.6) 1px, transparent 1px),
    linear-gradient(to right, rgba(216, 208, 196, 0.6) 1px, #faf8f5 1px);
}

.industries-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.industries-header-content {
  max-width: 600px;
}

.industries-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(67, 121, 255, 0.1);
  color: var(--color-primary, #4379ff);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

[data-theme="creamy"] .industries-badge {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.industries-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0;
}

[data-theme="dark"] .industries-title {
  color: #f1f5f9;
}

/* Navigation Arrows */
.industries-nav {
  display: flex;
  gap: 0.75rem;
}

.industries-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 12px;
  color: var(--text-secondary, #64748b);
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="dark"] .industries-nav-btn {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

.industries-nav-btn:hover {
  background: var(--color-primary, #4379ff);
  border-color: var(--color-primary, #4379ff);
  color: white;
}

.industries-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Industries Slider */
.industries-slider-container {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.industries-slider-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem 2rem;
  animation: industriesScroll 40s linear infinite;
  will-change: transform;
}

.industry-card {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 1.5rem;
  z-index: 1;
}

[data-theme="dark"] .industry-card {
  background: #1e293b;
  border-color: #334155;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(67, 121, 255, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  color: var(--color-primary, #4379ff);
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

[data-theme="creamy"] .industry-icon {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  color: #0ea5e9;
}

.industry-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.5rem;
}

[data-theme="dark"] .industry-name {
  color: #f1f5f9;
}

.industry-description {
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================================
   SECTION 3 - STARTUP CREDIT APPLICATION
   ============================================================================ */
.startup-credit-section {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-body, #fff);
  overflow: hidden;
}

[data-theme="dark"] .startup-credit-section {
  background: #0f172a;
}

[data-theme="creamy"] .startup-credit-section {
  background: #fffdf9;
}

.startup-credit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.startup-credit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Content */
.startup-credit-content {
  max-width: 500px;
}

.credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.credit-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0 0 1rem;
  line-height: 1.2;
}

[data-theme="dark"] .credit-title {
  color: #f1f5f9;
}

.credit-description {
  font-size: 1.0625rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.credit-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 1rem;
}

.credit-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.credit-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(67, 121, 255, 0.1);
  color: var(--color-primary, #4379ff);
  border-radius: 10px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

[data-theme="creamy"] .credit-feature-icon {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.credit-feature-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.25rem;
}

[data-theme="dark"] .credit-feature-content h4 {
  color: #f1f5f9;
}

.credit-feature-content p {
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  margin: 0;
  line-height: 1.5;
}

/* CTA Section in Credit Content */
.credit-cta-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color, #e2e8f0);
}

[data-theme="dark"] .credit-cta-section {
  border-color: #334155;
}

.credit-cta-hint {
  font-size: 0.875rem;
  color: var(--text-muted, #94a3b8);
  margin-top: 0.75rem;
}

/* Application Form Card */
.startup-application-card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .startup-application-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.application-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

[data-theme="dark"] .application-header {
  border-color: #334155;
}

.application-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.5rem;
}

[data-theme="dark"] .application-header h3 {
  color: #f1f5f9;
}

.application-header p {
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  margin: 0;
}

.application-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.application-form .form-group {
  margin-bottom: 1rem;
}

.application-form .form-group.full-width {
  grid-column: span 2;
}

.application-form .form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary, #1e293b);
  margin-bottom: 0.375rem;
}

[data-theme="dark"] .application-form .form-label {
  color: #f1f5f9;
}

.application-form .form-label .required {
  color: #ef4444;
}

.application-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-primary, #1e293b);
  background: var(--bg-secondary, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 10px;
  transition: all 0.2s ease;
}

[data-theme="dark"] .application-form .form-control {
  background: #0f172a;
  border-color: #334155;
  color: #f1f5f9;
}

.application-form .form-control:focus {
  outline: none;
  border-color: var(--color-primary, #4379ff);
  box-shadow: 0 0 0 3px rgba(67, 121, 255, 0.15);
}

.application-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.application-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--color-primary, #4379ff) 0%,
    #8b5cf6 100%
  );
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.application-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 121, 255, 0.3);
}

.application-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

[data-theme="creamy"] .application-submit-btn {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

/* Already Applied Message */
.already-applied-message {
  text-align: center;
  padding: 2rem;
}

.already-applied-message i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.already-applied-message h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.5rem;
}

[data-theme="dark"] .already-applied-message h4 {
  color: #f1f5f9;
}

.already-applied-message p {
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  margin: 0;
}

/* ============================================================================
   SECTION 4 - BENEFITS WITH SVG CHARTS
   ============================================================================ */
.startup-benefits-section {
  position: relative;
  padding: 6rem 0;
  background-size: 20px 20px;
  background: var(--bg-primary, #f0f1f5);
}

[data-theme="dark"] .startup-benefits-section {
  background-color: #0f1419;
  background-image:
    linear-gradient(rgba(47, 51, 54, 0.5) 1px, transparent 1px),
    linear-gradient(to right, rgba(47, 51, 54, 0.5) 1px, #0f1419 1px);
}

[data-theme="creamy"] .startup-benefits-section {
  background-color: #faf8f5;
  background-image:
    linear-gradient(rgba(216, 208, 196, 0.6) 1px, transparent 1px),
    linear-gradient(to right, rgba(216, 208, 196, 0.6) 1px, #faf8f5 1px);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(67, 121, 255, 0.1);
  color: var(--color-primary, #4379ff);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

[data-theme="creamy"] .benefits-badge {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.benefits-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin: 0 0 1rem;
}

[data-theme="dark"] .benefits-title {
  color: #f1f5f9;
}

.benefits-description {
  font-size: 1.0625rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.7;
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

[data-theme="dark"] .benefit-card {
  background: #1e293b;
  border-color: #334155;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.benefit-chart {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
}

.benefit-chart svg {
  width: 100%;
  height: 100%;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  margin: 0 0 0.5rem;
}

[data-theme="dark"] .benefit-title {
  color: #f1f5f9;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.5;
  margin: 0;
}

.benefit-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary, #4379ff);
  margin-top: 1rem;
}

[data-theme="creamy"] .benefit-stat {
  color: #0ea5e9;
}

/* ============================================================================
   CHART ANIMATIONS (Run once and stay fixed)
   ============================================================================ */

/* Initial state - not animated */
.chart-circle,
.chart-pie,
.chart-bar {
  transition: none;
}

/* Animated state */
.benefit-chart.animated .chart-circle-blue {
  animation: circleBlueAnimate 1.5s ease-out forwards;
}

.benefit-chart.animated .chart-circle-red {
  animation: circleRedAnimate 1.5s ease-out 0.2s forwards;
}

.benefit-chart.animated .chart-circle-yellow {
  animation: circleYellowAnimate 1.5s ease-out 0.4s forwards;
}

.benefit-chart.animated .chart-pie-yellow {
  animation: pieYellowAnimate 1.5s ease-out forwards;
}

.benefit-chart.animated .chart-pie-red {
  animation: pieRedAnimate 1.5s ease-out 0.1s forwards;
}

.benefit-chart.animated .chart-pie-blue {
  animation: pieBlueAnimate 1.5s ease-out 0.2s forwards;
}

.benefit-chart.animated .chart-bar-yellow {
  animation: barYellowAnimate 1s ease-out forwards;
}

.benefit-chart.animated .chart-bar-blue {
  animation: barBlueAnimate 1s ease-out 0.15s forwards;
}

.benefit-chart.animated .chart-bar-red {
  animation: barRedAnimate 1s ease-out 0.3s forwards;
}

/* Circular Chart Animations */
@keyframes circleBlueAnimate {
  from {
    stroke-dashoffset: 345.58;
  }
  to {
    stroke-dashoffset: 69.12;
  } /* 80% filled */
}

@keyframes circleRedAnimate {
  from {
    stroke-dashoffset: 251.33;
  }
  to {
    stroke-dashoffset: 100.53;
  } /* 60% filled */
}

@keyframes circleYellowAnimate {
  from {
    stroke-dashoffset: 157.08;
  }
  to {
    stroke-dashoffset: 102.1;
  } /* 35% filled */
}

/* Pie Chart Animations */
@keyframes pieYellowAnimate {
  from {
    stroke-dashoffset: 157.08;
  }
  to {
    stroke-dashoffset: 0;
  } /* Full segment */
}

@keyframes pieRedAnimate {
  from {
    stroke-dashoffset: 157.08;
  }
  to {
    stroke-dashoffset: 17.45;
  } /* ~89% - offset for red segment */
}

@keyframes pieBlueAnimate {
  from {
    stroke-dashoffset: 157.08;
  }
  to {
    stroke-dashoffset: 52.36;
  } /* ~67% - offset for blue segment */
}

/* Bar Chart Animations */
@keyframes barYellowAnimate {
  from {
    width: 0;
  }
  to {
    width: 50px;
  }
}

@keyframes barBlueAnimate {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes barRedAnimate {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 1199.98px) {
  .startup-hero-container {
    gap: 2rem;
  }

  .startup-card-1 {
    width: 300px;
  }

  .startup-card-2 {
    width: 230px;
    right: calc(300px + 20px);
  }

  .startup-card-3 {
    right: calc(300px + 20px - 180px);
  }

  .startup-card-4 {
    right: calc(300px + 20px - 180px + 130px);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .startup-hero {
    min-height: auto;
  }

  .startup-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .startup-hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .startup-hero-buttons {
    align-items: center;
  }

  .startup-program-card {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .startup-program-card-actions {
    flex-direction: column;
  }

  .startup-program-card-actions .startup-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .startup-explore-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hide desktop cards, show mobile carousel section */
  .startup-hero-cards {
    display: none !important;
  }

  .startup-mobile-carousel {
    display: block;
  }

  .startup-credit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .startup-credit-content {
    max-width: 100%;
    text-align: left;
  }

  .credit-features {
    align-items: left;
  }

  .credit-feature {
    max-width: 400px;
  }

  .credit-cta-section {
    text-align: center;
  }

  .credit-cta-section .startup-cta-btn {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .industries-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .application-form .form-row {
    grid-template-columns: 1fr;
  }

  .application-form .form-group.full-width {
    grid-column: span 1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Mobile carousel adjustments */
  .startup-mobile-carousel {
    padding: 2.5rem 0;
  }

  .mobile-carousel-container {
    height: 480px;
  }

  /* Adjust peek position for smaller screens */
  .mobile-carousel-slide.next {
    right: -240px;
  }

  .mobile-carousel-slide .startup-card-1 {
    width: 300px !important;
    min-height: 320px !important;
  }

  .mobile-carousel-slide .startup-card-2 {
    width: 280px !important;
    min-height: 280px !important;
  }

  .mobile-carousel-slide .startup-card-3 {
    width: 260px !important;
    min-height: 170px !important;
  }

  .mobile-carousel-slide .startup-card-4 {
    width: 240px !important;
    min-height: 150px !important;
  }
}

@media (max-width: 575.98px) {
  .startup-hero-title {
    font-size: 2rem;
  }

  .startup-hero-description {
    font-size: 1rem;
  }

  .startup-program-card {
    padding: 1.25rem;
  }

  .credit-title,
  .benefits-title {
    font-size: 1.75rem;
  }

  .industries-title {
    font-size: 1.5rem;
  }

  .startup-credit-section,
  .startup-benefits-section {
    padding: 4rem 0;
  }

  .startup-credit-container,
  .benefits-container {
    padding: 0 1.25rem;
  }

  /* Mobile carousel small screens */
  .startup-mobile-carousel {
    padding: 2rem 0;
  }

  .mobile-carousel-container {
    height: 450px;
  }

  /* Adjust peek position - show more of peeking card on small screens */
  .mobile-carousel-slide.next {
    right: -220px;
  }

  .mobile-carousel-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-carousel-slide .startup-card-1 {
    width: 280px !important;
    min-height: 300px !important;
  }

  .mobile-carousel-slide .startup-card-2 {
    width: 260px !important;
    min-height: 260px !important;
  }

  .mobile-carousel-slide .startup-card-3 {
    width: 240px !important;
    min-height: 160px !important;
  }

  .mobile-carousel-slide .startup-card-4 {
    width: 220px !important;
    min-height: 140px !important;
  }
}

/* ============================================================================
   REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  .startup-hero-title .gradient-text,
  .startup-demo-card,
  .industries-slider-track,
  .startup-hero-rainbow::before {
    animation: none;
  }

  .startup-demo-card {
    opacity: 1;
    transform: none;
  }

  .mobile-carousel-track,
  .mobile-carousel-slide {
    transition: none;
  }

  .benefit-chart.animated .chart-circle,
  .benefit-chart.animated .chart-pie,
  .benefit-chart.animated .chart-bar {
    animation: none;
  }

  /* Set final state immediately for reduced motion */
  .benefit-chart.animated .chart-circle-blue {
    stroke-dashoffset: 69.12;
  }
  .benefit-chart.animated .chart-circle-red {
    stroke-dashoffset: 100.53;
  }
  .benefit-chart.animated .chart-circle-yellow {
    stroke-dashoffset: 102.1;
  }
  .benefit-chart.animated .chart-pie-yellow {
    stroke-dashoffset: 0;
  }
  .benefit-chart.animated .chart-pie-red {
    stroke-dashoffset: 17.45;
  }
  .benefit-chart.animated .chart-pie-blue {
    stroke-dashoffset: 52.36;
  }
  .benefit-chart.animated .chart-bar-yellow {
    width: 50px;
  }
  .benefit-chart.animated .chart-bar-blue {
    width: 100px;
  }
  .benefit-chart.animated .chart-bar-red {
    width: 80px;
  }
}
