* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #FAFAFF;
  color: #30343F;
  line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 8%;
  background: #FAFAFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ECECF2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #1E2749;
    line-height: 1;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: #30343F;
  font-weight: 500;
}

.nav-btn,
.primary-btn {
  background: #273469;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
    box-shadow:
    0 12px 30px
    rgba(39,52,105,.18);
}

.nav-btn:hover,
.primary-btn:hover {
  background: #1E2749;
  transform: translateY(-2px);
}

.hero {
  min-height: 80vh;
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  overflow: hidden;
    background:
    radial-gradient(
        circle at top left,
        rgba(39,52,105,.08),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(158,118,143,.08),
        transparent 35%
    ),

    #FAFAFF;
}

.hero::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  top: -150px;
  left: -150px;

  background: rgba(39, 52, 105, 0.03);

  transform: rotate(45deg);

  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;

  width: 320px;
  height: 320px;

  bottom: 74px;
  right: -150px;

  background: rgba(39, 52, 105, 0.03);

  transform: rotate(65deg);

  z-index: 0;
}

.hero-dots-left,
.hero-dots-right {
  position: absolute;
  width: 120px;
  height: 120px;

  background-image:
    radial-gradient(
      rgba(39,52,105,.12) 1.5px,
      transparent 1.5px
    );

  background-size: 20px 20px;

  z-index: 0;
}

.hero-dots-left {
  left: 40px;
  bottom: 120px;
}

.hero-dots-right {
  right: 40px;
  top: 120px;
}

.hero-logo {
  width: 600px;
  height: auto;
  margin-bottom: 4px;
}

h1 {
  font-size: 56px;
  max-width: 700px;
  color: #1E2749;
  line-height: 1.1;
}

.hero p {
  font-size: 20px;
  margin: 24px 0;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.secondary-link {
  color: #273469;
  font-weight: 600;
  text-decoration: none;
}

.section {
  padding: 90px 8%;
}

.section h2 {
  text-align: center;
  font-size: 40px;
  color: #1E2749;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.subject-card,
.testimonial,
.pricing-card {
  background: white;
  border: 1px solid #ECECF2;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  transition: 0.25s;
}



.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-type {
  color: #273469;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-desc {
  color: #30343F;
  font-size: 15px;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0 32px;
  padding: 0;
}

.pricing-card li {
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.card h3,
.subject-card h3,
.pricing-card h3 {
  color: #1E2749;
  margin-bottom: 12px;
}

.icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.pricing-card {
  max-width: 450px;
  margin: 0 auto;
  border-radius: 20px;
  text-align: center;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #273469;
  margin: 20px 0;
}

.price span {
  font-size: 18px;
  color: #30343F;
}

.pricing-card ul,
.subject-card ul {
  list-style: none;
  margin: 24px 0;
}

.subject-card {
  transition: 0.25s;
}

.subject-card {
  text-align: left;
  padding: 36px;
  min-height: 280px;
  position: relative;
}

.subject-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.subject-card p {
  color: #9E768F;
  font-weight: 700;
  margin-bottom: 24px;
}

.subject-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.subject-card li {
  background: #FAFAFF;
  border: 1px solid #ECECF2;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 15px;
  width: fit-content;
}


.subject-card:hover {
  background: #273469;
  color: white;
  transform: translateY(-4px);
}

.subject-card:hover h3,
.subject-card:hover p {
  color: white;
}

.subject-card:hover li {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: white;
}

.subject-card:hover h3 {
  color: white;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-info-card {
  background: white;
  border: 1px solid #ECECF2;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.about-info-card h3 {
  color: #1E2749;
  font-size: 26px;
  margin-bottom: 16px;
}

.about-info-card p {
  margin-bottom: 14px;
  font-size: 17px;
}

.about-right p {
  font-size: 17px;
  margin-bottom: 20px;
}

.about h2 {
  text-align: left;
}


.highlight-box {
  margin-top: 24px;
  padding: 24px;
  background: #9E768F15;
  border-left: 4px solid #9E768F;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking {
  background: #273469;
  padding: 90px 8%;
  text-align: center;
}

.booking h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 40px;
}

form {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

input,
textarea {
  padding: 16px;
  border-radius: 10px;
  border: none;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #9E768F;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

button:hover {
  opacity: 0.9;
}

footer {
  background: #1E2749;
  color: #FAFAFF;
  padding: 50px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

footer a {
  display: block;
  color: #FAFAFF;
  text-decoration: none;
  margin-bottom: 8px;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid #ECECF2;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  color: #1E2749;
  font-size: 18px;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  font-size: 24px;
  color: #273469;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 26px 24px;
  color: #30343F;
  font-size: 16px;
}

.pricing-note {
  max-width: 850px;
  margin: -20px auto 40px;
  text-align: center;
  font-size: 17px;
  color: #30343F;
  line-height: 1.7;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .three,
  .four,
  .about {
    grid-template-columns: 1fr;
  }

  .about h2 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section h2,
  .booking h2 {
    font-size: 32px;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(39, 52, 105, 0.07), transparent 38%),
    radial-gradient(circle at bottom right, rgba(158, 118, 143, 0.08), transparent 38%),
    #FAFAFF;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 8px 0 30px;
}

.trust-bar span {
  background: white;
  border: 1px solid #ECECF2;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #273469;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 8%;
  background: white;
  border-top: 1px solid #ECECF2;
  border-bottom: 1px solid #ECECF2;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  color: #273469;
  margin-bottom: 4px;
}

.stat p {
  font-weight: 600;
  color: #30343F;
}

.popular {
  position: relative;
  border: 2px solid #273469;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #273469;
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.how-it-works {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #FAFAFF;
  border: 1px solid #ECECF2;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.step-card span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #273469;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3 {
  color: #1E2749;
  margin-bottom: 12px;
}

.final-cta {
  background: #1E2749;
  color: white;
  text-align: center;
  padding: 80px 8%;
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  font-size: 18px;
}

.cta-light-btn {
  display: inline-block;
  background: #9E768F;
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card .primary-btn {
  margin-top: auto;
  align-self: center;
}

@media (max-width: 1000px) {
  .stats-section,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .stats-section,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 32px;
  }
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    padding: 40px 8%;

    background: white;

    border-top: 1px solid #ECECF2;
    border-bottom: 1px solid #ECECF2;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: #273469;
    margin-bottom: 4px;
}

.stat p {
    color: #30343F;
    font-weight: 600;
}

.why-section {
    background: #FAFAFF;
}

.why-section .card {
    text-align: left;
}

.why-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(158, 118, 143, 0.12);

    border-radius: 14px;

    font-size: 24px;

    margin-bottom: 18px;
}

.why-section h3 {
    color: #1E2749;
    margin-bottom: 12px;
}

.why-section p {
    color: #30343F;
    line-height: 1.7;
}

@media (max-width: 900px) {

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .stats-section {
        grid-template-columns: 1fr;
    }

}

.section {
    position: relative;
}

.section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: rgba(39,52,105,.12);
}

.subject-card,
.pricing-card,
.card {
    transition: all .25s ease;
}

.subject-card:hover,
.pricing-card:hover,
.card:hover {
    transform: translateY(-8px);
}

.gradient-text {
    background: linear-gradient(
        135deg,
        #273469,
        #9E768F
    );

    background-clip: text;      /* add this */
    -webkit-background-clip: text;

    color: transparent;         /* add this */
    -webkit-text-fill-color: transparent;
}

.card,
.subject-card,
.pricing-card,
.faq-item {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.4);
}

.section-light {
    background: #FAFAFF;
}

.section-white {
    background: white;
}

.group-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  background: white;
  border: 1px solid #ECECF2;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.group-card ul {
  list-style: none;
  margin-top: 20px;
}

.group-card li {
  margin-bottom: 12px;
}

.group-highlight {
  background: #273469;
  color: white;
  border-radius: 20px;
  padding: 32px;
}

.group-highlight h3 {
  color: white;
}

.group-highlight p {
  margin: 16px 0 24px;
}

.group-highlight .primary-btn {
  background: #9E768F;
}

@media (max-width: 800px) {
  .group-card {
    grid-template-columns: 1fr;
  }
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #5C6270;
    font-size: 18px;
    line-height: 1.7;
}
