@font-face {
  font-family: "Alexandria";
  src: url("fonts/alexandria-arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: "Alexandria";
  src: url("fonts/alexandria-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 8rem;
  overflow-x: clip;
}

body {
  font-family: "Alexandria", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  direction: rtl;
  text-align: right;
  overflow-x: clip;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s ease;
}

ul {
  list-style: none;
}

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a2e;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
  color: #4a5568;
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head h2 {
  color: #063b75;
  margin-bottom: 1rem;
}
.section-head p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.s-badge {
  display: inline-block;
  padding: 5px 1rem;
  background: rgba(0, 169, 198, 0.1);
  color: #00a9c6;
  border: 1px solid rgba(0, 169, 198, 0.25);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.s-badge.s-badge-orange {
  background: rgba(255, 181, 27, 0.1);
  color: rgb(241.2, 162.9157894737, 0);
  border-color: rgba(255, 181, 27, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  font-family: "Alexandria", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.join-us-cta {
  display: flex;
  justify-content: center;
}
.join-us-cta-btn {
  width: 300px;
  text-align: center;
  justify-content: center;
}
.btn.btn-full {
  width: 100%;
}
.btn.btn-primary {
  background: #22a953;
  color: #ffffff;
  border-color: #22a953;
  box-shadow: 0 4px 18px rgba(34, 169, 83, 0.3);
}
.btn.btn-primary:hover {
  background: rgb(27.1665024631, 135.0334975369, 66.318226601);
  border-color: rgb(27.1665024631, 135.0334975369, 66.318226601);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 169, 83, 0.4);
}
.btn.btn-primary:active {
  transform: translateY(0);
}
.btn.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}
.btn.btn-hero-primary {
  background: #ffb51b;
  color: #ffffff;
  border-color: #ffb51b;
  box-shadow: 0 4px 20px rgba(255, 181, 27, 0.35);
  font-size: 1.02rem;
  padding: 0.9rem 2rem;
}
.btn.btn-hero-primary:hover {
  background: rgb(231, 156.0263157895, 0);
  border-color: rgb(231, 156.0263157895, 0);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 181, 27, 0.4);
}
.btn.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  font-size: 1.02rem;
  padding: 0.9rem 2rem;
}
.btn.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
@keyframes badgeDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  width: 46px;
  height: 46px;
  background: #063b75;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.28s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #00a9c6;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 169, 198, 0.4);
}

/* ── WhatsApp Floating Button ─────────────────────────── */
.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71 0%, #25d366 50%, #1aab55 100%);
  color: #fff;
  box-shadow:
    0 6px 24px rgba(18, 140, 74, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
  text-decoration: none;
}

/* Ring 1 */
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.38);
  animation: waRipple 2.6s ease-out infinite;
}

/* Ring 2 — staggered */
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.22);
  animation: waRipple 2.6s ease-out infinite 1.3s;
}

/* Icon */
.floating-whatsapp .wa-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
  animation: waWiggle 3.5s ease-in-out infinite 2s;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #fff;
  color: #1a1a2e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 1;
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #fff;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 14px 38px rgba(18, 140, 74, 0.52),
    0 4px 12px rgba(0, 0, 0, 0.16);
}
.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 576px) {
  .floating-whatsapp {
    right: 1rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
  }
  .wa-tooltip {
    display: none;
  }
}

@keyframes waRipple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes waWiggle {
  0%,
  60%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  65% {
    transform: rotate(-14deg) scale(1.08);
  }
  70% {
    transform: rotate(12deg) scale(1.08);
  }
  75% {
    transform: rotate(-8deg) scale(1.04);
  }
  80% {
    transform: rotate(6deg) scale(1.02);
  }
  85% {
    transform: rotate(0deg) scale(1);
  }
}
.header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 0.7rem 0;
  background: transparent;
  transition:
    background 0.28s ease,
    padding 0.28s ease,
    box-shadow 0.28s ease;
}

/* FAQ page */
.faq-page { background: #f7fafc; }
.faq-hero {
  padding: 10.5rem 0 5.5rem;
  text-align: center;
  background: radial-gradient(circle at 15% 10%, rgba(0, 169, 198, .28), transparent 28%), linear-gradient(135deg, #063b75 0%, #07558f 58%, #008ca7 100%);
}
.faq-hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4.5rem); margin: .6rem 0 1rem; }
.faq-hero p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; }
.faq-eyebrow { display: inline-block; color: #fff; border: 1px solid rgba(255, 255, 255, .32); background: rgba(255, 255, 255, .1); padding: .45rem 1rem; border-radius: 999px; font-size: .84rem; }
.faq-content { padding: 5rem 0 7rem; }
.faq-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 3rem; align-items: start; }
.faq-nav { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: .25rem; background: #fff; border: 1px solid #e4edf4; border-radius: 20px; padding: 1.25rem; box-shadow: 0 12px 35px rgba(6, 59, 117, .07); }
.faq-nav strong { color: #063b75; padding: .4rem .65rem .85rem; }
.faq-nav a { color: #607085; text-decoration: none; padding: .65rem .75rem; border-radius: 10px; font-size: .88rem; transition: .2s ease; }
.faq-nav a:hover { color: #063b75; background: rgba(0, 169, 198, .09); transform: translateX(-3px); }
.faq-sections { min-width: 0; }
.faq-group { scroll-margin-top: 7rem; margin-bottom: 4rem; }
.faq-group-heading { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.2rem; }
.faq-group-heading span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 13px; color: #fff; background: #00a9c6; font-size: .78rem; font-weight: 800; }
.faq-group-heading h2 { color: #063b75; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.faq-group details { background: #fff; border: 1px solid #e2eaf1; border-radius: 16px; margin-bottom: .8rem; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-group details[open] { border-color: rgba(0, 169, 198, .45); box-shadow: 0 10px 28px rgba(6, 59, 117, .07); }
.faq-group summary { position: relative; cursor: pointer; list-style: none; color: #163650; padding: 1.25rem 1.4rem 1.25rem 3.6rem; font-weight: 700; line-height: 1.7; }
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::before, .faq-group summary::after { content: ''; position: absolute; left: 1.35rem; top: 50%; width: 15px; height: 2px; background: #00a9c6; border-radius: 2px; transition: transform .2s ease; }
.faq-group summary::after { transform: rotate(90deg); }
.faq-group details[open] summary::after { transform: rotate(0deg); }
.faq-group details > div { padding: 0 1.4rem 1.35rem; border-top: 1px solid #edf2f6; }
.faq-group details p { margin-top: 1rem; font-size: .96rem; }
.faq-reminder { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.4rem; padding: 1.2rem 1.35rem; border-radius: 16px; background: #fff8e8; border: 1px solid #f5d998; }
.faq-reminder strong { white-space: nowrap; color: #9a6500; }
.faq-reminder p { color: #745d31; margin: 0; font-size: .9rem; }
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
  .faq-nav strong { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
  .faq-hero { padding: 8.5rem 0 4rem; }
  .faq-content { padding: 3rem 0 5rem; }
  .faq-nav { grid-template-columns: 1fr; }
  .faq-group { margin-bottom: 3rem; }
  .faq-group summary { padding: 1.1rem 1rem 1.1rem 3rem; font-size: .92rem; }
  .faq-group summary::before, .faq-group summary::after { left: 1rem; }
  .faq-reminder { flex-direction: column; gap: .35rem; }
}

/* Legal document pages */
.legal-page { background: #f7fafc; }
.legal-hero {
  padding: 10.5rem 0 5.5rem;
  text-align: center;
  background: radial-gradient(circle at 85% 15%, rgba(34, 169, 83, .2), transparent 28%), linear-gradient(135deg, #063b75 0%, #07558f 62%, #007d95 100%);
}
.legal-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); margin: .7rem 0 1rem; }
.legal-hero p { max-width: 650px; margin: 0 auto; color: rgba(255, 255, 255, .82); font-size: 1.05rem; }
.legal-kicker { display: inline-block; color: #fff; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .1); padding: .45rem 1rem; border-radius: 999px; font-size: .84rem; }
.legal-content { padding: 5rem 0 7rem; }
.legal-card { max-width: 920px; margin: 0 auto; padding: clamp(1.5rem, 5vw, 4.5rem); background: #fff; border: 1px solid #e3ebf2; border-radius: 24px; box-shadow: 0 18px 55px rgba(6, 59, 117, .08); }
.legal-card h2 { color: #063b75; font-size: clamp(1.3rem, 3vw, 1.75rem); margin: 3.2rem 0 1.15rem; padding-top: .4rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { color: #17476d; font-size: 1.05rem; margin: 2rem 0 .45rem; }
.legal-card p { margin: 0 0 1rem; line-height: 2; color: #4c6173; }
.legal-card .legal-point { position: relative; padding-right: 1.55rem; margin-bottom: .55rem; }
.legal-card .legal-point::before { content: ''; position: absolute; right: .2rem; top: .85rem; width: 7px; height: 7px; border-radius: 50%; background: #00a9c6; box-shadow: 0 0 0 4px rgba(0, 169, 198, .1); }
.legal-effective-date { display: inline-block; margin-top: 2.5rem !important; padding: .7rem 1.1rem; color: #063b75 !important; background: #edf8fa; border: 1px solid #c7e9ef; border-radius: 12px; font-weight: 700; }
@media (max-width: 576px) {
  .legal-hero { padding: 8.5rem 0 4rem; }
  .legal-content { padding: 2.5rem 0 5rem; }
  .legal-card { border-radius: 18px; }
  .legal-card h2 { margin-top: 2.5rem; }
}
.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem 0;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.05);
}
.header.scrolled .logo-text {
  color: #063b75;
}
.header.scrolled .logo-pin {
  color: #00a9c6;
}
.header.scrolled .logo-name {
  color: #063b75;
}
.header.scrolled .nav-link {
  color: #4a5568;
}
.header.scrolled .nav-links .nav-link:hover,
.header.scrolled .nav-links .nav-link.active {
  color: #063b75;
}
.header.scrolled .hamburger span {
  background: #063b75;
}
.header.scrolled .nav-cta {
  background: #22a953;
  color: #ffffff;
  border-color: #22a953;
}

main section[id] {
  scroll-margin-top: 8rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  z-index: 101;
}

.logo-name {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.18s ease;
}
@media (max-width: 576px) {
  .logo-name {
    font-size: 1rem;
  }
}

.logo-img {
  height: 76px;
  width: auto;
  display: block;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  transition:
    transform 0.18s ease,
    filter 0.28s ease;
  filter: drop-shadow(0 5px 12px rgba(6, 59, 117, 0.16));
}
.logo-img:hover {
  transform: scale(1.04);
}

/* Default: show white logo, hide regular */
.logo-scrolled {
  display: none;
}
.logo-default {
  display: block;
}

/* Scrolled: show regular logo, hide white */
.header.scrolled .logo-default {
  display: none;
}
.header.scrolled .logo-scrolled {
  display: block;
}

.logo-img.logo-img-footer {
  height: 96px;
  padding: 0;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}
@media (max-width: 576px) {
  .logo-img {
    height: 64px;
  }
}
@media (max-width: 576px) {
  .logo-img.logo-img-footer {
    height: 84px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  position: relative;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 50%;
  left: 50%;
  height: 2px;
  background: #ffb51b;
  border-radius: 2px;
  transition:
    right 0.28s ease,
    left 0.28s ease;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: #ffffff;
}
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  right: 14%;
  left: 14%;
}
@media (max-width: 992px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    position: absolute;
    top: calc(100% + 0.75rem);
    inset-inline-end: -1.5rem;
    width: calc(100% + 3rem);
    height: auto;
    background: #ffffff;
    padding: 0.85rem 1rem 1rem;
    border: 0;
    border-top: 1px solid rgba(6, 59, 117, 0.08);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
    z-index: 102;
    box-shadow: 0 18px 35px rgba(6, 59, 117, 0.14);
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  .nav-links {
    inset-inline-end: -1rem;
    width: calc(100% + 2rem);
  }
}
@media (max-width: 992px) {
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 30px;
  }
  .nav-links .nav-link {
    color: #4a5568;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    width: 100%;
  }
  .nav-links .nav-link::after {
    display: none;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: #063b75;
    background: rgba(0, 169, 198, 0.1);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.3rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.28s ease;
  backdrop-filter: blur(6px);
}
.nav-cta:hover {
  background: #ffffff;
  color: #063b75;
  border-color: #ffffff;
}
@media (max-width: 480px) {
  .nav-cta {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 169, 198, 0.1), transparent 36%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}
@media (max-width: 768px) {
  .hero {
    display: block;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
}
.hero .hero-copy {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) 0;
  pointer-events: auto;
  text-align: right;
}
.hero .hero-copy .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(1440px, 100% - 3rem);
  max-width: none;
}
.hero .hero-copy .hero-copy-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}
.hero .hero-copy h1 {
  width: min(640px, 66%);
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.75;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
}
.hero .hero-copy h1 span {
  color: #00a9c6;
}
.hero .hero-copy p {
  width: min(520px, 50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.95;
}
.hero .hero-copy .hero-copy-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: min(520px, 50%);
  gap: 1.2rem;
  margin-top: 1.8rem;
  pointer-events: auto;
}
.hero .hero-copy .hero-copy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}
.hero .hero-copy .hero-copy-link span {
  color: #00a9c6;
  transition: transform 0.18s ease;
}
.hero .hero-copy .hero-copy-link:hover span {
  transform: translateX(-4px);
}
@media (max-width: 768px) {
  .hero .hero-copy {
    position: absolute;
    inset: 0;
    background: none;
    padding: 0 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    order: unset;
  }
  .hero .hero-copy .container {
    width: 100%;
    padding: 0 0.5rem;
    align-items: center;
  }
  .hero .hero-copy .hero-copy-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
  }
  .hero .hero-copy h1,
  .hero .hero-copy p,
  .hero .hero-copy .hero-copy-actions {
    width: 100%;
  }
  .hero .hero-copy h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
  .hero .hero-copy p {
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    line-height: 1.75;
  }
  .hero .hero-copy .hero-copy-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
  .hero .hero-copy .hero-copy-link {
    justify-content: center;
  }
}
.hero .hero-banner-frame {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: #061d37;
  box-shadow: none;
}
.hero .hero-banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to top left,
      rgba(6, 29, 55, 0.96) 0%,
      rgba(6, 29, 55, 0.82) 28%,
      rgba(6, 29, 55, 0.42) 52%,
      rgba(6, 29, 55, 0.06) 72%,
      transparent 86%
    ),
    linear-gradient(to top, rgba(6, 29, 55, 0.28) 0%, transparent 38%);
}
@media (max-width: 768px) {
  .hero .hero-banner-frame {
    position: absolute;
    inset: 0;
    order: unset;
  }
  .hero .hero-banner-frame::after {
    background: rgba(6, 29, 55, 0.58);
  }
}
.hero .hero-banner {
  display: block;
  width: 100%;
  line-height: 0;
  background: #061d37;
  overflow: hidden;
  border-radius: 0;
}
.hero .hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
@media (max-width: 768px) {
  .hero .hero-banner {
    height: 100%;
    overflow: hidden;
    border-radius: 0;
  }
  .hero .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero .hero-blob.blob-1 {
  width: 700px;
  height: 700px;
  background: rgba(0, 169, 198, 0.12);
  top: -200px;
  left: -200px;
}
.hero .hero-blob.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 181, 27, 0.07);
  bottom: -150px;
  right: -100px;
}
.hero .hero-blob.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 169, 198, 0.08);
  top: 40%;
  right: 30%;
}
.hero .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 30%,
    transparent 100%
  );
}
.hero .hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0 6rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
  }
}
.hero .hero-text {
  animation: fadeUp 0.8s ease both;
}
@media (max-width: 992px) {
  .hero .hero-text {
    text-align: center;
    order: 1;
  }
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 181, 27, 0.15);
  color: #ffb51b;
  border: 1px solid rgba(255, 181, 27, 0.3);
  padding: 5px 1rem;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero .hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #ffb51b;
  border-radius: 50%;
  animation: badgeDot 1.4s ease-in-out infinite;
}
.hero .hero-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero .hero-title .hero-highlight {
  color: #ffb51b;
  position: relative;
  display: inline-block;
}
.hero .hero-title .hero-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, #ffb51b, rgba(255, 181, 27, 0.1));
  border-radius: 2px;
}
.hero .hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 520px;
}
@media (max-width: 992px) {
  .hero .hero-sub {
    margin-inline: auto;
  }
}
.hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .hero .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero .hero-actions {
    flex-direction: column;
  }
}
.hero .hero-benefits {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .hero .hero-benefits {
    justify-content: center;
  }
}
.hero .hero-benefits > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
}
.hero .hero-benefits i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 169, 83, 0.22);
  color: #76e39a;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 900;
}
.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease 0.2s both;
}
@media (max-width: 992px) {
  .hero .hero-visual {
    order: 2;
  }
}
.hero .visual-wrap {
  position: relative;
  width: 420px;
  height: 460px;
}
@media (max-width: 768px) {
  .hero .visual-wrap {
    width: 330px;
    height: 370px;
  }
}
@media (max-width: 576px) {
  .hero .visual-wrap {
    width: 290px;
    height: 330px;
  }
}
.hero .hv-card.hv-main {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 255px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero .hv-card.hv-main {
    width: 205px;
    right: 15px;
  }
}
@media (max-width: 576px) {
  .hero .hv-card.hv-main {
    width: 185px;
    right: 8px;
  }
}
.hero .hv-card.hv-main .hvc-photo {
  height: 138px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero .hv-card.hv-main .hvc-photo {
    height: 110px;
  }
}
.hero .hv-card.hv-main .hvc-photo .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 169, 198, 0.35),
    rgba(6, 59, 117, 0.55)
  );
}
.hero .hv-card.hv-main .hvc-photo .hvc-cat {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 9999px;
}
.hero .hv-card.hv-main .hvc-photo .hvc-verified {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 0.66rem;
  font-weight: 800;
  color: #22a953;
  line-height: 1;
}
.hero .hv-card.hv-main .hvc-body {
  padding: 1rem;
}
.hero .hv-card.hv-main .hvc-body .hvc-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #063b75;
  margin-bottom: 5px;
}
.hero .hv-card.hv-main .hvc-body .hvc-detail {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
  color: #718096;
  font-size: 0.7rem;
}
.hero .hv-card.hv-main .hvc-body .hvc-detail .hvc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #ffffff;
  background: #22a953;
  font-size: 0.58rem;
  font-weight: 900;
}
.hero .hv-card.hv-main .hvc-body .hvc-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4a5568;
  font-size: 0.76rem;
  margin-bottom: 7px;
}
.hero .hv-card.hv-main .hvc-body .hvc-loc svg {
  color: #00a9c6;
}
.hero .hv-card.hv-main .hvc-body .hvc-tags {
  display: flex;
  gap: 4px;
}
.hero .hv-card.hv-main .hvc-body .hvc-tags .htag {
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
}
.hero .hv-card.hv-main .hvc-body .hvc-tags .htag.htag-green {
  background: rgba(56, 161, 105, 0.1);
  color: #276749;
}
.hero .hv-card.hv-main .hvc-body .hvc-tags .htag.htag-orange {
  background: rgba(255, 181, 27, 0.12);
  color: rgb(231, 156.0263157895, 0);
}
.hero .hv-mini {
  position: absolute;
  bottom: 115px;
  left: 5px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floatB 3.5s ease-in-out infinite 0.6s;
  z-index: 4;
}
@media (max-width: 768px) {
  .hero .hv-mini {
    bottom: 80px;
    left: 0;
  }
}
.hero .hv-mini .hv-mini-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.hero .hv-mini .hv-mini-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero .hv-mini .hv-mini-info .hm-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #063b75;
}
.hero .hv-mini .hv-mini-info .hm-rate {
  font-size: 0.68rem;
  color: #718096;
  font-weight: 600;
}
.hero .hv-stat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite 1s;
  z-index: 4;
}
@media (max-width: 768px) {
  .hero .hv-stat {
    top: 8px;
    left: 0;
  }
}
.hero .hv-stat .hvs-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.hero .hv-stat .hvs-info {
  display: flex;
  flex-direction: column;
}
.hero .hv-stat .hvs-info strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: #063b75;
  line-height: 1.2;
}
.hero .hv-stat .hvs-info span {
  font-size: 0.72rem;
  color: #718096;
}
.hero .hv-search {
  position: absolute;
  bottom: 25px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #718096;
  font-weight: 500;
  animation: float 4.5s ease-in-out infinite 0.9s;
  z-index: 4;
}
@media (max-width: 576px) {
  .hero .hv-search {
    font-size: 0.72rem;
    padding: 7px 10px;
    right: 8px;
  }
}
.hero .hv-search svg {
  color: #00a9c6;
}
.hero .hv-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero .hv-ring.ring-1 {
  width: 200px;
  height: 200px;
  border: 1.5px dashed rgba(0, 169, 198, 0.35);
  bottom: 10px;
  left: 50px;
  animation: spinSlow 22s linear infinite;
}
@media (max-width: 768px) {
  .hero .hv-ring.ring-1 {
    width: 150px;
    height: 150px;
  }
}
.hero .hv-ring.ring-2 {
  width: 110px;
  height: 110px;
  border: 1.5px dashed rgba(255, 181, 27, 0.35);
  top: 55px;
  left: 70px;
  animation: spinSlow 16s linear infinite reverse;
}
@media (max-width: 768px) {
  .hero .hv-ring.ring-2 {
    width: 80px;
    height: 80px;
  }
}
.hero .hv-dots {
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: 55px;
  right: 5px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.3) 1.5px,
    transparent 1.5px
  );
  background-size: 14px 14px;
  pointer-events: none;
}
.hero .hero-wave {
  position: relative;
  z-index: 1;
  margin-top: auto;
  line-height: 0;
}
.hero .hero-wave svg {
  width: 100%;
  display: block;
}

.about {
  padding: 2.5rem 0 0rem;
  background: #ffffff;
}
.about .about-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 4rem;
  padding: 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(0, 169, 198, 0.11), transparent 25%),
    linear-gradient(145deg, #f8fbfe 0%, #eef6fb 100%);
  border: 1px solid rgba(6, 59, 117, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(6, 59, 117, 0.09);
}
.about .about-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -85px;
  border: 28px solid rgba(255, 181, 27, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.about .about-copy,
.about .about-points {
  position: relative;
  z-index: 1;
}
.about .about-copy h2 {
  max-width: 620px;
  margin: 0 0 1.25rem;
  color: #063b75;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.35;
  text-wrap: balance;
}
.about .about-copy p {
  max-width: 650px;
  color: #4a5568;
  font-size: 1rem;
  line-height: 2;
}
.about .about-points {
  display: grid;
  gap: 0.75rem;
}
.about .about-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 0.75rem 0.9rem;
  color: #063b75;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 169, 198, 0.12);
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(6, 59, 117, 0.05);
  font-size: 0.91rem;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.about .about-points li::before {
  content: "✓";
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #00a9c6, #063b75);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(0, 169, 198, 0.2);
}
.about .about-points li:hover {
  transform: translateX(-4px);
  border-color: rgba(0, 169, 198, 0.35);
  box-shadow: 0 10px 22px rgba(6, 59, 117, 0.09);
}
@media (max-width: 992px) {
  .about .about-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem;
  }
  .about .about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .about {
    padding: 4.5rem 0;
  }
  .about .about-card {
    gap: 2rem;
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }
  .about .about-copy {
    text-align: center;
  }
  .about .about-copy h2 {
    font-size: 1.7rem;
  }
  .about .about-copy p {
    font-size: 0.9rem;
    line-height: 1.9;
  }
  .about .about-points {
    grid-template-columns: 1fr;
  }
}

.stats {
  padding: 3rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.stats .stats-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 768px) {
  .stats .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.stats .stat-divider {
  width: 1px;
  background: #e2e8f0;
  margin: 1rem 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats .stat-divider {
    display: none;
  }
}
.stats .stat-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}
.stats .stat-item:hover {
  background: #f6f9fc;
  transform: translateY(-4px);
}
.stats .stat-item .si-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stats .stat-item .si-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.stats .stat-item .si-value.si-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #063b75;
  display: block;
}
.stats .stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #063b75;
  line-height: 1;
}
@media (max-width: 576px) {
  .stats .stat-item .stat-num {
    font-size: 1.8rem;
  }
}
.stats .stat-item .stat-plus {
  font-size: 1.8rem;
  font-weight: 900;
  color: #00a9c6;
  line-height: 1;
}
.stats .stat-item .si-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #718096;
  display: block;
}

.features {
  padding: 6rem 0;
  background: #f6f9fc;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 992px) {
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .features .f-card {
    width: 100%;
    text-align: center;
  }
  .features .f-card .fc-icon-wrap {
    margin-right: auto;
    margin-left: auto;
  }
}
.features .f-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(6, 59, 117, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.features .f-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, #00a9c6, #063b75);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.features .f-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 169, 198, 0.2);
}
.features .f-card:hover::before {
  transform: scaleX(1);
}
.features .f-card:hover .fc-icon-wrap {
  background: linear-gradient(135deg, #00a9c6, rgb(0, 125.4696969697, 147));
}
.features .f-card:hover .fc-icon-wrap svg {
  stroke: #ffffff;
}
.features .f-card .fc-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(0, 169, 198, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.28s ease;
}
.features .f-card .fc-icon-wrap svg {
  stroke: #00a9c6;
  transition: stroke 0.18s ease;
}
.features .f-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #063b75;
  margin-bottom: 0.5rem;
}
.features .f-card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.75;
}

.categories {
  padding: 6rem 0;
  background: #ffffff;
}
.categories .cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
@media (max-width: 992px) {
  .categories .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .categories .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .categories .cats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 430px;
    margin-inline: auto;
  }
}
.categories .cat-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.85rem;
  row-gap: 0.15rem;
  min-height: 92px;
  padding: 1rem;
  background: linear-gradient(145deg, #f8fbfe 0%, #f1f6fb 100%);
  border: 1px solid rgba(6, 59, 117, 0.08);
  border-radius: 18px;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  text-align: right;
}
.categories .cat-card:hover {
  background: #ffffff;
  border-color: rgba(0, 169, 198, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(6, 59, 117, 0.12);
}
.categories .cat-card:hover .cat-emoji {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(0, 169, 198, 0.12);
}
.categories .cat-card:hover .cat-name {
  color: #00a9c6;
}
.categories .cat-card .cat-emoji {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 169, 198, 0.12);
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(6, 59, 117, 0.07);
  font-size: 1.75rem;
  line-height: 1;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}
.categories .cat-card .cat-name {
  grid-column: 2;
  align-self: end;
  font-size: 0.92rem;
  font-weight: 800;
  color: #063b75;
  transition: color 0.18s ease;
}
.categories .cat-card .cat-count {
  grid-column: 2;
  align-self: start;
  font-size: 0.75rem;
  color: #718096;
}

@media (max-width: 576px) {
  .categories {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  }
  .categories .cats-grid {
    gap: 0.7rem;
  }
  .categories .cat-card {
    display: flex;
    min-height: 116px;
    padding: 0.8rem 0.6rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    text-align: center;
    background: #ffffff;
    border-color: rgba(6, 59, 117, 0.09);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(6, 59, 117, 0.06);
  }
  .categories .cat-card .cat-emoji {
    width: 44px;
    height: 44px;
    margin-bottom: 0.22rem;
    border-radius: 14px;
    font-size: 1.45rem;
    background: linear-gradient(145deg, #ffffff, #eef8fb);
    box-shadow: 0 5px 14px rgba(6, 59, 117, 0.08);
  }
  .categories .cat-card .cat-name {
    align-self: center;
    font-size: 0.88rem;
    line-height: 1.35;
  }
  .categories .cat-card .cat-count {
    align-self: center;
    font-size: 0.68rem;
    line-height: 1.4;
  }
}

.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(160deg, #f6f9fc 0%, rgba(0, 169, 198, 0.04) 100%);
}
.how-it-works .steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
@media (max-width: 992px) {
  .how-it-works .steps-row {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.how-it-works .step {
  flex: 1;
  max-width: 215px;
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.28s ease;
}
.how-it-works .step:hover {
  transform: translateY(-5px);
}
@media (max-width: 992px) {
  .how-it-works .step {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .how-it-works .steps-row {
    gap: 0.75rem;
  }
  .how-it-works .step {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.how-it-works .step .step-emoji {
  font-size: 2.8rem;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}
.how-it-works .step .step-emoji:nth-of-type(1) {
  animation-delay: 0s;
}
.how-it-works .step .step-emoji:nth-of-type(2) {
  animation-delay: 0.4s;
}
.how-it-works .step .step-emoji:nth-of-type(3) {
  animation-delay: 0.8s;
}
.how-it-works .step .step-emoji:nth-of-type(4) {
  animation-delay: 1.2s;
}
.how-it-works .step h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #063b75;
  margin-bottom: 0.5rem;
}
.how-it-works .step p {
  font-size: 0.84rem;
  color: #4a5568;
  line-height: 1.65;
}
.how-it-works .step-connector {
  flex-shrink: 0;
  color: rgba(0, 169, 198, 0.5);
  margin-top: 64px;
  padding: 0 4px;
}
.how-it-works .step-connector svg {
  width: 38px;
  height: 22px;
}
@media (max-width: 992px) {
  .how-it-works .step-connector {
    display: none;
  }
}
@media (max-width: 576px) {
  .how-it-works .step-connector {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .how-it-works .step-connector svg {
    width: 30px;
    height: 18px;
    transform: rotate(-90deg);
  }
}

.business {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.5rem 0;
  background-color: #032448;
  background-image: url("images/footercta.png");
  background-position: left center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.business > .container {
  position: relative;
  z-index: 1;
}
.business .biz-card {
  min-height: 560px;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  .business .biz-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem;
  }
}
@media (max-width: 576px) {
  .business {
    padding: 3rem 0;
    background-position: 30% center;
    background-size: cover;
  }
  .business .biz-card {
    padding: 0;
  }
}
.business::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(3, 28, 58, 0.99) 0%,
    rgba(3, 35, 72, 0.96) 42%,
    rgba(3, 35, 72, 0.68) 68%,
    rgba(3, 35, 72, 0.18) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.business::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  top: -260px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 198, 0.28), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 992px) {
  .business::before {
    background: rgba(3, 28, 58, 0.9);
  }
}
.business .biz-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 2.25rem;
  background: linear-gradient(
    145deg,
    rgba(4, 42, 84, 0.76),
    rgba(3, 28, 58, 0.58)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 18, 44, 0.28);
  backdrop-filter: blur(12px);
}
.business .biz-content .s-badge-orange {
  color: #ffd16c;
  background: rgba(255, 181, 27, 0.14);
  border-color: rgba(255, 209, 108, 0.4);
  backdrop-filter: blur(8px);
}
.business .biz-content h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  margin: 0.65rem 0 1rem;
  line-height: 1.3;
  text-wrap: balance;
}
.business .biz-content h2 span {
  color: #ffb51b;
}
.business .biz-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.85;
}
.business .biz-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 2.25rem;
}
.business .biz-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.business .biz-perks .perk-check {
  width: 24px;
  height: 24px;
  background: rgba(0, 169, 198, 0.2);
  border: 1px solid rgba(80, 218, 240, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.business .biz-perks .perk-check svg {
  stroke: #5de2f5;
}
.business .biz-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.business .biz-actions .btn {
  min-height: 54px;
  border-radius: 14px;
  padding-inline: 1.6rem;
}
.business .biz-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
@media (max-width: 576px) {
  .business .biz-content {
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
  }
  .business .biz-content h2 {
    font-size: 1.65rem;
  }
  .business .biz-content p {
    font-size: 0.9rem;
  }
  .business .biz-perks {
    grid-template-columns: 1fr;
    text-align: right;
  }
  .business .biz-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .business .biz-actions .btn {
    width: 100%;
  }
  .business .biz-note {
    text-align: center;
  }
}

.footer {
  background: #063b75;
  color: #ffffff;
  padding-top: 4rem;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 2rem;
  }
  .footer .footer-brand {
    grid-column: 1 / -1;
  }
  .footer .footer-col {
    min-width: 0;
  }
  .footer .footer-col ul li a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
.footer .footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer .footer-brand .footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.footer .footer-socials {
  display: flex;
  gap: 9px;
}
.footer .footer-socials .fs-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.28s ease;
}
.footer .footer-socials .fs-link:hover {
  background: #00a9c6;
  border-color: #00a9c6;
  color: #ffffff;
  transform: translateY(-3px);
}
.footer .footer-col h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.footer .footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: #00a9c6;
  border-radius: 2px;
}
.footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition:
    color 0.18s ease,
    padding-right 0.18s ease;
  display: inline-block;
}
.footer .footer-col ul li a:hover {
  color: #00a9c6;
  padding-right: 5px;
}
.footer .footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}
@media (min-width: 576px) {
  .footer .footer-bottom p br {
    display: none;
  }
}
@media (max-width: 576px) {
  .footer {
    padding-top: 2.25rem;
    background:
      radial-gradient(
        circle at 15% 10%,
        rgba(0, 169, 198, 0.18),
        transparent 38%
      ),
      #063b75;
  }
  .footer .footer-grid {
    gap: 0.85rem;
    padding-bottom: 1.5rem;
  }
  .footer .footer-brand,
  .footer .footer-col {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 12px 30px rgba(1, 24, 52, 0.12);
    border-radius: 18px;
  }
  .footer .footer-brand {
    padding: 1.15rem;
    text-align: center;
  }
  .footer .footer-brand .footer-logo {
    justify-content: center;
    margin-bottom: 0.65rem;
  }
  .logo-img.logo-img-footer {
    height: 68px;
  }
  .footer .footer-brand .footer-desc {
    max-width: 34rem;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.75;
  }
  .footer .footer-col {
    padding: 1rem 0.85rem;
  }
  .footer .footer-col h5 {
    margin-bottom: 0.9rem;
    padding-bottom: 0.55rem;
    font-size: 0.9rem;
  }
  .footer .footer-col ul {
    gap: 0.4rem;
  }
  .footer .footer-col ul li a {
    font-size: 0.8rem;
    line-height: 1.65;
  }
  .footer .footer-col:last-child ul li a {
    font-size: 0.76rem;
    letter-spacing: -0.01em;
  }
  .footer .footer-bottom {
    padding: 1.15rem 0;
  }
  .footer .footer-bottom p {
    font-size: 0.72rem;
    line-height: 1.7;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f6f9fc;
}

::-webkit-scrollbar-thumb {
  background: #00a9c6;
  border-radius: 3px;
}

::selection {
  background: rgba(0, 169, 198, 0.2);
  color: #063b75;
}

.features-grid .reveal:nth-child(2),
.cats-grid .reveal:nth-child(2),
.testi-grid .reveal:nth-child(2),
.stats-row .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.features-grid .reveal:nth-child(3),
.cats-grid .reveal:nth-child(3),
.testi-grid .reveal:nth-child(3),
.stats-row .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.features-grid .reveal:nth-child(4),
.cats-grid .reveal:nth-child(4),
.testi-grid .reveal:nth-child(4),
.stats-row .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.features-grid .reveal:nth-child(5),
.cats-grid .reveal:nth-child(5),
.testi-grid .reveal:nth-child(5),
.stats-row .reveal:nth-child(5) {
  transition-delay: 0.12s;
}
.features-grid .reveal:nth-child(6),
.cats-grid .reveal:nth-child(6),
.testi-grid .reveal:nth-child(6),
.stats-row .reveal:nth-child(6) {
  transition-delay: 0.2s;
}
.features-grid .reveal:nth-child(7),
.cats-grid .reveal:nth-child(7),
.testi-grid .reveal:nth-child(7),
.stats-row .reveal:nth-child(7) {
  transition-delay: 0.08s;
}
.features-grid .reveal:nth-child(8),
.cats-grid .reveal:nth-child(8),
.testi-grid .reveal:nth-child(8),
.stats-row .reveal:nth-child(8) {
  transition-delay: 0.16s;
}
.features-grid .reveal:nth-child(9),
.cats-grid .reveal:nth-child(9),
.testi-grid .reveal:nth-child(9),
.stats-row .reveal:nth-child(9) {
  transition-delay: 0.24s;
}
.features-grid .reveal:nth-child(10),
.cats-grid .reveal:nth-child(10),
.testi-grid .reveal:nth-child(10),
.stats-row .reveal:nth-child(10) {
  transition-delay: 0.32s;
}

.steps-row .reveal:nth-child(1) {
  transition-delay: 0s;
}
.steps-row .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.steps-row .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.steps-row .reveal:nth-child(4) {
  transition-delay: 0.36s;
}

/* ===== JOIN US FORM ===== */
.join-us {
  padding: 6rem 0;
  background: #f7faf9;
}
.join-form {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(6, 59, 117, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(6, 59, 117, 0.06);
}
.join-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group-full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #063b75;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Alexandria", sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #f7faf9;
  border: 1.5px solid rgba(6, 59, 117, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: all 0.2s ease;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #22a953;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 169, 83, 0.12);
}
.form-group select {
  cursor: pointer;
}

.jf-location-row {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(0, 169, 198, 0.3);
  background: rgba(0, 169, 198, 0.08);
  color: #00a9c6;
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-location:hover {
  background: rgba(0, 169, 198, 0.15);
}
.btn-location:disabled {
  opacity: 0.7;
  cursor: progress;
}
.btn-location.located {
  border-color: rgba(34, 169, 83, 0.35);
  background: rgba(34, 169, 83, 0.1);
  color: #22a953;
}
.jf-location-status {
  font-size: 0.85rem;
  color: #4a5568;
  direction: ltr;
}

.jf-feedback {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}
.jf-feedback-success {
  background: rgba(34, 169, 83, 0.1);
  color: #1c8a44;
  border: 1px solid rgba(34, 169, 83, 0.25);
}
.jf-feedback-error {
  background: rgba(220, 53, 69, 0.08);
  color: #c4283c;
  border: 1px solid rgba(220, 53, 69, 0.25);
}

.jf-submit {
  width: 100%;
}
.jf-submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 720px) {
  .join-form {
    padding: 1.75rem 1.25rem;
  }
  .join-form-grid {
    grid-template-columns: 1fr;
  }
  .jf-location-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Header More menu */
.nav-more {
  position: relative;
}
.nav-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}
.nav-more-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}
.nav-more.open .nav-more-toggle svg,
.nav-more:focus-within .nav-more-toggle svg {
  transform: rotate(180deg);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  z-index: 120;
  width: 285px;
  padding: 0.65rem;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(6, 59, 117, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 50px rgba(6, 39, 75, 0.18);
  transform: translateY(-8px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 0.9rem;
}
.nav-more:hover .nav-submenu,
.nav-more:focus-within .nav-submenu,
.nav-more.open .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.nav-submenu li + li {
  margin-top: 0.25rem;
}
.nav-submenu a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem;
  color: #334e63;
  border-radius: 12px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: #063b75;
  background: #eef8fa;
  transform: translateX(-2px);
  outline: none;
}
.nav-submenu-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #008fa9;
  border-radius: 11px;
  background: #e9f7fa;
  font-size: 1rem;
  font-weight: 800;
}
.nav-submenu strong,
.nav-submenu small {
  display: block;
}
.nav-submenu strong {
  color: inherit;
  font-size: 0.83rem;
  line-height: 1.55;
}
.nav-submenu small {
  margin-top: 0.08rem;
  color: #80909e;
  font-size: 0.68rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .nav-more-toggle {
    justify-content: center;
  }
  .nav-submenu {
    position: static;
    display: none;
    width: min(100%, 430px);
    margin: 0.45rem auto 0;
    padding: 0.5rem;
    visibility: visible;
    opacity: 1;
    border-color: #e3ebf1;
    border-radius: 14px;
    background: #f7fafc;
    box-shadow: none;
    transform: none;
  }
  .nav-more:hover .nav-submenu {
    display: none;
  }
  .nav-more.open .nav-submenu {
    display: block;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu a {
    text-align: right;
  }
}

/* ============================================================
   SHARED INTERNAL PAGES
   ============================================================ */
.faq-page,
.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(6, 59, 117, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 59, 117, 0.025) 1px, transparent 1px),
    #f7f9fc;
  background-size: 36px 36px;
}

.page-intro {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 7.5rem 0 3rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 14% 30%, rgba(0, 211, 231, 0.24), transparent 27%),
    radial-gradient(circle at 88% 10%, rgba(255, 181, 27, 0.18), transparent 24%),
    linear-gradient(135deg, #032d5c 0%, #064b85 52%, #008aa5 100%);
}
.page-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.page-intro--privacy {
  background:
    radial-gradient(circle at 12% 30%, rgba(34, 169, 83, 0.22), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(0, 211, 231, 0.2), transparent 25%),
    linear-gradient(135deg, #032d5c 0%, #07577c 55%, #087a72 100%);
}
.page-intro--terms {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 181, 27, 0.2), transparent 27%),
    radial-gradient(circle at 88% 15%, rgba(0, 211, 231, 0.19), transparent 24%),
    linear-gradient(135deg, #032d5c 0%, #084b82 55%, #086f86 100%);
}
.page-intro-inner {
  position: relative;
  z-index: 2;
}
.page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-breadcrumb a:hover { color: #fff; }
.page-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.05rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 700;
}
.page-intro-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb51b;
  box-shadow: 0 0 0 5px rgba(255, 181, 27, 0.14);
}
.page-intro h1 {
  margin: 0.75rem 0 0.9rem;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 4.5rem);
  line-height: 1.2;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.page-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.9;
}
.page-intro-shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}
.page-intro-shape-one {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -120px;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025);
}
.page-intro-shape-two {
  width: 150px;
  height: 150px;
  left: 7%;
  top: 25%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.02);
}

/* FAQ */
.faq-content {
  padding: 5.5rem 0 7rem;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-nav {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid #e0e9f1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(6, 59, 117, 0.09);
}
.faq-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #00a9c6, #22a953);
}
.faq-nav strong {
  padding: 0.55rem 0.7rem 0.9rem;
  color: #063b75;
  font-size: 0.95rem;
}
.faq-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.8rem;
  color: #617386;
  border-radius: 11px;
  text-decoration: none;
  font-size: 0.86rem;
  transition: 0.2s ease;
}
.faq-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #b9c7d3;
  transition: 0.2s ease;
}
.faq-nav a:hover {
  color: #063b75;
  background: #eef8fa;
  transform: translateX(-3px);
}
.faq-nav a:hover::before { background: #00a9c6; }
.faq-group {
  margin-bottom: 4.25rem;
  scroll-margin-top: 7.5rem;
}
.faq-group-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.faq-group-heading span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, #063b75, #00a9c6);
  box-shadow: 0 8px 18px rgba(0, 169, 198, 0.2);
  font-size: 0.76rem;
  font-weight: 800;
}
.faq-group-heading h2 {
  margin: 0;
  color: #063b75;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}
.faq-group details {
  margin-bottom: 0.8rem;
  overflow: clip;
  border: 1px solid #e1e9f0;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(6, 59, 117, 0.035);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.faq-group details:hover {
  border-color: #cbdbe7;
  transform: translateY(-1px);
}
.faq-group details[open] {
  border-color: rgba(0, 169, 198, 0.48);
  box-shadow: 0 14px 35px rgba(6, 59, 117, 0.08);
}
.faq-group summary {
  position: relative;
  padding: 1.25rem 1.35rem 1.25rem 4rem;
  color: #173d5b;
  list-style: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.8;
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::before {
  content: "+";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #008ea9;
  border-radius: 9px;
  background: #eaf8fa;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
.faq-group details[open] summary::before { content: "−"; }
.faq-group summary::after { display: none; }
.faq-group details > div {
  margin: 0 1.35rem;
  padding: 1rem 0 1.35rem;
  border-top: 1px solid #edf2f6;
}
.faq-group details p {
  max-width: 760px;
  margin: 0;
  color: #586b7c;
  font-size: 0.94rem;
  line-height: 2;
}
.faq-reminder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin-top: 1.3rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #f0d28d;
  border-radius: 17px;
  background: linear-gradient(135deg, #fff9eb, #fffdf8);
  box-shadow: 0 8px 25px rgba(154, 101, 0, 0.05);
}
.faq-reminder strong { color: #936100; }
.faq-reminder p { margin: 0; color: #725f3b; font-size: 0.9rem; }

/* Privacy policy and terms */
.legal-content { padding: 5.5rem 0 7rem; }
.legal-card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 4.75rem);
  overflow: hidden;
  border: 1px solid #e0e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(6, 59, 117, 0.09);
}
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #00a9c6, #22a953, #ffb51b);
}
.legal-card h2 {
  position: relative;
  margin: 3.5rem 0 1.15rem;
  padding: 0 1.15rem 0.65rem 0;
  color: #063b75;
  border-bottom: 1px solid #e7edf2;
  font-size: clamp(1.28rem, 3vw, 1.7rem);
  line-height: 1.6;
}
.legal-card h2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55rem;
  width: 5px;
  height: 1.25em;
  border-radius: 5px;
  background: linear-gradient(#00a9c6, #22a953);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 {
  margin: 2rem 0 0.55rem;
  color: #14517d;
  font-size: 1.05rem;
  line-height: 1.7;
}
.legal-card p {
  margin: 0 0 1.05rem;
  color: #536879;
  font-size: 0.96rem;
  line-height: 2.05;
}
.legal-card .legal-point {
  position: relative;
  margin-bottom: 0.65rem;
  padding: 0.2rem 1.65rem 0.2rem 0;
}
.legal-card .legal-point::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0.35rem;
  color: #18a04b;
  font-weight: 900;
}
.legal-effective-date {
  display: inline-flex;
  align-items: center;
  margin-top: 2.5rem !important;
  padding: 0.75rem 1.15rem;
  color: #063b75 !important;
  border: 1px solid #c7e9ef;
  border-radius: 12px;
  background: #edf8fa;
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-intro { min-height: 300px; }
  .faq-layout { grid-template-columns: 1fr; gap: 2.75rem; }
  .faq-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
  .page-intro {
    min-height: 300px;
    padding: 7rem 0 2.5rem;
  }
  .page-intro h1 { font-size: 2.25rem; }
  .page-intro-shape-two { display: none; }
  .faq-content,
  .legal-content { padding: 3rem 0 5rem; }
  .faq-nav { grid-template-columns: 1fr; padding: 1rem; }
  .faq-group { margin-bottom: 3.25rem; }
  .faq-group-heading { gap: 0.75rem; }
  .faq-group-heading span { width: 40px; height: 40px; flex-basis: 40px; }
  .faq-group summary {
    padding: 1.1rem 1rem 1.1rem 3.4rem;
    font-size: 0.91rem;
  }
  .faq-group summary::before { left: 0.9rem; }
  .faq-group details > div { margin: 0 1rem; }
  .faq-reminder { grid-template-columns: 1fr; }
  .legal-card { border-radius: 19px; }
  .legal-card h2 { margin-top: 2.7rem; }
}

/* Stable header submenu overrides */
.nav-more {
  display: flex;
  align-items: center;
}
.nav-more-toggle {
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
  white-space: nowrap;
}
.nav-submenu {
  right: auto;
  inset-inline-end: 0;
}

@media (min-width: 993px) {
  .nav-submenu::after {
    content: "";
    position: absolute;
    top: -6px;
    inset-inline-end: 1.4rem;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(6, 59, 117, 0.1);
    border-right: 1px solid rgba(6, 59, 117, 0.1);
    background: #fff;
    transform: rotate(-45deg);
  }
}

@media (max-width: 992px) {
  .nav-links.open {
    gap: 0.2rem;
    max-height: calc(100vh - 92px);
    padding: 0.75rem 1rem 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-more {
    display: block;
    width: 100%;
  }
  .nav-more-toggle {
    min-height: 48px;
  }
  .nav-submenu {
    width: 100%;
    max-width: none;
    margin: 0.25rem 0 0;
    padding: 0.4rem;
    border-radius: 12px;
  }
  .nav-submenu li + li {
    margin-top: 0.15rem;
  }
  .nav-submenu a {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 52px;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem;
  }
  .nav-submenu-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .nav-submenu strong {
    font-size: 0.8rem;
  }
  .nav-submenu small {
    font-size: 0.64rem;
  }
}

/* Final aligned RTL mobile navigation */
@media (max-width: 992px) {
  .nav-links {
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    inset-inline: 0;
    width: 100%;
    max-height: calc(100vh - 96px);
    margin: 0;
    padding: 0.65rem;
    gap: 0.2rem;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(6, 59, 117, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 45px rgba(6, 39, 75, 0.16);
    transform-origin: top center;
  }
  .nav-links.open {
    padding: 0.65rem;
    gap: 0.2rem;
  }
  .nav-links > li {
    display: block;
    width: 100%;
  }
  .nav-links .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 0.7rem 0.9rem;
    color: #40576a;
    border-radius: 11px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: right;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: #063b75;
    background: #edf8fa;
  }
  .nav-more {
    display: block;
    width: 100%;
  }
  .nav-more-toggle {
    justify-content: space-between !important;
    direction: rtl;
  }
  .nav-more-toggle svg {
    flex: 0 0 15px;
    margin-inline-start: auto;
  }
  .nav-submenu {
    position: static;
    width: calc(100% - 0.7rem);
    margin: 0.25rem 0.7rem 0.35rem 0;
    padding: 0.35rem;
    border: 0;
    border-radius: 12px;
    background: #f3f7fa;
  }
  .nav-submenu a {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 50px;
    padding: 0.5rem 0.6rem;
    text-align: right;
  }
  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    background: #fff;
    transform: none;
  }
  .nav-submenu strong,
  .nav-submenu small {
    text-align: right;
  }
}

@media (max-width: 576px) {
  .nav-links {
    right: 0;
    left: 0;
    inset-inline: 0;
    width: 100%;
  }
}
