* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --bg-primary: #000000;
  --bg-light: #ffffff;
  --accent: #fe5722;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  transition: background 0.3s ease;
}

nav.transparent {
  background: transparent;
  backdrop-filter: none;
}

.nav-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 21px;
  font-weight: 600;
  color: #f5f5f7;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #f5f5f7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: transparent;
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--accent);
}

.nav-cta:hover {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section - Full Screen */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  overflow: hidden;
   padding-bottom: 120px; 
}

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  max-width: 1000px;
}

.hero-headline {
  font-size: 96px;
  font-weight: 600;
  color: #f5f5f7;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-subheadline {
  font-size: 28px;
  font-weight: 400;
  color: #a1a1a6;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background: #e64d1f;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--accent);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
  z-index: 3; 
}

.scroll-indicator span {
  color: #a1a1a6;
  font-size: 12px;
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, #a1a1a6 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}/* ============================================
   COUNTDOWN TIMER - PROPER SPACING
   ============================================ */

.countdown-wrapper {
  margin: 45px 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  position: relative;
  z-index: 2;
}

.countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: #a1a1a6;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 60px;
}

.countdown-number {
  font-size: 30px;
  font-weight: 700;
  color: #f5f5f7;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.countdown-number.tick {
  animation: numberTick 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes numberTick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    color: var(--accent);
    text-shadow: 0 0 20px rgba(254, 87, 34, 0.5);
  }
  100% {
    transform: scale(1);
  }
}

.countdown-text {
  font-size: 11px;
  font-weight: 500;
  color: #86868b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.countdown-divider {
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin: 0 4px;
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Launch State */
.countdown-display.launched {
  background: linear-gradient(135deg, 
    rgba(254, 87, 34, 0.2) 0%, 
    rgba(255, 107, 61, 0.15) 100%);
  border-color: rgba(254, 87, 34, 0.3);
  animation: launchGlow 2s ease-in-out infinite;
}

@keyframes launchGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(254, 87, 34, 0.3);
  }
  50% {
    box-shadow: 0 12px 48px rgba(254, 87, 34, 0.5);
  }
}

.countdown-display.launched .countdown-number {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(254, 87, 34, 0.4);
}

.countdown-display.launched .countdown-text {
  color: var(--accent);
}

.countdown-wrapper.launched .countdown-label {
  color: var(--accent);
}

.countdown-wrapper.launched .countdown-label::after {
  content: ' 🚀';
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .countdown-wrapper {
    margin: 40px 0 20px;
  }

  .countdown-label {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .countdown-display {
    padding: 16px 20px;
    gap: 8px;
  }

  .countdown-block {
    min-width: 48px;
    gap: 3px;
  }

  .countdown-number {
    font-size: 34px;
  }

  .countdown-text {
    font-size: 9px;
  }

  .countdown-divider {
    font-size: 24px;
    margin: 0 2px;
  }
}

@media (max-width: 480px) {
   .hero-section {
    padding-bottom: 100px;
  }
  .countdown-display {
    padding: 14px 16px;
    gap: 6px;
  }

  .countdown-block {
    min-width: 42px;
  }

  .countdown-number {
    font-size: 28px;
  }

  .countdown-text {
    font-size: 8px;
  }

  .countdown-divider {
    font-size: 20px;
  }
}

/* Feature Sections - Cinematic Style */
.feature-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 40px;
  position: relative;
}

.feature-section:nth-child(even) {
  background: #ffffff;
}

.feature-section:nth-child(odd) {
  background: #000000;
  color: #f5f5f7;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Tesla-style Feature Label with Number and Title */
.feature-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-section.in-view .feature-label {
  opacity: 1;
  transform: translateY(0);
}

.feature-number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #86868b;
  min-width: 30px;
}

.feature-section:nth-child(odd) .feature-number {
  color: #a1a1a6;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1d1d1f;
}

.feature-section:nth-child(odd) .feature-title {
  color: #f5f5f7;
}

.feature-content h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.feature-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-secondary);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.feature-section:nth-child(odd) .feature-content p {
  color: #a1a1a6;
}

/* Payment Method Chips */
.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.feature-section.in-view .payment-chips {
  opacity: 1;
  transform: translateY(0);
}

.payment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.payment-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.chip-icon {
  width: 18px;
  height: 18px;
  stroke: #1d1d1f;
  flex-shrink: 0;
}

.chip-text {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  white-space: nowrap;
}

.feature-section:nth-child(odd) .payment-chip {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-section:nth-child(odd) .payment-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-section:nth-child(odd) .chip-icon {
  stroke: #f5f5f7;
}

.feature-section:nth-child(odd) .chip-text {
  color: #f5f5f7;
}

/* Feature Chips (for Discovery and Intelligence sections) */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.feature-section.in-view .feature-chips {
  opacity: 1;
  transform: translateY(0);
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(29, 29, 31, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(29, 29, 31, 0.15);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-chip:hover {
  background: rgba(29, 29, 31, 0.1);
  border-color: rgba(29, 29, 31, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-section:nth-child(odd) .feature-chip {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-section:nth-child(odd) .feature-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-section:nth-child(odd) .feature-chip .chip-text {
  color: #f5f5f7;
}

.feature-visual {
  position: relative;
  height: 500px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.feature-section.in-view .feature-content h2,
.feature-section.in-view .feature-content p,
.feature-section.in-view .feature-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.device-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.3));
}

/* Stats Section */
.stats-section {
  background: #000000;
  padding: 120px 40px;
  text-align: center;
  display: none;
}

.stats-section.show-stats {
  display: block;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.stat-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 72px;
  font-weight: 600;
  color: #f5f5f7;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 21px;
  font-weight: 400;
  color: #a1a1a6;
}

/* Why Choose Makit Section */
.why-makit-section {
  background: #000000;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.why-makit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-makit-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-makit-header h2 {
  font-size: 64px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-makit-header p {
  font-size: 28px;
  color: #a1a1a6;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.why-makit-section.in-view .why-makit-header h2,
.why-makit-section.in-view .why-makit-header p {
  opacity: 1;
  transform: translateY(0);
}

.why-makit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b3d 100%);
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(254, 87, 34, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(254, 87, 34, 0.35);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2.5;
}

.why-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 16px;
  color: #a1a1a6;
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  background: #ffffff;
  padding: 120px 40px;
  position: relative;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-it-works-header h2 {
  font-size: 64px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-it-works-header p {
  font-size: 28px;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.how-it-works-section.in-view .how-it-works-header h2,
.how-it-works-section.in-view .how-it-works-header p {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.how-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-step.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.step-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 87, 34, 0.1);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-step:hover .step-icon {
  background: rgba(254, 87, 34, 0.15);
  transform: translateY(-8px);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  stroke-width: 2;
}

.how-step h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.how-step p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: #ffffff;
  padding: 120px 40px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header h2 {
  font-size: 64px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-header p {
  font-size: 28px;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.testimonials-section.in-view .testimonials-header h2,
.testimonials-section.in-view .testimonials-header p {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(29, 29, 31, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.testimonial-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-card:hover {
  background: rgba(29, 29, 31, 0.05);
  border-color: rgba(29, 29, 31, 0.15);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #ffb800;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.location-icon {
  width: 12px;
  height: 12px;
  stroke: var(--text-secondary);
  flex-shrink: 0;
}

/* Screenshots Section - UPDATED WITH GLASS MORPHIC CONTAINERS */
.screenshots-section {
  background: transparent;
  padding: 100px 40px;
  overflow: hidden;
}

.screenshots-header {
  text-align: center;
  margin-bottom: 60px;
}

.screenshots-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f5f5f7;
}

.screenshots-header p {
  font-size: 21px;
  color: #a1a1a6;
}

.screenshots-hint {
  font-size: 16px !important;
  color: #a1a1a6;
  margin-top: 12px;
  font-style: italic;
  opacity: 0.8;
}

.hint-mobile {
  display: none;
}

.hint-desktop {
  display: inline;
}

.screenshots-scroll-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* Desktop: Grid Layout */
.screenshots-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.screenshot-card {
  /* Glass morphic container */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.screenshot-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.screenshot-card:nth-child(1) {
  --card-index: 0;
}
.screenshot-card:nth-child(2) {
  --card-index: 1;
}
.screenshot-card:nth-child(3) {
  --card-index: 2;
}
.screenshot-card:nth-child(4) {
  --card-index: 3;
}
.screenshot-card:nth-child(5) {
  --card-index: 4;
  display: block;
}
.screenshot-card:nth-child(6) {
  --card-index: 5;
  display: block;
}
.screenshot-card:nth-child(7) {
  --card-index: 6;
  display: block;
}
.screenshot-card:nth-child(8) {
  --card-index: 7;
  display: block;
}

.screenshot-image {
  width: 100%;
  height: auto;
  aspect-ratio: 9/19.5;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.screenshot-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlay with description */
.screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    transparent 100%
  );
  padding: 60px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 0 12px 12px;
}

.screenshot-card:hover .screenshot-overlay,
.screenshot-card:focus-within .screenshot-overlay {
  transform: translateY(0);
}

/* Title Badge inside overlay */
.screenshot-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin-bottom: 12px;
}

.screenshot-card:hover .screenshot-image img,
.screenshot-card:focus-within .screenshot-image img {
  transform: scale(1.05);
}

.screenshot-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Hide scroll hint on desktop */
.scroll-hint {
  display: none !important;
}

.screenshot-dots {
  display: none;
}

/* See More Button */
.see-more-container {
  text-align: center;
  margin-top: 40px;
}

.btn-see-more {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-see-more:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-see-more svg {
  transition: transform 0.3s ease;
}

.btn-see-more:hover svg {
  transform: translateY(3px);
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-modal-content {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 1400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 60px 40px 40px;
  z-index: 2;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-modal-content::-webkit-scrollbar {
  display: none;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.gallery-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.gallery-close svg {
  stroke: #f5f5f7;
}

.gallery-modal-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.gallery-item {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  padding: 20px;
}

.gallery-caption h3 {
  font-size: 19px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 8px;
}

.gallery-caption p {
  font-size: 15px;
  color: #a1a1a6;
  line-height: 1.5;
  margin: 0;
}

/* Newsletter Section */
.newsletter-section {
  background: #000000;
  padding: 120px 40px;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-header h2 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f5f5f7;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-header p {
  font-size: 24px;
  color: #a1a1a6;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.newsletter-section.in-view .newsletter-header h2,
.newsletter-section.in-view .newsletter-header p,
.newsletter-section.in-view .newsletter-benefits,
.newsletter-section.in-view .newsletter-form {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.newsletter-input {
  flex: 1;
  padding: 18px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f5f7;
  font-size: 17px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-input::placeholder {
  color: #a1a1a6;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(254, 87, 34, 0.2);
}

.newsletter-button {
  background: var(--accent);
  color: white;
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.newsletter-button:hover:not(:disabled) {
  background: #e64d1f;
  transform: scale(1.02);
}

.newsletter-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 21px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 17px;
  color: #a1a1a6;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  padding: 180px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* Platform Logos - Overlapping Text Integration */
.platform-logos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  display: flex;
  gap: 200px;
}

.platform-logo {
  width: 250px;
  height: 250px;
  fill: #f5f5f7;
  opacity: 0.08;
}

.ios-logo {
  transform: translateX(-100px);
}

.android-logo {
  transform: translateX(100px);
}

.cta-content h2 {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #f5f5f7;
  position: relative;
  z-index: 2;
}

.cta-content > p {
  font-size: 28px;
  color: #a1a1a6;
  margin-bottom: 24px;
}

.waitlist-count {
  font-size: 19px !important;
  color: #a1a1a6 !important;
  margin-bottom: 12px !important;
  font-weight: 500;
}

/* Platform Labels */
.platform-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.platform-label {
  font-size: 17px;
  color: #f5f5f7;
  font-weight: 500;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.platform-label:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.platform-divider {
  color: #a1a1a6;
  font-size: 20px;
}

/* Footer */
footer {
  background: #000000;
  color: #f5f5f7;
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #a1a1a6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #f5f5f7;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: #a1a1a6;
}

/* Page Hero Section */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  padding: 120px 40px 80px;
  margin-top: 44px;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
}

.page-hero-content h1 {
  font-size: 64px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero-content p {
  font-size: 24px;
  color: #a1a1a6;
}

/* Content Section */
.content-section {
  padding: 100px 40px;
  background: #ffffff;
}

.content-section:nth-of-type(even) {
  background: #f5f5f7;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-container.centered {
  text-align: center;
}

.content-container h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.content-container p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.content-container a {
  color: var(--accent);
  text-decoration: none;
}

.content-container a:hover {
  text-decoration: underline;
}

/* Team Section */
.team-section {
  padding: 100px 40px;
  background: #000000;
  color: #f5f5f7;
}

.team-section h2 {
  color: #f5f5f7;
  text-align: center;
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  font-size: 21px;
  color: #a1a1a6;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-placeholder {
  font-size: 48px;
  font-weight: 600;
  color: #a1a1a6;
}

.team-member h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f5f5f7;
}

.team-role {
  font-size: 17px;
  color: #a1a1a6;
}

/* Contact Section */
.contact-section {
  padding: 100px 40px;
  background: #f5f5f7;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2,
.contact-form-container h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contact-info p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-item a {
  font-size: 17px;
  color: var(--accent);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(29, 29, 31, 0.2);
  background: #ffffff;
  font-size: 17px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(254, 87, 34, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Legal Section */
.legal-section {
  padding: 80px 40px 100px;
  background: #ffffff;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.legal-container h2:first-child {
  margin-top: 0;
}

.legal-container h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-container p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-container ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-container li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-container a {
  color: var(--accent);
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* Coming Soon Content */
.coming-soon-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  stroke: var(--accent);
}

.coming-soon-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.coming-soon-content p {
  font-size: 19px;
  margin-bottom: 24px;
}

.email-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* White email link on dark backgrounds */
.team-section .email-link,
.cta-section .email-link,
.newsletter-section .email-link {
  color: #f5f5f7;
  text-decoration: underline;
}

.team-section .email-link:hover,
.cta-section .email-link:hover,
.newsletter-section .email-link:hover {
  color: #ffffff;
}

/* FAQ Page Section */
.faq-page-section {
  background: #ffffff;
  padding: 80px 40px 120px;
  min-height: 100vh;
}

/* Values Section */
.values-section {
  background: #ffffff;
  padding: 120px 40px;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-container h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-card {
  background: rgba(29, 29, 31, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  background: rgba(29, 29, 31, 0.05);
  border-color: rgba(29, 29, 31, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Timeline Section */
.timeline-section {
  background: #000000;
  padding: 120px 40px;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-container h2 {
  font-size: 56px;
  font-weight: 600;
  color: #f5f5f7;
  text-align: center;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    rgba(254, 87, 34, 0.3) 100%
  );
}

.timeline-item {
  position: relative;
  padding-bottom: 60px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #000000;
  z-index: 2;
}

.timeline-dot-active {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(254, 87, 34, 0.2);
  animation: pulse 2s infinite;
}

.timeline-dot-future {
  background: rgba(255, 255, 255, 0.3);
  border-color: #000000;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(254, 87, 34, 0.2);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(254, 87, 34, 0.1);
  }
}

.timeline-content h3 {
  font-size: 21px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 17px;
  color: #a1a1a6;
  line-height: 1.6;
  margin: 0;
}

.timeline-item-future .timeline-content h3 {
  color: rgba(245, 245, 247, 0.6);
}

.timeline-item-future .timeline-content p {
  color: rgba(161, 161, 166, 0.6);
}

/* Team Bio */
.team-bio {
  font-size: 15px;
  color: #a1a1a6;
  line-height: 1.6;
  margin-top: 12px;
}

/* Join Section */
.join-section {
  background: #f5f5f7;
  padding: 120px 40px;
}

.join-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.join-container h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.join-container > p {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.join-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.join-card {
  background: #ffffff;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.join-card:hover {
  border-color: rgba(29, 29, 31, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.join-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.join-card p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.join-card .btn-primary,
.join-card .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* FAQ Page Section */
.faq-page-section {
  background: #ffffff;
  padding: 80px 40px 120px;
  min-height: 100vh;
}

.faq-page-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 80px;
}

.faq-category-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(29, 29, 31, 0.1);
}

.faq-page-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-page-section .faq-item {
  background: rgba(29, 29, 31, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-page-section .faq-item:hover {
  background: rgba(29, 29, 31, 0.05);
  border-color: rgba(29, 29, 31, 0.15);
}

.faq-page-section .faq-item.active {
  background: rgba(29, 29, 31, 0.05);
  border-color: rgba(29, 29, 31, 0.2);
}

.faq-page-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 19px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-page-section .faq-question:hover {
  color: #000000;
}

.faq-page-section .faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-page-section .faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--text-primary);
}

.faq-page-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-page-section .faq-answer p {
  padding: 0 32px 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.faq-cta {
  text-align: center;
  padding: 80px 40px;
  background: rgba(29, 29, 31, 0.03);
  border-radius: 24px;
  margin-top: 40px;
}

.faq-cta h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.faq-cta p {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.faq-cta .btn-primary {
  display: inline-flex;
}

/* Quick Contact Section */
.quick-contact-section {
  background: #ffffff;
  padding: 100px 40px;
}

.quick-contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-contact-container h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 60px;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quick-contact-card {
  background: rgba(29, 29, 31, 0.03);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-contact-card:hover {
  background: rgba(29, 29, 31, 0.05);
  border-color: rgba(29, 29, 31, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.quick-contact-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b3d 100%);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(254, 87, 34, 0.25);
}

.quick-contact-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.quick-contact-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.quick-contact-card p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.quick-contact-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(254, 87, 34, 0.1);
  color: var(--accent);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}

.common-questions {
  margin-top: 40px;
  padding: 32px;
  background: rgba(29, 29, 31, 0.03);
  border-radius: 16px;
}

.common-questions h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.common-questions ul {
  list-style: none;
  padding: 0;
}

.common-questions li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
}

.common-questions li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.common-questions strong {
  color: var(--text-primary);
  font-size: 16px;
}

.common-questions a {
  color: var(--accent);
  text-decoration: none;
}

.common-questions a:hover {
  text-decoration: underline;
}

/* Form Select Dropdown */
.contact-form select,
.application-form select {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(29, 29, 31, 0.2);
  background: #ffffff;
  font-size: 17px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.contact-form select:focus,
.application-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(254, 87, 34, 0.1);
}

/* Benefits Grid for Careers */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Openings Section */
.openings-section {
  background: #000000;
  padding: 120px 40px;
}

.openings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.openings-container h2 {
  font-size: 56px;
  font-weight: 600;
  color: #f5f5f7;
  text-align: center;
  margin-bottom: 16px;
}

.openings-subtitle {
  font-size: 21px;
  color: #a1a1a6;
  text-align: center;
  margin-bottom: 60px;
}

.no-openings {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin-bottom: 60px;
}

.no-openings-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  stroke: var(--accent);
}

.no-openings h3 {
  font-size: 28px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
}

.no-openings p {
  font-size: 17px;
  color: #a1a1a6;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.future-roles {
  text-align: center;
}

.future-roles h3 {
  font-size: 32px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 40px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.role-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.role-preview:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.role-preview h4 {
  font-size: 19px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 8px;
}

.role-preview p {
  font-size: 15px;
  color: #a1a1a6;
  margin: 0;
}

/* Application Section */
.application-section {
  background: #f5f5f7;
  padding: 120px 40px;
}

.application-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.application-container h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.application-container > p {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.application-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.application-form input[type="file"] {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(29, 29, 31, 0.2);
  background: #ffffff;
  font-size: 17px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 64px;
  }

  .hero-subheadline {
    font-size: 21px;
  }

  .feature-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-visual {
    height: 450px;
  }

  .feature-content h2 {
    font-size: 48px;
  }

  .feature-content p {
    font-size: 21px;
  }

  .why-makit-header h2 {
    font-size: 48px;
  }

  .why-makit-header p {
    font-size: 21px;
  }

  .why-makit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .how-it-works-header h2 {
    font-size: 48px;
  }

  .how-it-works-header p {
    font-size: 21px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-header h2 {
    font-size: 48px;
  }

  .testimonials-header p {
    font-size: 21px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-benefits {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .screenshots-scroll-container {
    padding: 0 20px;
  }

  .screenshot-card {
    width: 260px;
  }

  .screenshot-image {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 48px;
  }

  .hero-subheadline {
    font-size: 19px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .feature-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-section {
    min-height: auto;
    padding: 60px 20px;
  }

  .feature-visual {
    height: 400px;
  }

  .feature-content h2 {
    font-size: 40px;
  }

  .feature-number {
    font-size: 12px;
  }

  .feature-title {
    font-size: 12px;
  }

  .payment-chips {
    gap: 10px;
  }

  .payment-chip {
    padding: 8px 14px;
  }

  .chip-icon {
    width: 16px;
    height: 16px;
  }

  .chip-text {
    font-size: 13px;
  }

  .why-makit-section {
    padding: 80px 20px;
  }

  .why-makit-header {
    margin-bottom: 50px;
  }

  .why-makit-header h2 {
    font-size: 36px;
  }

  .why-makit-header p {
    font-size: 19px;
  }

  .why-makit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-card {
    padding: 32px 24px;
  }

  .why-card h3 {
    font-size: 21px;
  }

  .why-card p {
    font-size: 16px;
  }

  .how-it-works-section {
    padding: 80px 20px;
  }

  .how-it-works-header h2 {
    font-size: 36px;
  }

  .how-it-works-header p {
    font-size: 19px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-section {
    padding: 80px 20px;
  }

  .testimonials-header h2 {
    font-size: 40px;
  }

  .testimonials-header p {
    font-size: 19px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .screenshots-section {
    padding: 80px 0;
    background: transparent;
  }

  .screenshots-header {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .screenshots-header h2 {
    font-size: 36px;
  }

  .screenshots-header p {
    font-size: 18px;
  }

  .hint-desktop {
    display: none;
  }

  .hint-mobile {
    display: inline;
  }

  /* Mobile: Horizontal Scroll */
  .screenshots-scroll-container {
    padding: 0;
  }

  .screenshots-scroll {
    margin-left: 20px;
    display: flex;
    grid-template-columns: none;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 20px 20px 20px;
  }

  .screenshots-scroll::-webkit-scrollbar {
    display: none;
  }

  .screenshot-card {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
    animation: none;
    opacity: 1;
    transform: none;
    padding: 8px;
    max-width: 260px;
  }

  .screenshot-card:nth-child(5),
  .screenshot-card:nth-child(6) {
    display: block;
  }

  .screenshot-image {
    width: 100%;
    height: auto;
  }

  .screenshot-overlay p {
    font-size: 13px;
  }

  /* Show overlay on mobile tap/touch */
  .screenshot-card:active .screenshot-overlay {
    transform: translateY(0);
  }

  .newsletter-section {
    padding: 80px 20px;
  }

  .newsletter-header h2 {
    font-size: 40px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content > p {
    font-size: 21px;
  }

  .platform-logos {
    gap: 100px;
  }

  .platform-logo {
    width: 150px;
    height: 150px;
    opacity: 0.06;
  }

  .ios-logo {
    transform: translateX(-50px);
  }

  .android-logo {
    transform: translateX(50px);
  }

  .platform-labels {
    flex-direction: row;
  }

  .feature-chips {
    gap: 10px;
  }

  .feature-chip {
    padding: 8px 14px;
  }

  .feature-chip .chip-text {
    font-size: 13px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-button {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .page-hero-content h1 {
    font-size: 40px;
  }

  .page-hero-content p {
    font-size: 19px;
  }

  .content-container h2 {
    font-size: 32px;
  }

  .content-container p {
    font-size: 17px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .legal-container h2 {
    font-size: 28px;
  }

  .legal-container h3 {
    font-size: 21px;
  }

  .faq-page-section {
    padding: 60px 20px 80px;
  }

  .faq-page-section {
    padding: 60px 20px 80px;
  }

  .values-container h2 {
    font-size: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .timeline {
    padding-left: 30px;
  }

  .join-container h2 {
    font-size: 40px;
  }

  .join-container > p {
    font-size: 19px;
    margin-bottom: 40px;
  }

  .join-options {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-category {
    margin-bottom: 60px;
  }

  .faq-category-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .faq-page-section .faq-question {
    padding: 20px 24px;
    font-size: 17px;
  }

  .faq-page-section .faq-answer p {
    padding: 0 24px 20px;
    font-size: 16px;
  }

  .faq-cta {
    padding: 60px 24px;
  }

  .faq-cta h2 {
    font-size: 32px;
  }

  .faq-cta p {
    font-size: 17px;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .openings-container h2 {
    font-size: 40px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .application-container h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* For Businesses Section */
.for-businesses-section {
  background: #000000;
  padding: 120px 40px;
  position: relative;
}

.for-businesses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.for-businesses-header {
  text-align: center;
  margin-bottom: 80px;
}

.for-businesses-header h2 {
  font-size: 64px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.for-businesses-header p {
  font-size: 28px;
  color: #a1a1a6;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.for-businesses-section.in-view .for-businesses-header h2,
.for-businesses-section.in-view .for-businesses-header p {
  opacity: 1;
  transform: translateY(0);
}

.for-businesses-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.business-visual {
  position: relative;
}

.business-phone-mockup {
  position: relative;
  z-index: 2;
}

.analytics-screenshot {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.business-stats-preview {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.stat-preview-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  stroke-width: 2;
}

.stat-value {
  font-size: 19px;
  font-weight: 600;
  color: #f5f5f7;
}

.stat-label {
  font-size: 13px;
  color: #a1a1a6;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.business-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.business-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b3d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(254, 87, 34, 0.25);
}

.business-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
}

.business-feature-content h3 {
  font-size: 21px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 8px;
}

.business-feature-content p {
  font-size: 17px;
  color: #a1a1a6;
  line-height: 1.6;
  margin: 0;
}

.cta-business {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cta-business .btn-primary {
  display: inline-flex;
  margin-bottom: 12px;
}

.cta-note {
  font-size: 15px;
  color: #a1a1a6;
  margin: 0;
}

/* Mobile Responsive - For Businesses */
@media (max-width: 768px) {
  .for-businesses-section {
    padding: 80px 20px;
  }

  .for-businesses-header h2 {
    font-size: 36px;
  }

  .for-businesses-header p {
    font-size: 19px;
  }

  .for-businesses-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .analytics-screenshot {
    max-width: 100%;
  }

  .business-stats-preview {
    flex-direction: column;
  }

  .business-feature-item {
    gap: 16px;
  }

  .business-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .business-feature-content h3 {
    font-size: 19px;
  }

  .business-feature-content p {
    font-size: 16px;
  }
}


/* Rocket Button Base Styles */
.rocket-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.rocket-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.rocket-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.rocket-btn:active {
  transform: translateY(-2px) scale(1.05);
}

.rocket-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rocket Icon - Points DOWN by default (scrolls to bottom) */
.rocket-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
  transform: rotate(180deg);
  position: relative;
  z-index: 2;
}

/* === ROCKET PART COLORS - MAKIT BRANDED === */

/* Body - Light brand background */
.rocket-body {
  fill: #f5f5f7;
  stroke: #86868b;
  transition: all 0.3s ease;
}

/* Nose cone - Brand orange */
.rocket-nose {
  fill: #fe5722;
  stroke: #e64d1f;
  transition: all 0.3s ease;
}

/* Fins - Brand orange */
.rocket-fins {
  fill: #fe5722;
  stroke: #e64d1f;
  transition: all 0.3s ease;
}

/* Windows - White/light */
.rocket-window {
  fill: #ffffff;
  stroke: #86868b;
  transition: all 0.3s ease;
}

/* Flames - Gradient */
.rocket-flame {
  fill: url(#flameGradient);
  stroke: #ff9800;
  opacity: 0;
  animation: flameFlicker 0.3s ease-in-out infinite alternate;
}

.rocket-btn:hover .rocket-flame {
  opacity: 1;
}

@keyframes flameFlicker {
  0% {
    opacity: 0.7;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* === HOVER EFFECTS === */
.rocket-btn:hover .rocket-body {
  fill: #ffffff;
}

.rocket-btn:hover .rocket-nose {
  fill: #ff6b3d;
}

.rocket-btn:hover .rocket-fins {
  fill: #ff6b3d;
}

/* === LAUNCHING EFFECTS === */
.rocket-btn.launching .rocket-body {
  fill: #ffffff;
  filter: drop-shadow(0 0 8px rgba(254, 87, 34, 0.4));
}

.rocket-btn.launching .rocket-nose {
  fill: #ff6b3d;
  filter: drop-shadow(0 0 12px rgba(254, 87, 34, 0.6));
}

.rocket-btn.launching .rocket-fins {
  fill: #ff6b3d;
  filter: drop-shadow(0 0 12px rgba(254, 87, 34, 0.6));
}

.rocket-btn.launching .rocket-window {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

/* Smoke Animation - Gray color, positioned at top for downward rocket */
.rocket-smoke {
  position: absolute;
  bottom: auto;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 1;
}


.smoke-particle:nth-child(1) {
  animation-delay: 0s;
}

.smoke-particle:nth-child(2) {
  animation-delay: 0.2s;
}

.smoke-particle:nth-child(3) {
  animation-delay: 0.4s;
}

/* Hover smoke effect - smoke rises UP (opposite of downward rocket direction) */
.rocket-btn:hover .smoke-particle {
  animation: smokeRiseUp 1.5s ease-out infinite;
}

@keyframes smokeRiseUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.5);
  }
  20% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px) scale(2);
  }
}

/* Blast Off Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--rocket-x, 90%) var(--rocket-y, 90%), 
    rgba(254, 87, 34, 0) 0%, 
    rgba(254, 87, 34, 0) 40%, 
    rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.rocket-launching::before {
  opacity: 1;
  animation: blastWave 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes blastWave {
  0% {
    background: radial-gradient(circle at var(--rocket-x, 90%) var(--rocket-y, 90%), 
      rgba(254, 87, 34, 0.8) 0%, 
      rgba(255, 107, 61, 0.4) 20%, 
      rgba(0, 0, 0, 0) 50%);
  }
  50% {
    background: radial-gradient(circle at var(--rocket-x, 90%) var(--rocket-y, 90%), 
      rgba(254, 87, 34, 0.6) 0%, 
      rgba(255, 107, 61, 0.3) 40%, 
      rgba(0, 0, 0, 0) 80%);
  }
  100% {
    background: radial-gradient(circle at var(--rocket-x, 90%) var(--rocket-y, 90%), 
      rgba(254, 87, 34, 0) 0%, 
      rgba(0, 0, 0, 0) 100%);
  }
}

/* Page Content Zoom & Blur Effect */
body.rocket-launching {
  overflow: hidden;
}

body.rocket-launching > *:not(.rocket-btn):not(nav) {
  animation: pageZoomBlur 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pageZoomBlur {
  0% {
    transform: scale(1) translateZ(0);
    filter: blur(0px) brightness(1);
  }
  40% {
    transform: scale(0.95) translateZ(0);
    filter: blur(3px) brightness(0.8);
  }
  60% {
    transform: scale(1.1) translateZ(0);
    filter: blur(5px) brightness(1.2);
  }
  100% {
    transform: scale(1) translateZ(0);
    filter: blur(0px) brightness(1);
  }
}

/* Speed Lines Effect */
body.rocket-launching::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  pointer-events: none;
  z-index: 9996;
  opacity: 0;
  animation: speedLines 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes speedLines {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  30% {
    opacity: 0.5;
    transform: scale(1.5);
  }
  60% {
    opacity: 0.3;
    transform: scale(2);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

/* Enhanced Rocket Launch Animation */
.rocket-btn.launching {
  animation: rocketLaunchEnhanced 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rocket-btn.launching .rocket-icon {
  animation: rocketShakeEnhanced 1.2s ease-in-out;
  filter: drop-shadow(0 0 10px rgba(254, 87, 34, 1)) drop-shadow(0 0 20px rgba(254, 87, 34, 0.8));
}

.rocket-btn.launching .smoke-particle {
  animation: smokeBurstEnhanced 1.2s ease-out forwards !important;
}

.rocket-btn.launching .rocket-flame {
  opacity: 1 !important;
  animation: flameBurstEnhanced 1.2s ease-out !important;
}

@keyframes rocketLaunchEnhanced {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  20% {
    transform: translateY(-30px) scale(1.2) rotate(-10deg);
  }
  40% {
    transform: translateY(-50px) scale(1.3) rotate(5deg);
  }
  60% {
    transform: translateY(-30px) scale(1.15) rotate(-5deg);
  }
  80% {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes rocketShakeEnhanced {
  0%, 100% {
    transform: rotate(180deg);
  }
  10% {
    transform: rotate(170deg);
  }
  20% {
    transform: rotate(190deg);
  }
  30% {
    transform: rotate(175deg);
  }
  40% {
    transform: rotate(185deg);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  60% {
    transform: rotate(180deg) scale(1.1);
  }
}


/* When at bottom of page - Rotate rocket to point UP for scrolling to top */
.rocket-btn.at-bottom .rocket-icon {
  transform: rotate(0deg);
}

.rocket-btn.at-bottom .rocket-smoke {
  bottom: -10px;
  top: auto;
}

.rocket-btn.at-bottom:hover .smoke-particle {
  animation: smokeRiseDown 1.5s ease-out infinite;
}

@keyframes smokeRiseDown {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.5);
  }
  20% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(50px) scale(2);
  }
}

.rocket-btn.at-bottom.launching .smoke-particle {
  animation: smokeBurstUpEnhanced 1.2s ease-out forwards !important;
}

/* Separate shake animation for at-bottom state */
.rocket-btn.at-bottom.launching .rocket-icon {
  animation: rocketShakeEnhancedUp 1.2s ease-in-out;
}

@keyframes rocketShakeEnhancedUp {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg) scale(1.2);
  }
  60% {
    transform: rotate(0deg) scale(1.1);
  }
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .rocket-btn {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }

  .rocket-icon {
    width: 28px;
    height: 28px;
  }
  
  /* Lighter effects for mobile performance */
  @keyframes pageZoomBlur {
    0% {
      transform: scale(1) translateZ(0);
      filter: blur(0px) brightness(1);
    }
    40% {
      transform: scale(0.97) translateZ(0);
      filter: blur(2px) brightness(0.9);
    }
    60% {
      transform: scale(1.05) translateZ(0);
      filter: blur(3px) brightness(1.1);
    }
    100% {
      transform: scale(1) translateZ(0);
      filter: blur(0px) brightness(1);
    }
  }
}

/* END OF ROCKET STYLES */
/* ============================================
   PERFORMANCE OPTIMIZATIONS ONLY
   Add to end of app.css - Does NOT change any animations
   ============================================ */

/* Hardware acceleration for key animated elements */
.rocket-btn,
.rocket-icon,
.rocket-container,
.smoke-particle,
.countdown-number,
#particleCanvas {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Layout containment for better performance */
.feature-section,
.why-makit-section,
.testimonials-section,
.newsletter-section {
  contain: layout style paint;
}

/* Simplified mobile animations for better performance */
@media (max-width: 768px) {
  /* Disable speed lines on mobile for performance */
  body.rocket-launching::after {
    display: none;
  }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  #particleCanvas {
    opacity: 0.3;
  }
}
/* Replace the smoke animation sections in your CSS with these: */

/* Smoke particles - will turn to fire on launch */
.smoke-particle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: rgba(134, 134, 139, 0.8);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%);
}

/* FIRE EFFECT - When launching, smoke becomes fire! */
.rocket-btn.launching .smoke-particle {
  /* Change from gray smoke to orange/yellow fire */
  background: radial-gradient(
    circle,
    rgba(255, 255, 100, 1) 0%,    /* Bright yellow center */
    rgba(255, 140, 0, 0.9) 40%,    /* Orange middle */
    rgba(254, 87, 34, 0.7) 70%,    /* Brand orange */
    transparent 100%
  );
  box-shadow: 
    0 0 10px rgba(255, 140, 0, 0.8),
    0 0 20px rgba(254, 87, 34, 0.6),
    0 0 30px rgba(255, 100, 0, 0.4);
  animation: fireBurstEnhanced 1.2s ease-out forwards !important;
}

/* Fire burst animation - replaces smoke burst */
@keyframes fireBurstEnhanced {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.5);
    background: radial-gradient(
      circle,
      rgba(255, 255, 150, 1) 0%,
      rgba(255, 160, 0, 0.9) 40%,
      rgba(254, 87, 34, 0.7) 70%,
      transparent 100%
    );
  }
  10% {
    opacity: 1;
    background: radial-gradient(
      circle,
      rgba(255, 255, 200, 1) 0%,
      rgba(255, 180, 0, 0.95) 40%,
      rgba(254, 87, 34, 0.8) 70%,
      transparent 100%
    );
  }
  30% {
    opacity: 1;
    background: radial-gradient(
      circle,
      rgba(255, 200, 100, 0.9) 0%,
      rgba(255, 140, 0, 0.8) 40%,
      rgba(254, 87, 34, 0.6) 70%,
      transparent 100%
    );
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-120px) scale(5);
    background: radial-gradient(
      circle,
      rgba(255, 100, 0, 0.3) 0%,
      rgba(254, 87, 34, 0.2) 50%,
      transparent 100%
    );
  }
}

/* Fire burst for upward rocket (when at bottom) */
.rocket-btn.at-bottom.launching .smoke-particle {
  background: radial-gradient(
    circle,
    rgba(255, 255, 100, 1) 0%,
    rgba(255, 140, 0, 0.9) 40%,
    rgba(254, 87, 34, 0.7) 70%,
    transparent 100%
  );
  box-shadow: 
    0 0 10px rgba(255, 140, 0, 0.8),
    0 0 20px rgba(254, 87, 34, 0.6),
    0 0 30px rgba(255, 100, 0, 0.4);
  animation: fireBurstUpEnhanced 1.2s ease-out forwards !important;
}

@keyframes fireBurstUpEnhanced {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.5);
    background: radial-gradient(
      circle,
      rgba(255, 255, 150, 1) 0%,
      rgba(255, 160, 0, 0.9) 40%,
      rgba(254, 87, 34, 0.7) 70%,
      transparent 100%
    );
  }
  10% {
    opacity: 1;
    background: radial-gradient(
      circle,
      rgba(255, 255, 200, 1) 0%,
      rgba(255, 180, 0, 0.95) 40%,
      rgba(254, 87, 34, 0.8) 70%,
      transparent 100%
    );
  }
  30% {
    opacity: 1;
    background: radial-gradient(
      circle,
      rgba(255, 200, 100, 0.9) 0%,
      rgba(255, 140, 0, 0.8) 40%,
      rgba(254, 87, 34, 0.6) 70%,
      transparent 100%
    );
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(120px) scale(5);
    background: radial-gradient(
      circle,
      rgba(255, 100, 0, 0.3) 0%,
      rgba(254, 87, 34, 0.2) 50%,
      transparent 100%
    );
  }
}

/* Enhanced flame burst to match the fire theme */
@keyframes flameBurstEnhanced {
  0% {
    opacity: 0.7;
    transform: scaleY(1);
  }
  30% {
    opacity: 1;
    transform: scaleY(3.5);
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.8));
  }
  60% {
    opacity: 1;
    transform: scaleY(3);
    filter: drop-shadow(0 0 20px rgba(254, 87, 34, 0.9));
  }
  100% {
    opacity: 1;
    transform: scaleY(2);
    filter: drop-shadow(0 0 10px rgba(255, 100, 0, 0.6));
  }
}

/* Keep the regular smoke for hover (not launching) */
.rocket-btn:hover .smoke-particle {
  background: rgba(134, 134, 139, 0.8);
  box-shadow: none;
  animation: smokeRiseUp 1.5s ease-out infinite;
}

.rocket-btn.at-bottom:hover .smoke-particle {
  background: rgba(134, 134, 139, 0.8);
  box-shadow: none;
  animation: smokeRiseDown 1.5s ease-out infinite;
}