/* ===========================
   SECTION-SPECIFIC STYLES
   =========================== */

/* Scroll Snap Container */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: normal;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Section Base Styles */
.snap-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  position: relative;
  z-index: 2;
  padding: 8rem 2rem;
}

/* Header with Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  background: rgba(10, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

[data-theme='light'] .header {
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(0, 71, 187, 0.1);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Header Actions (Sign-in + Theme Toggle) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Sign in with LLID Button */
.btn-signin {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-signin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.btn-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
  border-color: var(--color-primary-light);
}

.signin-text {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.signin-subtext {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
  margin-top: 0.125rem;
  letter-spacing: 0.02em;
}

[data-theme='light'] .btn-signin {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

[data-theme='light'] .signin-text,
[data-theme='light'] .signin-subtext {
  color: #ffffff;
}

[data-theme='light'] .btn-signin:hover {
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

/* Section Headline (Model Sight Style) */
.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  text-align: center;
}

/* ===========================
   SECTION 1: HERO
   =========================== */

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

.hero-section .container {
  max-width: 1000px;
}

.rotating-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 2rem 0;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headline-word {
  display: inline-block;
}

.headline-letter {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-tagline {
  font-size: 1.375rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 900px;
  margin: 2rem auto 3rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 6rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===========================
   SECTION 2: PROBLEM
   =========================== */

.problem-section {
  background: rgba(0, 71, 187, 0.03);
}

[data-theme='light'] .problem-section {
  background: rgba(0, 71, 187, 0.02);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-item {
  text-align: center;
  padding: 2rem;
}

.problem-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.problem-item p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===========================
   SECTION 3: FEATURES
   =========================== */

.features-section {
  background: transparent;
}

.numbered-features {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.numbered-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

[data-theme='dark'] .numbered-feature {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(96, 165, 250, 0.15);
}

.numbered-feature:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 71, 187, 0.3);
  box-shadow: 0 12px 40px rgba(0, 71, 187, 0.15);
}

[data-theme='dark'] .numbered-feature:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.2);
}

.feature-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.3;
  flex-shrink: 0;
  width: 120px;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===========================
   SECTION 4: PRODUCT
   =========================== */

.product-section {
  background: rgba(96, 165, 250, 0.03);
}

[data-theme='light'] .product-section {
  background: rgba(0, 71, 187, 0.02);
}

.product-showcase {
  max-width: 1100px;
  margin: 0 auto;
}

.dashboard-placeholder {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 71, 187, 0.15);
}

[data-theme='dark'] .dashboard-placeholder {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
}

.dashboard-header {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 3rem;
}

.dashboard-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 71, 187, 0.05);
  border-radius: 12px;
  flex: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.dashboard-chart {
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(0, 71, 187, 0.03);
  border-radius: 12px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 100%;
  width: 100%;
  max-width: 600px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 8px 8px 0 0;
  height: var(--height);
  transition: all 0.3s ease;
}

.chart-bar:hover {
  opacity: 0.8;
  transform: scaleY(1.05);
}

/* ===========================
   SECTION 5: CAROUSEL
   =========================== */

.carousel-section {
  background: transparent;
}

.carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.case-study {
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  text-align: center;
}

[data-theme='dark'] .case-study {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.case-study-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.case-study-label {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.case-study-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.carousel-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-theme='dark'] .carousel-btn {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.carousel-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.carousel-btn svg {
  color: var(--color-text);
}

.carousel-btn:hover svg {
  color: white;
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* ===========================
   SECTION 6: CONTACT
   =========================== */

.contact-section {
  background: rgba(0, 71, 187, 0.03);
}

[data-theme='light'] .contact-section {
  background: rgba(0, 71, 187, 0.02);
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
}

[data-theme='dark'] .contact-form {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 71, 187, 0.2);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  transition: all 0.3s ease;
}

[data-theme='dark'] .form-group input,
[data-theme='dark'] .form-group textarea {
  background: rgba(10, 15, 26, 0.6);
  border-color: rgba(96, 165, 250, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 71, 187, 0.1);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 71, 187, 0.3);
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.info-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: opacity 0.2s ease;
}

.info-link:hover {
  opacity: 0.8;
}

/* Footer */
.footer {
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding: 3rem 3rem 2rem;
  position: relative;
  z-index: 2;
  scroll-snap-align: end;
}

[data-theme='light'] .footer {
  background: rgba(248, 250, 252, 0.95);
  border-top: 1px solid rgba(0, 71, 187, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .rotating-headline {
    font-size: 4rem;
  }

  .section-headline {
    font-size: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .nav {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .btn-signin {
    padding: 0.5rem 1rem;
  }

  .signin-text {
    font-size: 0.8125rem;
  }

  .signin-subtext {
    font-size: 0.625rem;
  }

  .rotating-headline {
    font-size: 2.5rem;
    min-height: 4rem;
  }

  .section-headline {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

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

  .hero-features {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .numbered-feature {
    flex-direction: column;
    text-align: center;
  }

  .feature-number {
    width: 100%;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

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

  .platform-slide {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .rotating-headline {
    font-size: 2rem;
  }

  .section-headline {
    font-size: 2rem;
  }

  .snap-section {
    padding: 4rem 1.5rem;
  }

  .nav {
    display: none; /* Hide nav links on very small screens */
  }

  .header-actions {
    gap: 0.5rem;
  }

  .btn-signin {
    padding: 0.5rem 0.875rem;
  }

  .signin-text {
    font-size: 0.75rem;
  }

  .signin-subtext {
    display: none; /* Hide subtext on very small screens */
  }
}

/* ===========================
   PLATFORMS SECTION
   =========================== */

.platforms-section {
  background: transparent;
}

.platforms-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 2rem auto 4rem;
  line-height: 1.6;
}

/* ===========================
   ROADMAP SECTION
   =========================== */

.roadmap-section {
  background: transparent;
}

.roadmap-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 2rem auto 4rem;
  line-height: 1.6;
  font-weight: 500;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.roadmap-item {
  background: rgba(96, 165, 250, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-8px);
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.roadmap-item:hover::before {
  opacity: 1;
}

.roadmap-quarter {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  opacity: 0.8;
}

.roadmap-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.roadmap-item p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.roadmap-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.roadmap-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 12px;
}

.roadmap-cta-text {
  font-size: 1.125rem;
  color: var(--color-text);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   PLATFORMS SECTION (continued)
   =========================== */

.platforms-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.platforms-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.platform-slide {
  flex-shrink: 0;
  width: 300px;
}

.platform-card {
  background: rgba(96, 165, 250, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  padding: 2rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover {
  transform: translateY(-8px);
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

.platform-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.platform-card p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===========================
   ENHANCED HOVER STATES
   =========================== */

/* Hero Feature Stats */
.hero-feature-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.hero-feature-item:hover {
  transform: translateY(-4px);
}

.feature-stat {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.hero-feature-item:hover .feature-stat {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

/* Problem Cards Enhanced */
.problem-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.problem-item:hover {
  transform: scale(1.03);
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 50px rgba(96, 165, 250, 0.15);
}

/* Numbered Features Enhanced */
.numbered-feature {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.numbered-feature:hover {
  transform: translateX(12px) translateY(-4px);
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 50px rgba(96, 165, 250, 0.15);
}

.numbered-feature:hover .feature-number {
  color: var(--color-primary);
  opacity: 0.5;
}

/* Dashboard Stats Enhanced */
.dashboard-stat {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.dashboard-stat:hover {
  transform: scale(1.08);
}

.dashboard-stat:hover .stat-value {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

/* Carousel Cards Enhanced */
.case-study {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:hover .case-study {
  transform: scale(1.02);
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 30px 60px rgba(96, 165, 250, 0.2);
}

/* Button Magnetic Effect */
.form-submit,
.carousel-btn,
.back-to-top {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit:hover,
.carousel-btn:hover,
.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.form-submit:active,
.carousel-btn:active,
.back-to-top:active {
  transform: translateY(0);
}

/* Form Input Focus Glow */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1), 0 0 20px rgba(96, 165, 250, 0.2);
  outline: none;
}

/* Nav Link Hover */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
