:root {
  --primary: #4d58b1;
  --primary-dark: #273071;
  --primary-deep: #161f32;
  --primary-bright: #5062d9;
  --accent: #fe9701;
  --accent-soft: #fbc070;
  --ink: #292929;
  --muted: #6b7280;
  --line: #eeeeee;
  --surface: #ffffff;
  --surface-soft: #f8f9f9;
  --shadow: 0 9px 37px rgba(77, 88, 177, 0.16);
  --shadow-strong: 0 18px 52px rgba(22, 31, 50, 0.2);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--surface);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 84px 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}

.top-information-section {
  position: relative;
  z-index: 11;
  padding: 8px 0;
  background: linear-gradient(270deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-size: 13px;
}

.info-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.info-section span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.theme-navigation {
  width: 100%;
  padding: 24px 0;
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand img {
  width: 82px;
  height: auto;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(77, 88, 177, 0.94), rgba(80, 98, 217, 0.93)),
    url("https://univadmithelp.com/images/bg-22-2.jpg") center / cover;
}

.hero-section::before {
  position: absolute;
  top: -18%;
  left: 52%;
  width: 72%;
  height: 140%;
  content: "";
  background: rgba(69, 79, 159, 0.5);
  transform: rotate(37deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 58px;
  align-items: center;
  min-height: 760px;
  padding: 148px 0 150px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  color: #fbd28d;
}

.hero-content h1,
.section-heading h2,
.story-grid h2,
.final-cta h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.18;
}

.hero-content h1 {
  max-width: 760px;
  font-size: 50px;
  font-weight: 800;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #e7e9ff;
  font-size: 20px;
}

.hero-copy.small {
  margin-top: 10px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
}

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

.btn-warning {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(254, 151, 1, 0.26);
}

.btn-warning:hover {
  background: #e48600;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
  width: 100%;
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-light {
  color: var(--primary-dark);
  background: #fff;
}

.btn-light:hover {
  color: #fff;
  background: var(--accent);
}

.hero-form {
  align-self: center;
  min-width: 0;
  scroll-margin-top: 190px;
}

.form-card {
  width: 100%;
  min-width: 0;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.form-card h2 {
  margin: 0 0 18px;
  color: #777;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.form-card p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-honeypot {
  display: none !important;
}

.form-card form {
  display: grid;
  gap: 14px;
}

.form-card fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-card legend {
  width: 100%;
  margin-bottom: 2px;
  color: #444;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-card label {
  color: #444;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-card .radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.required-star {
  color: var(--accent);
  font-weight: 800;
  margin-right: 4px;
}

.form-card input,
.form-card select {
  display: block;
  width: 100%;
  min-height: 43px;
  margin-top: 5px;
  padding: 10px 12px;
  color: #2a3135;
  background: #f3f8fb;
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
}

.form-card select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

.form-card input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.form-card input[type="number"]::-webkit-inner-spin-button,
.form-card input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.phone-row {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.phone-row select,
.phone-number-wrap input {
  margin-top: 0;
}

.phone-row select {
  flex: 0 0 150px;
}

.phone-number-wrap {
  flex: 1;
  min-width: 0;
}

.invalid-feedback {
  display: none;
  margin-top: 6px;
  color: #cb3837;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.form-card input.is-invalid,
.form-card select.is-invalid {
  border-color: #cb3837;
}

.form-card input.is-invalid + .invalid-feedback,
.form-card select.is-invalid + .invalid-feedback {
  display: block;
}

.form-card input[type="radio"] {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary);
}

.form-card input:focus,
.form-card select:focus {
  background: #fff;
  border-color: rgba(77, 88, 177, 0.45);
  box-shadow: 0 0 0 3px rgba(77, 88, 177, 0.12);
}

.wave-bottom {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 110px;
}

.wave-bottom svg {
  width: 100%;
  height: 100%;
}

.wave-bottom path {
  fill: #fff;
}

.stats-band {
  position: relative;
  z-index: 3;
  margin-top: -74px;
  padding-bottom: 34px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats-grid div {
  min-height: 126px;
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: #555;
  font-size: 15px;
}

.featured-section {
  padding: 36px 0 8px;
  background: #fff;
}

.featured-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.featured-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 34px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.08);
}

.featured-rail img {
  width: auto;
  max-width: 130px;
  max-height: 44px;
  object-fit: contain;
}

.section-heading {
  max-width: 1040px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading h2,
.story-grid h2 {
  color: #444;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.section-heading p,
.story-grid p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.problem-section {
  background: #fff;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(77, 88, 177, 0.18);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
}

.feature-card h3,
.step-item h3,
.admit-grid h3 {
  margin: 20px 0 10px;
  color: #292929;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.35;
}

.feature-card p,
.step-item p,
.admit-grid p {
  margin: 0;
  color: var(--muted);
}

.story-section {
  background: var(--surface-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-list span {
  padding: 9px 12px;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(77, 88, 177, 0.16);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.story-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.story-points article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.08);
}

.story-points span {
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.story-points h3 {
  margin: 4px 0 8px;
  color: #292929;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.story-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.illustration-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-section {
  background: #fff;
}

.steps-process {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.08);
}

.step-counter {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(77, 88, 177, 0.24);
}

.step-counter span {
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.step-counter strong {
  font-size: 26px;
  line-height: 1;
}

.step-item h3 {
  margin-top: 0;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.center-action.on-dark {
  margin-top: 42px;
}

.vision-section {
  background: var(--surface-soft);
}

.mentor-section {
  padding: 70px 0;
  background: #fff;
}

.mentor-list {
  display: grid;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.mentor-profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.12);
}

.mentor-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.mentor-details {
  min-width: 0;
}

.mentor-tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mentor-details h3 {
  margin: 0;
  color: #292929;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.25;
}

.mentor-details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

.results-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(77, 88, 177, 0.94), rgba(77, 88, 177, 0.94)),
    url("https://univadmithelp.com/images/bg-22-2.jpg") center / cover fixed;
}

.results-section .section-heading h2,
.results-section .section-heading p {
  color: #fff;
}

.results-section .section-kicker {
  color: #fbd28d;
}

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

.admit-grid article {
  min-height: 210px;
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.admit-grid h3 {
  margin-top: 0;
  color: #fff;
  font-size: 28px;
}

.admit-grid p {
  color: #e7e9ff;
}

.testimonial-section {
  background: #fff;
}

.written-testimonials-section {
  background: var(--surface-soft);
}

.written-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.written-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.1);
}

.written-testimonial.is-hidden {
  display: none;
}

.written-testimonial p {
  margin: 0;
  color: #555;
}

.written-testimonial p + p {
  margin-top: 12px;
}

.testimonial-copy.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.testimonial-copy.is-collapsed p {
  display: inline;
}

.testimonial-copy.is-collapsed p + p {
  margin-top: 0;
}

.testimonial-copy.is-collapsed p + p::before {
  content: " ";
}

.testimonial-read-toggle {
  align-self: flex-start;
  margin-top: 12px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.testimonial-read-toggle:hover,
.testimonial-read-toggle:focus {
  color: var(--primary);
  text-decoration: underline;
}

.written-testimonial footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.written-testimonial strong,
.written-testimonial span {
  display: block;
}

.written-testimonial strong {
  color: #292929;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.written-testimonial span {
  margin-top: 3px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-more-action {
  margin-top: 28px;
}

.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.video-carousel-window {
  overflow: hidden;
  width: 100%;
  padding: 0 58px;
}

.video-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 calc((100% - 28px) / 2);
  scroll-snap-align: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 37px rgba(77, 88, 177, 0.12);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card strong {
  display: block;
  padding: 18px;
  color: #292929;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.carousel-control {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(22, 31, 50, 0.2);
}

.carousel-control-prev {
  left: 8px;
}

.carousel-control-next {
  right: 8px;
}

.carousel-control:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.testimonial-box {
  display: flex;
  max-width: 960px;
  margin: 28px auto;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(77, 88, 177, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(77, 88, 177, 0.26);
}

.testimonial-box.alternate {
  max-width: 880px;
}

.testimonial-image {
  padding-top: 6px;
}

.testimonial-image img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.vertical-line {
  flex: 0 0 6px;
  margin: 8px 24px 8px 20px;
  background: #eee;
}

.testimonial-text p {
  margin: 0 0 14px;
  text-align: justify;
}

.testimonial-text strong {
  color: #444;
}

.final-cta {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary));
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.final-cta h2 {
  color: #fff;
  font-size: 34px;
}

.final-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #e7e9ff;
  font-size: 17px;
}

.site-footer .footer {
  min-height: 290px;
  padding: 96px 0 30px;
  background-image: url("https://univadmithelp.com/images/bg-footer-01.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-logo img {
  width: 130px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
}

.footer-links.campaign-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-links a {
  color: #292929;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright-area {
  padding: 20px 0;
  background: #f8f9f9;
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #555;
  font-size: 14px;
}

.copyright-content p {
  margin: 0;
}

.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 9px 30px rgba(13, 38, 76, 0.18);
}

.whatsapp-btn img {
  width: 28px;
  height: 28px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 34px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 180px;
  }

  .hero-form {
    justify-self: center;
    width: 100%;
    max-width: 520px;
  }

  .hero-content {
    min-width: 0;
  }

  .stats-grid,
  .card-grid.three,
  .card-grid.four,
  .story-grid,
  .admit-grid,
  .footer-grid,
  .final-cta-grid,
  .mentor-profile,
  .written-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    flex-basis: 100%;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .illustration-panel {
    display: none;
  }

  .mentor-profile {
    max-width: 560px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .top-information-section {
    padding-bottom: 34px;
  }

  .info-section {
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .theme-navigation {
    padding: 20px 0;
  }

  .navbar-brand img {
    width: 74px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section::before {
    display: none;
  }

  .hero-grid {
    padding: 214px 0 126px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .eyebrow,
  .section-kicker {
    display: block;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-copy.small {
    font-size: 16px;
  }

  .phone-row {
    flex-direction: column;
  }

  .phone-row select {
    flex-basis: auto;
  }

  .form-card {
    padding: 22px;
    text-align: left;
  }

  .form-card h2 {
    font-size: 14px;
    overflow-wrap: break-word;
  }

  .section-space {
    padding: 62px 0;
  }

  .section-heading h2,
  .story-grid h2,
  .final-cta h2 {
    font-size: 24px;
  }

  .section-heading p,
  .story-grid p,
  .final-cta p {
    font-size: 16px;
  }

  .stats-band {
    margin-top: -54px;
  }

  .step-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-counter {
    margin: 0 auto;
  }

  .mentor-profile,
  .written-testimonial {
    padding: 22px;
  }

  .mentor-details h3 {
    font-size: 26px;
  }

  .testimonial-box {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .vertical-line {
    display: none;
  }

  .testimonial-image img {
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
  }

  .testimonial-text p {
    text-align: left;
  }

  .copyright-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-btn {
    right: 14px;
    bottom: 48px;
  }
}

