@import url('./style.css');

.hero {
  padding: 120px 0 60px;
  text-align: center;
  background: none;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.featured-case-study {
  background: #000000;
  padding: 80px 0;
}

.case-study-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.case-study-header {
  margin-bottom: 32px;
}

.case-study-title {
  font-size: 48px;
  font-weight: 700;
  color: #6733ee;
  margin-bottom: 12px;
  line-height: 1.2;
}

.case-study-url {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 18px;
  font-family: 'Geist', monospace;
}

.case-study-url:hover {
  color: #6733ee;
}

.case-study-description {
  margin-bottom: 40px;
}

.case-study-description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.case-study-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.store-buttons {
  display: flex;
  gap: 16px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.store-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.store-btn:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

.apple-store {
  background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
  border-color: rgba(0, 122, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.apple-store:hover {
  background: linear-gradient(135deg, #1a8cff 0%, #1a66e6 100%);
  box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

.google-store {
  background: linear-gradient(135deg, #34A853 0%, #137333 100%);
  border-color: rgba(52, 168, 83, 0.4);
  box-shadow: 0 4px 20px rgba(52, 168, 83, 0.3);
}

.google-store:hover {
  background: linear-gradient(135deg, #4db866 0%, #2d8a4d 100%);
  box-shadow: 0 12px 40px rgba(52, 168, 83, 0.4);
}

.case-study-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-mockup {
  width: 350px;
  height: 600px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e1b4b 100%);
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.mockup-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.mockup-header h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.mockup-logo {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trident-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mockup-logo h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: white;
}

.mockup-logo h4 span {
  font-weight: 400;
  font-size: 14px;
}

.mockup-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.mockup-rating {
  margin-top: auto;
}

.stars {
  font-size: 20px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.4;
}

.testimonial cite {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.success-stories-grid {
  background: #000000;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.store-btn svg {
  width: 24px;
  height: 24px;
}

.section-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(103, 51, 238, 0.3);
}

.story-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  padding: 24px;
}

.story-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.story-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  gap: 16px;
}

.stat {
  background: rgba(103, 51, 238, 0.2);
  color: #6733ee;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(103, 51, 238, 0.3);
}

.cta-section {
  background: linear-gradient(135deg, #6733ee 0%, #9d4edd 50%, #c77dff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-cta {
		display: none;
	}

.cta-buttons .btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cta-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #6733ee;
}

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

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }
  
  .mobile-menu-overlay,
  .mobile-menu-sidebar {
    display: none !important;
  }
  
  .nav {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .case-study-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  
  .app-mockup {
    width: 300px;
    height: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .case-study-title {
    font-size: 36px;
  }
  
  .case-study-card {
    padding: 30px;
  }
  
  .store-buttons {
    flex-direction: column;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 40px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .case-study-card {
    padding: 20px;
  }
  
  .app-mockup {
    width: 280px;
    height: 480px;
    padding: 30px 20px;
  }
  
  .mockup-header h3 {
    font-size: 18px;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card {
    margin: 0 10px;
  }
}