/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #000000;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  height: 60px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 500;
  color: #555;
  font-size: 1rem;
}
.nav-links .btn {
  background: #004aad;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
}
/* Hide toggle on desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(to top, #d7e4f7, #f7f9fc);
  padding: 100px 40px 100px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 520px;
  max-width: 600px;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  background-color: #e0edff;
  color: #004aad;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.hero-heading .highlight {
  color: #004aad;
  display: inline-block;
  margin-top: 6px;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.hero-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #333;
}

.hero-checklist-grid div {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.hero-checklist-grid i {
  color: #22c55e;
  margin-right: 8px;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(90deg, #004aad, #126bc7);
  color: white;
}

.btn.outline {
  background: transparent;
  border: 2px solid #004aad;
  color: #004aad;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 40px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

/* === MOBILE STYLES === */
@media (max-width: 600px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    padding: 0;
  }

  .hero-heading {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-heading .line-top,
  .hero-heading .line-bottom {
    white-space: normal;
    text-align: center;
  }

  .description {
    font-size: 1rem;
    margin-top: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-checklist {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-image img {
    max-height: 280px;
  }
}


/* === DESKTOP FIRST GRID (INCLUDING SERVICES, STATS, TESTIMONIALS) === */
/* RE-INSERT ALL SECTIONS FROM YOUR WORKING CODE HERE — I’ll split them in next messages */

.reputation-impact-section {
  padding: 80px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
}

.rep-impact-header {
  text-align: center;
  margin-bottom: 60px;
}

.rep-impact-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.rep-impact-header p {
  color: #555;
  margin-top: 10px;
  font-size: 1rem;
}

.rep-impact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.rep-impact-column {
  flex: 1 1 500px;
}

.rep-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.rep-impact-column h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

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

.rep-impact-list li {
  background: white;
  border-left: 4px solid transparent;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.rep-impact-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.rep-impact-list li span {
  font-size: 0.95rem;
  color: #555;
}

.rep-list-soft-red li {
  border-left-color: #fbb6b6;
  background: #fff8f8;
}

.rep-list-soft-blue li {
  border-left-color: #a3c8f7;
  background: #f5faff;
}

/* Responsive */
@media (max-width: 768px) {
  .rep-impact-columns {
    flex-direction: column;
  }

  .rep-impact-column {
    width: 100%;
  }
}

.stats-section {
  background: linear-gradient(90deg, #004aad, #126bc7);
  color: #fff;
  text-align: center;
  padding: 50px 20px; /* reduced vertical padding */
  border-radius: 0;
}

.stats-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px; /* tighter heading spacing */
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 20px; /* less gap between boxes */
}

.stat-box {
  flex: 1 1 160px;
  max-width: 220px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .stat-box {
    max-width: 100%;
    padding: 10px;
  }

  .stat-box i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.9rem;
    max-width: 120px;
    margin: 0 auto;
  }
}

.services-section {
  padding: 50px 30px;
  background: #fff;
  text-align: center;
}

.section-header .badge {
  background:#22c55e;
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header h2 .gradient-text {
  background: linear-gradient(90deg, #004aad, #126bc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  width: 23%;
  min-width: 260px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.icon-circle {
  background: linear-gradient(135deg, #004aad, #126bc7);
  color: white;
  font-size: 1.6rem;
  padding: 16px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .service-card {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .service-card {
    width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(-45deg, #eef5fd, #dbeafd, #f0f8ff, #e2f0ff);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
} 
.how-it-works {
  box-sizing: border-box;
  width: 100%;
}
  
  @keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.how-container {
  max-width: 1100px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.how-it-works h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.steps-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.step-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 30px 20px;
  flex: 1 1 300px;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-6px);
}

.step-icon {
  background: #004aad;
  color: white;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 15px;
  font-weight: 600;
}

.step-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
@media (max-width: 768px) {
  .how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }

  .step-item h3 {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .step-item p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.demo-preview {
  background: #FFFFFF;
  padding: 100px 30px;
}

.demo-flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.demo-left {
  flex: 0 0 420px;
  text-align: center;
}

.popup-video {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.popup-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block; /* ✅ Let videos be visible by default */
}

.demo-item.hidden {
  display: none; /* ✅ Only hide the one you don’t want */
}

.demo-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background-color: #e4eaf4;
  color: #004aad;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.demo-tab.active {
  background: #004aad;
  color: #fff;
}

.demo-text {
  flex: 1;
  max-width: 520px;
}
.demo-item {
  display: block;
}
.demo-item.hidden {
  display: none;
}

.demo-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.demo-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

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

.demo-features li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #222;
  text-align: left;
}

.demo-features i {
  color: #22c55e;
  font-size: 1.1rem;
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}


.demo-note {
  background: #eef5fd;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.btn.primary {
  background: linear-gradient(135deg, #004aad, #126bc7);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 768px) {
  .demo-flex {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .demo-left, .demo-text {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .popup-video {
    max-width: 100%;
  }

  .demo-text h2 {
    font-size: 2rem;
  }

  .demo-text p {
    font-size: 1rem;
  }

  .demo-features li {
    font-size: 0.95rem;
    gap: 10px;
  }

  .demo-features i {
    font-size: 1rem;
    margin-right: 8px;
  }

  .btn.primary {
    width: 100%;
    text-align: center;
  }

  .demo-toggle {
    flex-direction: column;
    gap: 10px;
  }

  .demo-tab {
    width: 100%;
    text-align: center;
  }
}

.rating-section {
  background: #f9fbff;
  padding: 80px 30px;
}

.rating-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.rating-info {
  flex: 1;
  min-width: 300px;
}

.badge {
  background: #ffe580;
  color: #333;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 15px;
}

.rating-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rating-info .highlight {
  color: #fcdd32;
}

.rating-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.rating-visual {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.why-box {
  background: #eaf2ff;
  padding: 16px;
  border-radius: 12px;
  color: #333;
  font-size: 0.95rem;
}

.rating-calc-box {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.rating-calc-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #004aad;
}

.rating-calc-box p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

.rating-calc-box label {
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.rating-calc-box input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.rating-calc-box button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #004aad;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.rating-calc-box input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #f2f7fc;
  border-radius: 5px;
  outline: none;
  margin-top: 5px;
  margin-bottom: 10px;
}

.rating-calc-box input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #004aad;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #004aad;
  cursor: pointer;
  transition: background 0.3s;
}

.rating-calc-box input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #004aad;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #004aad;
  cursor: pointer;
}


#resultBox {
  margin-top: 15px;
  font-weight: 600;
  color: #004aad;
}

.support-link {
  margin-top: 20px;
  font-size: 0.9rem;
}

.support-link a {
  color: #004aad;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .rating-container {
    flex-direction: column;
  }
}



/* === STATS SECTION === */
.stats {
  display: flex;
  justify-content: space-around;
  background: #004aad;
  color: white;
  padding: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.stats div {
  flex: 1;
  margin: 10px 20px;
}
.stats h3 {
  font-size: 2rem;
}

/* === TESTIMONIALS === */
.testimonial-marquee {
  background: #f9f9f9;
  overflow: hidden;
  padding: 60px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 50s linear infinite;
  gap: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  min-width: 320px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card p {
  margin-bottom: 10px;
  font-style: italic;
  color: #333;
}

.testimonial-card span {
  font-size: 0.95rem;
  color: #555;
  display: block;
}

/* animation */
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional: Responsive tweaks */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    font-size: 0.95rem;
  }
}

/* === CONTACT PAGE === */
body.contact-page {
  padding-top: 80px; /* ensures content isn't hidden under fixed navbar */
}

/* Layout container */
.contact-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 40px;
  background: linear-gradient(to top, #d7e4f7, #f7f9fc);
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  max-width: 500px;
}

.contact-left h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #004aad;
}

.contact-left .subheading {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #333;
  line-height: 1.6;
}



.contact-left img {
  max-width: 100%;
  margin-top: 30px;
  border-radius: 12px;
}


/* === GREEN TICK CHECKLIST === */
.feature-checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.feature-checklist li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.feature-checklist i {
  color: #22c55e; /* Green */
  margin-right: 10px;
  font-size: 1.1rem;
}


/* RIGHT SIDE (FORM) */
.contact-right {
  flex: 1;
  max-width: 500px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-family: 'Inter', sans-serif;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #323436;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  font-family: inherit;
}

.contact-right select {
  background-color: #fff;
}

.contact-right button {
  background: linear-gradient(135deg, #004aad, #126bc7);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-right button:hover {
  background: #003b99;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-header {
    flex-direction: column;
    padding: 60px 20px;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
  }

  .contact-left h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .contact-left .subheading,
  .contact-points {
    text-align: center;
  }

  .contact-points li {
    padding-left: 24px;
    text-align: left;
  }

  .contact-left img {
    margin: 30px auto 0;
  }
}

/* === PACKAGES SECTION === */
.packages-section {
  background: #f9fafc;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.packages-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.packages-section p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.included-icon {
  color: #22c55e;
  margin-right: 8px;
}

.missing-icon {
  color: #ccc;
  margin-right: 8px;
}

.faded {
  color: #999;
  opacity: 0.6;
  text-decoration: none;
}
.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease;
}
.package-card:hover {
  transform: translateY(-5px);
}
.package-card h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 10px;
}
.package-card h2 span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  display: block;
}
.package-card .desc {
  color: #666;
  margin-bottom: 15px;
  font-size: 1rem;
}
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.package-card ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}
.package-card .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #004aad;
  color: white;
  font-weight: 600;
  border-radius: 8px;
}
.highlight-border {
  border: 2px solid #004aad;
}
.package-card .tag {
  background: #004aad;
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
  display: inline-block;
}
.badges {
  margin: 20px auto 40px;
  text-align: center;
}

.package-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 500;
}

.package-highlights div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon colors */
.refund-icon {
  color: #22c55e; /* Green */
}
.setup-icon {
  color: #f59e0b; /* Amber */
}
.fees-icon {
  color: #3b82f6; /* Blue */
}

.alt-stats {
  background: linear-gradient(90deg, #126bc7, #004aad); /* reversed gradient for variation */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 0;
  margin-top: 60px;
}

.alt-stats .stats-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.alt-stats .stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.alt-stats .stat-box {
  flex: 1 1 200px;
  max-width: 250px;
}

.alt-stats .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.alt-stats .stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .alt-stats .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .alt-stats .stat-box {
    max-width: 100%;
  }
}

/* === ADDONS SECTION === */
.addons {
  background: #00000;
  padding: 60px 20px;
  text-align: center;
}
.addon-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.addon {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 240px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}
.addon i {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 10px;
}
.addon h4 {
  margin: 10px 0 5px;
}
.addon span {
  font-weight: bold;
  color: #004aad;
}

.faq {
  background: linear-gradient(to top, #d7e4f7, #f7fafc);
  padding: 80px 20px;
}

.faq h2 {
  text-align: center;
  color: #00040a;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #242526;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 16px 20px;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-cta {
  background: linear-gradient(90deg, #004aad, #126bc7);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.faq-cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.faq-cta .btn {
  background: #fff;
  color: #004aad;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
}

/* === CONTACT PAGE FAQ SECTION === */
.contact-faq {
  background: #d7e4f7;
  padding: 80px 20px;
}

.contact-faq h2 {
  text-align: center;
  color: #00040a;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.contact-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-faq .faq-item {
  border-bottom: 1px solid #ddd;
}

.contact-faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #242526;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.contact-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
}

.contact-faq .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 16px 20px;
}

.contact-faq .faq-question i {
  transition: transform 0.3s;
}

.contact-faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}


/* === INCLUDED FEATURES === */
.included {
  padding: 80px 30px;
  background: #fff;
  text-align: center;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.included-grid div {
  background: #f9fafc;
  padding: 30px 20px;
  border-radius: 12px;
}
.included-grid i {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 10px;
}
.included-grid h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* === FOOTER === */
footer {
  background: #1c1c1c;
  color: #ccc;
  padding: 50px 60px;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-columns div {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer li {
  margin-bottom: 6px;
}
footer h4 {
  color: white;
  margin-bottom: 10px;
}
.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
}

/* === MEDIA QUERIES FOR MOBILE (<= 768px) === */
@media (max-width: 768px) {
  /* Navbar behavior */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease;
    padding: 12px 20px;
  }

  .navbar.hide {
    top: -100px;
  }

  .navbar.show {
    top: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0%);
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 2rem;
    color: #004aad;
    background: #f0f4fa;
    border: none;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 6px;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #004aad;
    border-radius: 2px;
    transition: all 0.4s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links a {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .nav-links .btn {
    margin-top: 20px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .package-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    font-size: 0.95rem;
    padding: 10px 18px;
    display: block;
    margin: 0 auto;
  }
}

.cta-section {
  background: linear-gradient(180deg, #004aad 0%, #1876e6 100%);
  color: white;
  text-align: center;
  padding: 80px 60px;
}

.cta-actions {
  margin-top: 30px;
}

.cta-actions .btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  margin: 10px;
  text-decoration: none;
}

.cta-actions .btn.primary {
  background: white;
  color: #004aad;
  border: 2px solid #fff;
}

.cta-actions .btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}


/* === MEDIA QUERIES FOR SMALLER DEVICES (<= 480px) === */
/* === MEDIA QUERIES FOR SMALLER DEVICES (<= 480px) === */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    font-size: 15px;
  }
  .service-grid {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .card {
    width: 100%;
    padding: 20px 16px;
    text-align: center;
  }

  .testimonial-grid {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .stats {
    overflow-x: auto;
    gap: 10px;
    padding: 30px 10px;
  }

  .stats div {
    flex: 1 0 25%;
    min-width: 100px;
  }

  .hero-image {
    margin-top: 20px;
  }
}

/* Mobile Responsive (≤600px) */
@media (max-width: 600px) {
  .hero {
    padding: 120px 20px 0px; /* reduced top/bottom padding */
  }
  
  .hero-inner {
    gap: 0;
    row-gap: 0;
  }

  .hero-text {
    padding: 0;
    text-align: center;
  }

  .hero-heading {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* keep 2 columns */
    gap: 12px 24px;
    justify-items: start;
    text-align: left;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-image {
    margin-top: 20px; /* was 40px or more */
    padding: 0;
  }

  .hero-image img {
    max-height: 300px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}


/* === GENERAL CLEANUP AND FINAL OVERRIDES === */

/* Ensure Inter font loads correctly */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Optional: utility spacing */
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}

/* Optional: fix any lingering layout bugs */
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Optional utility for centered content */
.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Final button hover fix */
.btn.primary:hover {
  background: #003a8a;
  color: #fff;
}

/* Fix spacing for headings in popup-video section */
.popup-video + h2,
.popup-video + .demo-section h2 {
  margin-top: 40px;
}

/* Fix form responsiveness */
@media (max-width: 600px) {
  .contact-form {
    width: 100%;
    padding: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
    width: 100%;
  }
}

/* Fix edge scroll issue for nav-links */
.nav-links {
  overflow-x: hidden;
}

/* Prevent container shift on mobile when menu opens */
body.menu-open {
  overflow: hidden;
}

/* Ensure all sections have proper box-sizing */
section, div, header, footer, main {
  box-sizing: border-box;
}
