/*
Theme Name: BrainiarPro
Theme URI: https://brainiar.com
Description: A revenue performance firm website with animated background nodes, hover effects, and modern design
Version: 2.1.2
Author: Brainiar
Author URI: https://brainiar.com
*/

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Belleza', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  overflow-x: hidden;
}

body.dark-mode {
  background-color: #000000;
  color: #ffffff;
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

.min-h-screen {
  min-height: 100vh;
}

/* Home Button */
.home-button {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.dark-mode .home-button {
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .home-button:hover {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.light-mode .home-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .home-button:hover {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
}

.home-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, #B23A48, #C46B2D, #D4A017, #1F7A5C, #1B6E8C, #2E4F9C, #5A3E9B);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate-gradient 3s linear infinite;
  background-size: 200% 100%;
}

.home-button:hover::before {
  opacity: 1;
}

.home-icon {
  font-family: 'Belleza', serif;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.dark-mode .theme-toggle {
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .theme-toggle:hover {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.light-mode .theme-toggle {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .theme-toggle:hover {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
}

.theme-toggle::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, #B23A48, #C46B2D, #D4A017, #1F7A5C, #1B6E8C, #2E4F9C, #5A3E9B);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate-gradient 3s linear infinite;
  background-size: 200% 100%;
}

.theme-toggle:hover::before {
  opacity: 1;
}

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 50;
  transition: width 0.15s;
}

.dark-mode .scroll-progress {
  background-color: rgba(255, 255, 255, 0.8);
}

.light-mode .scroll-progress {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Background Canvas */
#brain-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.dark-mode #brain-canvas {
  opacity: 0.6;
}

.light-mode #brain-canvas {
  opacity: 0.5;
}

/* Background Overlays */
.bg-overlay-image {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.dark-mode .bg-overlay-image {
  opacity: 0.15;
}

.light-mode .bg-overlay-image {
  opacity: 0.1;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.dark-mode .bg-noise {
  opacity: 0.03;
}

.light-mode .bg-noise {
  opacity: 0.02;
}

/* Main Content Container */
.content-wrapper {
  position: relative;
  z-index: 10;
}

/* Hero Section */
.hero-section {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  position: relative;
}

.hero-title {
  font-size: 5.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.dark-mode .hero-title {
  font-weight: 300;
}

.light-mode .hero-title {
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
}

.dark-mode .hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.light-mode .hero-subtitle {
  color: rgba(0, 0, 0, 0.7);
}

.hero-tagline {
  font-size: 2.45rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
}

.dark-mode .hero-tagline {
  color: rgba(255, 255, 255, 0.9);
}

.light-mode .hero-tagline {
  color: rgba(0, 0, 0, 0.9);
}

.gradient-text {
  font-style: italic;
  background: linear-gradient(to right, #22d3ee, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(251, 146, 60, 0.8);
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  background: linear-gradient(to bottom, #fb923c, #ec4899, #8b5cf6);
  animation: scroll 2.5s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.7;
  }
}

/* Section Styles */
.section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

/* Process Flow */
.process-container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.process-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.dark-mode .process-intro {
  color: rgba(255, 255, 255, 0.6);
}

.light-mode .process-intro {
  color: rgba(0, 0, 0, 0.6);
}

.process-grid {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.process-card {
  flex: 1;
  border: 1px solid;
  padding: 2rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}

.dark-mode .process-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.light-mode .process-card {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 0, 0, 0.1);
}

.process-card h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.dark-mode .process-card h2 {
  color: #ffffff;
  font-weight: 300;
}

.light-mode .process-card h2 {
  color: #000000;
  font-weight: 600;
}

.process-card p {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.01em;
  flex: 1;
}

.dark-mode .process-card p {
  color: rgba(255, 255, 255, 0.7);
}

.light-mode .process-card p {
  color: rgba(0, 0, 0, 0.7);
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-mode .process-arrow svg {
  color: rgba(255, 255, 255, 0.4);
}

.light-mode .process-arrow svg {
  color: rgba(0, 0, 0, 0.4);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid;
  padding: 2rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.dark-mode .pricing-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .pricing-card:hover {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.light-mode .pricing-card {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 0, 0, 0.1);
}

.light-mode .pricing-card:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #B23A48, #C46B2D, #D4A017, #1F7A5C, #1B6E8C, #2E4F9C, #5A3E9B);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate-gradient 3s linear infinite;
  background-size: 200% 100%;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card h3 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.dark-mode .pricing-card h3 {
  color: #ffffff;
  font-weight: 300;
}

.light-mode .pricing-card h3 {
  color: #000000;
  font-weight: 400;
}

.pricing-card .description {
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.dark-mode .pricing-card .description {
  color: rgba(255, 255, 255, 0.5);
}

.light-mode .pricing-card .description {
  color: rgba(0, 0, 0, 0.5);
}

.pricing-card .price-section {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid;
}

.dark-mode .pricing-card .price-section {
  border-color: rgba(255, 255, 255, 0.1);
}

.light-mode .pricing-card .price-section {
  border-color: rgba(0, 0, 0, 0.1);
}

.pricing-card .price {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.dark-mode .pricing-card .price {
  color: #ffffff;
  font-weight: 300;
}

.light-mode .pricing-card .price {
  color: #000000;
  font-weight: 400;
}

.pricing-card .price-note {
  font-size: 0.875rem;
}

.dark-mode .pricing-card .price-note {
  color: rgba(255, 255, 255, 0.4);
}

.light-mode .pricing-card .price-note {
  color: rgba(0, 0, 0, 0.4);
}

.pricing-card .click-details {
  font-size: 0.75rem;
  margin-top: 1rem;
  transition: opacity 0.2s;
}

.dark-mode .pricing-card .click-details {
  color: rgba(255, 255, 255, 0.3);
}

.dark-mode .pricing-card:hover .click-details {
  color: rgba(255, 255, 255, 0.6);
}

.light-mode .pricing-card .click-details {
  color: rgba(0, 0, 0, 0.3);
}

.light-mode .pricing-card:hover .click-details {
  color: rgba(0, 0, 0, 0.6);
}

/* Button Styles */
.btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 1rem 2.5rem;
  border: 1px solid #ffffff;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease-out;
  cursor: pointer;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #B23A48, #C46B2D, #D4A017, #1F7A5C, #1B6E8C, #2E4F9C, #5A3E9B);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate-gradient 3s linear infinite;
  background-size: 200% 100%;
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

@keyframes rotate-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* CTA Section */
.cta-section {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-text {
  font-size: 1.46rem;
  line-height: 1.625;
  margin-bottom: 4rem;
  letter-spacing: 0.01em;
}

.dark-mode .cta-text {
  color: rgba(255, 255, 255, 0.6);
}

.light-mode .cta-text {
  color: rgba(0, 0, 0, 0.6);
}

.cta-heading {
  font-size: 2.45rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.dark-mode .cta-heading {
  color: rgba(255, 255, 255, 0.9);
}

.light-mode .cta-heading {
  color: rgba(0, 0, 0, 0.9);
}

/* Footer */
footer {
  padding: 2rem 1.5rem;
  text-align: center;
}

footer p {
  font-size: 1.13rem;
  letter-spacing: 0.02em;
}

.dark-mode footer p {
  color: rgba(255, 255, 255, 0.4);
}

.light-mode footer p {
  color: rgba(0, 0, 0, 0.4);
}

/* Contact Form Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.dark-mode .modal-overlay {
  background-color: rgba(0, 0, 0, 0.9);
}

.light-mode .modal-overlay {
  background-color: rgba(255, 255, 255, 0.9);
}

.modal-content {
  max-width: 42rem;
  width: 100%;
  border: 1px solid;
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(16px);
}

.dark-mode .modal-content {
  background-color: rgba(26, 26, 26, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.light-mode .modal-content {
  background-color: rgba(245, 245, 245, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
}

.dark-mode .modal-close {
  color: rgba(255, 255, 255, 0.6);
}

.dark-mode .modal-close:hover {
  color: #ffffff;
}

.light-mode .modal-close {
  color: rgba(0, 0, 0, 0.6);
}

.light-mode .modal-close:hover {
  color: #000000;
}

.modal-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.modal-content .subtitle {
  margin-bottom: 2rem;
}

.dark-mode .modal-content .subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.light-mode .modal-content .subtitle {
  color: rgba(0, 0, 0, 0.6);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.dark-mode .form-group input::placeholder,
.dark-mode .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.light-mode .form-group input,
.light-mode .form-group textarea {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
  color: #000000;
}

.light-mode .form-group input::placeholder,
.light-mode .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.light-mode .form-group input:focus,
.light-mode .form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.submit-message {
  padding: 1rem;
  border: 1px solid;
  border-radius: 0.5rem;
  text-align: center;
}

.submit-message.success {
  background-color: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.submit-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-tagline {
    font-size: 1.875rem;
  }

  .process-grid {
    flex-direction: column;
  }

  .process-arrow svg {
    transform: rotate(90deg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-text {
    font-size: 1.25rem;
  }

  .cta-heading {
    font-size: 1.875rem;
  }

  .theme-toggle.scrolled {
    opacity: 0;
    pointer-events: none;
  }
}

@media (min-width: 769px) {
  .hero-title {
    font-size: 6.5rem;
  }

  .hero-subtitle {
    font-size: 1.95rem;
  }

  .hero-tagline {
    font-size: 3.25rem;
  }

  .cta-text {
    font-size: 1.625rem;
  }

  .cta-heading {
    font-size: 3.25rem;
  }
}

/* Hidden class */
.hidden {
  display: none !important;
}

/* Pricing Modals */
.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease-out;
}

.dark-mode .pricing-modal {
  background: rgba(0, 0, 0, 0.9);
}

.light-mode .pricing-modal {
  background: rgba(255, 255, 255, 0.9);
}

.pricing-modal .modal-content {
  max-width: 42rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid;
  backdrop-filter: blur(16px);
  animation: slideUp 0.3s ease-out;
}

.dark-mode .pricing-modal .modal-content {
  background: rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.light-mode .pricing-modal .modal-content {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0.25rem;
  z-index: 10;
}

.dark-mode .pricing-modal .modal-close {
  color: rgba(255, 255, 255, 0.6);
}

.light-mode .pricing-modal .modal-close {
  color: rgba(0, 0, 0, 0.6);
}

.dark-mode .pricing-modal .modal-close:hover {
  color: rgba(255, 255, 255, 1);
}

.light-mode .pricing-modal .modal-close:hover {
  color: rgba(0, 0, 0, 1);
}

.pricing-modal .modal-body {
  padding: 2rem;
}

.pricing-modal .modal-title {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.dark-mode .pricing-modal .modal-title {
  color: white;
  font-weight: 300;
}

.light-mode .pricing-modal .modal-title {
  color: black;
  font-weight: 400;
}

.pricing-modal .modal-price {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.dark-mode .pricing-modal .modal-price {
  color: white;
  font-weight: 300;
}

.light-mode .pricing-modal .modal-price {
  color: black;
  font-weight: 400;
}

.pricing-modal .modal-price-note {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.dark-mode .pricing-modal .modal-price-note {
  color: rgba(255, 255, 255, 0.4);
}

.light-mode .pricing-modal .modal-price-note {
  color: rgba(0, 0, 0, 0.4);
}

.pricing-modal .modal-divider {
  border-top: 1px solid;
  padding-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.dark-mode .pricing-modal .modal-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.light-mode .pricing-modal .modal-divider {
  border-color: rgba(0, 0, 0, 0.1);
}

.pricing-modal .modal-section-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.dark-mode .pricing-modal .modal-section-title {
  color: white;
  font-weight: 400;
}

.light-mode .pricing-modal .modal-section-title {
  color: black;
  font-weight: 500;
}

.pricing-modal .modal-subtitle {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dark-mode .pricing-modal .modal-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.light-mode .pricing-modal .modal-subtitle {
  color: rgba(0, 0, 0, 0.5);
}

.pricing-modal .modal-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid;
}

.dark-mode .pricing-modal .modal-section {
  border-color: rgba(255, 255, 255, 0.1);
}

.light-mode .pricing-modal .modal-section {
  border-color: rgba(0, 0, 0, 0.1);
}

.pricing-modal .modal-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.pricing-modal .modal-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dark-mode .pricing-modal .modal-section h5 {
  color: white;
}

.light-mode .pricing-modal .modal-section h5 {
  color: black;
}

.pricing-modal .modal-section p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.dark-mode .pricing-modal .modal-section p {
  color: rgba(255, 255, 255, 0.5);
}

.light-mode .pricing-modal .modal-section p {
  color: rgba(0, 0, 0, 0.5);
}

.pricing-modal .modal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.pricing-modal .modal-section li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: start;
  line-height: 1.5;
}

.dark-mode .pricing-modal .modal-section li {
  color: rgba(255, 255, 255, 0.6);
}

.light-mode .pricing-modal .modal-section li {
  color: rgba(0, 0, 0, 0.6);
}

.pricing-modal .modal-section li::before {
  content: "•";
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.dark-mode .pricing-modal .modal-section li::before {
  color: rgba(255, 255, 255, 0.4);
}

.light-mode .pricing-modal .modal-section li::before {
  color: rgba(0, 0, 0, 0.4);
}

.pricing-modal .modal-section em {
  font-style: italic;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
