*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", sans-serif;
  --border-q: #e4e4e4;
}

body {
  font-family: var(--sans);
}

.site-page {
  font-family: var(--sans);
}

.font-poppins {
  font-family: var(--sans) !important;
}

.font-nautigal {
  font-family: var(--serif) !important;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* Shared Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--ink, #141e1b);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: 80px;
  height: 80px;
  animation: logoPulse 1.5s ease-in-out infinite;
}

.loading-logo svg {
  width: 100%;
  height: 100%;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }
}

/* Global Header + Footer */
.gv-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 30, 27, 0.09);
  transition: box-shadow 0.25s ease;
}

.gv-header.scrolled {
  box-shadow: 0 2px 28px rgba(20, 30, 27, 0.08);
}

.gv-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gv-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.gv-logo img {
  height: 30px;
  width: auto;
}

.gv-nav {
  margin-left: auto;
}

.gv-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gv-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #4a5e59;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gv-nav-links a:hover {
  color: #2ec4a9;
}

.gv-nav-links .gv-nav-cta {
  background: #2ec4a9;
  color: #fff;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(46, 196, 169, 0.3);
  transition: background 0.2s ease, transform 0.15s ease;
}

.gv-nav-links .gv-nav-cta:hover {
  background: #1fa88f;
  color: #fff;
  transform: translateY(-1px);
}

.gv-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 10px 8px;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.gv-menu-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  background: #2d2d2d;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gv-header.menu-open .gv-menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.gv-header.menu-open .gv-menu-line:nth-child(2) {
  opacity: 0;
}

.gv-header.menu-open .gv-menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.gv-footer {
  background: #141e1b;
  padding: 72px 60px 44px;
}

.gv-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gv-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.gv-footer-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
  margin-bottom: 18px;
}

.gv-footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.32);
  max-width: 280px;
}

.gv-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ec4a9;
  font-weight: 600;
  margin-bottom: 20px;
}

.gv-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gv-footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gv-footer-col ul li a:hover {
  color: #fff;
}

.gv-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.gv-footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.25);
}

.gv-footer-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gv-footer-trust span {
  font-size: 11.5px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── NEW FOOTER (footer-* classes, shared across all pages) ── */
footer { background: #0a1512; padding: 100px 60px 32px; position: relative; overflow: hidden; min-height: auto; box-sizing: border-box; }
.footer-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.4); max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #2ec4a9; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); text-decoration: none; transition: all .3s ease; display: inline-block; position: relative; }
.footer-col ul li a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: #2ec4a9; transition: width .3s ease; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li a:hover::after { width: 100%; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.footer-social a::before { content: ''; position: absolute; inset: 0; background: #2ec4a9; transform: scale(0); border-radius: 12px; transition: transform .3s ease; }
.footer-social a:hover { border-color: #2ec4a9; color: white; transform: translateY(-5px); }
.footer-social a:hover::before { transform: scale(1); }
.footer-social svg { width: 18px; height: 18px; position: relative; z-index: 2; }
.footer-social a:hover svg { color: white; fill: currentColor; stroke: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(46,196,169,.12); padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }

@media (max-width: 1100px) {
  .gv-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .gv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 1180px) {
  .gv-header-inner {
    padding: 0 16px;
  }

  .gv-menu-btn {
    display: flex;
  }

  .gv-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    margin-left: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(20, 30, 27, 0.09);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .gv-header.menu-open .gv-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gv-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gv-nav-links li {
    width: 100%;
  }

  .gv-nav-links a {
    display: block;
    width: 100%;
    padding: 8px 4px;
  }

  .gv-nav-links .gv-nav-cta,
  .gv-nav-links .btn-primary {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin-top: 6px;
    padding: 12px 28px;
  }
}

@media (max-width: 680px) {
  .gv-footer {
    padding: 64px 20px 44px;
  }

  .gv-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gv-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 64px 20px 24px; }
  .footer-bottom { padding-bottom: 0; }
}

/* Embla */
.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
  margin-left: -12px;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-left: 12px;
}

/* Testimonial */
.avatar-nav img {
  --offset-y: -165px;
  width: 165px;
  height: 165px;
  border: 3px solid transparent;
  border-radius: 9999px;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(100%);
  background-color: #d6d6d6;
  transform: translateY(var(--offset-y));
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease,
    border-color 0.25s ease;
}

.avatar-nav img:nth-child(2),
.avatar-nav img:nth-child(4) {
  --offset-y: -60px;
}

.avatar-nav img:nth-child(3) {
  --offset-y: -30px;
  width: 216px;
  height: 216px;
}

.avatar-nav img.active {
  opacity: 1;
  filter: none;
  border-color: #19bc9d;
  transform: translateY(var(--offset-y)) scale(1.05);
}

.journey-section {
  background-image: url("../images/home/journey-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.site-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav-list>li>a {
  position: relative;
  transition: all .3s ease;
  letter-spacing: .01em;
  text-decoration: none;
}

.site-nav-list>li>a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s ease;
  border-radius: 1px;
}

.site-nav-list>li>a:hover::after {
  width: 100%;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: #2d2d2d;
}

.nav-dropdown-toggle .icon {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.nav-dropdown .nav-dropdown-menu {
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown.open .nav-dropdown-toggle .icon {
  transform: rotate(180deg);
}

.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 10px 8px;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #2d2d2d;
  border-radius: 9999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  main {
    overflow-x: hidden;
  }

  .site-header {
    position: relative;
    z-index: 180;
  }

  .site-header-container {
    position: relative;
  }

  .hamburger-btn {
    display: flex;
  }

  .site-nav-wrap {
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
    pointer-events: none;
  }

  .site-header.menu-open .site-nav-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav-list>li>a::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown .nav-dropdown-menu {
    position: static;
    top: auto;
    min-width: 100%;
    margin-top: 10px;
    border-radius: 14px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    border-width: 0;
    padding: 0 8px;
    transition:
      max-height 0.25s ease,
      padding 0.25s ease,
      border-width 0.25s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
    border-width: 1px;
    padding: 8px;
  }

  .site-contact-btn {
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 767px) {
  .site-nav-wrap {
    left: 16px;
    right: 16px;
  }

  .avatar-nav img {
    --offset-y: -30px;
    width: 52px;
    height: 52px;
  }

  .avatar-nav img:nth-child(2),
  .avatar-nav img:nth-child(4) {
    --offset-y: -15px;
  }

  .avatar-nav img:nth-child(3) {
    --offset-y: -20px;
    width: 70px;
    height: 70px;
  }

  .nav-dropdown.open #studyDestinationMenu {
    margin-top: 10px !important;
  }
}

@media (min-width: 992px) {

  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown:focus-within .nav-dropdown-toggle .icon,
  .nav-dropdown:hover .nav-dropdown-toggle .icon {
    transform: rotate(180deg);
  }

  .site-nav-wrap {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(28px);
}

.wizard-step.is-active {
  display: block;
}

.wizard-step.is-animating {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.34s ease;
}

.wizard-step.from-above {
  transform: translateY(-28px);
}

.wizard-step.to-below {
  transform: translateY(28px);
}

.wizard-step.is-fading {
  opacity: 0;
}

.wizard-step-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  min-height: clamp(500px, calc(100vh - 118px), 760px);
  padding: clamp(16px, 2.7vw, 38px) clamp(14px, 3.8vw, 56px);
}

.wizard-step.wizard-step-hero {
  display: none;
}

.wizard-step.wizard-step-hero.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-step-hero__wrap {
  width: min(100%, 880px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  padding: clamp(6px, 1vw, 12px);
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.wizard-step-hero__headline {
  color: #2f3035;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

.wizard-step-hero__headline strong {
  color: #2f3035;
  font-weight: 700;
}

.wizard-step-hero__subcopy {
  color: #36373d;
  line-height: 1.34;
}

.wizard-step-hero__phone {
  color: #5f6067;
  font-weight: 500;
}

.wizard-step-hero__phone svg {
  color: #ec4899;
}

.wizard-step-hero__wrap .action-btn {
  border-radius: 10px;
  min-height: 40px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: clamp(12px, 0.9vw, 14px);
}

@media (max-width: 767px) {
  .wizard-step-hero {
    min-height: clamp(420px, calc(100vh - 94px), 600px);
    padding: 10px 10px;
  }

  .wizard-step-hero__wrap {
    border-radius: 0;
    padding: 8px 8px 12px;
  }

  .wizard-step-hero__headline,
  .wizard-step-hero__subcopy,
  .wizard-step-hero__phone {
    letter-spacing: -0.01em;
  }
}

#shortFormWizard .wizard-step:not(.wizard-step-hero) h2 {
  font-size: clamp(19px, 1.8vw, 27px) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.015em;
}

#shortFormWizard .wizard-step:not(.wizard-step-hero) p.text-text-muted {
  font-size: clamp(12px, 0.9vw, 15px) !important;
  line-height: 1.35;
}

#shortFormWizard .action-btn {
  min-height: 34px !important;
  padding: 6px 12px !important;
  border-radius: 10px !important;
  font-size: clamp(11px, 0.84vw, 13px) !important;
  line-height: 1.1 !important;
}

#shortFormWizard .option-btn {
  min-height: 44px !important;
  font-size: clamp(13px, 1.05vw, 16px) !important;
}

#shortFormWizard .option-btn .option-key {
  height: 22px !important;
  width: 22px !important;
  font-size: 11px !important;
}

#shortFormWizard input[name="full_name"],
#shortFormWizard input[name="age"],
#shortFormWizard input[name="phone"] {
  font-size: clamp(17px, 1.45vw, 22px) !important;
  line-height: 1.18 !important;
}

.option-btn.is-selected {
  border-color: #2d2d31;
  background: #e6e6e6;
}

.option-btn.is-selected .option-key {
  background: #2d2d31;
  border-color: #2d2d31;
  color: #ffffff;
}

.other-input {
  display: none;
}

.other-input.show {
  display: block;
}

.phone-input {
  letter-spacing: -0.01em;
}

#shortFormWizard .iti {
  width: min(560px, 100%);
  max-width: calc(100vw - 32px);
  display: block;
  position: relative;
  z-index: 30;
  isolation: isolate;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.2;
}

#shortFormWizard .iti input.phone-input {
  width: 100%;
  background: transparent;
  line-height: inherit;
  font-size: inherit !important;
  min-height: 42px;
  box-sizing: border-box;
  padding-bottom: 0;
  transform: translateY(2px);
}

#shortFormWizard .iti__selected-country {
  background: transparent !important;
  border: 0;
  padding-left: 0;
  padding-right: 3px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  min-height: 100%;
}

#shortFormWizard .iti__selected-country-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 100%;
}

#shortFormWizard .iti--separate-dial-code .iti__selected-dial-code {
  color: #2f3035;
  font-size: inherit !important;
  font-weight: 400;
  margin-left: 4px;
  margin-right: 1px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  min-height: 35px;
}

#shortFormWizard .iti__selected-flag {
  background: transparent;
}

#shortFormWizard .iti__arrow {
  border-top-color: #2f3035;
}

#shortFormWizard .iti__country-container {
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

#shortFormWizard .iti__dropdown-content {
  background: #efefef;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 0;
  width: min(560px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  max-height: min(340px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 1200;
  pointer-events: auto;
  overscroll-behavior: contain;
  top: calc(100% + 10px);
  bottom: auto;
  left: 0;
}

#shortFormWizard .iti__dropdown-content.iti__hide {
  display: none !important;
}

#shortFormWizard .iti.iti-dropdown-up .iti__dropdown-content {
  top: calc(100% + 10px);
  bottom: auto;
  margin-top: 0;
}

#shortFormWizard .iti__search-input {
  height: 38px;
  border: 0;
  border-bottom: 2px solid rgba(45, 45, 49, 0.65);
  border-radius: 0;
  background: transparent;
  padding: 0 4px 7px;
  color: #2f3035;
  font-size: 16px;
  line-height: 1.2;
  outline: none;
}

#shortFormWizard .iti__search-input::placeholder {
  color: rgba(50, 51, 56, 0.45);
}

#shortFormWizard .iti__country-list {
  flex: 1 1 auto;
  max-height: none;
  border-radius: 10px;
  margin-top: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
}

#shortFormWizard .iti__country {
  margin-bottom: 6px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 8px 10px;
  background: #f3f3f3;
  cursor: pointer;
  pointer-events: auto;
  min-height: 42px;
  display: flex;
  align-items: center;
}

#shortFormWizard .iti__country:last-child {
  margin-bottom: 0;
}

#shortFormWizard .iti__country:hover {
  background: #f8f8f8;
  border-color: rgba(45, 45, 49, 0.22);
}

#shortFormWizard .iti__country.iti__highlight {
  background: #ffffff;
  outline: 1px solid #2f3035;
}

#shortFormWizard .iti__country-name,
#shortFormWizard .iti__dial-code {
  color: #2f3035;
  font-size: 14px;
  line-height: 1.2;
}

#shortFormWizard .iti__dial-code {
  color: #65666d;
}

@media (max-width: 640px) {
  #shortFormWizard .action-btn {
    min-height: 32px !important;
    padding: 5px 11px !important;
    font-size: 11px !important;
  }

  #shortFormWizard .wizard-step:not(.wizard-step-hero) h2 {
    font-size: clamp(17px, 5.3vw, 23px) !important;
  }

  #shortFormWizard .option-btn {
    font-size: 14px !important;
  }

  #shortFormWizard .iti--separate-dial-code .iti__selected-dial-code {
    font-size: clamp(17px, 5vw, 22px);
  }

  #shortFormWizard .iti__search-input {
    font-size: 14px;
    height: 34px;
  }

  #shortFormWizard .iti__country-name,
  #shortFormWizard .iti__dial-code {
    font-size: 14px;
  }

  #shortFormWizard .iti {
    max-width: calc(100vw - 24px);
  }

  #shortFormWizard .iti__dropdown-content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: min(300px, calc(100vh - 120px));
  }
}

.iti--container {
  z-index: 1300;
}

.action-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.15);
  transform: none;
}

body.popup-open {
  overflow: hidden;
  touch-action: none;
}

.journey-popup {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.8vw, 36px);
  background: rgba(18, 18, 18, 0.66);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.journey-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.journey-popup__card {
  position: relative;
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(340px, 1fr);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.975);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
}

.journey-popup.is-open .journey-popup__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.journey-popup__content {
  background: #d7d7d7;
  padding: clamp(28px, 3.3vw, 56px) clamp(20px, 2.8vw, 42px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.journey-popup__title {
  color: #202124;
  font-size: clamp(24px, 1.95vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.journey-popup__description {
  margin-top: clamp(10px, 1.2vw, 16px);
  max-width: 360px;
  color: #33363a;
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 400;
  line-height: 1.34;
}

.journey-popup__form {
  margin-top: clamp(20px, 1.8vw, 28px);
  width: min(430px, 100%);
}

.journey-popup__form-row {
  display: flex;
  align-items: stretch;
  border: 1px solid #838383;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  min-height: clamp(46px, 3.4vw, 58px);
}

.journey-popup__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 clamp(14px, 1.35vw, 20px);
  color: #25272a;
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 500;
  line-height: 1.2;
}

.journey-popup__input:focus {
  outline: 2px solid #19bc9d;
  outline-offset: 0;
}

.journey-popup__submit {
  width: clamp(68px, 5.8vw, 96px);
  min-height: 100%;
  border: 0;
  background: #2a2b2e;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    filter 0.2s ease;
}

.journey-popup__submit:hover {
  background: #1e1f22;
  filter: brightness(1.03);
}

.journey-popup__submit svg {
  width: clamp(20px, 1.2vw, 30px);
  height: clamp(20px, 1.2vw, 30px);
}

.journey-popup__status {
  min-height: 18px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.journey-popup__status.is-error {
  color: #c62828;
}

.journey-popup__status.is-success {
  color: #14826d;
}

.journey-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(16px, 1.6vw, 24px);
  min-height: clamp(46px, 3.6vw, 60px);
  padding: 0 clamp(26px, 3.1vw, 56px);
  border-radius: 999px;
  background: #2b2c2f;
  color: #ffffff;
  font-size: clamp(12px, 0.84vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.journey-popup__cta:hover {
  background: #161616;
  transform: translateY(-1px);
}

.journey-popup__media {
  min-height: 100%;
  background: #d2d2d2;
}

.journey-popup__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 33vw, 460px);
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
  display: block;
}

.journey-popup__close {
  position: absolute;
  top: clamp(10px, 0.9vw, 16px);
  right: clamp(10px, 0.9vw, 16px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111315;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.journey-popup__close:hover {
  transform: scale(1.06);
  opacity: 1;
  background: #ffffff;
}

.journey-popup__close svg {
  width: clamp(20px, 1.45vw, 26px);
  height: clamp(20px, 1.45vw, 26px);
}

@media (max-width: 980px) {
  .journey-popup__card {
    width: min(920px, 100%);
    grid-template-columns: minmax(300px, 45%) minmax(300px, 55%);
  }

  .journey-popup__title {
    font-size: clamp(24px, 2.8vw, 32px);
  }

  .journey-popup__description {
    font-size: clamp(13px, 1.45vw, 15px);
  }
}

@media (max-width: 760px) {
  .journey-popup {
    padding: 12px;
  }

  .journey-popup__card {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .journey-popup__media img {
    min-height: 210px;
    max-height: 280px;
  }

  .journey-popup__content {
    min-height: auto;
    padding: 24px 18px 24px;
  }

  .journey-popup__title {
    font-size: clamp(22px, 6.2vw, 30px);
  }

  .journey-popup__description {
    font-size: clamp(13px, 3.8vw, 15px);
  }

  .journey-popup__submit {
    width: 64px;
  }

  .journey-popup__input {
    font-size: 14px;
  }

  .journey-popup__cta {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .journey-popup__cta {
    width: 100%;
  }
}

/* Top Universities Carousel */
.popular-universities-section,
.university-carousel,
#universitiesCarouselDots {
  overflow-anchor: none;
}

.university-carousel-logos {
  transform: translate(calc(-50% + var(--logos-shift-x, 0%)),
      calc(-50% + var(--logos-shift-y, 0%))) scale(var(--logos-scale, 1));
}

@media (prefers-reduced-motion: reduce) {

  .wizard-step,
  .wizard-step.is-animating,
  .wizard-step.from-above,
  .wizard-step.to-below,
  .wizard-step.is-fading {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .journey-popup,
  .journey-popup__card,
  .journey-popup__submit,
  .journey-popup__cta {
    transition: none !important;
  }
}

/* Home Page: Why + Testimonials */
#why {
  padding: 86px 0 96px;
  background: #ffffff;
}

#why .why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#why .why-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 56px;
}

#why .why-top > div {
  grid-column: 1 / 3;
}

#why .why-top > p {
  grid-column: 3;
}

#why .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #14a98d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#why .eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #19bc9d;
}

#why .sec-title {
  margin: 0;
  color: #2d2d2d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

#why .sec-title em {
  color: #19bc9d;
  font-style: italic;
}

#why .sec-p {
  margin: 0;
  color: #646464;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 420px;
}

#why .why-grid-wrap {
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
}

#why .why-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}

#why .why-page.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#why .why-page.exit {
  opacity: 0;
  transform: translateY(-20px);
}

#why .why-card {
  background: #f3f3f3;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#why .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #19bc9d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

#why .why-card:hover {
  border-color: rgba(25, 188, 157, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(20, 30, 27, 0.07);
}

#why .why-card:hover::before {
  transform: scaleX(1);
}

#why .why-card-num {
  margin-bottom: 14px;
  color: rgba(25, 188, 157, 0.55);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

#why .why-card-title {
  margin: 0 0 10px;
  color: #2d2d2d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

#why .why-card-body {
  margin: 0;
  color: #646464;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

#why .why-page-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

#why .wpd {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #dfdfdf;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease;
}

#why .wpd.active {
  background: #19bc9d;
  width: 44px;
}

@media (max-width: 1100px) {
  #why {
    padding: 74px 0 82px;
  }

  #why .why-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #why .why-top > div,
  #why .why-top > p {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  #why {
    padding: 64px 0;
  }

  #why .why-page {
    grid-template-columns: 1fr;
  }

  #why .why-card {
    padding: 28px 22px;
  }
}

#testimonials {
  padding: 86px 0 96px;
  background: #ffffff;
}

#testimonials .testi-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#testimonials .testi-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 56px;
}

#testimonials .testi-top > div {
  grid-column: 1 / 3;
}

#testimonials .testi-top > p {
  grid-column: 3;
}

#testimonials .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #14a98d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#testimonials .eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #19bc9d;
}

#testimonials .sec-title {
  margin: 0;
  color: #2d2d2d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

#testimonials .sec-title em {
  color: #19bc9d;
  font-style: italic;
}

#testimonials .sec-p {
  margin: 0;
  color: #646464;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 420px;
}

#testimonials .testi-cycle-wrap {
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
  padding-bottom: 44px;
}

#testimonials .testi-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  pointer-events: none;
}

#testimonials .testi-page.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

#testimonials .testi-page.exit {
  opacity: 0;
  transform: translateX(-40px);
}

#testimonials .tcard {
  background: #f3f3f3;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#testimonials .tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 30, 27, 0.09);
}

#testimonials .tcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

#testimonials .ttag {
  background: rgba(20, 30, 27, 0.06);
  color: #646464;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#testimonials .ttag.hl {
  background: rgba(25, 188, 157, 0.15);
  color: #14a98d;
}

#testimonials .tcard-openquote {
  display: block;
  margin-bottom: 8px;
  color: #19bc9d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.7;
}

#testimonials .tcard-quote {
  margin: 0 0 28px;
  padding-top: 4px;
  color: #2d2d2d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  flex: 1;
}

#testimonials .tcard-foot {
  border-top: 1px solid #dfdfdf;
  padding-top: 20px;
}

#testimonials .tcard-name {
  margin-bottom: 2px;
  color: #2d2d2d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

#testimonials .tcard-uni {
  margin-bottom: 10px;
  color: #14a98d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}

#testimonials .tcard-score {
  display: inline-block;
  background: #2d2d2d;
  color: #ffffff;
  border-radius: 5px;
  padding: 3px 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

#testimonials .testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 8px;
  margin-top: 0;
  min-height: 12px;
  z-index: 2;
}

#testimonials .tdot {
  display: block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #dfdfdf;
  cursor: pointer;
  transform-origin: center center;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

#testimonials .tdot.active {
  background: #19bc9d;
  transform: scale(1.2);
}

@media (max-width: 1100px) {
  #testimonials {
    padding: 74px 0 82px;
  }

  #testimonials .testi-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #testimonials .testi-top > div,
  #testimonials .testi-top > p {
    grid-column: auto;
  }

  #testimonials .testi-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  #testimonials {
    padding: 64px 0;
  }

  #testimonials .testi-cycle-wrap {
    padding-bottom: 38px;
  }

  #testimonials .testi-page {
    grid-template-columns: 1fr;
  }

  #testimonials .tcard {
    padding: 28px 22px;
  }

  #testimonials .tcard-quote {
    font-size: 16px;
  }
}

/* Blog Pages */
body.blog-page,
body.blog-post-page {
  --teal: #2ec4a9;
  --teal-d: #1fa88f;
  --teal-faint: rgba(46, 196, 169, 0.08);
  --ink: #141e1b;
  --mid: #4a5e59;
  --muted: #8c9e99;
  --light: #f3f8f6;
  --white: #fff;
  --border: rgba(20, 30, 27, 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", sans-serif;
}

body.blog-page .blog-hero {
  padding: 72px 60px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

body.blog-page .bh-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 196, 169, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

body.blog-page .bh-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

body.blog-page .bh-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.blog-page .bh-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

body.blog-page .bh-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1.07;
  margin-bottom: 20px;
}

body.blog-page .bh-title em {
  font-style: italic;
  color: var(--teal);
}

body.blog-page .bh-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

body.blog-page .bh-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

body.blog-page .bh-cats::-webkit-scrollbar {
  height: 4px;
}

body.blog-page .bh-cats::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

body.blog-page .cat-btn {
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  white-space: nowrap;
}

body.blog-page .cat-btn:hover,
body.blog-page .cat-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

body.blog-page .blog-main {
  padding: 72px 60px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

body.blog-page .featured-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.blog-page .featured-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

body.blog-page .featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 72px;
  transition: box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

body.blog-page .featured-card:hover {
  box-shadow: 0 16px 56px rgba(20, 30, 27, 0.1);
}

body.blog-page .fc-image {
  background: linear-gradient(135deg, #0d2420, #1a3d32);
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 36px;
}

body.blog-page .fc-image-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(46, 196, 169, 0.15) 0%, transparent 65%);
}

body.blog-page .fc-cat {
  position: absolute;
  top: 28px;
  left: 28px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

body.blog-page .fc-country {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 24px;
  pointer-events: none;
}

body.blog-page .fc-content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

body.blog-page .fc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

body.blog-page .fc-author-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

body.blog-page .fc-author-info {
  font-size: 12.5px;
  color: var(--muted);
}

body.blog-page .fc-author-info strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 13px;
}

body.blog-page .fc-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

body.blog-page .fc-excerpt {
  font-size: 15px;
  line-height: 1.72;
  color: var(--mid);
  margin-bottom: 28px;
  flex: 1;
}

body.blog-page .fc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

body.blog-page .fc-cta:hover {
  gap: 12px;
}

body.blog-page .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.blog-page .section-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

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

body.blog-page .bcard {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

body.blog-page .bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 30, 27, 0.09);
  border-color: rgba(46, 196, 169, 0.25);
}

body.blog-page .bcard-img {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

body.blog-page .bcard-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(46, 196, 169, 0.12) 0%, transparent 70%);
}

body.blog-page .bcard-cat {
  background: var(--teal);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

body.blog-page .bcard-country-bg {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  position: absolute;
  bottom: 8px;
  right: 16px;
  pointer-events: none;
}

body.blog-page .bcard-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.blog-page .bcard-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.blog-page .bcard-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
}

body.blog-page .bcard-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}

body.blog-page .bcard-excerpt {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--mid);
  flex: 1;
  margin-bottom: 20px;
}

body.blog-page .bcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

body.blog-page .bcard-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

body.blog-page .bcard-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

body.blog-page .bcard-arrow {
  font-size: 16px;
  color: var(--teal);
  transition: transform 0.2s;
}

body.blog-page .bcard:hover .bcard-arrow {
  transform: translateX(4px);
}

body.blog-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

body.blog-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.blog-post-page .post-hero {
  padding-top: 48px;
  background: linear-gradient(135deg, #0a2040 0%, #163468 100%);
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

body.blog-post-page .ph-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 169, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

body.blog-post-page .ph-big {
  position: absolute;
  bottom: -20px;
  right: 60px;
  font-family: var(--serif);
  font-size: 280px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

body.blog-post-page .ph-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 64px;
  position: relative;
  z-index: 2;
  width: 100%;
}

body.blog-post-page .ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

body.blog-post-page .ph-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

body.blog-post-page .ph-breadcrumb a:hover {
  color: var(--teal);
}

body.blog-post-page .ph-breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

body.blog-post-page .ph-cats {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

body.blog-post-page .ph-cat {
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

body.blog-post-page .ph-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

body.blog-post-page .ph-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.blog-post-page .ph-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.blog-post-page .ph-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

body.blog-post-page .ph-author-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

body.blog-post-page .ph-author-text strong {
  color: white;
  font-weight: 600;
  display: block;
}

body.blog-post-page .ph-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

body.blog-post-page .ph-read {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

body.blog-post-page .post-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}

body.blog-post-page article h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin: 52px 0 16px;
}

body.blog-post-page article h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin: 36px 0 12px;
}

body.blog-post-page article p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}

body.blog-post-page article p:last-child {
  margin-bottom: 0;
}

body.blog-post-page article strong {
  color: var(--ink);
  font-weight: 600;
}

body.blog-post-page article ul,
body.blog-post-page article ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

body.blog-post-page article li {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 8px;
}

body.blog-post-page article li::marker {
  color: var(--teal);
}

body.blog-post-page .post-lead {
  font-size: 19px;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 32px;
  font-family: var(--serif);
  font-weight: 300;
}

body.blog-post-page .post-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

body.blog-post-page .callout {
  border-radius: 12px;
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

body.blog-post-page .callout.pro {
  background: rgba(46, 196, 169, 0.07);
  border: 1px solid rgba(46, 196, 169, 0.2);
}

body.blog-post-page .callout.con {
  background: rgba(255, 80, 80, 0.05);
  border: 1px solid rgba(255, 80, 80, 0.15);
}

body.blog-post-page .callout.info {
  background: var(--light);
  border: 1px solid var(--border);
}

body.blog-post-page .callout-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

body.blog-post-page .callout.pro .callout-label {
  color: var(--teal-d);
}

body.blog-post-page .callout.con .callout-label {
  color: #c0392b;
}

body.blog-post-page .callout.info .callout-label {
  color: var(--mid);
}

body.blog-post-page .callout h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

body.blog-post-page .callout p {
  font-size: 15px;
  color: var(--mid);
  margin: 0;
}

body.blog-post-page .callout ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

body.blog-post-page .callout li {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 6px;
}

body.blog-post-page .callout.pro li::marker {
  color: var(--teal);
}

body.blog-post-page .callout.con li::marker {
  color: #c0392b;
}

body.blog-post-page .pull-quote {
  border-left: 3px solid var(--teal);
  padding: 20px 28px;
  margin: 40px 0;
  background: var(--teal-faint);
  border-radius: 0 10px 10px 0;
}

body.blog-post-page .pull-quote p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

body.blog-post-page .pull-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: var(--muted);
  margin-top: 10px;
}

body.blog-post-page .compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

body.blog-post-page .compare-table th {
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

body.blog-post-page .compare-table th:first-child {
  background: var(--ink);
}

body.blog-post-page .compare-table td {
  padding: 14px 20px;
  font-size: 14.5px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}

body.blog-post-page .compare-table tr:last-child td {
  border-bottom: none;
}

body.blog-post-page .compare-table tr:nth-child(even) td {
  background: var(--light);
}

body.blog-post-page .td-pro {
  color: var(--teal-d);
  font-weight: 600;
}

body.blog-post-page .td-con {
  color: #c0392b;
  font-weight: 600;
}

body.blog-post-page .sidebar {
  position: sticky;
  top: 90px;
}

body.blog-post-page .sidebar-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}

body.blog-post-page .sc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

body.blog-post-page .toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.blog-post-page .toc-list li a {
  display: block;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

body.blog-post-page .toc-list li:last-child a {
  border-bottom: none;
}

body.blog-post-page .toc-list li a:hover {
  color: var(--teal);
}

body.blog-post-page .toc-list li a.active {
  color: var(--teal);
  font-weight: 600;
}

body.blog-post-page .sc-cta {
  background: var(--ink);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}

body.blog-post-page .sc-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

body.blog-post-page .sc-cta h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

body.blog-post-page .sc-cta a {
  display: block;
  background: var(--teal);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(46, 196, 169, 0.3);
}

body.blog-post-page .sc-cta a:hover {
  background: var(--teal-d);
}

body.blog-post-page .sc-cta a:active {
  background: var(--teal-d);
}

body.blog-post-page .sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.blog-post-page .sc-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mid);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}

body.blog-post-page .related {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 100px;
}

body.blog-post-page .related-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 32px;
}

body.blog-post-page .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.blog-post-page .rcard {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  background: var(--white);
}

body.blog-post-page .rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(20, 30, 27, 0.08);
  border-color: rgba(46, 196, 169, 0.25);
}

body.blog-post-page .rcard-img {
  min-height: 140px;
  position: relative;
}

body.blog-post-page .rcard-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

body.blog-post-page .rcard-body {
  padding: 20px 22px 24px;
}

body.blog-post-page .rcard-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}

body.blog-post-page .rcard-meta {
  font-size: 12px;
  color: var(--muted);
}

body.blog-post-page .rcard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 12px;
  transition: gap 0.2s;
}

body.blog-post-page .rcard:hover .rcard-arrow {
  gap: 10px;
}

body.home-page .newsletter-strip,
body.blog-page .newsletter-strip,
body.blog-post-page .newsletter-strip,
body.site-page .newsletter-strip {
  background: var(--teal);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}

body.home-page .newsletter-strip::before,
body.blog-page .newsletter-strip::before,
body.blog-post-page .newsletter-strip::before,
body.site-page .newsletter-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

body.home-page .newsletter-inner,
body.blog-page .newsletter-inner,
body.blog-post-page .newsletter-inner,
body.site-page .newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

body.home-page .nl-left h3,
body.blog-page .nl-left h3,
body.blog-post-page .nl-left h3,
body.site-page .nl-left h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}

body.home-page .nl-left h3 strong,
body.blog-page .nl-left h3 strong,
body.blog-post-page .nl-left h3 strong,
body.site-page .nl-left h3 strong {
  font-weight: 600;
}

body.home-page .nl-left p,
body.blog-page .nl-left p,
body.blog-post-page .nl-left p,
body.site-page .nl-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 380px;
}

body.home-page .nl-right-label,
body.blog-page .nl-right-label,
body.blog-post-page .nl-right-label,
body.site-page .nl-right-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

body.home-page .nl-form,
body.blog-page .nl-form,
body.blog-post-page .nl-form,
body.site-page .nl-form {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
}

body.home-page .nl-input,
body.blog-page .nl-input,
body.blog-post-page .nl-input,
body.site-page .nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 14.5px;
  font-family: var(--sans);
  color: white;
}

body.home-page .nl-input::placeholder,
body.blog-page .nl-input::placeholder,
body.blog-post-page .nl-input::placeholder,
body.site-page .nl-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.home-page .nl-btn,
body.blog-page .nl-btn,
body.blog-post-page .nl-btn,
body.site-page .nl-btn {
  background: var(--ink);
  color: white;
  border: none;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0 10px 10px 0;
}

body.home-page .nl-btn:hover,
body.blog-page .nl-btn:hover,
body.blog-post-page .nl-btn:hover,
body.site-page .nl-btn:hover {
  background: #0d1a17;
}

body.home-page .nl-agree,
body.blog-page .nl-agree,
body.blog-post-page .nl-agree,
body.site-page .nl-agree {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

body.home-page .nl-agree a,
body.blog-page .nl-agree a,
body.blog-post-page .nl-agree a,
body.site-page .nl-agree a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

body.home-page .nl-agree a:hover,
body.blog-page .nl-agree a:hover,
body.blog-post-page .nl-agree a:hover,
body.site-page .nl-agree a:hover {
  color: white;
}

body.blog-page .sticky-cta,
body.blog-post-page .sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s,
    transform 0.4s;
  pointer-events: none;
}

body.blog-page .sticky-cta.visible,
body.blog-post-page .sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

body.blog-page .sticky-cta a,
body.blog-post-page .sticky-cta a {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(20, 30, 27, 0.25);
  transition:
    background 0.2s,
    transform 0.15s;
}

body.blog-page .sticky-cta a:hover,
body.blog-post-page .sticky-cta a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

body.blog-page .sp,
body.blog-post-page .sp {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@media (max-width: 1024px) {

  body.blog-page .blog-hero,
  body.blog-page .blog-main {
    padding-left: 32px;
    padding-right: 32px;
  }

  body.blog-page .featured-card {
    grid-template-columns: 1fr;
  }

  body.blog-page .fc-image {
    min-height: 260px;
  }

  body.blog-page .fc-content {
    padding: 34px 28px;
  }

  body.blog-page .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.blog-post-page .related {
    padding-left: 32px;
    padding-right: 32px;
  }

  body.blog-post-page .post-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 32px 80px;
  }

  body.blog-post-page .ph-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  body.blog-post-page .sidebar {
    position: static;
  }

  body.blog-post-page .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.blog-page .bh-title {
    font-size: clamp(34px, 8.6vw, 46px);
  }

  body.blog-page .bh-sub {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  body.blog-page .blog-main {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  body.blog-page .bcard-body {
    padding: 22px 20px 24px;
  }

  body.blog-page .fc-title {
    font-size: clamp(22px, 5.4vw, 32px);
  }

  body.blog-page .fc-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
  }

  body.blog-post-page .post-hero {
    min-height: 420px;
    padding-top: 24px;
  }

  body.blog-post-page .ph-inner {
    padding-bottom: 44px;
  }

  body.blog-post-page .ph-meta {
    gap: 12px;
  }

  body.blog-post-page .ph-divider {
    display: none;
  }

  body.blog-post-page article h2 {
    font-size: 28px;
    margin: 40px 0 14px;
  }

  body.blog-post-page article h3 {
    font-size: 21px;
    margin: 30px 0 10px;
  }

  body.blog-post-page article p,
  body.blog-post-page article li {
    font-size: 15.5px;
    line-height: 1.72;
  }

  body.blog-post-page .callout {
    padding: 20px 18px;
    margin: 28px 0;
  }

  body.blog-post-page .pull-quote {
    padding: 16px 16px 16px 18px;
  }

  body.blog-post-page .pull-quote p {
    font-size: 18px;
  }

  body.blog-post-page .sidebar-card {
    padding: 20px;
  }

  body.blog-post-page .related-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  body.home-page .newsletter-inner,
  body.blog-page .newsletter-inner,
  body.blog-post-page .newsletter-inner,
  body.site-page .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.home-page .newsletter-strip,
  body.blog-page .newsletter-strip,
  body.blog-post-page .newsletter-strip,
  body.site-page .newsletter-strip {
    padding: 56px 20px;
  }
}

@media (max-width: 640px) {
  body.blog-page .blog-hero {
    padding-top: 52px;
    padding-bottom: 46px;
  }

  body.blog-page .blog-hero,
  body.blog-page .blog-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.blog-page .blog-grid {
    grid-template-columns: 1fr;
  }

  body.blog-page .bh-cats {
    gap: 6px;
    padding-bottom: 6px;
  }

  body.blog-page .cat-btn {
    font-size: 11.5px;
    padding: 7px 14px;
  }

  body.home-page .nl-form,
  body.blog-page .nl-form,
  body.blog-post-page .nl-form,
  body.site-page .nl-form {
    flex-direction: column;
  }

  body.home-page .nl-btn,
  body.blog-page .nl-btn,
  body.blog-post-page .nl-btn,
  body.site-page .nl-btn {
    width: 100%;
    border-radius: 0;
  }

  body.blog-page .fc-image {
    min-height: 220px;
    padding: 20px;
  }

  body.blog-page .fc-cat {
    top: 16px;
    left: 16px;
  }

  body.blog-page .fc-country {
    font-size: 52px;
    right: 14px;
    bottom: 12px;
  }

  body.blog-post-page .ph-inner,
  body.blog-post-page .post-layout,
  body.blog-post-page .related {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.blog-post-page .related-grid {
    grid-template-columns: 1fr;
  }

  body.blog-post-page .ph-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  body.blog-post-page .ph-breadcrumb {
    font-size: 11px;
  }

  body.blog-post-page .ph-cats {
    flex-wrap: wrap;
  }

  body.blog-post-page .ph-cat {
    font-size: 10px;
    padding: 4px 10px;
  }

  body.blog-post-page .post-layout {
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 32px;
  }

  body.blog-post-page .rcard-body {
    padding: 16px 16px 18px;
  }

  body.blog-post-page .rcard-title {
    font-size: 16px;
  }

  body.blog-post-page .compare-table th,
  body.blog-post-page .compare-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  body.blog-page .sticky-cta,
  body.blog-post-page .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  body.blog-page .sticky-cta a,
  body.blog-post-page .sticky-cta a {
    padding: 10px 14px;
    font-size: 12px;
  }

  body.blog-post-page .ph-big {
    display: none;
  }
}

/* Home Sections Imported From new-page/Gradvisors - Website.html */
:root {
  --teal: #19bc9d;
  --teal-d: #14a98d;
  --teal-faint: rgba(25, 188, 157, 0.08);
  --teal-faint2: rgba(25, 188, 157, 0.16);
  --ink: #2d2d2d;
  --mid: #646464;
  --muted: #8c9e99;
  --light: #f3f3f3;
  --white: #ffffff;
  --border: rgba(20, 30, 27, 0.09);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding-top: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46, 196, 169, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 169, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s ease .1s forwards;
}

.hero-line {
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s ease .25s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .55);
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .9s ease .55s forwards;
}

.btn-primary {
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(46, 196, 169, 0.35);
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(46, 196, 169, 0.45);
}

.btn-primary--block {
  width: 100%;
}

.btn-primary--lg {
  min-height: 62px;
  border-radius: 10px;
  font-size: 18px;
}

.btn-outline-white {
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}

.btn-outline-white:hover {
  color: white;
}

.nl-btn-shared {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 8px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(46, 196, 169, 0.35);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.nl-btn-shared:hover {
  background: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(46, 196, 169, 0.45);
}

@media (max-width: 640px) {
  .nl-btn-shared {
    width: 100%;
  }
}

/* hero stats strip */
.hero-trust-strip {
  display: flex;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  opacity: 0;
  animation: fadeUp .9s ease .7s forwards;
}

.htrust {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.htrust:last-child {
  border-right: none;
}

.htrust-val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.htrust-val em {
  color: var(--teal);
  font-style: normal;
}

.htrust-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .04em;
  text-transform: uppercase;
}


/* hero right — dynamic uni panel */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}

.hero-uni-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hup-top {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hup-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.hup-counter {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .08em;
}

.hup-uni-stage {
  flex: 1;
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.uni-slide {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
  transform: translateY(20px);
  pointer-events: none;
  text-align: center;
}

.uni-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.uni-slide.exit {
  opacity: 0;
  transform: translateY(-20px);
}

.uni-logo-letters {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.uni-logo-letters em {
  font-style: normal;
  color: var(--teal);
}

.uni-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.2;
}

.uni-location {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.uni-student-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 196, 169, .1);
  border: 1px solid rgba(46, 196, 169, .2);
  border-radius: 10px;
  padding: 12px 18px;
  width: 100%;
  max-width: 300px;
}

.usb-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.usb-text {
  text-align: left;
}

.usb-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 1px;
}

.usb-detail {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}

.hup-progress {
  display: flex;
  gap: 6px;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  justify-content: center;
}

.hup-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12);
  flex: 1;
  max-width: 40px;
  overflow: hidden;
  cursor: pointer;
}

.hup-bar-fill {
  height: 100%;
  background: var(--teal);
  width: 0%;
  transition: width 0s;
}

.hup-bar.active .hup-bar-fill {
  width: 100%;
  transition: width 3s linear;
}

.hup-bottom {
  padding: 20px 32px;
  background: rgba(46, 196, 169, .05);
  border-top: 1px solid rgba(46, 196, 169, .15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hup-bottom-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hup-bottom-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
}


/* ── MARQUEE ── */
#marquee {
  background: rgba(20, 30, 27, 0.95);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  padding: 0 32px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  border-right: 1px solid rgba(255, 255, 255, .07);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mt {
  color: var(--teal);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── STATS BAND ── */
#stats {
  background: var(--teal);
  padding: 56px 60px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-block::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .25);
}

.stat-block:last-child::after {
  display: none;
}

.stat-val {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── WHY ── */
#why {
  padding: 100px 60px;
  background: var(--white);
}

.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.why-grid-wrap {
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.why-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.why-page.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.why-page.exit {
  opacity: 0;
  transform: translateY(-20px);
}

.why-card {
  background: var(--light);
  border-radius: 16px;
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.why-card:hover {
  border-color: rgba(46, 196, 169, .3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(20, 30, 27, 0.07);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(46, 196, 169, .55);
  line-height: 1;
  margin-bottom: 20px;
}

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
}

.why-page-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.wpd {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  cursor: pointer;
  transition: background .3s, width .3s;
}

.wpd.active {
  background: var(--teal);
  width: 44px;
}

/* ── PROCESS ── */
#process {
  padding: 0;
}

.process-top {
  background: var(--teal);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, .1) 0%, transparent 60%);
}

.process-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}

.process-h {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  color: white;
  line-height: 1.08;
  position: relative;
  z-index: 1;
}

.process-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  margin: 14px auto 0;
  max-width: 540px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pcard {
  background: var(--ink);
  padding: 52px 40px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background .25s;
}

.pcard:last-child {
  border-right: none;
}

.pcard:hover {
  background: #1e2e2a;
}

.pcard-accent {
  width: 40px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 28px;
}

.pcard-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.pcard-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pcard-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
}

.pcard-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  pointer-events: none;
}

/* ── DESTINATIONS ── */
#destinations {
  padding: 100px 60px;
  background: var(--light);
}

.dest-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

/* horizontal country cards */
.dest-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ditem {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 40px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}

.ditem:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(46, 196, 169, 0.1);
  transform: translateX(4px);
}

.ditem-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ditem-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.ditem-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-faint2);
  color: var(--teal-d);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  margin-top: 6px;
  width: fit-content;
}

.ditem-mid {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mid);
}

.ditem-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.ditem-budget {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
}

.ditem-budget span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-family: var(--sans);
}

.ditem-tags-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ditem-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 100px 60px;
  background: var(--white);
}

.testi-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 64px;
}

.testi-top > div {
  grid-column: 1 / 3;
}

.testi-top > p {
  grid-column: 3;
}

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

.tcard {
  background: var(--light);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 30, 27, 0.09);
}

.tcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.ttag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(20, 30, 27, .06);
  color: var(--mid);
}

.ttag.hl {
  background: rgba(46, 196, 169, .15);
  color: var(--teal-d);
}

.tcard-quote {
  font-family: var(--serif);
  font-size: 17.5px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  margin-bottom: 28px;
  padding-top: 4px;
}

.tcard-openquote {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--teal);
  line-height: .7;
  display: block;
  margin-bottom: 8px;
}

.tcard-foot {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.tcard-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.tcard-uni {
  font-size: 12.5px;
  color: var(--teal-d);
  font-weight: 500;
  margin-bottom: 10px;
}

.tcard-score {
  display: inline-block;
  background: var(--ink);
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 5px;
}

.testi-cycle-wrap {
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.testi-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}

.testi-page.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.testi-page.exit {
  opacity: 0;
  transform: translateX(-40px);
}

.testi-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}

.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.tdot.active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ── CTA STRIP ── */
#cta-strip {
  background: var(--ink);
  padding: 96px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(46, 196, 169, .1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-h {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
}

.cta-h em {
  font-style: italic;
  color: var(--teal);
}

.cta-p {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 44px;
}

.cta-checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin-bottom: 44px;
}

.cta-check {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-check::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
}

/* ── BOOK ── */
#book {
  padding: 100px 60px;
  background: var(--light);
}

.book-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 24px 0 32px;
}

.book-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--mid);
}

.book-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.book-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 40px rgba(20, 30, 27, 0.08);
  border: 1px solid var(--border);
}

.fhed {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.fsub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.fg label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fg input,
.fg select {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  width: 100%;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

.fg input:focus,
.fg select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 169, .1);
}

.fg .hint {
  font-size: 11.5px;
  color: var(--muted);
}

.fsub-btn {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s, transform .15s;
  margin-top: 4px;
}

.fsub-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.form-sm {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ── FAQ ── */
#faq {
  padding: 100px 60px;
  background: var(--white);
}

.faq-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.faq-sidebar {
  align-self: start;
}

.faq-sidebar .sec-p {
  font-size: 15.5px;
  color: var(--mid);
  line-height: 1.7;
  margin: 14px 0 32px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-q span {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  transition: color .2s;
}

.faq-q:hover span {
  color: var(--teal);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: transform .3s, background .2s, color .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mid);
}

/* shared helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.sec-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.sec-title em {
  font-style: italic;
  color: var(--teal);
}

.sec-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {

  .hero-inner,
  #why,
  #destinations,
  #testimonials,
  #cta-strip,
  #book,
  #faq,
  .process-top {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .why-top,
  .testi-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .stat-block::after {
    display: none;
  }

  .dest-list .ditem {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ditem-right {
    justify-content: flex-start;
  }

  .book-wrap,
  .faq-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

@media(max-width: 680px) {

  #why,
  #destinations,
  #testimonials,
  #cta-strip,
  #book,
  #faq,
  .process-top {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-inner {
    padding: 52px 20px;
  }

  .hero-trust-strip {
    flex-direction: column;
    gap: 20px;
  }

  .htrust {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  #stats {
    padding: 40px 20px;
  }

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

  .sticky-cta {
    bottom: 14px;
    right: 14px;
  }
}

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

.reel-card {
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  border-color: rgba(46, 196, 169, .3);
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9/14;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  padding-left: 4px;
  transition: background .2s, transform .2s;
}

.reel-card:hover .reel-play {
  background: var(--teal);
  transform: scale(1.1);
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
}

.reel-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: white;
  background: rgba(46, 196, 169, .25);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(46, 196, 169, .4);
}

.reel-info {
  padding: 18px 20px;
}

.reel-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.3;
}

.reel-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.55;
}

@media(max-width:1024px) {
  .reel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .reel-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CONSULTATION FORM MULTISTEP --- */

body.consultation-page {
  --teal: #2ec4a9;
  --teal-d: #1fa88f;
  --ink: #141e1b;
  --mid: #4a5e59;
  --muted: #8c9e99;
  --light: #f3f8f6;
  --white: #fff;
  --border: rgba(20, 30, 27, 0.1);
  --border-q: #e4e4e4;
  --sans: "Plus Jakarta Sans", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.consultation-page,
body.consultation-page *,
body.consultation-page *::before,
body.consultation-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══ SHELL ═══ */
.shell {
  height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

/* ═══ LEFT PANEL ═══ */
.lp {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.lp-glow1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(46, 196, 169, .13) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-glow2 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(46, 196, 169, .07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-logo {
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.lp-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* Eyebrow + heading + sub */
.lp-eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.lp-eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
  flex-shrink: 0;
}

.lp-heading {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.15;
  color: white;
  margin-bottom: 14px;
}

.lp-heading em {
  font-style: italic;
  color: var(--teal);
}

.lp-sub {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Progress */
.lp-prog {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.lp-prog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lp-prog-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.lp-prog-pct {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
}

.lp-prog-track {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
}

.lp-prog-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
  width: 0%;
}

/* Step nav */
.lp-steps {
  flex: 1;
  position: relative;
  z-index: 2;
  overflow-y: auto;
  scrollbar-width: none;
}

.lp-steps::-webkit-scrollbar {
  display: none;
}

.lp-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  transition: opacity .25s;
}

.lp-step.future {
  opacity: .22;
}

.lp-step.past {
  opacity: .42;
  cursor: pointer;
}

.lp-step.current {
  opacity: 1;
}

.lp-step.past:hover {
  opacity: .65;
}

.lp-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  transition: all .3s;
}

.lp-step.current .lp-dot {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  box-shadow: 0 0 0 4px rgba(46, 196, 169, .18);
}

.lp-step.past .lp-dot {
  background: rgba(46, 196, 169, .2);
  border-color: rgba(46, 196, 169, .4);
  color: var(--teal);
}

.dn {
  display: inline;
}

.dc {
  display: none;
}

.lp-step.past .dn {
  display: none;
}

.lp-step.past .dc {
  display: inline;
  font-size: 12px;
}

.lp-step-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  line-height: 1.3;
  transition: color .25s;
}

.lp-step.current .lp-step-name {
  color: white;
  font-weight: 600;
}

/* Contact bottom */
.lp-contact {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.lp-contact p {
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.6;
}

.lp-contact a {
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  transition: color .2s;
}

.lp-contact a:hover {
  color: var(--teal);
}

/* ═══ RIGHT PANEL ═══ */
.rp {
  position: relative;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.rp-bar {
  height: 4px;
  background: #efefef;
  flex-shrink: 0;
}

.rp-bar-fill {
  height: 100%;
  background: var(--teal);
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
  width: 0%;
}

.stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ═══ SLIDES ═══ */
.slide {
  position: absolute;
  width: 100%;
  max-width: 620px;
  padding: 0 64px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(36px);
  transition: opacity .42s ease, transform .42s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  position: relative;
}

.slide.exit-up {
  opacity: 0;
  transform: translateY(-36px);
  transition: opacity .3s ease, transform .3s ease;
}

.slide.exit-down {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .3s ease, transform .3s ease;
}

/* Welcome */
.wlc-logo {
  margin-bottom: 28px;
}

.wlc-logo img {
  height: 48px;
}

.wlc-title {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 8px;
  max-width: 480px;
}

.wlc-title strong {
  color: var(--ink);
  font-weight: 700;
}

.wlc-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: #999;
  margin-bottom: 24px;
}

.wlc-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #bbb;
  margin-bottom: 30px;
}

/* Question */
.q-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.q-eyebrow::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}

.q-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}

.q-title strong {
  font-weight: 400;
  font-style: normal;
}

.q-req {
  color: var(--teal);
}

.q-hint {
  font-family: var(--sans);
  font-size: 13.5px;
  color: #aaa;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Options */
.opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border-q);
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-family: var(--sans);
  width: 100%;
  text-align: left;
}

.opt:hover {
  border-color: var(--teal);
  background: rgba(46, 196, 169, .04);
}

.opt.selected {
  border-color: var(--teal);
  background: rgba(46, 196, 169, .07);
}

.opt.selected .ok {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.ok {
  width: 27px;
  height: 27px;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f5f5f5;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  transition: all .15s;
  font-family: var(--sans);
}

.ol {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.os {
  font-family: var(--sans);
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
  font-weight: 400;
}

/* Country grid */
.opts.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.opts.grid .opt {
  flex-direction: row;
  padding: 11px 14px;
}

/* Text inputs */
.q-inp {
  width: 100%;
  font-size: 24px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid #e4e4e4;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  display: block;
  margin-bottom: 24px;
}

.q-inp:focus {
  border-color: var(--teal);
}

.q-inp::placeholder {
  color: #ccc;
  font-style: italic;
}

.phone-row {
  display: flex;
  align-items: flex-end;
}

.phone-flag {
  font-family: var(--sans);
  font-size: 16px;
  color: #bbb;
  border-bottom: 2px solid #e4e4e4;
  padding: 12px 10px 12px 0;
  white-space: nowrap;
  transition: border-color .2s;
  line-height: 1.4;
}

/* Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ok {
  background: var(--teal);
  color: white;
  padding: 11px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
  box-shadow: 0 3px 12px rgba(46, 196, 169, .3);
}

.btn-ok:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
}

.btn-start {
  background: var(--teal);
  color: white;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(46, 196, 169, .3);
}

.btn-start:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
}

.btn-submit {
  background: var(--ink);
  color: white;
  padding: 11px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-submit:hover {
  background: #0d1a17;
  transform: translateY(-1px);
}

.kh {
  font-size: 12px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
}

.kc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  font-family: var(--sans);
}

/* Thank you */
.ty {
  text-align: center;
  padding: 20px 0;
}

.ty-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(46, 196, 169, .1);
  border: 2px solid rgba(46, 196, 169, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  color: var(--teal);
}

.ty-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}

.ty-title em {
  font-style: italic;
  color: var(--teal);
}

.ty-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.ty-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.ty-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border-q);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s, color .2s;
}

.ty-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.ty-back {
  font-family: var(--sans);
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
}

.ty-back:hover {
  color: var(--teal);
}

/* Bottom bar */
.bottom {
  flex-shrink: 0;
  height: 52px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, .98);
}

.bot-label {
  font-family: var(--sans);
  font-size: 12.5px;
  color: #ccc;
  font-weight: 600;
}

.bot-arrows {
  display: flex;
  gap: 8px;
}

.arr {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--teal);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s;
  box-shadow: 0 2px 8px rgba(46, 196, 169, .3);
}

.arr:hover {
  background: var(--teal-d);
}

.arr.disabled {
  opacity: .28;
  pointer-events: none;
}

/* Responsive */
@media(max-width:700px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .lp {
    display: none;
  }

  .bottom {
    padding: 0 20px;
  }

  .slide {
    padding: 0 24px;
  }

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

  .q-title {
    font-size: 22px;
  }
}

/* Global Header + Footer parity with homepage */
.gv-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 900;
  background: #141e1b;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1);
}

.gv-header.scrolled {
  box-shadow: none;
}

.gv-header--hidden {
  transform: translateY(-100%);
}

.gv-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-height: 80px;
  padding: 0;
}

.gv-logo img {
  height: 30px;
  width: auto;
  filter: none;
  opacity: 1;
}

.gv-nav-links {
  gap: 20px;
}

.gv-nav-links a {
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  transition: all .3s ease;
  letter-spacing: .01em;
}

.gv-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s ease;
  border-radius: 1px;
}

.gv-nav-links a:hover {
  color: #fff;
}

.gv-nav-links a:hover::after {
  width: 100%;
}

.gv-nav-links .gv-nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.gv-nav-links .gv-nav-cta::after {
  display: none !important;
}

.gv-nav-links .gv-nav-cta::before {
  display: none !important;
}

.gv-nav-links .gv-nav-cta:hover {
  background: var(--teal-d);
  color: #fff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: none;
}

.gv-menu-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.gv-menu-line {
  background: rgba(255, 255, 255, 0.9);
}

.gv-footer {
  background: #0a1512;
  padding: 100px 60px 32px;
  position: relative;
  overflow: hidden;
}

.gv-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 196, 169, 0.2), transparent);
}

.gv-footer-inner {
  position: relative;
  z-index: 1;
}

.gv-footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.gv-footer-logo {
  height: 40px;
  margin-bottom: 24px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
  transition: transform .3s ease;
}

.gv-footer-logo:hover {
  transform: scale(1.05);
}

.gv-footer-desc {
  color: rgba(255, 255, 255, .4);
  max-width: 260px;
}

.gv-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.gv-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gv-footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scale(0);
  border-radius: 12px;
  transition: transform .3s ease;
}

.gv-footer-social a svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 2;
}

.gv-footer-social a:hover {
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-5px);
}

.gv-footer-social a:hover::before {
  transform: scale(1);
}

.gv-footer-col h4 {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.gv-footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  position: relative;
  display: inline-block;
}

.gv-footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width .3s ease;
}

.gv-footer-col ul li a:hover {
  color: #fff;
}

.gv-footer-col ul li a:hover::after {
  width: 100%;
}

.gv-footer-bottom {
  border-top: 1px solid rgba(46, 196, 169, .12);
  padding-top: 28px;
}

.gv-footer-bottom p {
  color: rgba(255, 255, 255, .3);
}

@media (max-width: 1180px) {
  .gv-header-inner {
    padding: 0 20px;
  }

  .gv-nav {
    background: #0f1b18;
    backdrop-filter: none;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .gv-nav-links a {
    color: rgba(255, 255, 255, 0.76);
  }

  .gv-nav-links a::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .gv-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .gv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .gv-header-inner {
    padding: 0 16px;
  }

  .gv-footer {
    padding: 64px 20px 24px;
  }

  .gv-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .gv-footer-bottom {
    padding-bottom: 0;
  }
}

/* Unified max layout container across pages */
.site-page .container {
  max-width: 1200px !important;
}

@media (min-width: 1181px) {
  .site-page .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ── FOOTER ── */
/* FIX[FTR-01]: no extra space */ footer { background: #0a1512; padding: 100px 60px 32px; position: relative; overflow: hidden; min-height: auto; box-sizing: border-box; }
/* footer top border removed */
.footer-wave { position: absolute; top: 0; left: 0; right: 0; line-height: 0; z-index: 0; }
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-chevron-bg { position: absolute; right: -60px; top: -40px; opacity: .035; pointer-events: none; z-index: 0; }
.footer-chevron-bg svg { width: 500px; height: 534px; }
.footer-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 24px; transition: transform .3s ease; }
.footer-logo-img:hover { transform: scale(1.05); }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.4); max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); text-decoration: none; transition: all .3s ease; display: inline-block; position: relative; }
.footer-col ul li a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--teal); transition: width .3s ease; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li a:hover::after { width: 100%; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.footer-social a::before { content: ''; position: absolute; inset: 0; background: var(--teal); transform: scale(0); border-radius: 12px; transition: transform .3s ease; }
.footer-social a:hover { border-color: var(--teal); color: white; transform: translateY(-5px); }
.footer-social a:hover::before { transform: scale(1); }
/* FIX[SOC-01]: icon visibility on hover */ .footer-social svg { width: 18px; height: 18px; position: relative; z-index: 2; } .footer-social a:hover svg { color: white; fill: currentColor; stroke: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(46,196,169,.12); padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
