/* Protocol Page Styles */

.protocol-page {
  --gradient-violet: #9333ea;
  --gradient-cyan: #06b6d4;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --success-green: #10b981;
}

.protocol-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.protocol-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.protocol-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.protocol-hero .gradient-text {
  background: linear-gradient(135deg, var(--gradient-violet), var(--gradient-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Video */
.hero-video {
  margin: 3rem 0 2rem;
  display: flex;
  justify-content: center;
}

.hero-video iframe {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Scroll Arrow */
.scroll-arrow {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  animation: bounce 2s infinite;
  color: var(--text-light);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-icon {
  font-size: 1.25rem;
}

/* Filter Section */
.filter-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.filter-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.filter-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.filter-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.filter-card:hover {
  border-color: var(--gradient-violet);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.filter-card.active {
  border-color: var(--gradient-violet);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(6, 182, 212, 0.05));
}

.filter-card.active::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-violet);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.filter-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.filter-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.filter-card p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Recommendations */
.recommendations {
  background: linear-gradient(135deg, var(--gradient-violet), var(--gradient-cyan));
  border-radius: 16px;
  padding: 2rem;
  color: white;
  text-align: center;
}

.recommendations h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.recommendation-content {
  display: grid;
  gap: 1rem;
}

.recommendation-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}

.recommendation-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.recommendation-item p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.recommendation-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.recommendation-cta:hover {
  background: white;
  color: var(--gradient-violet);
  text-decoration: none;
}

.selected-goals {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
}

.selected-goals strong {
  color: white;
}

/* Stack Section */
.stack-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.gradient-header {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  color: #9333ea; /* Fallback color */
}

.gradient-header.teal-purple-blue {
  background: linear-gradient(135deg, #14b8a6, #9333ea, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-header.emerald-teal-lime {
  background: linear-gradient(135deg, #10b981, #14b8a6, #84cc16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .gradient-header.teal-purple-blue {
    color: #9333ea;
  }

  .gradient-header.emerald-teal-lime {
    color: #10b981;
  }
}

.gradient-header:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.gradient-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.gradient-header:hover::after {
  transform: translateX(100%);
}

.section-subheader {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.stack-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.stack-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.stack-intro p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Supplement Cards */
.supplement-card {
  background: var(--bg-white);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.supplement-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(6, 182, 212, 0.05));
  border-bottom: 1px solid var(--border-light);
}

.supplement-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-violet), var(--gradient-cyan));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Nice to Have section - Green gradient styling */
.nice-to-have-card .supplement-number {
  background: linear-gradient(135deg, #10b981, #14b8a6, #84cc16);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.supplement-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.supplement-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.supplement-content {
  padding: 2rem;
}

.why-section,
.results-section {
  margin-bottom: 2rem;
}

.why-section:last-child,
.results-section:last-child {
  margin-bottom: 0;
}

.why-section h4,
.results-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.mechanism-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.mechanism-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
  color: var(--text-secondary);
}

.mechanism-list li:last-child {
  border-bottom: none;
}

.mechanism-list li strong {
  color: var(--text-primary);
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--gradient-violet), var(--gradient-cyan));
  color: white;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
  text-decoration: none;
  color: white;
}

/* Nice to Have section - Green gradient buttons */
.nice-to-have-card .cta-button.primary {
  background: linear-gradient(135deg, #10b981, #14b8a6, #84cc16);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nice-to-have-card .cta-button.primary:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-light);
}

.cta-button.secondary:hover {
  background: var(--bg-light);
  text-decoration: none;
  color: var(--text-primary);
}

.cta-button.large {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

/* Schedule Section - UPDATED FOR 2 CARDS */
.schedule-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.schedule-section h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.schedule-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 12px;
}

.schedule-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.schedule-actions {
  text-align: left;
}

.schedule-actions p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.schedule-actions p:last-child {
  margin-bottom: 0;
}

.schedule-actions p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.schedule-actions .research-item {
  color: #d97706;
  font-size: 0.875rem;
  opacity: 0.8;
}

.schedule-actions .note {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Complete Stack CTA */
.complete-stack-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gradient-violet), var(--gradient-cyan));
}

.cta-card {
  text-align: center;
  color: white;
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-button.primary {
  background: white;
  color: var(--gradient-violet);
  border-color: white;
}

.cta-buttons .cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gradient-violet);
}

.cta-buttons .cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Safety Section */
.safety-section {
  padding: 3rem 0;
  background: var(--bg-light);
}

.safety-notice {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #f59e0b;
  box-shadow: var(--shadow-sm);
}

.safety-notice h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safety-notice h3::before {
  content: '⚠️';
  font-size: 1.5rem;
}

.safety-notice p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .protocol-hero-content h1 {
    font-size: 2.5rem;
  }

  .protocol-subtitle {
    font-size: 1.25rem;
  }

  .trust-indicators {
    gap: 1rem;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .gradient-header {
    font-size: 2.25rem;
  }

  .section-subheader {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .schedule-card {
    padding: 1.5rem;
  }

  .schedule-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .schedule-actions {
    text-align: center;
  }

  .hero-video iframe {
    width: 100%;
    height: 250px;
  }

  .supplement-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .supplement-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin: 0 auto;
  }

  .supplement-number.research-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Research discount emphasis mobile */
  .discount-text {
    font-size: 1.1rem !important;
  }

  .discount-code {
    font-size: 1.2rem !important;
    padding: 0.2rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .protocol-hero {
    padding: 2rem 0;
  }

  .protocol-hero-content h1 {
    font-size: 2rem;
  }

  .supplement-content {
    padding: 1.5rem;
  }

  .gradient-header {
    font-size: 1.75rem;
  }

  .section-header {
    padding: 1.5rem 0;
  }

  .schedule-card {
    padding: 1.25rem;
  }

  .supplement-header {
    padding: 1.5rem;
  }

  .pathways-diagram {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pathways-arrows {
    display: none;
  }

  .supplement-box,
  .pathway-box {
    padding: 1rem;
  }

  .supplement-box h3,
  .pathway-box h3 {
    font-size: 0.875rem;
  }

  .supplement-box li,
  .pathway-box li {
    font-size: 0.8rem;
  }
}

/* Pathways Map */
.pathways-map {
  padding: 3rem 0;
  background: var(--bg-white);
}

.pathways-diagram {
  display: grid;
  grid-template-columns: 2fr auto 2fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.supplements-column,
.pathways-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.supplement-box,
.pathway-box {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}

.supplement-box.foundation {
  border-color: #9333ea;
  background: rgba(147, 51, 234, 0.02);
}

.supplement-box.energy {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.02);
}

.supplement-box.sleep {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.02);
}

.supplement-box.omega {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.02);
}

.pathway-box.catecholamines {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.02);
}

.pathway-box.acetylcholine {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.02);
}

.pathway-box.membranes {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.02);
}

.pathway-box.mitochondria {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.02);
}

.pathway-box.bloodflow {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.02);
}

.pathway-box.sleep-pathway {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.02);
}

.supplement-box h3,
.pathway-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.supplement-box ul,
.pathway-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supplement-box li,
.pathway-box li {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.supplement-box li:before {
  content: '•';
  color: var(--gradient-violet);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pathway-box li:before {
  content: '→';
  color: var(--gradient-cyan);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pathways-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.pathway-lines {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.schedule-note {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--gradient-violet);
}

.schedule-note p {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.schedule-note p:last-child {
  margin-bottom: 0;
}

.schedule-note strong {
  color: var(--text-primary);
}

/* Research Compounds Section */
.research-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.research-warning {
  background: linear-gradient(135deg, #ff6b35 0%, #d63031 100%);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.research-warning h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.research-warning p {
  font-size: 1rem;
  margin: 0.5rem 0;
  opacity: 0.95;
}

.research-warning strong {
  font-weight: 700;
  color: #fff;
}

.discount-emphasis {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.discount-text {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
  opacity: 1 !important;
}

.discount-code {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 1.4rem !important;
  letter-spacing: 0.1em;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Research Variant Cards */
.supplement-card.research-variant {
  border: 1px solid #ff6b35;
}

.supplement-card.research-variant .supplement-header {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(214, 48, 49, 0.05));
}

.supplement-number.research-number {
  background: linear-gradient(135deg, #ff6b35, #d63031);
  color: white;
}

/* Research Cards (Legacy - keeping for backward compatibility) */
.research-card {
  background: var(--bg-white);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #ff6b35;
  overflow: hidden;
}

.research-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(214, 48, 49, 0.05));
  border-bottom: 1px solid var(--border-light);
}

.research-label {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #d63031);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.research-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.research-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.research-content {
  padding: 2rem;
}

.research-why,
.research-results {
  margin-bottom: 2rem;
}

.research-why:last-child,
.research-results:last-child {
  margin-bottom: 0;
}

.research-why h4,
.research-results h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.research-results ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.research-results li {
  padding: 0.5rem 0;
  line-height: 1.6;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.research-results li:before {
  content: '•';
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-button.secondary {
  background: transparent;
  color: #ff6b35;
  border-color: #ff6b35;
}

.cta-button.secondary:hover {
  background: #ff6b35;
  color: white;
  text-decoration: none;
}

/* Research Toggle */
.research-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 30px;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

input:checked + .slider {
  background: linear-gradient(135deg, #ff6b35, #d63031);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.toggle-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Schedule Section Updates */
.schedule-item.as-needed {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(214, 48, 49, 0.05));
  border-color: #ff6b35;
}

.schedule-action p {
  margin: 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.schedule-action p:first-child {
  margin-top: 0;
}

.schedule-action p:last-child {
  margin-bottom: 0;
}

/* Research Badge and Items */
.research-badge {
  background: linear-gradient(135deg, #ff6b35, #d63031);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.research-item {
  border-left: 4px solid #ff6b35;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(214, 48, 49, 0.02));
}