.tutor-page {
  background:
    radial-gradient(circle at top left, rgba(253, 70, 193, 0.05), transparent 18%),
    radial-gradient(circle at top right, rgba(150, 116, 253, 0.06), transparent 20%),
    linear-gradient(180deg, #fcfcfa 0%, #f9f7fb 100%);
}

/* ------------------------------
   SHARED
------------------------------ */

.tutor-page .section {
  padding: 5.5rem 0;
}

.tutor-page .section-heading {
  max-width: 850px;
  margin: 0 auto 2rem;
}

.tutor-page .section-heading.centre {
  text-align: center;
}

.tutor-page .section-heading h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.tutor-page .section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.tutor-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.9rem;
  background: rgba(150, 116, 253, 0.10);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.tutor-page .narrow {
  max-width: 900px;
}

.tutor-btn-primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.tutor-btn-primary:hover {
  background: #eb2fb1;
  color: #fff;
  border-color: #eb2fb1;
}

.tutor-btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: rgba(7, 7, 105, 0.12);
}

.tutor-btn-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ------------------------------
   HERO
------------------------------ */

.tutor-hero {
  padding: 2.2rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.tutor-hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.tutor-hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: rgba(253, 70, 193, 0.12);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 800;
  margin: 0 0 1rem;
}

.tutor-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--black);
  max-width: 10ch;
}

.hero-lead {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.hero-mini-links a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.hero-mini-links a:hover {
  color: var(--pink);
}

.tutor-hero-visual {
  position: relative;
  min-height: 620px;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 16px 35px rgba(20, 20, 40, 0.08);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  backdrop-filter: blur(8px);
}

.chip-one {
  top: 2%;
  left: 0;
  transform: rotate(-8deg);
}

.chip-two {
  top: 4%;
  right: 2%;
  transform: rotate(8deg);
}

.chip-three {
  top: 28%;
  left: 2%;
  transform: rotate(-6deg);
}

.chip-four {
  top: 30%;
  right: 0;
  transform: rotate(7deg);
}

.hero-card-stack {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}

.hero-feature-card {
  width: 260px;
  min-height: 280px;
  padding: 1.4rem;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(20, 20, 40, 0.10);
  border: 3px solid rgba(255, 255, 255, 0.85);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(20, 20, 40, 0.14);
}

.hero-card-main {
  width: 285px;
  min-height: 320px;
  z-index: 3;
  margin: 0 -18px;
}

.tilt-left {
  transform: rotate(-5deg);
  z-index: 1;
}

.tilt-right {
  transform: rotate(5deg);
  z-index: 1;
}

.hero-feature-card:hover.tilt-left,
.hero-feature-card:hover.tilt-right {
  transform: translateY(-8px);
}

.hero-card-pink {
  background: linear-gradient(180deg, #ffe4f4 0%, #ffd5ef 100%);
}

.hero-card-violet {
  background: linear-gradient(180deg, #efe7ff 0%, #e2d2ff 100%);
}

.hero-card-gold {
  background: linear-gradient(180deg, #fff3cf 0%, #ffe7a1 100%);
}

.hero-card-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.hero-feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--navy);
}

.hero-feature-card p {
  margin: 0;
  color: #3e4358;
  line-height: 1.75;
}

/* ------------------------------
   PLATFORM / DIFFERENT BACKGROUNDS
------------------------------ */

.tutor-platform-section {
  background: linear-gradient(180deg, #fffafc 0%, #f9f8ff 100%);
  position: relative;
  overflow: hidden;
}

.tutor-platform-layout {
  position: relative;
  padding: 2rem 0 0;
}

.platform-floating {
  position: absolute;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 35px rgba(20, 20, 40, 0.08);
  color: var(--pink);
  font-size: 2rem;
}

.platform-floating-a {
  left: 6%;
  top: 0;
  color: var(--pink);
}

.platform-floating-b {
  left: 18%;
  bottom: 3%;
  color: var(--violet);
}

.platform-floating-c {
  right: 18%;
  bottom: 0;
  color: var(--gold);
}

.platform-floating-d {
  right: 6%;
  top: 2%;
  color: var(--navy);
}

.platform-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  align-items: start;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

.platform-point h3 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--black);
}

.platform-point p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ------------------------------
   PILLAR PILLS
------------------------------ */

.tutor-pillars-section {
  background: #fcfcfa;
}

.pillar-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
  padding: 1rem 1.2rem;
  background: #f1eef7;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  transition: transform 0.2s ease, background 0.2s ease;
}

.pillar-pill:hover {
  transform: translateY(-4px);
}

.pillar-pill span {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), #7f57ff);
  color: #fff;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.pillars-note {
  max-width: 850px;
  margin: 2rem auto 0;
  text-align: center;
}

.pillars-note p {
  color: var(--muted);
  line-height: 1.8;
}

.pillars-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.pillars-note a:hover {
  color: var(--pink);
}

/* ------------------------------
   LEARN CARDS
------------------------------ */

.tutor-learn-section {
  background: linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
}

.learn-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.learn-head > div:first-child {
  max-width: 900px;
}

.learn-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--navy);
  max-width: 15ch;
}

.learn-head-link {
  padding: 1rem 1.4rem;
  background: #f0eef3;
  border-radius: 999px;
  text-decoration: none;
  color: var(--black);
  font-weight: 800;
  white-space: nowrap;
  align-self: end;
}

.learn-head-link:hover {
  background: var(--navy);
  color: #fff;
}

.learn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.learn-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(20, 20, 40, 0.08);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.learn-card-pink {
  background: linear-gradient(180deg, #ff79d0 0%, #d92eff 100%);
  color: #fff;
}

.learn-card-violet {
  background: linear-gradient(180deg, #6c59ff 0%, #9874fd 100%);
  color: #fff;
}

.learn-card-gold {
  background: linear-gradient(180deg, #ffc72d 0%, #ffab2d 100%);
  color: var(--navy);
}

.learn-top,
.learn-card > h3,
.learn-card > p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.learn-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.4rem;
}

.learn-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink);
  font-size: 1.7rem;
}

.learn-card-violet .learn-icon {
  color: var(--violet);
}

.learn-card-gold .learn-icon {
  color: #d88d00;
}

.learn-top span {
  font-weight: 800;
  font-size: 1.7rem;
  opacity: 0.75;
}

.learn-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.05;
}

.learn-card p {
  margin: 0 0 1rem;
  line-height: 1.7;
  font-size: 1rem;
}

.learn-card ul {
  margin: 0;
  padding: 1.4rem 1.5rem 1.6rem 2.7rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
}

.learn-card ul li {
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

/* ------------------------------
   INCLUDED GRID
------------------------------ */

.tutor-included-section {
  background: #fcfcfa;
}

.included-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.included-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 9ch;
  color: var(--black);
}

.included-head-link {
  padding: 1rem 1.4rem;
  background: #f1eef4;
  border-radius: 999px;
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
}

.included-head-link:hover {
  background: var(--navy);
  color: #fff;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.included-card {
  min-height: 255px;
  padding: 1.45rem;
  border-radius: 28px;
  box-shadow: 0 16px 35px rgba(20, 20, 40, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.included-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 20, 40, 0.10);
}

.included-card i {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.included-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.8rem;
  line-height: 1.05;
}

.included-card p {
  margin: 0;
  line-height: 1.7;
}

.included-blue {
  background: #dfe9ff;
  color: var(--navy);
}

.included-pink {
  background: #ffe4f4;
  color: var(--navy);
}

.included-violet {
  background: #ede4ff;
  color: var(--navy);
}

.included-gold {
  background: #fff0c4;
  color: var(--navy);
}

.included-soft-pink {
  background: #fff2f9;
  color: var(--navy);
}

.included-soft-violet {
  background: #f5f0ff;
  color: var(--navy);
}

.included-soft-blue {
  background: #edf3ff;
  color: var(--navy);
}

.included-soft-gold {
  background: #fff7de;
  color: var(--navy);
}

/* ------------------------------
   SUBJECT TILES
------------------------------ */

.tutor-subject-tiles-section {
  background: linear-gradient(180deg, #fffafc 0%, #fcfcfa 100%);
}

.subject-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.subject-tile {
  min-height: 220px;
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 32px rgba(20, 20, 40, 0.06);
  transition: transform 0.2s ease;
}

.subject-tile:hover {
  transform: translateY(-5px);
}

.subject-tile h3 {
  margin: 0 0 0.45rem;
  font-size: 1.8rem;
  line-height: 1.05;
  color: var(--navy);
}

.subject-tile p {
  margin: 0;
  color: #43485a;
  line-height: 1.7;
}

.tile-pink { background: #ffe2f2; }
.tile-violet { background: #eee5ff; }
.tile-blue { background: #e4ecff; }
.tile-gold { background: #fff1c9; }
.tile-soft-pink { background: #fff5fa; }
.tile-soft-violet { background: #f8f4ff; }

/* ------------------------------
   FAQ
------------------------------ */

.tutor-faq-section {
  background: linear-gradient(180deg, #fbf9ff 0%, #f7f3ff 100%);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(7, 7, 105, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(20, 20, 40, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.2rem;
}

.faq-answer-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ------------------------------
   FINAL FORM CTA
------------------------------ */

.tutor-form-section {
  background:
    radial-gradient(circle at top left, rgba(253, 70, 193, 0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(150, 116, 253, 0.08), transparent 18%),
    linear-gradient(180deg, #fffafc 0%, #f9f7fd 100%);
}

.tutor-form-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px rgba(20, 20, 40, 0.08);
  backdrop-filter: blur(12px);
}

.tutor-form-copy h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--navy);
  max-width: 10ch;
}

.tutor-form-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.tutor-form-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.tutor-form-highlights span {
  padding: 0.65rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(7, 7, 105, 0.08);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.tutor-form-side-note {
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(7, 7, 105, 0.08);
  border-radius: 22px;
}

.tutor-form-side-note p {
  margin: 0;
  font-size: 0.96rem;
}

.tutor-form-side-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.tutor-form-side-note a:hover {
  color: var(--pink);
}

.tutor-form-panel {
  background: linear-gradient(180deg, #fff 0%, #fffafc 100%);
  border: 1px solid rgba(7, 7, 105, 0.08);
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 16px 34px rgba(20, 20, 40, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 0.45rem;
  color: #2f3240;
  font-weight: 800;
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(7, 7, 105, 0.10);
  background: #fff;
  padding: 0.95rem 1rem;
  font-size: 0.96rem;
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
  font-family: "Manrope", sans-serif;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(253, 70, 193, 0.4);
  box-shadow: 0 0 0 4px rgba(253, 70, 193, 0.10);
}

.tutor-submit-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 1rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--pink), #ea2dac);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(253, 70, 193, 0.22);
}

.tutor-submit-btn:hover {
  background: linear-gradient(135deg, #ef3bb6, #d924a1);
  color: #fff;
  transform: translateY(-1px);
}

.form-status {
  margin-top: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
}

.hidden-botcheck {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1200px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .learn-card-grid,
  .subject-tile-grid,
  .platform-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-points {
    row-gap: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .tutor-hero-wrap,
  .tutor-form-shell {
    grid-template-columns: 1fr;
  }

  .tutor-hero-copy {
    text-align: center;
  }

  .tutor-hero-copy h1 {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-mini-links,
  .tutor-form-highlights {
    justify-content: center;
  }

  .tutor-hero-visual {
    min-height: 560px;
  }

.learn-head,
.included-head {
  grid-template-columns: 1fr;
  align-items: start;
}

  .platform-floating {
    display: none;
  }
}

@media (max-width: 767px) {
  .tutor-page .section {
    padding: 4rem 0;
  }

  .tutor-hero {
    padding: 1.5rem 0 4rem;
  }

  .tutor-hero-copy h1,
  .tutor-page .section-heading h2,
  .learn-head h2,
  .included-head h2,
  .tutor-form-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    max-width: 100%;
  }

  .hero-actions .btn,
  .learn-head-link,
  .included-head-link {
    width: 100%;
    text-align: center;
  }

  .hero-mini-links {
    gap: 0.7rem;
  }

  .tutor-hero-visual {
    min-height: 420px;
  }

  .floating-chip {
    display: none;
  }

  .hero-feature-card,
  .hero-card-main {
    width: 180px;
    min-height: 210px;
    padding: 1rem;
  }

  .hero-card-main {
    margin: 0 -12px;
  }

  .hero-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.05rem;
  }

  .hero-feature-card h3 {
    font-size: 1.2rem;
  }

  .hero-feature-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .platform-points,
  .pillar-pill-grid,
  .learn-card-grid,
  .included-grid,
  .subject-tile-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .pillar-pill {
    min-height: 80px;
    border-radius: 24px;
    font-size: 0.98rem;
  }

  .pillar-pill span {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
  }

  .learn-card h3,
  .included-card h3,
  .subject-tile h3,
  .platform-point h3 {
    font-size: 1.5rem;
  }

  .tutor-form-shell {
    padding: 1.2rem;
  }

  .tutor-form-panel {
    padding: 1.1rem;
  }

  .form-field-full {
    grid-column: auto;
  }
}

.tutor-routes-section {
  background: linear-gradient(180deg, #fcf9ff 0%, #fffdfb 100%);
}

.tutor-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.tutor-route-card {
  text-align: center;
  padding: 2rem 1.4rem 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tutor-route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 18, 40, 0.08);
}

.route-card-pink {
  background: linear-gradient(180deg, #ffe7f5 0%, #fffafb 100%);
}

.route-card-violet {
  background: linear-gradient(180deg, #efe8ff 0%, #fcfbff 100%);
}

.route-card-gold {
  background: linear-gradient(180deg, #fff4d5 0%, #fffdf8 100%);
}

.tutor-route-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.2rem;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(15, 18, 40, 0.06);
  font-size: 1.7rem;
}

.route-card-pink .tutor-route-icon {
  color: var(--pink);
}

.route-card-violet .tutor-route-icon {
  color: var(--violet);
}

.route-card-gold .tutor-route-icon {
  color: var(--gold);
}

.tutor-route-card h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  color: var(--navy);
}

.tutor-route-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 30ch;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .tutor-routes-grid {
    grid-template-columns: 1fr;
  }
}

.tutor-faq-section,
.tutor-faq-section .container,
.faq-list,
.faq-item {
  position: relative;
  z-index: 2;
}

.tutor-faq-section::before,
.tutor-faq-section::after,
.tutor-hero::before,
.tutor-hero::after,
.tutor-platform-section::before,
.tutor-platform-section::after,
.tutor-form-section::before,
.tutor-form-section::after {
  pointer-events: none;
}

@media (max-width: 767px) {
  .learn-head h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .learn-head-link {
    width: 100%;
    text-align: center;
  }
}