:root {
  --navy: #071735;
  --navy-2: #0d1f46;
  --lime: #9bc71f;
  --lime-2: #7eaa10;
  --muted: #64708a;
  --line: #e6ebf3;
  --surface: #f7f9fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.landing-body .topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
}

.topbar__inner,
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-body .topbar__inner {
  min-height: 42px;
}

.landing-body .topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar__inner {
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand__mark {
  width: 190px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  height: auto;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
}

.navlinks a {
  position: relative;
  padding-block: 10px;
}

.navlinks a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.navlinks a:hover::after,
.navlinks a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  box-shadow: 0 14px 28px rgba(126, 170, 16, 0.22);
  cursor: pointer;
  font-weight: 900;
  gap: 9px;
  white-space: nowrap;
}

.button--nav {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button--outline {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.mobile-panel a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 58px;
  background:
    radial-gradient(circle at 78% 18%, rgba(155, 199, 31, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.hero__panel {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 520px;
  padding: 56px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(7, 23, 53, 0.08);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  content: "";
  background: var(--lime);
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.65rem, 6vw, 5.3rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--lime);
}

.hero__text {
  max-width: 510px;
  margin: 22px 0 30px;
  color: #263655;
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  align-self: end;
  min-height: 420px;
}

.world-map {
  position: absolute;
  inset: 14px 6% auto auto;
  width: min(620px, 92%);
  height: 240px;
  opacity: 0.5;
  background-image: radial-gradient(#b6c0d2 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse, #000 58%, transparent 72%);
}

.hero-team {
  position: absolute;
  right: 0;
  bottom: -56px;
  width: min(640px, 100%);
}

.hero__badge {
  position: absolute;
  right: 14%;
  bottom: 42px;
  z-index: 3;
  padding: 17px 28px;
  color: var(--white);
  background: var(--navy-2);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 20px 38px rgba(7, 23, 53, 0.26);
  font-weight: 900;
}

.section {
  padding: 62px 0;
}

.section--soft {
  background: var(--surface);
}

.section__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 950;
  gap: 16px;
  text-align: center;
  text-transform: uppercase;
}

.section__heading::before,
.section__heading::after {
  width: min(90px, 18vw);
  height: 2px;
  content: "";
  background: var(--lime);
}

.intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
}

.intro-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stat {
  min-height: 104px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stat strong {
  display: block;
  color: var(--lime-2);
  font-size: 1.8rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(7, 23, 53, 0.08);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.feature-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--lime);
  border-radius: 14px;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--services {
  grid-template-columns: repeat(4, 1fr);
}

.grid--destinations {
  grid-template-columns: repeat(8, 1fr);
}

.grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(7, 23, 53, 0.05);
}

.service-card {
  display: grid;
  min-height: 190px;
  place-items: center;
  text-align: center;
}

.service-card__icon,
.other-service__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  border-radius: 18px;
  font-size: 1.65rem;
  font-weight: 900;
}

.service-card h3,
.team-card h3,
.blog-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-card p,
.team-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.destination-card {
  display: grid;
  justify-items: center;
  min-height: 112px;
  padding: 18px 12px;
  text-align: center;
}

.flag {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  place-items: center;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.9rem;
}

.destination-card h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.other-services {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(7, 23, 53, 0.05);
}

.other-service {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid var(--line);
  gap: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.other-service:last-child {
  border-right: 0;
}

.other-service__icon {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 14px;
  font-size: 1.25rem;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.club {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(155, 199, 31, 0.16), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.club span:first-child {
  color: var(--lime-2);
  font-size: 2rem;
}

.club span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--lime);
  border-radius: 999px;
}

.team-card,
.blog-card,
.contact-card {
  overflow: hidden;
  padding: 0;
}

.card-media {
  height: 180px;
  background: linear-gradient(135deg, #eef3ff, #f7fbeb);
}

.card-media svg {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 22px;
}

.team-card__role {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--lime-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--lime-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--lime);
  border-radius: 999px;
}

.footer {
  padding: 46px 0 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 32px;
  padding-bottom: 38px;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer p {
  margin: 0;
  line-height: 1.7;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.messages {
  padding-top: 18px;
}

.message {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f6fbeb;
  color: var(--navy);
  font-weight: 800;
}

.auth-section,
.dashboard {
  min-height: 68vh;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.auth-shell {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.auth-copy h1,
.dashboard h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.auth-copy p,
.dashboard p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.auth-card,
.dashboard-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(7, 23, 53, 0.08);
}

.auth-card--single {
  max-width: 620px;
}

.auth-card form,
.auth-card {
  display: grid;
  gap: 18px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.auth-card input,
.auth-card select,
.auth-card textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  color: var(--navy);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.auth-card ul {
  margin: 0;
  padding-left: 18px;
  color: #9b1c1c;
}

.auth-section--premium {
  position: relative;
  overflow: hidden;
  min-height: 74vh;
  padding: clamp(42px, 6vw, 82px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(155, 203, 34, 0.15), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.auth-section--premium::before {
  position: absolute;
  inset: auto -140px -180px auto;
  width: 420px;
  height: 420px;
  content: "";
  background: rgba(16, 37, 79, 0.06);
  border-radius: 999px;
}

.login-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 4vw, 46px);
}

.login-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 14%, rgba(155, 203, 34, 0.28), transparent 30%),
    linear-gradient(135deg, #071735 0%, #10254f 58%, #16376f 100%);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(7, 23, 53, 0.2);
}

.login-copy > * {
  position: relative;
  z-index: 1;
}

.login-copy .eyebrow {
  color: var(--lime);
}

.login-copy h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  letter-spacing: 0;
}

.login-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.login-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.login-role-grid span,
.login-support-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 900;
}

.login-role-grid i,
.login-support-card i {
  color: var(--lime);
}

.login-support-card {
  max-width: 430px;
  margin-top: 18px;
}

.login-support-card strong,
.login-support-card small {
  display: block;
}

.login-support-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.login-card-wrap {
  display: grid;
  align-items: center;
}

.login-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(7, 23, 53, 0.13);
}

.login-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--lime), #7fb10f, var(--navy));
}

.login-card__header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 6px;
}

.login-card__header > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(7, 23, 53, 0.18);
}

.login-card h2 {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 950;
}

.login-card__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.login-card input {
  min-height: 54px;
  background: #f8fbff;
  border-radius: 16px;
}

.login-card input:focus {
  outline: 3px solid rgba(155, 203, 34, 0.22);
  border-color: var(--lime);
}

.login-button {
  min-height: 54px;
  justify-content: center;
  border: 0;
  box-shadow: 0 16px 34px rgba(126, 177, 15, 0.22);
}

.login-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 850;
}

.login-card__footer a {
  color: var(--navy);
}

.login-card__footer a:hover {
  color: var(--lime-2);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.dashboard-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.dashboard-intro {
  margin: -4px 0 0;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.dashboard-metrics article {
  min-height: 124px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(7, 23, 53, 0.07);
}

.dashboard-metrics span,
.dashboard-metrics small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-metrics strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
}

.dashboard-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 750;
  border-bottom: 1px solid var(--line);
}

.dashboard-list li:last-child {
  border-bottom: 0;
}

.dashboard-list strong {
  color: var(--lime-2);
  white-space: nowrap;
}

.crm-pipeline {
  display: flex;
  gap: 10px;
  margin: 28px 0;
  padding-bottom: 6px;
  overflow-x: auto;
}

.crm-pipeline a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(7, 23, 53, 0.06);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-form {
  display: grid;
  gap: 12px;
}

.mini-form p,
.auth-card p {
  display: grid;
  gap: 7px;
  margin: 0;
}

.mini-form label,
.auth-card label {
  color: var(--navy);
  font-weight: 850;
}

.mini-form input,
.mini-form select,
.mini-form textarea,
.auth-card input,
.auth-card select,
.auth-card textarea {
  width: 100%;
  padding: 11px 13px;
  color: var(--navy);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.dashboard-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.student-portal {
  min-height: 72vh;
  background: #fbfcfe;
}

.portal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.portal-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--navy);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(7, 23, 53, 0.12);
}

.portal-sidebar h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.15rem;
}

.portal-sidebar a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  font-weight: 800;
}

.portal-sidebar a:hover,
.portal-sidebar a:focus-visible {
  color: var(--navy);
  background: var(--lime);
}

.portal-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.portal-hero,
.portal-heading,
.progress-panel,
.portal-card,
.portal-form,
.portal-table-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(7, 23, 53, 0.06);
}

.portal-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.portal-hero h1,
.portal-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.portal-hero p,
.portal-heading p,
.portal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.progress-panel {
  display: grid;
  gap: 14px;
}

.progress-panel > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 950;
}

.progress-panel span {
  color: var(--lime-2);
}

.progress-track {
  height: 14px;
  overflow: hidden;
  background: #edf2f8;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  border-radius: inherit;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portal-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.portal-card h2,
.portal-table-card h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.portal-list,
.activity-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.portal-list li:last-child {
  border-bottom: 0;
}

.activity-list li {
  padding-left: 14px;
  color: var(--muted);
  border-left: 3px solid var(--lime);
  line-height: 1.55;
}

.portal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.portal-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.portal-form label:has(textarea),
.portal-form .button,
.portal-form > ul,
.portal-form > .errorlist {
  grid-column: 1 / -1;
}

.portal-form input,
.portal-form select,
.portal-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  color: var(--navy);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.portal-form textarea {
  min-height: 118px;
}

.portal-form .button {
  justify-self: start;
}

.portal-table-card {
  overflow: hidden;
}

.responsive-table {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

td a {
  display: inline-flex;
  margin-right: 10px;
  color: var(--lime-2);
  font-weight: 900;
}

/* Reference-style public landing page */
.landing-page {
  background: #ffffff;
}

.landing-page + .footer {
  margin-top: 8px;
}

.landing-body .topbar {
  background: #ffffff;
  color: var(--navy);
}

.landing-body .topbar__inner {
  justify-content: flex-end;
  min-height: 46px;
}

.landing-body .topbar__links {
  display: none;
}

.landing-body .topbar .social {
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: #ffffff;
  border-color: #d8deea;
  box-shadow: 0 8px 18px rgba(7, 23, 53, 0.06);
}

.landing-body .navbar {
  position: sticky;
  background: #ffffff;
  border-bottom: 0;
  backdrop-filter: none;
}

.landing-body .navbar__inner {
  min-height: 56px;
  margin-top: -46px;
}

.landing-body .brand {
  min-width: 218px;
}

.landing-body .brand__mark {
  width: 218px;
}

.landing-body .navlinks {
  gap: 27px;
  font-size: 0.93rem;
}

.landing-body .navlinks a:first-child::after {
  transform: scaleX(1);
}

.button {
  min-height: 41px;
  padding-inline: 18px;
  font-size: 0.88rem;
  box-shadow: 0 10px 22px rgba(126, 170, 16, 0.18);
}

.hero {
  padding: 28px 0 22px;
  background: #ffffff;
}

.hero__panel {
  min-height: 372px;
  padding: 48px 56px;
  grid-template-columns: 0.8fr 1.2fr;
  background: #fbfbfc;
  border-color: #edf0f5;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7, 23, 53, 0.04);
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
  line-height: 1.13;
}

.hero__line {
  width: 48px;
  height: 3px;
  margin: 24px 0 20px;
  background: var(--lime);
}

.hero__text {
  margin: 0 0 28px;
  color: #122143;
  font-size: 1.35rem;
  line-height: 1.35;
}

.hero__visual {
  min-height: 330px;
}

.world-map {
  inset: -12px 2% auto auto;
  width: min(640px, 100%);
  height: 220px;
  opacity: 0.33;
}

.hero-team {
  right: -22px;
  bottom: -52px;
  width: min(650px, 108%);
}

.hero__badge {
  right: 18%;
  bottom: 28px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 1rem;
  text-transform: uppercase;
}

.plane-route {
  position: absolute;
  top: 8px;
  right: -8px;
  z-index: 4;
  color: var(--lime);
  font-size: 3.1rem;
  transform: rotate(18deg);
}

.plane-route::before {
  position: absolute;
  right: 38px;
  top: 16px;
  width: 92px;
  height: 44px;
  content: "";
  border-top: 2px dashed var(--lime);
  border-radius: 50%;
}

.cap-outline {
  position: absolute;
  right: -4px;
  bottom: -4px;
  z-index: 4;
  color: var(--lime);
  font-size: 5.2rem;
  font-weight: 900;
  transform: rotate(12deg);
}

.landing-section {
  padding: 20px 0;
}

.intro-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 23, 53, 0.035);
}

.intro-strip strong {
  color: var(--lime-2);
  white-space: nowrap;
  text-transform: uppercase;
}

.intro-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section__heading {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
}

.section__heading::before,
.section__heading::after {
  width: 72px;
}

.grid {
  gap: 20px;
}

.grid--services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
}

.grid--services .service-card:nth-child(n+5) {
  transform: translateX(58%);
}

.card,
.service-card,
.destination-card,
.mini-card {
  border-color: #edf0f5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(7, 23, 53, 0.045);
}

.service-card {
  min-height: 178px;
  padding: 22px 18px;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  color: var(--lime);
  background: transparent;
  border-radius: 0;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.service-card p {
  font-size: 0.9rem;
}

.grid--destinations {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #edf0f5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(7, 23, 53, 0.035);
}

.destination-card {
  min-height: 84px;
  padding: 0 8px;
  border: 0;
  box-shadow: none;
}

.flag {
  width: 54px;
  height: 54px;
  margin-bottom: 9px;
  background: #ffffff;
  font-size: 2.1rem;
}

.destination-card h3 {
  font-size: 0.77rem;
}

.other-services {
  border-radius: 10px;
}

.other-service {
  min-height: 74px;
  font-size: 0.95rem;
}

.other-service__icon {
  color: var(--lime);
  background: transparent;
  font-size: 2rem;
}

.club-grid {
  gap: 42px;
}

.club {
  min-height: 74px;
  padding: 18px 70px;
  background: linear-gradient(90deg, rgba(155, 199, 31, 0.12), rgba(247, 251, 238, 0.86));
  border-radius: 10px;
}

.club span:first-child {
  width: 54px;
  color: var(--lime);
  font-size: 2.1rem;
}

.club span:last-child {
  width: 34px;
  height: 34px;
}

.landing-bottom {
  padding-bottom: 22px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mini-card {
  display: grid;
  align-content: start;
  min-height: 205px;
  padding: 18px 28px 16px;
  background: #ffffff;
}

.mini-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-card h2::before,
.mini-card h2::after {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--lime);
  border-radius: 999px;
}

.mini-card img,
.blog-photo {
  width: 100%;
  height: 86px;
  object-fit: cover;
  overflow: hidden;
  background: #eef3f8;
  border-radius: 4px;
}

.mini-card .button {
  justify-self: center;
  min-width: 210px;
  min-height: 36px;
  margin-top: 12px;
}

.blog-photo {
  position: relative;
  background:
    linear-gradient(110deg, transparent 0 60%, rgba(155, 199, 31, 0.18) 60% 100%),
    linear-gradient(180deg, #e9eef4, #ffffff);
}

.blog-photo div {
  position: absolute;
  left: 42px;
  bottom: 12px;
  width: 148px;
  height: 72px;
  background: var(--navy);
  border-radius: 6px;
  box-shadow: 120px 8px 0 -18px #ffffff, 145px -20px 0 -26px var(--lime);
}

.landing-bottom .contact-list {
  gap: 10px;
  margin-bottom: 8px;
}

.landing-bottom .contact-list li {
  grid-template-columns: 28px 1fr;
  font-size: 0.92rem;
}

.landing-bottom .contact-list span {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
}

.landing-body .footer {
  padding-top: 0;
}

.landing-body .footer__grid {
  display: none;
}

.landing-body .footer__bottom {
  background: var(--navy);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .navlinks,
  .navbar .button--nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero__panel,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 360px;
  }

  .grid--services {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--destinations {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-shell,
  .dashboard-grid,
  .dashboard-grid--two,
  .portal-layout,
  .portal-grid,
  .portal-grid--two {
    grid-template-columns: 1fr;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-copy {
    min-height: 430px;
  }

  .login-role-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-sidebar {
    position: static;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .portal-sidebar h2 {
    grid-column: 1 / -1;
  }

  .landing-body .navbar__inner {
    margin-top: 0;
  }

  .landing-body .topbar {
    display: none;
  }

  .hero__panel {
    grid-template-columns: 1fr;
  }

  .grid--services .service-card:nth-child(n+5) {
    transform: none;
  }

  .grid--destinations,
  .bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .auth-section--premium {
    padding: 34px 0;
  }

  .login-shell {
    width: min(100% - 28px, 1180px);
  }

  .login-copy,
  .login-card {
    border-radius: 22px;
  }

  .login-copy {
    min-height: 0;
    padding: 28px 22px;
  }

  .login-role-grid {
    grid-template-columns: 1fr;
  }

  .login-card__footer {
    display: grid;
  }

  .navbar__inner {
    min-height: 74px;
  }

  .brand__mark {
    width: 174px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__panel {
    min-height: 0;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero__text {
    font-size: 1.05rem;
  }

  .hero__visual {
    min-height: 290px;
  }

  .hero__badge {
    right: 50%;
    bottom: 16px;
    padding: 13px 20px;
    transform: translateX(50%);
    font-size: 0.8rem;
  }

  .section {
    padding: 44px 0;
  }

  .section__heading {
    gap: 10px;
  }

  .stats,
  .dashboard-metrics,
  .grid--services,
  .grid--three,
  .club-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .grid--destinations {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--destinations,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .club {
    align-items: flex-start;
    flex-direction: column;
  }

  .club {
    padding: 18px 24px;
  }

  .other-services {
    grid-template-columns: 1fr;
  }

  .other-service {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .other-service:last-child {
    border-bottom: 0;
  }

  .portal-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-form {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    grid-template-columns: 1fr;
  }
}
