/* Landing Page Styles - Custom CSS */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #FFFFFF;
  color: #000000;
}

.font-display, .font-display-var {
  font-family: 'Unbounded', sans-serif;
}

/* Page Container */
.page-wrapper {
  min-height: 100%;
  position: relative;
  overflow: auto;
}

.page-container {
  min-height: 100%;
  position: relative;
}

/* Background Effects */
.bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-blob-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(3xl);
  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.bg-blob-2 {
  position: absolute;
  top: 33%;
  right: 16.67%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(3xl);
  background: radial-gradient(circle, rgba(0,0,0,0.05), transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.bg-blob-3 {
  position: absolute;
  bottom: 25%;
  left: 16.67%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(3xl);
  background: radial-gradient(circle, rgba(0,0,0,0.06), transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* Animations */
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(2deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-8px) rotate(-2deg)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
@keyframes pulse-glow { 0%,100%{opacity:0.6} 50%{opacity:1} }
@keyframes slide-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes scale-in { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
@keyframes card-lift { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-rotate { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-8px) rotate(360deg)} }
@keyframes bounce-subtle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@keyframes fade-in-up { 0%,100%{opacity:0;transform:translateY(20px)} 100%{opacity:1;transform:translateY(0)} }

.float-1 { animation: float1 4s ease-in-out infinite; }
.float-2 { animation: float2 5s ease-in-out infinite 0.5s; }
.float-3 { animation: float3 6s ease-in-out infinite 1s; }
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

.slide-up { animation: slide-up 0.8s ease-out forwards; }
.slide-up-d1 { animation: slide-up 0.8s ease-out 0.2s forwards; opacity: 0; }
.slide-up-d2 { animation: slide-up 0.8s ease-out 0.4s forwards; opacity: 0; }
.slide-up-d3 { animation: slide-up 0.8s ease-out 0.6s forwards; opacity: 0; }

.scale-in { animation: scale-in 0.6s ease-out forwards; }
.scale-in-d1 { animation: scale-in 0.6s ease-out 0.3s forwards; opacity: 0; }
.scale-in-d2 { animation: scale-in 0.6s ease-out 0.6s forwards; opacity: 0; }
.scale-in-d3 { animation: scale-in 0.6s ease-out 0.9s forwards; opacity: 0; }

.card-lift { animation: card-lift 3s ease-in-out infinite; }
.float-rotate { animation: float-rotate 8s linear infinite; }
.bounce-subtle { animation: bounce-subtle 2s ease-in-out infinite; }

.fade-in-up { animation: fade-in-up 0.8s ease-out forwards; }

/* 3D Card Animation from test.html */
@keyframes card-rotate {
  0% { transform: rotateX(0deg) rotateY(-15deg); }
  50% { transform: rotateX(5deg) rotateY(15deg); }
  100% { transform: rotateX(0deg) rotateY(-15deg); }
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(120px, -80px) rotate(90deg); }
  50% { transform: translate(80px, -150px) rotate(180deg); }
  75% { transform: translate(-60px, -100px) rotate(270deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-100px, -120px) rotate(-90deg); }
  50% { transform: translate(-140px, -60px) rotate(-180deg); }
  75% { transform: translate(-80px, 80px) rotate(-270deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(100px, 100px) rotate(45deg); }
  50% { transform: translate(20px, 160px) rotate(90deg); }
  75% { transform: translate(-120px, 60px) rotate(135deg); }
}
@keyframes float-4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-120px, 80px) rotate(-45deg); }
  50% { transform: translate(-80px, 140px) rotate(-90deg); }
  75% { transform: translate(60px, 100px) rotate(-135deg); }
}

.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.6;
  pointer-events: none;
}

.float-1 { animation: float-1 16s ease-in-out infinite; }
.float-2 { animation: float-2 18s ease-in-out infinite; }
.float-3 { animation: float-3 20s ease-in-out infinite; }
.float-4 { animation: float-4 22s ease-in-out infinite; }

.card-3d {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.card-inner {
  animation: card-rotate 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* Dark mode support for 3D card */
html[data-bs-theme="dark"] .card-inner {
  border-color: #fff;
  box-shadow: 0 20px 60px rgba(255,255,255,0.1);
}

[data-bs-theme="dark"] .floating-element {
  color: rgba(255,255,255,0.6);
}

[data-bs-theme="dark"] .hero-image {
  /* Optional: adjust for dark bg */
}
.fade-in-up-d1 { animation: fade-in-up 0.8s ease-out 0.15s forwards; opacity: 0; }
.fade-in-up-d2 { animation: fade-in-up 0.8s ease-out 0.3s forwards; opacity: 0; }
.fade-in-up-d3 { animation: fade-in-up 0.8s ease-out 0.45s forwards; opacity: 0; }

/* Card Hover */
.card-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Header */
.header {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 100;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-clock {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.header-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: color 0.2s;
}

.header-theme-toggle:hover {
  color: #000;
}

.theme-icon {
  display: none;
}

html[data-bs-theme="dark"] .theme-icon--sun {
  display: block;
}

html[data-bs-theme="light"] .theme-icon--moon {
  display: block;
}

html[data-bs-theme="dark"] .theme-icon--moon {
  display: none;
}

.header-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.header-login:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

/* Scroll Indicator - from test/components/hero.tsx */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.scroll-ring {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.scroll-bar {
  width: 0.375rem;
  height: 0.75rem;
  background: rgba(0,0,0,0.5);
  border-radius: 9999px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-0.5rem);
  }
  60% {
    transform: translateY(-0.25rem);
  }
}

html[data-bs-theme="dark"] .scroll-ring {
  border-color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.9);
}

html[data-bs-theme="dark"] .scroll-bar {
  background: rgba(255,255,255,0.7);
}

@media (max-width: 640px) {
  .scroll-ring {
    width: 1.25rem;
    height: 2rem;
    padding-top: 0.4rem;
  }
  .scroll-bar {
    width: 0.3rem;
    height: 0.6rem;
  }

  .hero-section {
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }

  .stat-divider {
    width: 1px;
    height: 1.5rem;
  }

  .hero-stat-value {
    font-size: 1.25rem;
  }

  .hero-stat-label {
    font-size: 0.625rem;
  }

  .hero-image,
  .hero-background,
  .floating-element {
    display: none;
  }

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

  .feature-card {
    padding: 1rem;
  }

  .steps-grid-modern {
    grid-template-columns: 1fr;
  }

  .step-inner-modern {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

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

  .cta-container .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    padding: 2rem 1rem;
  }

  .footer-text {
    font-size: 0.875rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
  }
}

.hero-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #000;
}

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

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

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-background {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .feature-card {
    max-width: 280px;
    margin: 0 auto;
  }

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

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-primary {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  background: #121212;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}

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

.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  color: #000;
  border: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.05);
  transform: scale(1.05);
  color: #000;
  text-decoration: none;
}

.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(0,0,0,0.1);
}

/* Hero Image */
.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 16rem;
}

@media (min-width: 768px) {
  .hero-card {
    width: 20rem;
  }
}

.hero-card-svg {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.hero-float-1 {
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.hero-float-2 {
  position: absolute;
  top: 25%;
  right: -1.5rem;
}

.hero-float-3 {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
}

/* Features Section */
.features-section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
}

.features-container {
  max-width: 72rem;
  margin: 0 auto;
}

.features-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .features-title {
    font-size: 2.25rem;
  }
}

.features-subtitle {
  color: #4b5563;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  background: #1e2228;
  color: #e6edf3;
  cursor: pointer;
}

.dark-section .feature-card {
  background: #ffffff;
  color: #21262d;
  border-color: #d0d7de;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon--dark {
  background: #1f2937;
  color: white;
}

.feature-icon--light {
  background: #f3f4f6;
  color: #1f2937;
}

html[data-bs-theme="light"] .feature-icon--dark,
html:not([data-bs-theme="dark"]) .feature-icon--dark {
  background: linear-gradient(135deg, #1f2937, #4b5563);
  color: white;
}

html[data-bs-theme="dark"] .feature-icon--dark {
  background: linear-gradient(135deg, #374151, #6b7280);
  color: white;
}

html[data-bs-theme="light"] .feature-icon--light,
html:not([data-bs-theme="dark"]) .feature-icon--light {
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  color: #1f2937;
}

html[data-bs-theme="dark"] .feature-icon--light {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: #f9fafb;
}

.feature-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: inherit;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: inherit;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Dark Section */
.dark-section {
  background: #f8f9fa;
}

/* Steps Section */
.steps-section {
  padding: 5rem 1.5rem;
}

.steps-container {
  max-width: 72rem;
  margin: 0 auto;
}

.steps-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .steps-title {
    font-size: 2.25rem;
  }
}

.steps-subtitle {
  color: #4b5563;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 3.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  background: #121212;
  color: #fff;
}

html[data-bs-theme="dark"] .step-number {
  background: #fff;
  color: #000;
}

.step-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: #4b5563;
}

/* CTA Section */
.cta-section {
  padding: 3rem 1.5rem;
}

.cta-container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #000;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-subtitle {
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Footer Contacts Section */
.footer-contacts {
  text-align: center;
}

.footer-contacts-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 1rem;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-contacts-list {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #f8f9fa;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.footer-contact-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.footer-contact-text {
  font-weight: 500;
}

/* Footer Divider */
.footer-divider {
  width: 100%;
  max-width: 24rem;
  height: 1px;
  background: #e5e7eb;
}

/* Footer Copyright */
.footer-copyright {
  text-align: center;
}

.footer-text {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Footer policy links */
.footer-policy-links {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-policy-link {
  color: #6b7280;
  text-decoration: none;
}

.footer-policy-link:hover,
.footer-policy-link:focus {
  color: #1a1a1a;
  text-decoration: underline;
}

.footer-policy-sep {
  color: #d1d5db;
}

/* Dark Mode Styles */
html[data-bs-theme="dark"] body {
  background: #000;
  color: #fff;
}

html[data-bs-theme="dark"] .hero-title,
html[data-bs-theme="dark"] .features-title,
html[data-bs-theme="dark"] .steps-title,
html[data-bs-theme="dark"] .step-title,
html[data-bs-theme="dark"] .cta-title,
html[data-bs-theme="dark"] .hero-stat-value {
  color: #fff;
}

html[data-bs-theme="dark"] .hero-subtitle,
html[data-bs-theme="dark"] .features-subtitle,
html[data-bs-theme="dark"] .steps-subtitle,
html[data-bs-theme="dark"] .feature-desc,
html[data-bs-theme="dark"] .step-desc,
html[data-bs-theme="dark"] .cta-subtitle,
html[data-bs-theme="dark"] .hero-stat-label,
html[data-bs-theme="dark"] .header-clock {
  color: inherit;
}

html[data-bs-theme="dark"] .feature-card {
  background: #1a1e24;
  border-color: #30363d;
  color: #f0f6fc;
}
html[data-bs-theme="dark"] .dark-section .feature-card {
  background: #f0f3f6;
  color: #24292f;
  border-color: #d0d7de;
}
html[data-bs-theme="dark"] .cta-container {
  background: #1a1a1a;
  border-color: #3a3a3a;
}

html[data-bs-theme="dark"] .dark-section {
  background: #1a1a1a;
}

html[data-bs-theme="dark"] .features-section {
  background: #121212;
}

html[data-bs-theme="dark"] .hero-section {
  background: #121212;
}

html[data-bs-theme="dark"] .steps-section {
  background: #121212;
}

html[data-bs-theme="dark"] .cta-section {
  background: #121212;
}

html[data-bs-theme="dark"] .site-footer {
  background: #121212;
  border-color: #3a3a3a;
}

html[data-bs-theme="dark"] .footer-text {
  color: #9ca3af;
}

html[data-bs-theme="dark"] .footer-policy-links,
html[data-bs-theme="dark"] .footer-policy-link {
  color: #9ca3af;
}

html[data-bs-theme="dark"] .footer-policy-link:hover,
html[data-bs-theme="dark"] .footer-policy-link:focus {
  color: #fff;
}

html[data-bs-theme="dark"] .footer-policy-sep {
  color: #4b5563;
}

html[data-bs-theme="dark"] .footer-contacts-title {
  color: #fff;
}

html[data-bs-theme="dark"] .footer-contact-item {
  background: #1a1e24;
  color: #f0f6fc;
  border: 1px solid #30363d;
}

html[data-bs-theme="dark"] .footer-contact-item:hover {
  background: #2a2e34;
  color: #fff;
  border-color: #4a4e54;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

html[data-bs-theme="dark"] .footer-divider {
  background: #3a3a3a;
}

html[data-bs-theme="dark"] .btn-primary {
  background: #fff;
  color: #000;
}

html[data-bs-theme="dark"] .btn-primary:hover {
  background: #e5e5e5;
  color: #000;
}

html[data-bs-theme="dark"] .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

html[data-bs-theme="dark"] .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

html[data-bs-theme="dark"] .stat-divider {
  background: rgba(255,255,255,0.2);
}

html[data-bs-theme="dark"] .site-footer {
  border-color: #3a3a3a;
}

html[data-bs-theme="dark"] .footer-text {
  color: #9ca3af;
}

html[data-bs-theme="dark"] .header-login {
  background: #fff;
  color: #000;
}

html[data-bs-theme="dark"] .header-login:hover {
  background: #e5e5e5;
  color: #000;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
  background: #ffffff;
}

html[data-bs-theme="dark"] .pricing-section {
  background: #121212;
}

.pricing-container {
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pricing-title {
    font-size: 2.25rem;
  }
}

html[data-bs-theme="dark"] .pricing-title {
  color: #fff;
}

.pricing-subtitle {
  color: #4b5563;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 3.5rem;
  font-size: 1rem;
}

html[data-bs-theme="dark"] .pricing-subtitle {
  color: #9ca3af;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

html[data-bs-theme="dark"] .pricing-card {
  background: #1a1e24;
  border-color: #30363d;
}

/* Highlight Card (Early Bird) */
.pricing-card--highlight {
  border-color: #29ABE2;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 10px 30px rgba(41, 171, 226, 0.2);
}

.pricing-card--highlight:hover {
  box-shadow: 0 20px 50px rgba(41, 171, 226, 0.3);
}

html[data-bs-theme="dark"] .pricing-card--highlight {
  background: linear-gradient(135deg, #1a2332 0%, #1e2d3d 100%);
  border-color: #29ABE2;
}

/* Future Card (Coming Soon) */
.pricing-card--future {
  opacity: 0.85;
}

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

/* Pricing Badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  width: fit-content;
}

.pricing-badge--current {
  background: linear-gradient(135deg, #29ABE2, #1E88C9);
  color: #ffffff;
}

.pricing-badge--students {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.3);
}

html[data-bs-theme="dark"] .pricing-badge--students {
  background: rgba(25, 135, 84, 0.2);
  color: #5cb85c;
}

.pricing-badge--coming {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

html[data-bs-theme="dark"] .pricing-badge--coming {
  background: rgba(108, 117, 125, 0.2);
  color: #adb5bd;
}

/* Pricing Card Title */
.pricing-card-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

html[data-bs-theme="dark"] .pricing-card-title {
  color: #fff;
}

/* Pricing Price */
.pricing-price-wrapper {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #000;
  line-height: 1;
}

.pricing-card--highlight .pricing-price {
  background: linear-gradient(135deg, #29ABE2, #1E88C9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-bs-theme="dark"] .pricing-price {
  color: #fff;
}

.pricing-period {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

html[data-bs-theme="dark"] .pricing-period {
  color: #9ca3af;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #374151;
}

html[data-bs-theme="dark"] .pricing-feature {
  color: #d1d5db;
}

.pricing-feature-icon {
  display: flex;
  align-items: center;
  color: #29ABE2;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Pricing Buttons */
.pricing-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-button--primary {
  background: linear-gradient(135deg, #29ABE2, #1E88C9);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(41, 171, 226, 0.3);
}

.pricing-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 171, 226, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.pricing-button--secondary {
  background: #f3f4f6;
  color: #000;
  border: 1px solid #e5e7eb;
}

.pricing-button--secondary:hover {
  background: #e5e7eb;
  color: #000;
  text-decoration: none;
}

html[data-bs-theme="dark"] .pricing-button--secondary {
  background: #30363d;
  color: #fff;
  border-color: #484f58;
}

html[data-bs-theme="dark"] .pricing-button--secondary:hover {
  background: #3d444d;
  color: #fff;
}

.pricing-button--disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.pricing-button--disabled:hover {
  transform: none;
  box-shadow: none;
}

html[data-bs-theme="dark"] .pricing-button--disabled {
  background: #30363d;
  color: #6b7280;
}

/* Pricing Note */
.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 2rem;
  font-style: italic;
}

html[data-bs-theme="dark"] .pricing-note {
  color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .pricing-section {
    padding: 3rem 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }
}

/* Tablet Responsive */
@media (min-width: 640px) and (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}