:root {
  --bg: #060a0a;
  --bg-2: #0a1212;
  --card: rgba(255, 255, 255, 0.03);
  --card-solid: #0d1616;
  --line: rgba(148, 222, 209, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --teal: #2fe6cb;
  --teal-2: #38bdf8;
  --teal-soft: rgba(47, 230, 203, 0.12);
  --ink: #ffffff;
  --dim: #ffffff;
  --faint: #ffffff;
  --radius: 14px;
  --sidebar-w: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.grad-text {
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-btn {
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  color: #03211c;
  background-size: 160% 100%;
  background-position: 0% 0%;
  transition: background-position .35s ease, transform .15s ease;
}

.grad-btn:hover {
  background-position: 100% 0%;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 100px;
  border: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.02);
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- top header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #141414;
  border: 1px solid rgba(232, 98, 44, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-mid {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mid .pill {
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}

.nav-mid .pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  color: var(--dim);
}

.icon-btn:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  font-size: 14px;
  color: var(--dim);
}

.login-link:hover {
  color: var(--ink);
}

/* ---------- left icon rail ---------- */
.rail {
  position: fixed;
  left: 0;
  top: 0px;
  bottom: 0;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 10px 20px;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 18, 18, 0.6), rgba(10, 18, 18, 0.86));
  border-right: 1px solid var(--line-soft);
  overflow: hidden;
  transition: width .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s ease;
}

.rail:hover {
  width: 208px;
  box-shadow: 12px 0 32px rgba(0, 0, 0, 0.45);
}

.rail a {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 44px;
  border-radius: 11px;
  padding: 0 11px;
  color: var(--faint);
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}

.rail-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail-icon svg {
  width: 19px;
  height: 19px;
}

.rail .label {
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s ease .04s, transform .2s ease .04s;
}

.rail:hover .label {
  opacity: 1;
  transform: translateX(0);
}

.rail a:hover {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.04);
}

.rail a.active {
  color: #03211c;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
}

.rail a.active:hover {
  color: #03211c;
}

main {
  margin-left: var(--sidebar-w);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 96px 28px 64px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 10, 10, 0.22) 0%, rgba(6, 10, 10, 0.38) 45%, rgba(6, 10, 10, 0.62) 78%, var(--bg) 100%);
}

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

.hero-float {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(10, 20, 20, 0.55);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  backdrop-filter: blur(4px);
}

.hero-float svg {
  width: 22px;
  height: 22px;
}

.hf-1 {
  top: 18%;
  left: 8%;
  animation: float 4.2s ease-in-out infinite;
}

.hf-2 {
  top: 62%;
  left: 5%;
  animation: float 3.6s ease-in-out infinite .4s;
}

.hf-3 {
  top: 14%;
  right: 9%;
  animation: float 3.9s ease-in-out infinite .2s;
}

.hf-4 {
  top: 60%;
  right: 6%;
  animation: stampPress 4s ease-in-out infinite;
}

@media (max-width:880px) {
  .hero-float {
    display: none;
  }
}

/* flying plane across hero */
.plane-fly {
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  color: var(--teal);
  animation: planeAcross 10s linear infinite;
  filter: drop-shadow(0 0 6px rgba(47, 230, 203, 0.5));
}

@keyframes planeAcross {
  0% {
    left: -6%;
    top: 24%;
    transform: rotate(10deg) scale(0.75);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    left: 50%;
    top: 12%;
    transform: rotate(4deg) scale(1);
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 106%;
    top: 20%;
    transform: rotate(10deg) scale(0.75);
    opacity: 0;
  }
}

@media (max-width:880px) {
  .plane-fly {
    display: none;
  }
}

/* rising bubbles */
.bubble {
  position: absolute;
  bottom: -24px;
  border-radius: 50%;
  z-index: 2;
  background: rgba(47, 230, 203, 0.14);
  border: 1px solid rgba(47, 230, 203, 0.4);
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  12% {
    opacity: 0.75;
  }

  85% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-560px) scale(1.35);
    opacity: 0;
  }
}

/* gentle skyline drift */
.skyline {
  animation: skylineDrift 7s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes skylineDrift {

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

  50% {
    transform: translateY(-3px) scaleY(1.006);
  }
}

.ring-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 26px;
  position: relative;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(47, 230, 203, 0.35);
}

.ring.r2 {
  inset: -14px;
  border-color: rgba(47, 230, 203, 0.16);
  animation: spin 22s linear infinite;
}

.ring.r2::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px 2px var(--teal);
}

.ring.sweep {
  inset: 0;
  border: none;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(47, 230, 203, 0.55), transparent 32%, transparent 100%);
  animation: spin 3.2s linear infinite;
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 60%);
  mask: radial-gradient(circle, transparent 58%, #000 60%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ring-logo {
  position: absolute;
  inset: 16px;
  border-radius: 14px;
  background: #0b1414;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
}

.hero h1 {
  font-size: clamp(30px, 4.6vw, 46px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .tagline {
  margin-top: 12px;
  font-size: 16px;
  color: var(--teal);
  font-weight: 500;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tagline .rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  border-radius: 2px;
}

.checker {
  margin: 40px auto 0;
  max-width: 520px;
  text-align: left;
  background: rgba(10, 18, 18, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
}

.checker-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 600;
}

.checker-title .icon {
  color: var(--teal);
  width: 19px;
  height: 19px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.select {
  width: 100%;
  background: #0d1616;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
}

.select option {
  background: #0d1616;
  color: #ffffff;
}

.checker .grad-btn {
  width: 100%;
  padding: 13px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px auto 0;
  max-width: 640px;
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
}

.stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

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

.stat b {
  display: block;
  font-family: "Space Grotesk";
  font-size: 26px;
  font-weight: 700;
}

.stat b.g {
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--faint);
  text-transform: uppercase;
}

/* ---------- destinations ---------- */
.section {
  padding: 76px 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-head .kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-head p {
  color: var(--faint);
  font-size: 14.5px;
  margin-top: 12px;
}

.dest-marquee-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  padding: 10px 0 24px;
  margin: auto;
}

.dest-marquee {
  display: flex !important;
  width: max-content !important;
  user-select: none;
  animation: destMarqueeScroll 28s linear infinite !important;
  -webkit-animation: destMarqueeScroll 28s linear infinite !important;
  will-change: transform;
}

.dest-marquee:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

.dest-marquee-track {
  display: flex !important;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0 !important;
}

@keyframes destMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes destMarqueeScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}

.dest-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}

.dest-scroll::-webkit-scrollbar {
  height: 6px;
}

.dest-scroll::-webkit-scrollbar-thumb {
  background: rgba(47, 230, 203, 0.3);
  border-radius: 10px;
}

.dest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: 112px;
}

.dest-card {
  width: 112px;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #0c1818, #081010);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(47, 230, 203, 0.16), 0 0 22px rgba(47, 230, 203, 0.16);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(47, 230, 203, 0.45), 0 0 30px rgba(47, 230, 203, 0.32);
}

.dest-flag {
  height: 100%;
  flex-shrink: 0;
}

.dest-visa-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dest-visa-body svg {
  width: 38px;
  height: 38px;
  color: var(--teal);
  opacity: 0.9;
}

.dest-visa-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--teal);
  background: rgba(6, 10, 10, 0.65);
  padding: 2px 6px;
  border-radius: 4px;
}

.dest-name {
  font-size: 12.5px;
  color: var(--dim);
  text-align: center;
}

/* ---------- services ---------- */
.toggle-row {
  display: flex;
  justify-content: center;
  margin: -8px 0 40px;
}

.toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.toggle button {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--faint);
  font-weight: 500;
  transition: color .15s ease;
}

.toggle button.active {
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  color: #03211c;
}

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

.service-card {
  background: var(--card-solid);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.card-banner {
  height: 130px;
  position: relative;
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(47, 230, 203, 0.16), transparent 60%),
    linear-gradient(160deg, #0c1818, #081010);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-icon-main {
  width: 84px;
  height: 84px;
  color: var(--teal);
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.banner-icon-sm {
  position: absolute;
  width: 24px;
  height: 24px;
  color: var(--teal);
  opacity: 0.8;
  z-index: 1;
}

.banner-icon-sm.dim {
  opacity: 0.9;
  color: var(--teal-2);
}

.bi-tl {
  top: 16px;
  left: 20px;
}

.bi-tr {
  top: 16px;
  right: 22px;
}

.bi-bl {
  bottom: 16px;
  left: 34px;
}

.bi-br {
  bottom: 14px;
  right: 34px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes stampPress {

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

  88% {
    transform: scale(0.9) rotate(-5deg);
  }

  94% {
    transform: scale(1.05) rotate(3deg);
  }
}

@keyframes swapArrows {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(3px) rotate(8deg);
  }
}

@keyframes riseBuild {

  0%,
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1.05);
    transform-origin: bottom;
  }
}

@keyframes pulseSquares {

  0%,
  100% {
    opacity: 0.95;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes dashFly {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes idCardGlow {

  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.45;
  }
}

.icon-float {
  animation: float 4s ease-in-out infinite;
}

.icon-fly {
  animation: float 3.6s ease-in-out infinite;
}

.icon-fly .flight-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: dashFly 2.6s ease-in-out infinite alternate;
}

.icon-swap {
  animation: swapArrows 2.4s ease-in-out infinite;
}

.icon-rise {
  animation: riseBuild 3.2s ease-in-out infinite;
}

.icon-squares rect {
  animation: pulseSquares 2.4s ease-in-out infinite;
}

.icon-squares rect:nth-child(2) {
  animation-delay: .3s;
}

.icon-squares rect:nth-child(3) {
  animation-delay: .6s;
}

.icon-squares rect:nth-child(4) {
  animation-delay: .9s;
}

.icon-stamp {
  animation: stampPress 3.6s ease-in-out infinite;
}

.icon-card {
  animation: idCardGlow 2.8s ease-in-out infinite;
}

.anim-d1 {
  animation-delay: .45s;
}

.anim-d2 {
  animation-delay: .9s;
}

.anim-d3 {
  animation-delay: 1.35s;
}

.card-tag-top {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-transform: uppercase;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  font-size: 19px;
}

.service-tag {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
}

.service-card p.desc {
  font-size: 13.5px;
  color: var(--faint);
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--dim);
}

.service-meta .dur {
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-meta .dur svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
  stroke: #ffffff;
}

.service-meta b {
  font-family: "Space Grotesk";
  color: var(--teal);
  font-size: 16px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px 24px;
}

.card-actions .grad-btn {
  border-radius: 10px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 600;
}

.card-actions .btn-ghost {
  border-radius: 10px;
  padding: 12px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.card-actions .btn-ghost svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}

/* ---------- detail sections ---------- */
.detail-section {
  border-top: 1px solid var(--line-soft);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.detail-section.rev .detail-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.detail-section.rev .detail-visual {
  order: 2;
}

.detail-visual {
  aspect-ratio: 1/1;
  border-radius: 20px;
  background:
    radial-gradient(120% 120% at 30% 15%, rgba(47, 230, 203, 0.14), transparent 60%),
    linear-gradient(160deg, #0c1818, #080f0f);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.detail-visual svg {
  width: 38%;
  height: 38%;
  color: var(--teal);
}

.detail-visual .ring-deco {
  position: absolute;
  border: 1px solid rgba(47, 230, 203, 0.18);
  border-radius: 50%;
}

.detail-visual .ring-deco.rd1 {
  inset: 16%;
}

.detail-visual .ring-deco.rd2 {
  inset: 28%;
  animation: spin 30s linear infinite;
}

.detail-text .kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.detail-text>p {
  color: var(--faint);
  font-size: 14.5px;
  margin-bottom: 22px;
  max-width: 48ch;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--dim);
}

.detail-list li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- affiliations / trust ---------- */
.trust-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--card-solid);
  transition: border-color .15s ease, transform .15s ease;
}

.badge-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.badge-mark {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: #f2f4f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-mark svg {
  width: 27px;
  height: 27px;
}

.badge-card span.name {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.3;
}

.trust-sub {
  margin-top: 56px;
}

/* ---------- process ---------- */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.process-step .num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--faint);
}

/* ---------- testimonials ---------- */
/* ---------- testimonials carousel ---------- */
.testi-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-track {
  overflow: hidden;
  border-radius: var(--radius);
}

.testi-slides {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.testi-slide {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  box-sizing: border-box;
}

.testi-card {
  height: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: var(--card-solid);
}

.testi-card p {
  font-size: 15px;
  color: var(--dim);
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #03211c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-who b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testi-who span {
  font-size: 12px;
  color: var(--faint);
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.testi-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}

.testi-arrow:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background .2s ease, transform .2s ease;
  padding: 0;
}

.testi-dot.active {
  background: var(--teal);
  transform: scale(1.35);
}

/* ---------- FAQ ---------- */
.faq-section {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}

.faq-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--card-solid);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item summary .faq-ic svg {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}

.faq-item[open] summary .faq-ic svg {
  transform: rotate(45deg);
}

.faq-item .faq-a {
  padding: 0 50px 20px 22px;
  font-size: 13.5px;
  color: var(--faint);
  line-height: 1.65;
}

/* ---------- cta ---------- */
.cta-band {
  padding: 70px 0;
  text-align: center;
  background: radial-gradient(80% 140% at 50% 0%, rgba(47, 230, 203, 0.08), transparent 60%);
}

.cta-band h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 20ch;
  margin: 0 auto 14px;
}

.cta-band p {
  color: var(--faint);
  font-size: 14.5px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}

.cta-row .grad-btn {
  border-radius: 10px;
  padding: 13px 26px;
  font-weight: 600;
}

/* ---------- footer ---------- */
footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line-soft);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}

.foot-grid h4 {
  font-size: 12.5px;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-grid a,
.foot-grid p {
  font-size: 13.5px;
  color: var(--faint);
  margin: 0;
}

.foot-grid a:hover {
  color: var(--teal);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 12px;
  color: var(--faint);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- floating chat ---------- */
.chat-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03211c;
  box-shadow: 0 8px 24px rgba(47, 230, 203, 0.28);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(47, 230, 203, 0.28);
  }

  50% {
    box-shadow: 0 8px 30px rgba(47, 230, 203, 0.5);
  }
}

.chat-fab svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 880px) {
  .rail {
    display: none;
  }

  main {
    margin-left: 0;
  }

  .nav-mid {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .process-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .testi-carousel {
    max-width: 100%;
  }

  .testi-slides {
    gap: 16px;
  }

  .testi-slide {
    flex: 0 0 100%;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .stat-row {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 33%;
    border-right: none;
    margin-bottom: 14px;
  }

  .detail-grid,
  .detail-section.rev .detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-section.rev .detail-visual {
    order: 0;
  }

  .detail-visual {
    aspect-ratio: 16/9;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

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