/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

body {
  background-image: url("../Images/white-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #232323;
}
/* =========================
   GLOBAL CONTAINER
========================= */
.section-padding {
  padding: 100px 20px;
}

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

/* =========================
   PRICING HERO
========================= */

.pricing-hero {
  padding: 80px 20px 100px;
  text-align: center;
  background: url("../Images/white-background.webp") no-repeat center center;
    background-size: cover;
}

.pricing-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* =========================
   PRICING CARD
========================= */

.pricing-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.start-text {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #f43722;
  margin-bottom: 10px;
}

.cap {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
}

/* =========================
   MATHS SECTION
========================= */

.maths-section {
  background: linear-gradient(135deg, #23226b 0%, #0D1840 100%);
  padding: 60px 20px;
  color: #ffffff;
}

.maths-container {
  max-width: 1000px;   /* FIXED: wider like Figma */
  margin: 0 auto;
  display: flex;
  align-items: center; /* vertically align both columns */
  justify-content: space-between;
  gap: 100px;
}

/* LEFT SIDE */
.maths-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("../Images/light-background.png") no-repeat center center;
    background-size: cover;
}

.maths-title {
  font-size: 28px;
  font-weight: 600;
}

.calculator-box img {
  width: 100%;
  max-width: 450px;
}

.fee-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.85;
  font-weight: lighter!important;
  text-align: center;
}

/* RIGHT SIDE */
.maths-right {
  flex: 1;
   background: url("../Images/light-background.png") no-repeat center center;
    background-size: cover;
}

.benefits-list {
  list-style: none;
  padding-left: 70px;

}

.benefits-list li {
  gap: 50px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.benefits-list i {
  color: #22c55e;
  font-size: 20px;
}
/* =========================
   BENEFITS LIST
========================= */

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
    gap: 16px;
  align-items: center;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 500;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  position: relative;
  padding: 120px 20px;
  text-align: center;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Images/white-background.webp") no-repeat center center;
  background-size: cover;
  transform: rotate(180deg);
  z-index: -1;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.faq-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  transition: 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.faq-card-header {
  background: #232323;
  color: #ffffff;
  padding: 16px;
  font-size: 14px;
}

.faq-card-body {
  padding: 18px;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  text-align: center;
  padding: 50px 20px 0;
  margin: 0 auto;
}

.cta {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  margin: 0 10px 50px;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn.primary {
  background: #f43722;
  color: #fff;
}

.btn.primary:hover {
  opacity: 0.85;
}

.btn.secondary {
  border: 1px solid #232323;
  color: #232323;
}

.btn.secondary:hover {
  background: #232323;
  color: #fff;
}

.company-logos { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 60px; 
    flex-wrap: wrap; 
} 

.company-logos img { 
    max-height: 40px; 
    transition: 0.3s ease; 
} 

.company-logos img:hover { 
    opacity: 1; 
    transform: scale(1.02); 
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .pricing-title {
    font-size: 34px;
  }

  .maths-container {
    flex-direction: column;
    text-align: center;
  }

  .benefits-list li {
    justify-content: center;
    gap: 10px;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-title {
    font-size: 26px;
  }

  .price {
    font-size: 38px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .maths-section,
  .cta-section {
    padding: 80px 20px;
  }
}