:root {
  --ink: #071936;
  --ink-2: #183153;
  --blue: #006dff;
  --blue-2: #5b7cff;
  --cyan: #7be3ff;
  --gold: #ffc857;
  --paper: #fff7ef;
  --peach: #ffe6d8;
  --lime: #dff7c5;
  --lavender: #ece6ff;
  --white: #ffffff;
  --muted: #66748a;
  --line: #eadfd6;
  --glass: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 80px rgba(7, 25, 54, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 200, 87, 0.2), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(91, 124, 255, 0.16), transparent 28%),
    var(--paper);
  color: var(--ink);
  cursor: none;
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

a,
button,
input,
textarea {
  font: inherit;
}

a,
button {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.cursor-dot {
  background: var(--blue-2);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(21, 147, 255, 0.75);
  height: 10px;
  width: 10px;
}

.cursor-ring {
  border: 2px solid rgba(8, 102, 232, 0.38);
  border-radius: 999px;
  height: 38px;
  transition: transform 120ms ease-out, height 160ms ease, width 160ms ease, border-color 160ms ease, background 160ms ease;
  width: 38px;
}

.cursor-ring.active {
  background: rgba(8, 102, 232, 0.06);
  border-color: var(--blue);
  height: 56px;
  width: 56px;
}

.site-header {
  align-items: center;
  background: rgba(255, 247, 239, 0.9);
  border-bottom: 1px solid rgba(234, 223, 214, 0.86);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 10px clamp(16px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.brand img {
  display: block;
  height: 58px;
  object-fit: contain;
  width: 78px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 12px;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--white);
  color: var(--blue);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.language-menu {
  position: relative;
}

.language-trigger {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
}

.language-trigger::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink);
  content: "";
  margin-left: 2px;
}

.language-globe {
  align-items: center;
  color: #0e9f6e;
  display: inline-flex;
  font-size: 23px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.language-options {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(7, 25, 54, 0.18);
  display: grid;
  left: 0;
  min-width: 154px;
  opacity: 0;
  overflow: hidden;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 80;
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options,
.language-menu.open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  background: transparent;
  border-radius: 12px;
  color: var(--ink);
  justify-content: flex-start;
  min-height: 42px;
  padding: 10px 16px;
  text-align: left;
}

.language-options button:hover,
.language-options button.active {
  background: var(--lavender);
}

.language-transition {
  align-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 200, 87, 0.3), transparent 28%),
    rgba(7, 25, 54, 0.34);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: scale(1.03);
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.language-transition.show {
  opacity: 1;
  transform: scale(1);
}

.language-transition-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(7, 25, 54, 0.22);
  min-width: min(360px, calc(100vw - 40px));
  padding: 28px;
  text-align: center;
}

.language-transition-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.language-transition-card strong {
  color: var(--blue);
  display: block;
  font-size: clamp(34px, 7vw, 68px);
  letter-spacing: 0;
  line-height: 1;
}

button,
.primary-action,
.secondary-action,
.nav-cta,
.whatsapp-action,
.site-footer a {
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  min-height: 46px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

button:hover,
.primary-action:hover,
.secondary-action:hover,
.nav-cta:hover,
.whatsapp-action:hover {
  transform: translateY(-2px);
}

.nav-cta,
.primary-action {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), #003a9f);
  box-shadow: 0 16px 34px rgba(8, 102, 232, 0.25);
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  padding: 13px 18px;
  text-decoration: none;
  border-radius: 999px;
}

.secondary-action,
.clear-button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 999px;
}

.google-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  padding: 12px 16px;
}

.google-g {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4285f4;
  display: inline-flex;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.hero {
  background:
    radial-gradient(circle at 75% 16%, rgba(91, 124, 255, 0.16), transparent 24%),
    radial-gradient(circle at 30% 88%, rgba(255, 200, 87, 0.18), transparent 26%),
    var(--paper);
  color: var(--ink);
  display: grid;
  align-items: center;
  gap: clamp(34px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px);
  position: relative;
}

.hero-glow {
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  position: absolute;
}

.glow-one {
  background: rgba(0, 109, 255, 0.12);
  height: 360px;
  right: -120px;
  top: 60px;
  width: 360px;
}

.glow-two {
  background: rgba(255, 200, 87, 0.18);
  bottom: -90px;
  height: 260px;
  left: 32%;
  width: 260px;
}

.hero-copy {
  align-self: center;
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.trust-pill,
.section-kicker,
.panel-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.trust-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  padding: 9px 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(52px, 6.4vw, 88px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 30px 0 22px;
}

.student-rating {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.student-rating .stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 6px 18px rgba(255, 200, 87, 0.28);
}

.student-rating strong {
  font-size: 15px;
}

.hero-points span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.hero-media {
  align-self: center;
  justify-self: center;
  max-width: min(440px, 100%);
  position: relative;
  z-index: 2;
}

.hero-media img {
  aspect-ratio: 1.08;
  background: var(--white);
  border: 10px solid var(--white);
  border-radius: 34px;
  box-shadow: 0 38px 100px rgba(7, 25, 54, 0.16);
  object-fit: cover;
  max-height: min(56vh, 430px);
  width: 100%;
}

.media-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  position: absolute;
  backdrop-filter: blur(8px);
}

.media-card strong {
  font-size: 24px;
}

.media-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.top-card {
  left: -18px;
  top: 26px;
}

.bottom-card {
  bottom: 28px;
  right: -16px;
}

.stats-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(16px, 5vw, 72px);
}

.stats-strip div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 4px;
  padding: 28px 24px;
}

.stats-strip div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-strip strong {
  font-size: 30px;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.section {
  padding: 82px clamp(16px, 5vw, 72px);
}

.split-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.split-layout p,
.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-stack article,
.university-card,
.benefit-grid article,
.whatsapp-panel,
.applications-box {
  background: var(--glass);
  border: 1px solid rgba(219, 227, 239, 0.88);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(8px);
}

.feature-stack article {
  padding: 22px;
}

.feature-stack span {
  color: var(--blue);
  font-weight: 900;
}

.feature-stack p,
.university-card p,
.whatsapp-panel p,
.application-item small,
.empty-state {
  color: var(--muted);
  line-height: 1.6;
}

.universities-section,
.process-section,
.dashboard-section {
  background: #fffaf4;
}

.stories-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(21, 147, 255, 0.12), transparent 24%),
    var(--paper);
}

.story-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  perspective: 1000px;
}

.story-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(16, 24, 39, 0.08);
  display: grid;
  gap: 12px;
  padding: 22px;
  opacity: 0;
  transform: translateY(46px) rotateX(8deg);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 240ms ease;
}

.story-grid.in-view article {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.story-grid.in-view article:nth-child(1) {
  transition-delay: 80ms;
}

.story-grid.in-view article:nth-child(2) {
  transition-delay: 220ms;
}

.story-grid.in-view article:nth-child(3) {
  transition-delay: 360ms;
}

.story-grid article:hover {
  box-shadow: 0 30px 80px rgba(7, 25, 54, 0.14);
  transform: translateY(-8px) rotateX(0);
}

.story-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.story-grid p {
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 6px;
}

.story-grid span {
  color: var(--muted);
  font-weight: 800;
}

.section-head.centered {
  margin: 0 auto 30px;
  max-width: 760px;
  text-align: center;
}

.university-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  perspective: 1600px;
  transform-style: preserve-3d;
}

.university-card {
  backface-visibility: hidden;
  overflow: hidden;
  opacity: 1;
  position: relative;
  transform: translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 320ms ease,
    border-color 320ms ease,
    filter 320ms ease;
}

.university-grid.reveal-finished .university-card {
  opacity: 1;
  transition-delay: 0ms;
}

.university-card img {
  aspect-ratio: 1.35;
  background: var(--white);
  object-fit: contain;
  padding: 24px;
  transition: transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 320ms ease;
  width: 100%;
}

.university-card div {
  padding: 22px;
  position: relative;
  z-index: 4;
}

.university-link {
  align-items: center;
  background: #eef4ff;
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 14px;
  position: relative;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
  z-index: 5;
}

.university-card::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 109, 255, 0.3), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(0, 109, 255, 0.1));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  transition: opacity 260ms ease;
  z-index: 0;
}

.university-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  height: 160%;
  left: -120%;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  top: -30%;
  transform: rotate(18deg);
  transition: left 520ms ease, opacity 260ms ease;
  width: 70%;
  z-index: 3;
}

.university-card:hover,
.university-card.is-active {
  border-color: rgba(0, 109, 255, 0.45);
  box-shadow: 0 30px 74px rgba(7, 25, 54, 0.18);
  filter: saturate(1.08);
  transition-delay: 0ms !important;
}

.university-card:hover::before,
.university-card.is-active::before {
  opacity: 1;
}

.university-card:hover::after,
.university-card.is-active::after {
  left: 120%;
  opacity: 1;
}

.university-card:hover img,
.university-card.is-active img {
  filter: drop-shadow(0 18px 18px rgba(0, 70, 170, 0.18));
  transform: translateZ(70px) scale(1.1);
}

.university-card:hover .university-link,
.university-card.is-active .university-link {
  background: var(--blue);
  color: var(--white);
  transform: translateX(4px);
}

.university-card:nth-child(1):hover,
.university-card:nth-child(1).is-active {
  transform: translateX(-28px) translateY(-20px) translateZ(70px) rotateY(-12deg) rotateX(5deg);
}

.university-card:nth-child(2):hover,
.university-card:nth-child(2).is-active {
  transform: translateY(-30px) translateZ(110px) scale(1.045) rotateX(3deg);
}

.university-card:nth-child(3):hover,
.university-card:nth-child(3).is-active {
  transform: translateX(28px) translateY(-20px) translateZ(70px) rotateY(12deg) rotateX(5deg);
}

.university-grid.hover-active .university-card:not(.is-hovered),
.university-grid.has-active .university-card:not(.is-active) {
  filter: saturate(0.82);
  transform: translateY(12px) scale(0.96);
}

.benefits-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 109, 255, 0.1), transparent 24%),
    radial-gradient(circle at 12% 85%, rgba(255, 200, 87, 0.18), transparent 24%),
    var(--paper);
}

.benefit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article {
  align-content: start;
  display: grid;
  gap: 10px;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  text-align: left;
}

.benefit-grid article::after {
  background: linear-gradient(135deg, rgba(8, 102, 232, 0.12), rgba(110, 231, 255, 0));
  border-radius: 999px;
  content: "";
  height: 120px;
  position: absolute;
  right: -45px;
  top: -45px;
  width: 120px;
}

.benefit-grid span {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 18px;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.benefit-grid strong {
  font-size: 20px;
  line-height: 1.2;
}

.benefit-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.process-line {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-line div {
  background: linear-gradient(180deg, #ffffff, #fff8f1);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  gap: 10px;
  justify-items: start;
  min-height: 228px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  text-align: left;
  box-shadow: 0 18px 48px rgba(16, 24, 39, 0.08);
  opacity: 0;
  transform: translateY(42px) scale(0.94);
  transition: opacity 1100ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-line div:not(:last-child)::after {
  align-items: center;
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(8, 102, 232, 0.22);
  color: var(--white);
  content: ">";
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: -17px;
  top: 34px;
  width: 34px;
  z-index: 2;
}

.process-line strong {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.process-line span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.process-line p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.process-line.in-view div {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-line.in-view div:nth-child(1) {
  transition-delay: 180ms;
}

.process-line.in-view div:nth-child(2) {
  transition-delay: 680ms;
}

.process-line.in-view div:nth-child(3) {
  transition-delay: 1180ms;
}

.process-line.in-view div:nth-child(4) {
  transition-delay: 1680ms;
}

.process-line.in-view div:nth-child(5) {
  transition-delay: 2180ms;
}

.application-section {
  background:
    linear-gradient(180deg, rgba(0, 109, 255, 0.04), rgba(0, 109, 255, 0)),
    var(--paper);
}

.whatsapp-panel {
  display: grid;
  gap: 20px;
  margin: 26px auto 0;
  max-width: 980px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
}

.whatsapp-panel::before {
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 62%);
  content: "";
  height: 300px;
  position: absolute;
  right: -90px;
  top: -110px;
  width: 300px;
}

.whatsapp-copy {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.whatsapp-icon {
  align-items: center;
  background: linear-gradient(135deg, #25d366, #0f9f4e);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.25);
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 76px;
  justify-content: center;
  width: 76px;
}

.whatsapp-copy h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.whatsapp-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.whatsapp-copy strong {
  color: var(--blue);
  display: inline-block;
  font-size: 20px;
}

.whatsapp-action {
  align-items: center;
  background: linear-gradient(135deg, #25d366, #0f9f4e);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.22);
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  justify-self: start;
  padding: 14px 20px;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.quick-contact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.quick-contact-grid div {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  gap: 10px;
  font-weight: 900;
  padding: 14px;
}

.quick-contact-grid span {
  align-items: center;
  background: #e8f8ef;
  border-radius: 999px;
  color: #0f9f4e;
  display: flex;
  flex: 0 0 auto;
  height: 30px;
  justify-content: center;
  width: 30px;
}

label {
  color: var(--ink);
  display: grid;
  font-weight: 900;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  outline: none;
  padding: 14px 15px;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 102, 232, 0.12);
}

textarea {
  resize: vertical;
}

.full {
  width: 100%;
}

.form-note {
  color: var(--blue);
  font-weight: 900;
  min-height: 22px;
}

.signed-in {
  align-items: center;
  background: #eef5ff;
  border: 1px solid #d7e8ff;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  padding: 12px;
}

.signed-in small {
  color: var(--muted);
  display: block;
}

.avatar {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.applications-box {
  box-shadow: none;
  margin-top: 24px;
  overflow: hidden;
}

.applications-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 18px 20px;
}

.clear-button {
  min-height: 38px;
  padding: 8px 13px;
}

.applications-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.application-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.application-item p {
  margin-bottom: 0;
}

.cta-band {
  align-items: center;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 200, 87, 0.22), transparent 26%),
    linear-gradient(135deg, var(--ink), #163f84);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 clamp(16px, 5vw, 72px) 82px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  border-radius: 28px;
}

.cta-band::after {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
}

.cta-band span {
  color: var(--cyan);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cta-band strong {
  font-size: clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 1;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding: 48px clamp(16px, 5vw, 72px);
}

.site-footer img {
  margin-bottom: 14px;
  width: 150px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  font-weight: 700;
  min-height: 0;
  padding: 5px 0;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan);
}

.social-icons {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  font-size: 24px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  min-height: 46px;
  padding: 0;
  text-decoration: none;
  width: 46px;
}

.social-icons a:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-3px);
}

.chat-toggle {
  align-items: center;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: var(--shadow);
  display: flex;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  position: fixed;
  right: 22px;
  width: 58px;
  z-index: 80;
}

.chat-toggle img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.chat-toggle:hover {
  border-color: rgba(0, 109, 255, 0.35);
  box-shadow: 0 20px 54px rgba(0, 80, 190, 0.25);
  transform: translateY(-4px) scale(1.05);
}

.chatbox {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  bottom: 92px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto minmax(140px, 240px) auto auto;
  max-height: min(430px, calc(100vh - 120px));
  max-width: calc(100vw - 32px);
  overflow: hidden;
  position: fixed;
  right: 22px;
  width: 340px;
  z-index: 90;
}

.chatbox header {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 16px;
}

.chat-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.chat-brand > img {
  background: var(--white);
  border-radius: 12px;
  height: 42px;
  object-fit: contain;
  padding: 3px;
  width: 42px;
}

.chatbox header small {
  color: rgba(255, 255, 255, 0.76);
  display: block;
}

.chatbox header button {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  min-height: 34px;
  padding: 0 12px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 12px;
}

.bot-message,
.user-message {
  border-radius: 16px;
  line-height: 1.45;
  margin: 0;
  max-width: 88%;
  padding: 10px 12px;
}

.bot-message {
  align-self: flex-start;
  background: #eef5ff;
}

.user-message {
  align-self: flex-end;
  background: var(--blue);
  color: var(--white);
}

.chat-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px;
}

.chat-suggestions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 10px 10px;
  scrollbar-width: none;
}

.chat-suggestions::-webkit-scrollbar {
  display: none;
}

.chat-suggestions button {
  background: #eef5ff;
  border: 1px solid #d8e8ff;
  border-radius: 999px;
  color: var(--blue);
  flex: 0 0 auto;
  font-size: 11px;
  min-height: 34px;
  padding: 7px 10px;
}

.typing-message {
  align-items: center;
  display: inline-flex;
  gap: 5px;
  width: fit-content;
}

.typing-message span {
  animation: typingDot 900ms infinite ease-in-out;
  background: var(--muted);
  border-radius: 999px;
  height: 6px;
  width: 6px;
}

.typing-message span:nth-child(2) {
  animation-delay: 150ms;
}

.typing-message span:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes typingDot {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.chat-form input {
  border-radius: 999px;
  padding: 11px 13px;
}

.chat-form button {
  background: var(--blue);
  color: var(--white);
  min-height: 42px;
  padding: 0 14px;
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

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

@media (max-width: 880px) {
  body {
    cursor: auto;
  }

  a,
  button {
    cursor: pointer;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .hero,
  .split-layout,
  .university-grid,
  .story-grid,
  .process-line,
  .quick-contact-grid,
  .stats-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-self: center;
    max-width: 560px;
    width: 100%;
  }

  .process-line div:not(:last-child)::after {
    content: "";
  }

  .university-card:nth-child(1):hover,
  .university-card:nth-child(1).is-active,
  .university-card:nth-child(2):hover,
  .university-card:nth-child(2).is-active,
  .university-card:nth-child(3):hover,
  .university-card:nth-child(3).is-active {
    transform: translateY(-18px) scale(1.02);
  }

  .university-grid.hover-active .university-card:not(.is-hovered),
  .university-grid.has-active .university-card:not(.is-active) {
    transform: translateY(0) scale(0.98);
  }

  .stats-strip div,
  .stats-strip div:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand img {
    height: 50px;
    width: 68px;
  }

  .nav-cta {
    font-size: 12px;
    min-height: 40px;
    padding: 9px 11px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-trigger {
    min-height: 40px;
    padding: 8px 10px;
  }

  .language-trigger span:last-child {
    display: none;
  }

  .language-options {
    left: auto;
    right: 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-media {
    max-width: 390px;
  }

  .media-card {
    padding: 10px 12px;
  }

  .media-card strong {
    font-size: 20px;
  }

  .section {
    padding: 62px 16px;
  }

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

  .whatsapp-copy {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .applications-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .chatbox {
    bottom: 84px;
    right: 12px;
    width: calc(100vw - 24px);
  }
}
