:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2a2a2a;
  --accent-green: #00ff88;
  --accent-green-dark: #00cc6a;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --card-bg: #2a2a2a;
  --border-color: rgba(255, 255, 255, 0.1);
  --accent-blue: #3b82f6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

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

.download-btn,
.back-btn {
  background: var(--accent-green);
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.download-btn:hover,
.back-btn:hover {
  background: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  padding: 2rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 2rem;
  background: 
    radial-gradient(ellipse at top left, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
}

.hero-logo {
  height: clamp(60px, 10vw, 80px);
  width: auto;
  margin-bottom: 1rem;
  animation: logoGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
  animation: subtitleSlide 1s ease-out 0.3s both;
}

@keyframes subtitleSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
  animation: descriptionFade 1s ease-out 0.6s both;
}

@keyframes descriptionFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: buttonsPop 1s ease-out 0.9s both;
}

@keyframes buttonsPop {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-green-dark), var(--accent-green));
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-green);
  padding: 1rem 2rem;
  border: 2px solid var(--accent-green);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-green);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.app-mockup {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

.app-mockup:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Waveform Animation */
.waveform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100px;
  opacity: 0.1;
  z-index: 1;
}

.wave-bar {
  display: inline-block;
  width: 4px;
  background: var(--accent-blue);
  margin: 0 1px;
  animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.wave-bar:nth-child(4) {
  animation-delay: 0.3s;
}
.wave-bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes wave {
  0%,
  100% {
    height: 20px;
  }
  50% {
    height: 80px;
  }
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: 
    linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: featuresPulse 10s ease-in-out infinite;
}

@keyframes featuresPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: headerSlideUp 1s ease-out both;
}

@keyframes headerSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 2px;
  animation: titleUnderline 1s ease-out 0.5s both;
}

@keyframes titleUnderline {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: cardSlideIn 0.8s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::after {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.15);
  background: rgba(42, 42, 42, 0.95);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--accent-green);
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
  color: var(--text-secondary);
}

/* Adaptive Musical Intelligence Section */
.adaptive-intelligence {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.08) 0%, 
    rgba(59, 130, 246, 0.05) 50%, 
    rgba(0, 255, 136, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.adaptive-intelligence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.intelligence-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.intelligence-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.pulse-animation {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-ring {
  position: absolute;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.pulse-ring-1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.pulse-ring-2 {
  width: 150px;
  height: 150px;
  animation-delay: 0.5s;
}

.pulse-ring-3 {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.intelligence-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  position: relative;
  z-index: 3;
}

.brain-icon {
  font-size: 2.5rem;
  animation: brainPulse 2s ease-in-out infinite;
}

.rotating-disc {
  width: 40px;
  height: 40px;
  position: relative;
  animation: discSpin 3s linear infinite;
}

.disc-ring {
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: ringPulse 2s ease-in-out infinite;
}

.disc-center {
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: centerGlow 1.5s ease-in-out infinite alternate;
}

.disc-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: dotsRotate 4s linear infinite reverse;
}

.dot {
  width: 4px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 50%;
  position: absolute;
  opacity: 0.8;
}

.dot-1 {
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.dot-2 {
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0.25s;
}

.dot-3 {
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

.dot-4 {
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0.75s;
}

@keyframes discSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes centerGlow {
  0% {
    box-shadow: 0 0 5px var(--accent-green);
  }
  100% {
    box-shadow: 0 0 15px var(--accent-green), 0 0 25px var(--accent-green);
  }
}

@keyframes dotsRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes brainPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.floating-notes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.note {
  position: absolute;
  font-size: 1.5rem;
  color: var(--accent-green);
  opacity: 0.7;
  animation: float 4s ease-in-out infinite;
}

.note-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.note-2 {
  top: 20%;
  right: 15%;
  animation-delay: 0.8s;
}

.note-3 {
  bottom: 25%;
  left: 10%;
  animation-delay: 1.6s;
}

.note-4 {
  bottom: 15%;
  right: 20%;
  animation-delay: 2.4s;
}

.note-5 {
  top: 50%;
  left: 5%;
  animation-delay: 3.2s;
}

.intelligence-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intelligence-badge {
  background: linear-gradient(135deg, var(--accent-green), #00cc6a);
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 800;
  width: fit-content;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  }
  50% {
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
  }
}

.intelligence-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intelligence-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
}

.intelligence-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.intelligence-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
}

.intelligence-feature:hover {
  transform: translateX(10px);
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  background: var(--accent-green);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.feature-text p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.intelligence-highlight {
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.1), 
    rgba(59, 130, 246, 0.1));
  border: 2px solid var(--accent-green);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.intelligence-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.highlight-content h3 {
  color: var(--accent-green);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  text-align: center;
}

.highlight-content p {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.formula-part {
  color: var(--accent-green);
  font-weight: 700;
  white-space: nowrap;
}

.formula-result {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.2em;
  white-space: nowrap;
}

.intelligence-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 2rem;
  background: 
    linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    rgba(0, 255, 136, 0.02);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: workflowPulse 12s ease-in-out infinite;
}

@keyframes workflowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 2rem;
  background: rgba(42, 42, 42, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  animation: stepSlideIn 0.8s ease-out both;
  overflow: hidden;
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes stepSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.03), transparent);
  transition: left 0.8s ease;
}

.step-card:hover::after {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.2);
  background: rgba(42, 42, 42, 0.9);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.step-number::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-number::before {
  opacity: 1;
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.step-card:hover .step-title {
  color: var(--accent-green);
  transform: translateY(-2px);
}

.step-description {
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.step-card:hover .step-description {
  color: var(--text-secondary);
}

/* Purchase Section */
.purchase {
  padding: 6rem 2rem;
  background: 
    linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    rgba(0, 255, 136, 0.02);
  overflow: visible;
  position: relative;
}

.purchase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: purchasePulse 8s ease-in-out infinite;
}

@keyframes purchasePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.purchase-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.purchase-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 4rem;
  margin-top: 4rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
  max-width: 100%;
  min-height: auto;
  height: auto;
  animation: purchaseCardSlide 1s ease-out both;
}

@keyframes purchaseCardSlide {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.purchase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
  animation: purchaseTopLine 2s ease-out 0.5s both;
}

@keyframes purchaseTopLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.purchase-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.2);
}

.purchase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  min-height: auto;
  height: auto;
  overflow: visible;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.product-badge {
  background: linear-gradient(135deg, var(--accent-green), #00cc6a);
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 800;
  width: fit-content;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  animation: badgeGlow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.product-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: badgeShimmer 2s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.product-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nameSlide 1s ease-out 0.3s both;
}

@keyframes nameSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2rem 0 3rem 0;
  padding: 2rem;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  position: relative;
  overflow: hidden;
  animation: priceReveal 1s ease-out 0.6s both;
}

@keyframes priceReveal {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.price-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  animation: priceShimmer 3s ease-in-out infinite;
}

@keyframes priceShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% {
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  }
}

.price-note {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.purchase-features {
  margin-top: 1.5rem;
  animation: featuresSlide 1s ease-out 0.9s both;
}

@keyframes featuresSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.purchase-features .feature-item {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.purchase-features .feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.purchase-features .feature-item:hover {
  color: var(--text-secondary);
  transform: translateX(5px);
}

.purchase-features .feature-item:last-child {
  margin-bottom: 0;
}

.purchase-action {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  overflow: visible;
  height: auto;
  min-height: auto;
  animation: actionSlide 1s ease-out 1.2s both;
}

@keyframes actionSlide {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.paypal-container {
  margin: 2rem 0;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 16px;
  border: 2px solid var(--accent-green);
  position: relative;
  width: 100%;
  padding: 1rem;
  overflow: hidden;
}

.paypal-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(45deg, var(--accent-green), transparent, var(--accent-green));
  background-size: 200% 200%;
  border-radius: 16px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: borderGlow 3s ease-in-out infinite;
}

.paypal-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  animation: paypalShimmer 4s ease-in-out infinite;
}

@keyframes paypalShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Simple PayPal content rules - let PayPal control its own sizing */
#paypal-button-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

#paypal-button-container * {
  max-width: 100%;
}

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

.purchase-guarantee {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.guarantee-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Mobile responsiveness for purchase section */
@media (max-width: 768px) {
  .purchase {
    padding: 4rem 1.5rem;
    overflow: visible;
  }
  
  .purchase-container {
    overflow: visible;
  }
  
  .purchase-card {
    padding: 3rem 2rem;
    overflow: visible;
    height: auto;
    min-height: auto;
  }
  
  .purchase-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    height: auto;
    overflow: visible;
  }
  
  .purchase-action {
    overflow: visible;
    height: auto;
    min-height: auto;
  }
  
  .product-name {
    font-size: 2rem;
  }
  
  .price {
    font-size: 2.8rem;
  }
  
  .paypal-container {
    margin: 1.5rem 0;
    max-height: none;
    height: auto;
    overflow: visible;
    padding: 1.5rem;
  }
  
  .paypal-container > * {
    transform: none !important;
    transform-origin: top center;
  }
}

/* Technical Specs */
.technical {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.tech-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.tech-spec-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.tech-spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.tech-spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
}

.tech-spec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tech-spec-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
}

.tech-spec-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tech-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-spec-item:last-child {
  border-bottom: none;
}

.tech-spec-label {
  color: var(--text-secondary);
  font-weight: 500;
  flex: 1;
}

.tech-spec-value {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent-green);
  font-weight: 600;
  text-align: right;
  flex: 1;
  font-size: 0.9rem;
}

/* Legal Pages */
.main-content {
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.legal-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.legal-section:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.legal-section h2 {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.legal-section h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal-section p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--text-secondary);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--accent-blue);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.contact-info {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid var(--accent-green);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.contact-info h3 {
  color: var(--accent-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Download Page */
.download-section {
  max-width: 800px;
  margin: 0 auto;
}

.download-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.download-header {
  margin-bottom: 2rem;
}

.download-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.download-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.download-version {
  color: var(--text-muted);
  font-size: 1rem;
}

.download-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.download-details h3 {
  color: var(--accent-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-value {
  color: var(--text-primary);
  font-weight: 600;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.installation-guide,
.support-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.installation-guide h3,
.support-section h3 {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.guide-section {
  margin-bottom: 2rem;
}

.guide-section h4 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.guide-section ol,
.guide-section ul {
  color: var(--text-secondary);
  margin-left: 1.5rem;
}

.guide-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.support-options {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--accent-green);
  border-radius: 8px;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.support-link:hover {
  background: var(--accent-green);
  color: #000000;
}

.license-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.license-info h4 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.license-key-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.license-key-display code {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent-green);
  font-weight: 600;
  flex: 1;
}

.copy-btn {
  background: var(--accent-green);
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--accent-green-dark);
}

/* Personal Message Section */
.personal-message {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(26, 26, 26, 0.8) 100%);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.personal-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.personal-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.message-content {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 4rem;
  margin-top: 4rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.message-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
}

.message-text {
  text-align: center;
  margin-bottom: 3rem;
}

.message-intro {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}

.message-intro::before,
.message-intro::after {
  content: '"';
  font-size: 4rem;
  color: var(--accent-green);
  opacity: 0.3;
  position: absolute;
  font-family: Georgia, serif;
}

.message-intro::before {
  top: -1rem;
  left: -2rem;
}

.message-intro::after {
  bottom: -3rem;
  right: -2rem;
  transform: rotate(180deg);
}

.message-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.message-tagline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 2px;
}

.message-support {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.support-button {
  margin-bottom: 3rem;
}

.coffee-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: #1a231f;
  color: #00e579;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  position: relative;
  overflow: hidden;
}

.coffee-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 121, 0.2), transparent);
  transition: left 0.5s ease;
}

.coffee-link:hover::before {
  left: 100%;
}

.coffee-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 229, 121, 0.4);
  background: #0f1a16;
}

.coffee-icon {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.creator-signature {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
}

.creator-signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.05), transparent, rgba(0, 255, 136, 0.05));
  border-radius: 20px;
  pointer-events: none;
}

.signature-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.location {
  font-size: 1.1rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.signature {
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
}

/* Responsive Design for Personal Section */
@media (max-width: 768px) {
  .message-content {
    padding: 2.5rem 2rem;
    margin-top: 2rem;
    border-radius: 16px;
  }
  
  .message-intro {
    font-size: 1.2rem;
  }
  
  .message-intro::before,
  .message-intro::after {
    font-size: 3rem;
  }
  
  .message-intro::before {
    top: -0.5rem;
    left: -1rem;
  }
  
  .message-intro::after {
    bottom: -2rem;
    right: -1rem;
  }
  
  .message-tagline {
    font-size: 1.4rem;
  }
  
  .coffee-link {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid rgba(0, 191, 255, 0.1);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 1rem auto;
  display: block;
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-message {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
}

.footer-tagline {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-support {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer .coffee-link {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .coffee-link:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

.footer-location {
  color: var(--accent-green);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

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

  .tech-specs-grid {
    grid-template-columns: 1fr;
  }

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

  .download-info {
    grid-template-columns: 1fr;
  }

  .support-options {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-blue);
  animation: spin 1s ease-in-out infinite;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
}

.message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* Mobile responsiveness for Intelligence section */
@media (max-width: 768px) {
  .adaptive-intelligence {
    padding: 4rem 1.5rem;
  }
  
  .intelligence-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .intelligence-visual {
    height: 300px;
  }
  
  .pulse-animation {
    width: 150px;
    height: 150px;
  }
  
  .pulse-ring-1 {
    width: 80px;
    height: 80px;
  }
  
  .pulse-ring-2 {
    width: 120px;
    height: 120px;
  }
  
  .pulse-ring-3 {
    width: 150px;
    height: 150px;
  }
  
  .intelligence-core {
    width: 60px;
    height: 60px;
  }
  
  .brain-icon {
    font-size: 2rem;
  }
  
  .intelligence-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .intelligence-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .intelligence-feature:hover {
    transform: translateY(-5px);
  }
  
  .formula-part,
  .formula-result {
    white-space: normal;
  }
  
  .highlight-content p {
    font-size: 1rem;
  }
}

/* Download Page Styles */
.access-denied {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 2rem;
  background: 
    radial-gradient(ellipse at top left, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.access-denied::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

.access-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.access-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.access-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.access-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-section {
  padding: 6rem 2rem;
  background: 
    linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: featuresPulse 10s ease-in-out infinite;
}

.download-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-dark));
}

.download-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.2);
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.download-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
}

.detail-value {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.license-section {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.license-section h4 {
  color: var(--accent-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.license-key-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.license-key-container code {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 1rem;
  flex: 1;
  letter-spacing: 1px;
}

.copy-btn {
  background: var(--accent-green);
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.copy-btn:hover {
  background: var(--accent-green-dark);
  transform: translateY(-2px);
}

.license-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

.installation-guide {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.installation-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
}

.installation-guide h3 {
  color: var(--accent-green);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.guide-card {
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
}

.guide-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.guide-card h4 {
  color: var(--accent-green);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.guide-card ol {
  color: var(--text-secondary);
  margin-left: 1.5rem;
  line-height: 1.8;
}

.guide-card li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.vst3-locations {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.vst3-locations h4 {
  color: var(--accent-blue);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.path-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.path-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
}

.path-item strong {
  color: var(--accent-blue);
  min-width: 80px;
}

.path-item code {
  font-family: "JetBrains Mono", monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: var(--accent-green);
  font-size: 0.9rem;
}

.package-contents {
  margin-top: 4rem;
}

.package-contents h3 {
  color: var(--accent-green);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.support-section {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.support-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.support-card:hover .support-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}

.support-card h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.support-btn {
  background: var(--accent-green);
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.support-btn:hover {
  background: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* Mobile responsiveness for download page */
@media (max-width: 768px) {
  .download-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .download-card {
    padding: 2rem;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .access-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-buttons {
    gap: 1rem;
  }
  
  .license-key-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .license-key-container code {
    text-align: center;
    word-break: break-all;
  }
  
  .path-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .path-item code {
    word-break: break-all;
  }
}

/* Legal Page Styles */

/* Legal Hero Section */
.legal-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.legal-hero .hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.legal-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.legal-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.legal-nav-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.legal-nav-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-nav-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.legal-nav-buttons .btn:hover::before {
  left: 100%;
}

/* Legal Sections */
.legal-section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.legal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.legal-card:hover::before {
  transform: scaleX(1);
}

.legal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.legal-card h3 {
  color: var(--accent-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.legal-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
}

.legal-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-card li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.legal-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.legal-card a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.legal-card a:hover {
  color: var(--accent-green-dark);
  text-decoration: underline;
}

.legal-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Company Info Specific Styles */
.company-info h3 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.company-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.company-details:last-child {
  margin-bottom: 0;
}

/* Legal Footer Additions */
.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-green);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Mobile Responsiveness for Legal Page */
@media (max-width: 768px) {
  .legal-hero {
    min-height: 60vh;
    padding: 2rem 1rem;
  }
  
  .legal-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .legal-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .legal-nav-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .legal-nav-buttons .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  .legal-section {
    padding: 3rem 0;
  }
  
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .legal-card {
    padding: 1.5rem;
  }
  
  .legal-card h3 {
    font-size: 1.25rem;
  }
  
  .company-info h3 {
    font-size: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .legal-hero .hero-title {
    font-size: 2rem;
  }
  
  .legal-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .legal-card {
    padding: 1.25rem;
  }
  
  .legal-card h3 {
    font-size: 1.1rem;
  }
  
  .company-details {
    padding: 1rem;
  }
}

/* Smooth scrolling for legal navigation */
html {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.legal-nav-buttons .btn:focus,
.legal-card a:focus {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}

/* Print styles for legal documents */
@media print {
  .navbar,
  .legal-hero,
  .footer,
  .legal-nav-buttons {
    display: none;
  }
  
  .legal-section {
    page-break-inside: avoid;
    margin: 1rem 0;
  }
  
  .legal-card {
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    page-break-inside: avoid;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .legal-card h3 {
    color: black;
  }
}

/* How It Works Section */
