* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f6f8;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #0f172a;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #38bdf8;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #38bdf8;
  left: 0;
  bottom: -6px;
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #0f172a;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Text */
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #38bdf8;
}

.hero-content p {
  font-size: 1.05rem;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0ea5e9;
}

.btn-secondary {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.15);
}

/* Trust points */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Image */
.hero-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image img {
    margin: 30px auto 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

.why-us {
  padding: 80px 20px;
  background: #f8fafc;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #020617;
}

.why-header h2 span {
  color: #38bdf8;
}

.why-header p {
  color: #475569;
  font-size: 1.05rem;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #020617;
}

.why-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 2rem;
  }
}

.reviews {
  padding: 80px 20px;
  background: #020617;
  color: #fff;
}

.reviews-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.reviews-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.reviews-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.review-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.review-card img {
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
}

/* Rating */
.rating {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #facc15;
}

.rating span {
  color: #cbd5f5;
  font-size: 0.9rem;
}

/* List */
.review-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.review-card ul li {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 8px;
}

/* Button */
.review-btn {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.review-btn:hover {
  background: #0ea5e9;
}

.faq {
  padding: 80px 20px;
  background: #f8fafc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #020617;
}

.faq-header p {
  color: #475569;
  font-size: 1.05rem;
}

/* FAQ Items */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #020617;
}

.faq-question span {
  font-size: 1.4rem;
  color: #38bdf8;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.testimonials-header {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.testimonials-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #38bdf8;
  color: #020617;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-user span {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 2rem;
  }
}

.footer {
  background: #020617;
  color: #cbd5f5;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Column */
.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}

.disclaimer {
  background: #020617;
  border-top: 1px solid #1e293b;
  padding: 25px 20px;
}

.disclaimer-container {
  max-width: 1200px;
  margin: auto;
}

.disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #94a3b8;
  text-align: center;
}

.disclaimer strong {
  color: #cbd5f5;
}

.simple-hero {
  background: #020617;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.simple-hero-container {
  max-width: 800px;
  margin: auto;
}

.simple-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.simple-hero p {
  font-size: 1rem;
  color: #cbd5f5;
  margin-bottom: 25px;
}

.simple-btn {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.simple-btn:hover {
  background: #0ea5e9;
}

.norton-review {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
}

/* Headings */
.norton-review h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #020617;
}

.norton-review h3 {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #0f172a;
}

/* Paragraphs */
.norton-review p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 15px;
}

/* List */
.norton-review ul {
  margin: 20px 0 10px 20px;
  color: #475569;
}

.norton-review ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .norton-review {
    padding: 25px;
    margin: 50px 15px;
  }

  .norton-review h2 {
    font-size: 1.9rem;
  }

  .norton-review h3 {
    font-size: 1.25rem;
  }
}

  .tc-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .tc-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f172a;
  }

  .tc-container h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0f172a;
  }

  .tc-container p, .tc-container li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .tc-container ul {
    margin: 15px 0 15px 20px;
  }

  .tc-container a {
    color: #3b82f6;
    text-decoration: underline;
  }


  
.how-we-review {
  background: #f1f5f9;
  padding: 60px 20px;
}

.review-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.review-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.review-container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #334155;
}

.review-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.step {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Responsive */
@media (min-width: 768px) {
  .review-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}


.about-us {
  background: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 40px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}