/*--------------------------------------------------------------
# Spytech Page Styles
--------------------------------------------------------------*/

/* Hero Section */
#spytech-hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
  padding: 120px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 196, 81, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

#spytech-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 196, 81, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 196, 81, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.spytech-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 196, 81, 0.1);
  border: 1px solid rgba(255, 196, 81, 0.3);
  border-radius: 50px;
  color: #ffc451;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.spytech-badge i {
  margin-right: 8px;
}

#spytech-hero h1 {
  margin: 0 0 20px 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
  color: #fff;
  text-shadow: 0 5px 20px rgba(255, 196, 81, 0.3);
}

#spytech-hero h2 {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

#spytech-hero .btn-discover {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  transition: all 0.3s;
  color: #151515;
  background: #ffc451;
  text-decoration: none;
  margin-right: 20px;
  box-shadow: 0 5px 20px rgba(255, 196, 81, 0.3);
}

#spytech-hero .btn-discover:hover {
  background: #ffd584;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.5);
}

#spytech-hero .btn-demo {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border-radius: 4px;
  transition: all 0.3s;
  color: #fff;
  border: 2px solid rgba(255, 196, 81, 0.5);
  text-decoration: none;
  backdrop-filter: blur(10px);
  background: rgba(255, 196, 81, 0.05);
}

#spytech-hero .btn-demo:hover {
  background: rgba(255, 196, 81, 0.15);
  border-color: #ffc451;
  transform: translateY(-3px);
}

#spytech-hero .btn-demo i {
  margin-right: 10px;
  font-size: 24px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #ffc451;
  margin-bottom: 5px;
  text-shadow: 0 3px 10px rgba(255, 196, 81, 0.3);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 2px solid rgba(255, 196, 81, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Problem Section */
.problem {
  padding: 100px 0;
  background: #fff;
}

.problem-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 20px;
}

.problem-content .lead {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.stat-box:hover {
  border-color: #ffc451;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-box i {
  font-size: 48px;
  color: #dc3545;
  margin-bottom: 15px;
}

.stat-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.problem-video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Solution Section */
.solution {
  padding: 100px 0;
}

.solution-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffc451 0%, #ffb420 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.solution-card.highlighted {
  background: linear-gradient(135deg, #ffc451 0%, #ffb420 100%);
  transform: scale(1.05);
  position: relative;
}

.solution-card.highlighted h4,
.solution-card.highlighted p {
  color: #151515;
}

.solution-card.highlighted .card-icon i {
  color: #151515;
}

.highlight-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #151515;
  color: #ffc451;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.card-icon {
  margin-bottom: 25px;
}

.card-icon i {
  font-size: 64px;
  color: #ffc451;
  transition: 0.3s;
}

.solution-card:hover .card-icon i {
  transform: scale(1.1) rotate(5deg);
}

.solution-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #151515;
}

.solution-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Features Section */
.features {
  padding: 100px 0;
}

.feature-item {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffc451 0%, #ffb420 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  transition: 0.3s;
}

.feature-item:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 196, 81, 0.4);
}

.feature-icon i {
  font-size: 32px;
  color: #151515;
}

.feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #151515;
}

.feature-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
}

.work-step {
  text-align: center;
  padding: 40px 25px;
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  position: relative;
}

.work-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 196, 81, 0.2);
}

.step-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.step-icon i {
  font-size: 56px;
  color: #ffc451;
  transition: 0.3s;
}

.work-step:hover .step-icon i {
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: #151515;
  color: #ffc451;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.work-step h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #151515;
}

.work-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
}

.use-case-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.use-case-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ffc451 0%, #ffb420 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.use-case-card:hover .use-case-image {
  transform: scale(1.1) rotate(360deg);
}

.use-case-image i {
  font-size: 48px;
  color: #151515;
}

.use-case-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #151515;
  text-align: center;
}

.use-case-card > p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 10px 0;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: #ffc451;
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

/* Demo Section */
.demo {
  padding: 100px 0;
}

.demo-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 20px;
}

.demo-content .lead {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.demo-content > p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.demo-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.demo-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: center;
}

.demo-features li i {
  color: #ffc451;
  margin-right: 15px;
  font-size: 22px;
}

.btn-live-demo {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #ffc451 0%, #ffb420 100%);
  color: #151515;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 196, 81, 0.3);
}

.btn-live-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.5);
  color: #151515;
}

.btn-live-demo i {
  margin-left: 10px;
  transition: 0.3s;
}

.btn-live-demo:hover i {
  transform: translateX(5px);
}

.demo-video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-video {
  width: 100%;
  display: block;
}

/* Waitlist CTA Section */
.waitlist-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.waitlist-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 196, 81, 0.1) 0%, transparent 70%);
}

.waitlist-cta h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.waitlist-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.waitlist-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.benefit-item i {
  font-size: 28px;
  color: #ffc451;
}

.benefit-item span {
  font-size: 16px;
  font-weight: 600;
}

.waitlist-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #ffc451;
  color: #151515;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.4);
}

.waitlist-btn:hover {
  background: #ffd584;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 196, 81, 0.6);
  color: #151515;
}

.waitlist-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Section Title */
.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #151515;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffc451 0%, #ffb420 100%);
  bottom: 0;
  left: calc(50% - 30px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 20px;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  #spytech-hero {
    min-height: 70vh;
  }

  #spytech-hero h1 {
    font-size: 42px;
    line-height: 52px;
  }

  #spytech-hero h2 {
    font-size: 18px;
  }

  .stats-row {
    gap: 25px;
    margin-top: 35px;
  }

  .stat-number {
    font-size: 28px;
  }

  .problem-content h2,
  .demo-content h2,
  .waitlist-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  #spytech-hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  #spytech-hero h2 {
    font-size: 16px;
  }

  #spytech-hero .btn-discover,
  #spytech-hero .btn-demo {
    font-size: 14px;
    padding: 12px 28px;
    margin-bottom: 15px;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 16px;
  }

  .waitlist-benefits {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .problem-content h2,
  .demo-content h2,
  .waitlist-cta h2 {
    font-size: 28px;
  }
}
