/* ===========================
   Fonts & Global Styles
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

:root {
  --primary: #1ec8ff;
  --secondary: #00b67a; /* Trustpilot green */
  --bg-dark: #00102a;
  --bg-light: #00204d;
  --text-light: #ffffff;
  --text-muted: #b3e6ff;
  --radius: 16px;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--primary); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   Navigation
=========================== */
nav {
  width: 100vw;                       
  max-width: 100%;
  display: flex;
  justify-content: space-between;     
  align-items: center;
  padding: 20px 40px;
  background: var(--bg-light);        
  position: relative;
  z-index: 1000;
}

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

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}

nav ul li a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.btn:hover { background: #009edc; }
.hero-btn { margin-top: 16px; font-size: 1.1rem; }

/* ===========================
   Hero Section (Fixed Centering)
=========================== */
.hero {
  position: relative;
  display: flex;                
  justify-content: center;      
  align-items: center;          
  flex-direction: column;       
  text-align: center;
  color: var(--text-light);
  padding: 100px 20px;
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
}

.hero-content {
  width: 100%;                  
  max-width: 1200px;            
  margin: 0 auto;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.hero-content p {
  margin: 12px 0 24px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: none !important;
  opacity: 1 !important;
  pointer-events: none;
}

/* ===========================
   Features
=========================== */
.features { padding: 80px 20px; text-align: center; }
.feature-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 40px; }
.feature { background: var(--bg-light); padding: 24px; border-radius: var(--radius); box-shadow: 0 3px 15px rgba(0,0,0,0.5); }
.feature h3 { margin-bottom: 12px; font-size: 1.3rem; }

/* ===========================
   Pricing
=========================== */
.pricing-container { padding: 80px 20px; text-align: center; }
.plans { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 40px; align-items:start; overflow: visible; }
.plan {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.5);
  transition: transform var(--transition);
  position: relative;
  overflow: visible;
}
.plan:hover { transform: translateY(-8px); }
.plan img { max-width: 120px; margin-bottom: 16px; }
.plan h2 { margin-bottom: 8px; }
.price { font-size: 1.6rem; margin-bottom: 16px; color: var(--secondary); }

.badge, .small-badge {
  background: var(--secondary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.plan.popular {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  z-index: 5;
  box-shadow: 0 10px 40px rgba(30,200,255,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.small-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
  z-index: 20;
}

@keyframes popPulse {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.03); }
  100% { transform: translateX(-50%) scale(1); }
}
.plan.popular .small-badge { animation: popPulse 3s infinite ease-in-out 0.5s; }

/* ===========================
   Testimonials
=========================== */
.testimonials { padding: 80px 20px; }
.testimonial-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rating-summary {
  flex: 0 0 250px;
  background: var(--bg-light);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.55);
}
.rating-summary h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.rating-summary h3 span { color: var(--secondary); }
.trustpilot-stars {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.rating-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 16px;
  min-width: 300px;
  max-width: 360px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.testimonial-header i {
  font-size: 2rem;
  color: #888;
}
.testimonial-card h4 {
  margin: 0.8rem 0;
  color: var(--secondary);
}
.testimonial-card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}
.small-stars {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

/* ===========================
   FAQ
=========================== */
.faq { padding:80px 20px; max-width:800px; margin: 0 auto; }
.faq-item { background: var(--bg-light); margin-bottom:16px; padding:16px 20px; border-radius:var(--radius); cursor:pointer; transition: background var(--transition); }
.faq-item:hover { background: #003366; }
.faq-item h3 { font-size:1.1rem; margin-bottom:8px; }
.faq-item p { display:none; color:var(--text-muted); }
.faq-item.active p { display:block; }

/* ===========================
   Animations
=========================== */
.fade-up, .fade-left, .fade-right { opacity:0; transform:translateY(20px); transition: all 0.8s ease; }
.fade-left { transform:translateX(-30px) }
.fade-right { transform:translateX(30px) }
.show { opacity:1; transform: translate(0,0); }

/* ===========================
   Anti-Dark Overlay
=========================== */
#dark-overlay,
.dark-overlay,
.page-overlay,
.site-overlay,
.modal-backdrop,
.backdrop {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  nav { flex-direction: column; gap: 10px; padding: 10px 20px; }
  nav ul { flex-wrap: wrap; gap: 15px; justify-content: center; }
  .testimonial-wrapper { flex-direction: column; gap: 18px; }
  .testimonial-carousel { flex-direction: column; }
  .testimonial-card { width: 100%; max-width: 100%; }
  .plans { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
  .promo-banner { max-width: 95%; font-size: 0.9rem; }
}
