:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  --secondary-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --highlight-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  text-decoration: none;
  color: #6366f1;
  transition: color 0.3s ease;
}

a:hover {
  color: #4f46e5;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Hero Gradient Background */
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(224, 242, 254, 0.2) 100%);
  z-index: -1;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  z-index: 100;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  gap: 0.5rem;
}

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

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #6366f1;
}

.nav-button {
  background: var(--primary-gradient);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-button:hover {
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(99, 102, 241, 0.25);
  position: relative;
  max-width: fit-content;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
  color: white;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ef4444;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
  transform: rotate(3deg);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.star-rating {
  display: flex;
  color: #f59e0b;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
}

.phone-frame {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background-color: #111;
  padding: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background-color: #111;
  border-radius: 0 0 16px 16px;
  z-index: 1;
}

/* Reel Animation */
.reel-preview-animation {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  position: relative;
  overflow: hidden;
}

.reel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.reel-overlay-elements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reel-engagement {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.engagement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.875rem;
}

.reel-views-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--text-secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

.arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--text-secondary);
  border-right: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  animation: arrow 1.5s infinite;
  opacity: 0;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Brands Section */
.brands {
  padding: 3rem 0;
  background-color: #f8fafc;
}

.trusted-by {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

.brand-logo span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-gradient);
  color: white;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  z-index: 1;
  min-width: 250px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--highlight-shadow);
}

.step-content {
  max-width: 250px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
}

/* Results Section */
.results {
  padding: 5rem 0;
  background-color: white;
}

.testimonials-slider {
  margin-top: 3rem;
}

.testimonial {
  display: flex;
  gap: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  flex-wrap: wrap;
}

.testimonial-content {
  flex: 1;
  min-width: 300px;
}

.testimonial-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6366f1;
}

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

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.author-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.testimonial-media {
  flex: 1;
  min-width: 300px;
}

.before-after {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.before, .after {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
  position: relative;
}

.before {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.after {
  background: var(--primary-gradient);
  color: white;
}

.label {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background-color: #ef4444;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.after .label {
  background-color: #10b981;
}

.stats-display {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e2e8f0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #6366f1;
  transform: scale(1.2);
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.pricing-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid #6366f1;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background-color: #6366f1;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.card-header {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.period {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.price-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.features-list {
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.features-list svg {
  color: #10b981;
  flex-shrink: 0;
}

.card-footer {
  margin-top: auto;
}

.pricing-button {
  display: block;
  text-align: center;
  padding: 1rem;
  background-color: #f8fafc;
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background-color: #e2e8f0;
}

.pricing-card.popular .pricing-button {
  background: var(--primary-gradient);
  color: white;
}

.pricing-card.popular .pricing-button:hover {
  box-shadow: var(--highlight-shadow);
}

.enterprise {
  margin-top: 4rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.enterprise-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.enterprise-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.enterprise-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.enterprise-button:hover {
  box-shadow: var(--highlight-shadow);
  transform: translateY(-2px);
  color: white;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: white;
}

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

.faq-item {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: white;
  box-shadow: var(--card-shadow);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #6366f1;
}

.faq-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--primary-gradient);
  color: white;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: white;
  color: #6366f1;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
  background-color: #1e293b;
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.footer-brand p {
  color: #94a3b8;
  margin: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #6366f1;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  flex: 2;
}

.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #94a3b8;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    align-items: center;
  }
  
  .primary-button {
    margin: 0 auto;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .testimonial {
    flex-direction: column;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .enterprise {
    flex-direction: column;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .step-connector {
    display: none;
  }
  
  .steps {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 1rem 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
}

.modal {
  background: var(--glass-bg, rgba(255, 255, 255, 0.95));
  padding: 2rem 2rem 1.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-secondary, #64748b);
}

.google-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
  justify-content: center;
  margin: 1.5rem 0;
}

.google-button:hover {
  background-color: #f5f5f5;
}

.terms-text {
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  margin: 1.5rem 0 0;
  line-height: 1.5;
  text-align: center;
}

.terms-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-link:hover {
  text-decoration: underline;
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary, #1e293b);
}