* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f6f8;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background:radial-gradient(circle at top left, #1a1f3a, #0b0f22 70%);
  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: #795548;
  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: black;
  color: white;
  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: white;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-primary {
  background:#ffffff;
  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 white;
  color: white;
  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: white;
}

/* 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: #000000;
  color: white;
  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: white;
}

/* 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: white;
  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:white;
}

/* 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);
  }
}

.about-us {
  background: #ffffff;
  padding: 80px 20px;
  color: #1f2937;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-us h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-us p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #374151;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-box {
  background: #f9fafb;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-box p {
  font-size: 14.5px;
  color: #4b5563;
}

.about-mission {
  font-size: 17px;
  margin-top: 30px;
  padding-left: 15px;
  border-left: 3px solid  #eb2825;
  color: #1f2937;
}

.faq-section {
  background: #ffffff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0f172a;
  text-align: center;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #7986cb1a;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 18px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.product-section {
  background: #00000012;
  padding: 80px 20px;
}

.product-container {
  max-width: 1200px;
  margin: auto;
}

.product-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #0f172a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: #e91e6317;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-card img {
  max-width: 140px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.product-desc {
  font-size: 14.5px;
  color: #4b5563;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: black;
}

.buy-btn {
  background: #795548;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-btn:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

.testimonial-section {
  background: #ffffff;
  padding: 80px 20px;
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #0f172a;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 16px;
  color: #111827;
}

.testimonial-user span {
  font-size: 13px;
  color: #6b7280;
}

.third-party-disclaimer {
  background: #f9fafb;
  padding: 40px 20px;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-container {
  max-width: 1200px;
  margin: auto;
}

.third-party-disclaimer h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111827;
}

.third-party-disclaimer p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 8px;
}

.single-product-section {
  background: #ffffff;
  padding: 80px 20px;
}

.single-product-container {
  max-width: 1200px;
  margin: auto;
}

.product-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  background: #f9fafb;
}

.product-details h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0f172a;
}

.product-tagline {
  font-size: 16.5px;
  color: #374151;
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  color: #374151;
}

.product-features li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.purchase-box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 15px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color:  #eb2825;
}

.buy-now-btn {
  background: #eb2825;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-now-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.product-note {
  font-size: 13px;
  color: #6b7280;
}

.product-specs-section {
  background: #ffffff;
  padding: 80px 20px;
  color: #1f2937;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.product-specs-container {
  max-width: 900px;
  margin: auto;
}

.product-specs-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #0f172a;
  text-align: center;
}

.product-specs-section h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color:  #eb2825;
}

.product-specs-section p {
  font-size: 15px;
  margin-bottom: 18px;
}

.product-specs-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-specs-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
}

.product-specs-section ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.purchase-box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color:  #eb2825;
}

.buy-now-btn {
  background:  #eb2825;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-now-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.product-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 12px;
}

.terms-conditions-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.terms-conditions-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-conditions-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.terms-conditions-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.terms-conditions-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.terms-conditions-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.terms-conditions-section ul li {
  margin-bottom: 10px;
}

.terms-conditions-section a {
  color:  #eb2825;
  text-decoration: none;
}

.terms-conditions-section a:hover {
  text-decoration: underline;
}


.privacy-policy-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.privacy-policy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.privacy-policy-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.privacy-policy-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.privacy-policy-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.privacy-policy-section ul li {
  margin-bottom: 10px;
}

.privacy-policy-section a {
  color:  #eb2825;
  text-decoration: none;
}

.privacy-policy-section a:hover {
  text-decoration: underline;
}


.refund-policy-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.refund-policy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.refund-policy-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.refund-policy-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.refund-policy-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.refund-policy-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.refund-policy-section ul li {
  margin-bottom: 10px;
}

.refund-policy-section a {
  color:  #eb2825;
  text-decoration: none;
}

.refund-policy-section a:hover {
  text-decoration: underline;
}


.disclaimer-section {
  background: #ffffff;
  padding: 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.disclaimer-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}


.about-us-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.about-us-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-us-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.about-us-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.about-us-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.about-us-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.about-us-section ul li {
  margin-bottom: 10px;
}


.product-specs-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.product-specs-container {
  max-width: 900px;
  margin: 0 auto;
}

.product-specs-section h2 {
  font-size: 28px;
  color: #111111;
  margin-bottom: 25px;
}

.product-specs-section h3 {
  font-size: 22px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.product-specs-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.product-specs-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.product-specs-section ul li {
  margin-bottom: 10px;
}

.product-specs-section img {
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.product-specs-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.product-specs-container {
  max-width: 900px;
  margin: 0 auto;
}

.product-specs-section h2 {
  font-size: 28px;
  color: #111111;
  margin-bottom: 25px;
}

.product-specs-section h3 {
  font-size: 22px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid  #eb2825;
  padding-left: 10px;
}

.product-specs-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.product-specs-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.product-specs-section ul li {
  margin-bottom: 10px;
}
/* ===== HERO WRAPPER ===== */
.cyber-hero {
  padding: 100px 20px;
  background: radial-gradient(circle at top left, #1a1f3a, #0b0f22 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cyber-shell {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== TEXT SIDE ===== */
.cyber-copy {
  color: #ffffff;
}

.cyber-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.cyber-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cyber-heading span {
  background: linear-gradient(90deg, #00f0ff, #00ff95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyber-description {
  font-size: 18px;
  color: #cbd5ff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.cyber-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.cyber-btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.cyber-btn.primary {
  background: linear-gradient(90deg, #00f0ff, #00ff95);
  color: #000;
}

.cyber-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 255, 200, 0.3);
}

.cyber-btn.outline {
  border: 2px solid #00f0ff;
  color: #00f0ff;
}

.cyber-btn.outline:hover {
  background: #00f0ff;
  color: #000;
}

/* ===== FEATURES ===== */
.cyber-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #9fb3ff;
}

.cyber-features li::before {
  content: "✔ ";
  color: #00ff95;
}

/* ===== IMAGE SIDE ===== */
.cyber-media {
  position: relative;
  text-align: center;
}

.cyber-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 255, 200, 0.2);
  transition: 0.4s ease;
}

.cyber-media img:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cyber-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cyber-buttons {
    justify-content: center;
  }

  .cyber-features {
    justify-content: center;
  }
}


/* ===== SECTION BASE ===== */
.trust-zone {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f1226, #1b1f3d);
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.trust-wrapper {
  max-width: 1200px;
  width: 100%;
}

/* ===== HEADER ===== */
.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.trust-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.trust-header p {
  color: #b5c3ff;
  font-size: 16px;
}

/* ===== GRID ===== */
.trust-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.trust-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle glowing border effect */
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(45deg, #00f0ff, #00ff95);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 255, 200, 0.15);
}

/* ===== TEXT ===== */
.trust-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #d6dcff;
  position: relative;
}

.trust-card blockquote::before {
  content: "“";
  font-size: 50px;
  color: #00ff95;
  position: absolute;
  left: -10px;
  top: -20px;
  opacity: 0.2;
}

/* ===== USER INFO ===== */
.trust-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ff95;
}

.trust-user h4 {
  margin: 0;
  font-size: 16px;
}

.trust-user span {
  font-size: 13px;
  color: #9fb3ff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .trust-wall {
    grid-template-columns: 1fr;
  }

  .trust-card {
    text-align: center;
  }

  .trust-user {
    justify-content: center;
  }
}

.security-product {
  padding: 80px 20px;
  background: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.security-wrapper {
  max-width: 1200px;
  margin: auto;
}

.security-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.product-label {
  display: inline-block;
  background: #ffecec;
  color: #c40000;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.security-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.product-summary {
  color: #555;
  line-height: 1.6;
}

.security-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.feature-block h3,
.system-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 20px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.feature-list li:hover {
  transform: translateY(-4px);
}

.feature-list span {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.system-box {
  margin-top: 40px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.system-grid div {
  background: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.security-aside {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.highlight-card {
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 16px;
}

.highlight-card h4 {
  margin-bottom: 15px;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
}

.highlight-card li {
  margin-bottom: 10px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

.premium-security {
  padding: 90px 20px;
  background: #f3f6fb;
  font-family: 'Segoe UI', sans-serif;
}

.premium-wrapper {
  max-width: 1250px;
  margin: auto;
}

.premium-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.plan-tag {
  background: #e6f0ff;
  color: #0047cc;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.premium-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.premium-header p {
  color: #555;
  line-height: 1.6;
}

.premium-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.feature-cluster h3 {
  margin-bottom: 25px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
}

.requirements-box {
  margin-top: 40px;
}

.requirements-box details {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.requirements-box summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

.requirements-box dl {
  margin-top: 15px;
}

.requirements-box dt {
  font-weight: 600;
  margin-top: 12px;
}

.requirements-box dd {
  margin-left: 0;
  color: #555;
  margin-bottom: 8px;
}

.premium-aside {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.premium-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.benefit-box {
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 18px;
}

.benefit-box h4 {
  margin-bottom: 15px;
}

.benefit-box ul {
  list-style: none;
  padding: 0;
}

.benefit-box li {
  margin-bottom: 10px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .premium-layout {
    grid-template-columns: 1fr;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }
}

.webroot-style .plan-tag {
  background: #e6fff3;
  color: #009966;
}

.webroot-style .feature-item:hover {
  box-shadow: 0 10px 25px rgba(0, 153, 102, 0.15);
}

.webroot-benefits {
  background: linear-gradient(135deg, #009966, #00cc88);
}

.refund-policy-section {
  background: #f8fafc;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.refund-policy-section .container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.refund-policy-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #111827;
  text-align: center;
}

.refund-policy-section h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #2563eb;
  border-left: 4px solid #2563eb;
  padding-left: 12px;
}

.refund-policy-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 15px;
}

.refund-policy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.refund-policy-section ul li {
  margin-bottom: 10px;
  color: #4b5563;
}

.refund-policy-section a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.refund-policy-section a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .refund-policy-section .container {
    padding: 30px;
  }

  .refund-policy-section h1 {
    font-size: 28px;
  }
}


