/* Landing Page Styles - Clean Minimalist Design */

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  background: var(--background);
  padding: 4rem 0;
  padding-top: 0rem;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Left Content */
.hero-left {
  padding-right: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--foreground);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

.hero-badge i {
  color: var(--color);
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bold);
}

.text-highlight {
  color: var(--text-muted);
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.hero-cta.primary {
  background: var(--color);
  color: var(--background);
  border: 2px solid var(--color);
}

.hero-cta.primary:hover {
  background: var(--color-alt);
  border-color: var(--color-alt);
  transform: translateY(-2px);
}

.hero-cta.secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--foreground);
}

.hero-cta.secondary:hover {
  background: var(--foreground);
  border-color: var(--color);
  color: var(--color);
}

/* Right Content - Product Showcase */
.product-showcase {
  background: var(--foreground);
  border-radius: 1.5rem;
  padding: 0;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.showcase-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bold);
}

.showcase-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--success-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.showcase-content {
  margin-bottom: 1rem;
}

/* Video Container */
.video-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

/* Generate Now Button Section */
.hero-generate-section {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  padding: 0 2rem;
}

.generate-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--color), var(--color-alt));
  color: var(--background);
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 
    0 10px 30px rgba(var(--color-rgb, 254, 172, 26), 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  justify-content: center;
}

.generate-now-btn::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;
}

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

.generate-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(var(--color-rgb, 254, 172, 26), 0.4),
    0 8px 20px rgba(0, 0, 0, 0.2);
}

.generate-now-btn:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.generate-now-btn:hover .btn-icon {
  transform: translateX(4px);
}

.demo-card {
  background: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.05);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-icon {
  width: 48px;
  height: 48px;
  background: var(--color);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-size: 1.5rem;
}

.demo-info {
  flex: 1;
}

.demo-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bold);
  margin-bottom: 0.25rem;
}

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

.demo-play {
  color: var(--color);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.demo-play:hover {
  transform: scale(1.1);
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--foreground);
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.05);
}

.stat-icon {
  width: 24px;
  height: 24px;
  background: rgba(var(--color-rgb, 254, 172, 26), 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color);
  font-size: 0.875rem;
}

.stat-info {
  flex: 1;
}

.stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bold);
  margin-bottom: 0.125rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.demo-progress {
  margin-top: 1rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.progress-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.progress-percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--success-color);
  background: rgba(var(--success-color-rgb, 40, 167, 69), 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--foreground);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--success-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Features Showcase Section */
/* Features Showcase Section - Marquee */
.features-showcase-section {
  min-height: 120vh;
  background: var(--background);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient borders for smooth card transitions */
.features-showcase-section::before,
.features-showcase-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 10;
  pointer-events: none;
}

.features-showcase-section::before {
  top: 0;
  background: linear-gradient(to bottom, 
    var(--background) 0%, 
    rgba(var(--background-rgb), 0.95) 30%,
    rgba(var(--background-rgb), 0.7) 60%, 
    rgba(var(--background-rgb), 0.3) 80%,
    transparent 100%);
}

.features-showcase-section::after {
  bottom: 0;
  background: linear-gradient(to top, 
    var(--background) 0%, 
    rgba(var(--background-rgb), 0.95) 30%,
    rgba(var(--background-rgb), 0.7) 60%, 
    rgba(var(--background-rgb), 0.3) 80%,
    transparent 100%);
}

.showcase-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 0;
  pointer-events: none;
}

.col {
  position: relative;
  height: 80vh;
  width: 280px;
  overflow: hidden;
  pointer-events: auto;
}

.col-left {
  margin-left: 4px;
  margin-right: auto;
}

.col-right {
  margin-left: auto;
  margin-right: 4px;
}

.stack {
  position: absolute;
  left: 0;
  right: 0;
  will-change: transform;
  display: grid;
  gap: 32px;
  padding: 16px 0;
}

/* Row offsets for dynamic positioning */
.col-left .stack {
  transform: translateX(-8px);
}

.col-right .stack {
  transform: translateX(8px);
}

/* Marquee-specific card styles */
.marquee .card {
  background: var(--background);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0;
  min-height: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 240px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  will-change: transform;
  overflow: hidden;
}

.marquee .card-container {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.marquee .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 0;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(254, 172, 26, 0.2);
  flex-shrink: 0;
}

.marquee .card-icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.marquee .card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.marquee .card-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* AI Gradient Animation */
.marquee .ai-gradient {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

/* AI Gradient Icon Container */
.marquee .card-icon.ai-gradient {
  background: var(--primary-light);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.marquee .card-icon.ai-gradient::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 300%;
  border-radius: 50%;
  animation: gradientShift 3s ease-in-out infinite;
  z-index: -1;
}

.marquee .card-icon.ai-gradient i {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

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

/* Card blur effects */
.marquee .card {
  transition: all 0.3s ease, filter 0.3s ease;
}

.marquee .card.blur-strong {
  filter: blur(3px);
  opacity: 0.4;
}

.marquee .card.blur-medium {
  filter: blur(1.5px);
  opacity: 0.7;
}

.marquee .card.blur-light {
  filter: blur(0.5px);
  opacity: 0.85;
}

/* Additional gradient fade for cards near edges */
.marquee .card:nth-child(1),
.marquee .card:nth-child(2) {
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
}

.marquee .card:nth-last-child(-n+2) {
  mask-image: linear-gradient(to top, transparent 0%, black 20%, black 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%, black 100%);
}

.center-content {
  text-align: center;
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.center-kicker {
  font-weight: 900;
  color: #000;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.center-content .text {
  text-transform: uppercase;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background-image: linear-gradient(
    to right,
    #8c8ced,
    #ee005f,
    #ff9671,
    #00ecd6,
    #8a89c3
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 300%;
  background-position: -100%;
  animation: animatedText 3s infinite alternate linear;
  margin-bottom: 1.5rem;
}

@keyframes animatedText {
  to {
    background-position: 100%;
  }
}

.center-counter {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

#midi-count {
  font-weight: 900;
  color: #000;
  font-size: 64px;
  line-height: 1;
}

.counter-suffix {
  font-weight: 800;
  color: #000;
  font-size: 20px;
}

/* Responsive styles for marquee */
@media (max-width: 1200px) {
  .col {
    width: 220px;
  }
  
  .col-left {
    margin-left: 2px;
  }
  
  .col-right {
    margin-right: 2px;
  }
  
  .marquee {
    gap: 15px;
  }
  
  .card {
    width: 220px;
    height: 160px;
  }
  
  .center-content .text {
    font-size: 84px;
  }
  
  #midi-count {
    font-size: 48px;
  }
  
  .counter-suffix {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .col {
    width: 200px;
  }
  
  .marquee {
    gap: 10px;
  }
  
  .card {
    width: 200px;
    height: 140px;
  }
  
  .center-content .text {
    font-size: 72px;
  }
  
  #midi-count {
    font-size: 42px;
  }
  
  .counter-suffix {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .col {
    width: 180px;
  }
  
  .card {
    width: 180px;
    height: 120px;
  }
  
  .center-content .text {
    font-size: 64px;
  }
  
  #midi-count {
    font-size: 36px;
  }
  
  .counter-suffix {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .features-showcase-section {
    padding: 2rem 0;
    min-height: 100vh;
  }
  
  .features-showcase-section::before,
  .features-showcase-section::after {
    height: 80px;
  }
  
  .marquee {
    flex-direction: row;
    gap: 1rem;
    padding: 0 16px;
    height: 100%;
    justify-content: center;
  }
  
  .col {
    width: 140px;
    height: 60vh;
    margin: 0;
  }
  
  .col-left,
  .col-right {
    margin: 0;
    height: 60vh;
  }
  
  /* Reduce row offsets on mobile but keep some effect */
  .col-left .stack {
    transform: translateX(-4px);
  }
  
  .col-right .stack {
    transform: translateX(4px);
  }
  
  .center-content .text {
    font-size: 48px;
  }
  
  #midi-count {
    font-size: 32px;
  }
  
  .counter-suffix {
    font-size: 10px;
  }
  
  .card {
    width: 140px;
    height: 100px;
    padding: 10px;
  }
  
  .card-content h3 {
    font-size: 0.875rem;
  }
  
  .card-content p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  .marquee {
    gap: 0.5rem;
    padding: 0 8px;
  }
  
  .col {
    width: 120px;
    height: 50vh;
  }
  
  .card {
    width: 120px;
    height: 90px;
    padding: 8px;
  }
  
  .center-content .text {
    font-size: 36px;
  }
  
  #midi-count {
    font-size: 28px;
  }
  
  .counter-suffix {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .marquee {
    gap: 0.25rem;
    padding: 0 4px;
  }
  
  .col {
    width: 110px;
    height: 45vh;
  }
  
  .card {
    width: 110px;
    height: 80px;
    padding: 6px;
  }
  
  .center-content .text {
    font-size: 32px;
  }
  
  #midi-count {
    font-size: 24px;
  }
  
  .counter-suffix {
    font-size: 8px;
  }
  
  .card-content h3 {
    font-size: 0.75rem;
  }
  
  .card-content p {
    font-size: 0.65rem;
  }
  
  .card-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}

/* Old feature-card styles removed - replaced by new .card styles above */

/* Old responsive styles removed - replaced by new marquee responsive styles above */

/* Partners Section */
.partners-section {
  padding: 3rem 0;
  background: var(--background-light);
  border-top: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  border-bottom: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

.partners-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partners-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-logo {
  width: 120px;
  height: 60px;
  background: var(--foreground);
  border-radius: 8px;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--color-rgb, 254, 172, 26), 0.3);
  box-shadow: 0 4px 12px rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight-number {
  background: linear-gradient(135deg, var(--color), var(--color-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.reviews-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.reviews-marquee {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: flex-start;
}

.reviews-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reviews-col-1 {
  margin-top: 20px;
}

.reviews-col-2 {
  margin-top: -10px;
}

.reviews-col-3 {
  margin-top: 10px;
}

.reviews-col-4 {
  margin-top: -15px;
}

.review-bubble {
  background: var(--foreground);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.review-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(var(--color-rgb, 254, 172, 26), 0.02) 0%,
    rgba(var(--color-rgb, 254, 172, 26), 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.review-bubble:hover::before {
  opacity: 1;
}

.review-bubble:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--color-rgb, 254, 172, 26), 0.2);
}

.review-content {
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--color);
  font-weight: bold;
  position: absolute;
  left: -1rem;
  top: -0.5rem;
  opacity: 0.3;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-monogram {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color), var(--color-alt));
  color: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--color-rgb, 254, 172, 26), 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--bold);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bubble positioning and sizing variations */
.bubble-1 {
  transform: rotate(-1deg);
}

.bubble-2 {
  transform: rotate(1deg);
}

.bubble-3 {
  transform: rotate(-0.5deg);
}

.bubble-4 {
  transform: rotate(0.5deg);
}

.bubble-5 {
  transform: rotate(-0.8deg);
}

.bubble-6 {
  transform: rotate(0.8deg);
}

.bubble-7 {
  transform: rotate(-0.3deg);
}

.bubble-8 {
  transform: rotate(0.3deg);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .reviews-marquee {
    gap: 1.5rem;
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .reviews-marquee {
    gap: 1rem;
    max-width: 1000px;
  }
  
  .reviews-col {
    gap: 1.5rem;
  }
  
  .review-bubble {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
  }
  
  .reviews-marquee {
    flex-direction: row;
    gap: 1rem;
    padding: 0 1rem;
    flex-wrap: wrap;
  }
  
  .reviews-col {
    flex: 1;
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
  
  .reviews-col-1,
  .reviews-col-2,
  .reviews-col-3,
  .reviews-col-4 {
    margin-top: 0;
  }
  
  .review-bubble {
    padding: 1.25rem;
    transform: none !important;
  }
  
  .review-bubble:hover {
    transform: translateY(-4px) !important;
  }
  
  .review-text {
    font-size: 0.85rem;
  }
  
  .author-monogram {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  
  .author-name {
    font-size: 0.8rem;
  }
  
  .author-role {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .reviews-marquee {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .reviews-col {
    min-width: calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
    gap: 1.25rem;
  }
  
  .review-bubble {
    padding: 1rem;
  }
  
  .review-text {
    font-size: 0.8rem;
  }
  
  .author-monogram {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 1.75rem;
  }
  
  .reviews-marquee {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }
  
  .reviews-col {
    min-width: calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
    gap: 1rem;
  }
  
  .review-bubble {
    padding: 0.875rem;
  }
  
  .review-text {
    font-size: 0.75rem;
  }
  
  .author-monogram {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  
  .author-name {
    font-size: 0.75rem;
  }
  
  .author-role {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .reviews-marquee {
    flex-direction: column;
    gap: 1rem;
  }
  
  .reviews-col {
    min-width: 100%;
    max-width: 100%;
    gap: 1rem;
  }
  
  .review-bubble {
    padding: 1rem;
  }
  
  .review-text {
    font-size: 0.8rem;
  }
  
  .author-monogram {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* Bottom Navigation */
.bottom-nav-section {
  padding: 2rem 0;
  background: var(--background-light);
  border-top: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--foreground);
  border-radius: 1rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.nav-item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--color-rgb, 254, 172, 26), 0.2);
}

.nav-item.active {
  background: var(--color);
  color: var(--background);
  border-color: var(--color);
}

.nav-item.active .nav-icon {
  color: var(--background);
}

.nav-item.active .nav-label {
  color: var(--background);
}

.nav-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color);
  font-size: 1.125rem;
}

.nav-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--background);
}

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

.section-badge {
  display: inline-block;
  background: var(--foreground);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--foreground);
  border-radius: 1rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--color-rgb, 254, 172, 26), 0.2);
}

.main-feature {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.feature-content {
  padding: 2rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bold);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.feature-visual {
  flex: 1;
  padding: 1.5rem;
  background: var(--background);
  border-top: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

/* Visual Cards */
.visual-card {
  background: var(--foreground);
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

.card-title {
  font-weight: 600;
  color: var(--bold);
  font-size: 0.875rem;
}

.card-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.card-content {
  padding: 1.5rem;
}

/* Progress Bars */
.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  min-width: 120px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--foreground);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color);
  min-width: 35px;
  text-align: right;
}

/* Settings List */
.settings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-color);
}

.toggle-switch {
  width: 40px;
  height: 20px;
  background: var(--foreground);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--color);
}

.toggle-slider {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(20px);
}

.save-button {
  background: var(--color);
  color: var(--background);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.message-button {
  background: var(--foreground);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(var(--color-rgb, 254, 172, 26), 0.1);
}

/* Activity Feed */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  gap: 0.75rem;
}

.activity-avatar {
  width: 32px;
  height: 32px;
  background: var(--color);
  color: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
}

.activity-name {
  font-weight: 600;
  color: var(--bold);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.activity-message {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Integration Section */
.integration-section {
  padding: 6rem 0;
  background: var(--accent);
  color: var(--background);
}

.integration-content {
  text-align: center;
}

.integration-header {
  margin-bottom: 3rem;
}

.integration-header .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--background);
  border-color: rgba(255, 255, 255, 0.2);
}

.integration-header .section-title {
  color: var(--background);
}

.integration-header .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.integration-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--background);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: opacity 0.3s ease;
}

.integration-cta:hover {
  opacity: 0.8;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.integration-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.integration-logo i {
  font-size: 1.5rem;
  color: var(--background);
}

/* Testimonial Section */
.testimonial-section {
  padding: 6rem 0;
  background: var(--background-light);
}

.testimonial-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 3rem;
  color: var(--color);
  margin-bottom: 2rem;
}

.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--bold);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--color);
  color: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--bold);
  margin-bottom: 0.25rem;
}

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

/* Statistics Section */
.stats-section {
  padding: 4rem 0;
  background: var(--background);
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color);
  line-height: 1;
}

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

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--accent);
  color: var(--background);
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta-actions .button {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.cta-actions .button.filled {
  background: var(--background);
  color: var(--color);
  border-color: var(--background);
}

.cta-actions .button.filled:hover {
  background: var(--foreground);
  border-color: var(--foreground);
}

.cta-actions .button.transparent-outline {
  color: var(--background);
  border-color: var(--background);
}

.cta-actions .button.transparent-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 350px 1fr;
    gap: 2rem;
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-left, .hero-right {
    padding: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .generate-now-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    min-width: 250px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .main-feature {
    grid-row: auto;
  }
  
  .integration-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .bottom-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .nav-item {
    min-width: 100px;
    padding: 0.75rem 1rem;
  }
  
  .floating-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stat-card-1, .stat-card-2, .stat-card-3 {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .generate-now-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    min-width: 200px;
  }
  
  .partners-logos {
    gap: 1rem;
  }
  
  .partner-logo {
    width: 100px;
    height: 50px;
  }
  
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-quote {
    font-size: 1.25rem;
  }
  
  .phone-mockup {
    width: 260px;
    height: 520px;
  }
  
  .bottom-nav {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}