/* EzerEye Landing Page Styles */

:root {
  --primary-color: #4A90E2;
  --secondary-color: #F5A623;
  --accent-color: #7ED321;
  --background: #0A0E1A;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-primary: #FFFFFF;
  --text-muted: #A0A0A0;
  --border-glow: rgba(74, 144, 226, 0.3);
}

.ezereye-landing {
  background: var(--background);
  color: var(--text-primary);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Styles */
.ezereye-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glow);
  padding: 1rem 0;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circles {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.circle-1 {
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.circle-2 {
  background: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

.circle-3 {
  background: white;
  border: 2px solid var(--accent-color);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
}

/* Button Styles */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
  background: rgba(74, 144, 226, 0.9);
  box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
  transform: translateY(-2px);
}

.cta-button.primary {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.cta-button.large {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: var(--secondary-color);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.2);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  border: 1px solid rgba(245, 166, 35, 0.4);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.text-primary {
  color: var(--primary-color);
  text-shadow: 0 0 30px var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
  text-shadow: 0 0 30px var(--secondary-color);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.highlight-primary {
  color: var(--primary-color);
  font-weight: 700;
}

.highlight-secondary {
  color: var(--secondary-color);
  font-weight: 700;
}

.highlight-accent {
  color: var(--accent-color);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trial-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.star {
  color: var(--secondary-color);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.03);
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.card-primary {
  border-color: rgba(74, 144, 226, 0.4);
}

.card-primary:hover {
  border-color: rgba(74, 144, 226, 0.6);
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
}

.card-secondary {
  border-color: rgba(245, 166, 35, 0.4);
}

.card-secondary:hover {
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 10px 40px rgba(245, 166, 35, 0.2);
}

.card-accent {
  border-color: rgba(126, 211, 33, 0.4);
}

.card-accent:hover {
  border-color: rgba(126, 211, 33, 0.6);
  box-shadow: 0 10px 40px rgba(126, 211, 33, 0.2);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px currentColor);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.card-primary h3 {
  color: var(--primary-color);
}

.card-secondary h3 {
  color: var(--secondary-color);
}

.card-accent h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.feature-card .highlight {
  font-weight: 700;
  color: inherit;
}

/* Testimonial Section */
.testimonial {
  padding: 4rem 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-glow);
}

.testimonial blockquote {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  quotes: """ """;
}

.testimonial blockquote::before {
  content: open-quote;
}

.testimonial blockquote::after {
  content: close-quote;
}

.testimonial cite {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: normal;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 144, 226, 0.05);
}

.pricing-card {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-glow);
}

.pricing-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pricing-header p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.setup-info {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 1rem;
  text-transform: uppercase;
}

/* Footer */
.ezereye-footer {
  border-top: 1px solid var(--border-glow);
  background: var(--card-bg);
  padding: 2rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-content p {
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-actions {
    align-items: stretch;
  }
  
  .hero-actions .cta-button {
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card,
  .pricing-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}