
:root {
  --primary: #0b1e4c;
  --primary-2: #132a5e;
  --secondary: #d4af35;
  --secondary-2: #c29d24;
  --bg-dark: #030916;
  --card-dark: #050e24;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --border: #e0e3eb;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: Inter, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
.font-serif,
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-secondary {
  color: var(--secondary);
}
.text-primary {
  color: var(--primary);
}
section {
  padding: 96px 0;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11, 30, 76, 0.05);
  border: 1px solid rgba(11, 30, 76, 0.1);
  padding: 7px 18px;
  border-radius: 999px;
}
.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: scale(1.05);
}
.btn-gold {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(212, 175, 53, 0.25);
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  height: 114px;
  padding: 0 4px;
  margin: 0 auto;
  max-width: 1400px;
}
.nav-wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transform: translateX(40px);
}
.nav-wrap .nav-right {
  justify-self: end;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transform: scale(1.3);
  transform-origin: left center;
}
.nav-row {
  display: flex;
  gap: 36px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) and (min-width: 981px) {
  .nav-row {
    gap: 20px;
  }
}
nav ul li a {
  font-size: 14.5px;
  font-weight: 500;
  color: #1a1a2e;
  display: inline-block;
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}
nav ul li a:hover {
  color: var(--secondary-2);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(20, 30, 70, 0.12);
  background: rgba(212, 175, 53, 0.08);
}
nav ul li a.founder-nav-link {
  padding: 8px 22px;
  border: 1px solid var(--secondary);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #f1d77e);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(212, 175, 53, 0.22);
}
nav ul li a.founder-nav-link:hover {
  color: var(--primary);
  background: linear-gradient(135deg, #f1d77e, var(--secondary));
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-mobile-cta {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 22px;
  justify-content: center;
  z-index: 110;
  position: relative;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: var(--primary);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 30, 76, 0.35),
    rgba(11, 30, 76, 0.15) 60%,
    transparent
  );
}
.hero-slide .overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 30, 76, 0.35),
    rgba(11, 30, 76, 0.18) 50%,
    transparent
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 0;
}
.hero-content h1,
.hero-content h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  max-width: 760px;
  margin-bottom: 24px;
  white-space: pre-line;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero-content p {
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.hero-arrow.left {
  left: 16px;
}
.hero-arrow.right {
  right: 16px;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 10px;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots span.active {
  background: var(--secondary);
  width: 32px;
}
.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 32px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-stats .stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}
.hero-stats .stat:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.18);
}
.hero-stats .stat .ic {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px;
  border-radius: 50%;
  display: flex;
}
.ai-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  z-index: 300;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: aiFloat 3.2s ease-in-out infinite;
  overflow: hidden;
  padding: 0;
}
.ai-fab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.ai-fab:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 7px rgba(212, 175, 53, 0.16),
    0 16px 34px rgba(212, 175, 53, 0.35);
}
.ai-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  opacity: 0;
  pointer-events: none;
}
.ai-fab.pulse::before {
  animation: aiPulseRing 1.7s ease-out;
}
@keyframes aiFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes aiPulseRing {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
.ai-tooltip {
  position: fixed;
  bottom: 102px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 9px 15px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 300;
  border: 1px solid rgba(212, 175, 53, 0.4);
}
.ai-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 27px;
  width: 11px;
  height: 11px;
  background: var(--primary);
  border-right: 1px solid rgba(212, 175, 53, 0.4);
  border-bottom: 1px solid rgba(212, 175, 53, 0.4);
  transform: rotate(45deg);
}
.ai-fab:hover + .ai-tooltip {
  opacity: 1;
  transform: translateY(0);
}
.ai-chat {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: min(580px, calc(100vh - 140px));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
  z-index: 301;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92) translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: bottom right;
}
.ai-chat.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.ai-chat-head {
  background: var(--primary);
  color: #fff;
  padding: 18px 52px 18px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
}
.ai-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 53, 0.15);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.ai-chat-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.ai-chat-head h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.ai-chat-head .sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.ai-chat-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  font-size: 16px;
  line-height: 1;
}
.ai-chat-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.ai-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-50);
}
.ai-msg {
  max-width: 85%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13.3px;
  line-height: 1.6;
  animation: aiMsgIn 0.3s ease;
}
.ai-msg.bot {
  background: #fff;
  border: 1px solid var(--border);
  color: #1f2937;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(20, 30, 70, 0.05);
}
.ai-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ai-msg a {
  color: var(--secondary-2);
  font-weight: 700;
}
.ai-msg.bot a {
  color: var(--primary);
  text-decoration: underline;
}
@keyframes aiMsgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 2px 16px 14px;
  background: var(--gray-50);
  flex-shrink: 0;
}
.ai-chip {
  background: #fff;
  border: 1px solid rgba(212, 175, 53, 0.45);
  color: var(--primary);
  font-size: 12.3px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ai-chip:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(212, 175, 53, 0.3);
}
.ai-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}
.ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ca3af;
  animation: aiTypingDot 1.2s infinite ease-in-out;
}
.ai-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.ai-typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes aiTypingDot {
  0%,
  100%,
  60% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.ai-chat-input {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}
.ai-chat-input input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 11px 16px;
  font-size: 13.3px;
  outline: 0;
  transition: border-color 0.25s;
  min-width: 0;
}
.ai-chat-input input:focus {
  border-color: var(--secondary);
}
.ai-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s;
}
.ai-chat-send:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.08);
}
@media (max-width: 480px) {
  .ai-chat {
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    bottom: 96px;
    height: calc(100vh - 116px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ai-fab {
    animation: none;
  }
  .ai-fab::before {
    animation: none !important;
  }
  .ai-chat {
    transition: opacity 0.2s ease;
    transform: none !important;
  }
  .ai-msg,
  .ai-typing span {
    animation: none;
  }
}
.mini-stats {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 20;
  margin-top: -4px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}
.mini-stats .grid4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.mini-stats .item {
  position: relative;
  height: 224px;
  perspective: 1200px;
  transition: transform 0.3s ease;
  cursor: pointer;
  outline: 0;
}
.mini-stats .item:focus-within,
.mini-stats .item:hover {
  transform: translateY(-8px);
}
.value-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition:
    transform 0.4s ease-in-out,
    box-shadow 0.3s ease;
  border-radius: 14px;
}
.mini-stats .item.flipped .value-flip-inner,
.mini-stats .item:focus-within .value-flip-inner,
.mini-stats .item:hover .value-flip-inner {
  transform: rotateY(180deg);
}
.mini-stats .item.flipped .value-flip-inner,
.mini-stats .item:focus-within .value-flip-inner,
.mini-stats .item:hover .value-flip-inner {
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 175, 53, 0.4);
}
.value-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  text-align: center;
}
.value-back {
  transform: rotateY(180deg);
}
.value-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.value-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 14, 36, 0.28),
    rgba(6, 14, 36, 0.4)
  );
}
.value-title {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.value-desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}
.mini-stats .item:first-child {
  border-left: none;
}
.mini-stats .num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--secondary);
}
.mini-stats .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  margin-bottom: 20px;
}
.section-head h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}
.section-head p {
  color: #4b5563;
  font-size: 18px;
}
.on-dark .section-head h2 {
  color: #fff;
}
.on-dark .section-head p {
  color: rgba(255, 255, 255, 0.8);
}
.about {
  background: var(--gray-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 20px;
  box-shadow: 0 6px 18px rgba(20, 30, 70, 0.05);
  border: 1px solid #f0f0f5;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
}
.about-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(20, 30, 70, 0.15);
  border-color: var(--secondary);
}
.about-card .ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(11, 30, 76, 0.05);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}
.about-card h4 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--primary);
}
.about-card p {
  color: #4b5563;
  font-size: 15.5px;
  margin: 0;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}
.badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 3;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}
.badge-float.lift {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.22),
    0 10px 22px rgba(212, 175, 53, 0.22);
}
.badge-float .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  position: relative;
}
.badge-float h5 {
  font-size: 19px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
.badge-float .num-glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 53, 0.6) 0,
    rgba(212, 175, 53, 0) 72%
  );
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.45s ease;
}
.badge-float.lift .num-glow {
  opacity: 1;
}
@keyframes badgeNumPop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.15);
  }
  58% {
    transform: scale(0.95);
  }
  78% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.badge-float .num.pop {
  animation: badgeNumPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.badge-particles {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 4;
}
.confetti-bit {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sz);
  height: var(--sz);
  background: var(--pc);
  opacity: 1;
  animation: confettiBurst 0.85s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: var(--dl, 0ms);
}
.confetti-bit.circle {
  border-radius: 50%;
}
.confetti-bit.square {
  border-radius: 2px;
}
.confetti-bit.star {
  background: var(--pc);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
@keyframes confettiBurst {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty))
      rotate(var(--rot)) scale(0.35);
    opacity: 0;
  }
}
.sparkle-bit {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--sz);
  line-height: 1;
  color: var(--pc);
  opacity: 0;
  animation: sparkleTwinkle 0.9s ease-out forwards;
  animation-delay: var(--dl, 0ms);
}
@keyframes sparkleTwinkle {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) scale(0) rotate(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%)
      translate(calc(var(--tx) * 0.45), calc(var(--ty) * 0.45))
      scale(1.15) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty))
      scale(0.5) rotate(90deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .badge-float {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  .badge-float:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  }
  .badge-float.lift {
    transform: scale(1.02);
  }
}
#services {
  position: relative;
  overflow: hidden;
}
.services-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 30, 0.6);
  z-index: 1;
}
#services > .container {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .services-video {
    display: none;
  }
  #services {
    background: var(--primary);
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .svc-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .svc-flip-grid {
    grid-template-columns: 1fr;
  }
}
.svc-flip-card {
  perspective: 1400px;
  border-radius: 18px;
  cursor: pointer;
  outline: 0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.svc-flip-card:focus-visible,
.svc-flip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  border-radius: 18px;
}
.svc-flip-inner {
  position: relative;
  width: 100%;
  height: 230px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border-radius: 18px;
}
.svc-flip-card.flipped .svc-flip-inner {
  transform: rotateY(180deg);
}
.svc-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}
.svc-flip-face .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 53, 0.18);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  border: 1px solid rgba(212, 175, 53, 0.35);
}
.svc-flip-face h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.svc-flip-face p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
}
.svc-flip-back {
  transform: rotateY(180deg);
}
.svc-flip-btn {
  margin-top: auto;
  align-self: flex-start;
  background: #d4af37;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.svc-flip-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.35);
}
.pathways {
  background: #fff;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pathway-grid {
    grid-template-columns: 1fr;
  }
}
.pathway-card {
  perspective: 1600px;
  border-radius: 18px;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  outline: 0;
}
.pathway-card:focus-visible,
.pathway-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  border-radius: 18px;
}
.pathway-flip {
  position: relative;
  width: 100%;
  height: 400px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border-radius: 18px;
}
.pathway-card.flipped .pathway-flip {
  transform: rotateY(180deg);
}
.pathway-back,
.pathway-front {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.pathway-front {
  background: #0d2b5c;
}
.pathway-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pathway-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
}
.pathway-badge img {
  height: 32px;
  width: auto;
  display: block;
}
.pathway-back {
  background: linear-gradient(160deg, #0d2b5c, #132a5e 80%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 38px;
  color: #fff;
}
.pathway-back h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 14px;
}
.pathway-back p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
  line-height: 1.65;
}
.pathway-btn {
  background: #d4af37;
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: inline-block;
}
.pathway-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.35);
}
.why-cc {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-cc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.why-cc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 30, 76, 0.88) 0,
    rgba(10, 24, 54, 0.85) 55%,
    rgba(5, 12, 30, 0.9) 100%
  );
  z-index: 1;
}
.why-cc .container {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .why-cc-video {
    display: none;
  }
  .why-cc {
    background: linear-gradient(160deg, var(--primary) 0, #050c1e 100%);
  }
}
.check-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px;
  overflow: visible;
  transition:
    transform 0.35s ease-out,
    box-shadow 0.35s ease-out,
    background 0.35s ease-out,
    border-left-color 0.35s ease-out;
}
.check-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    var(--secondary),
    rgba(212, 175, 53, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.35s ease-out,
    clip-path 0.5s ease-out;
  pointer-events: none;
}
.check-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 70%
  );
  background-size: 250% 250%;
  background-position: -120% -120%;
  opacity: 0;
  clip-path: inset(0 round 16px);
  transition:
    opacity 0.4s ease-out,
    background-position 0.9s ease-out;
  pointer-events: none;
}
.check-card:hover {
  border-left-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow:
    inset 0 1px 0 rgba(212, 175, 53, 0.5),
    0 0 0 1px rgba(212, 175, 53, 0.2),
    0 26px 48px rgba(212, 175, 53, 0.14),
    0 16px 32px rgba(0, 0, 0, 0.4);
}
.check-card:hover::before {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.check-card:hover::after {
  opacity: 1;
  background-position: 120% 120%;
}
.check-card .top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.check-card .cc-ic {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.check-card:hover .cc-ic {
  transform: scale(1.1);
}
.check-card h4 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition:
    color 0.35s ease-out,
    text-shadow 0.35s ease-out;
}
.check-card:hover h4 {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.3);
}
.check-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  margin: 0;
  padding-left: 44px;
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .check-card,
  .check-card *,
  .check-card::after,
  .check-card::before {
    transition: none !important;
    animation: none !important;
  }
  .check-card:hover {
    transform: none;
  }
}
.sci-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sci-copy h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
}
.sci-copy p {
  color: #4b5563;
  margin-bottom: 30px;
  font-size: 18px;
}
.sci-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(20, 30, 70, 0.04);
}
.sci-box h5 {
  font-size: 24px;
  margin-bottom: 22px;
  color: var(--primary);
  font-weight: 700;
}
.sci-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sci-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}
.sci-list .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 175, 53, 0.2);
  color: var(--secondary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.sci-photo img {
  border-radius: 32px;
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(20, 30, 70, 0.06);
  border: 1px solid var(--border);
  background: #fff;
  transform-style: preserve-3d;
  perspective: 800px;
  transition:
    transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  will-change: transform;
  cursor: pointer;
}
.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    450px circle at var(--mx, 50%) var(--my, 50%),
    rgba(212, 175, 53, 0.2),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.dest-card:hover {
  box-shadow:
    0 28px 50px rgba(20, 30, 70, 0.18),
    0 0 0 1px rgba(212, 175, 53, 0.15);
  border-color: var(--secondary);
}
.dest-card:hover::before {
  opacity: 1;
}
.dest-photo {
  position: relative;
  height: 190px;
}
.dest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.dest-code {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}
.dest-flag {
  display: inline-block;
  transform-origin: left center;
  animation: flagWave 2.6s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.dest-flag-svg {
  width: 38px;
  height: auto;
  display: block;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@keyframes flagWave {
  0% {
    transform: rotate(0) skewX(0) scaleX(1);
  }
  20% {
    transform: rotate(-6deg) skewX(-5deg) scaleX(0.97);
  }
  50% {
    transform: rotate(0) skewX(0) scaleX(1);
  }
  75% {
    transform: rotate(6deg) skewX(5deg) scaleX(0.97);
  }
  100% {
    transform: rotate(0) skewX(0) scaleX(1);
  }
}
.dest-name {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}
.dest-body {
  padding: 18px 20px 22px;
}
.dest-body p {
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 14px;
  min-height: 38px;
}
.dest-body a {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.uni-band {
  position: relative;
  background: var(--primary);
  padding: 80px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.uni-band-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.uni-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 36, 0.68);
  z-index: 1;
}
.uni-band > .container,
.uni-band > .disclaimer,
.uni-band > .marquee {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .uni-band-video {
    display: none;
  }
}
.marquee {
  overflow: hidden;
  position: relative;
  margin: 44px 0 24px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track span {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.disclaimer {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.process {
  background: var(--gray-50);
}
.journey-section {
  position: relative;
  overflow: hidden;
}
.journey-section .container {
  position: relative;
  z-index: 1;
}
.journey-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 64px;
}
.journey-path-svg {
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
  transition: transform 0.35s ease;
  cursor: pointer;
}
.journey-step:hover {
  transform: translateY(-6px);
}
.journey-photo {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 3px solid var(--secondary);
  box-shadow: 0 10px 24px rgba(20, 30, 70, 0.15);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.journey-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.journey-step:hover .journey-photo {
  transform: scale(1.05);
  box-shadow:
    0 0 0 5px rgba(212, 175, 53, 0.35),
    0 14px 30px rgba(20, 30, 70, 0.22);
}
.journey-step:hover .journey-photo img {
  transform: scale(1.08);
}
.journey-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.journey-step h5 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.3s ease;
}
.journey-step:hover h5 {
  color: var(--secondary-2);
}
.journey-step p {
  color: #6b7280;
  font-size: 13.5px;
  transition: color 0.3s ease;
}
.journey-step:hover p {
  color: #374151;
}
.journey-row:hover .journey-curve {
  stroke-opacity: 1;
  filter: drop-shadow(0 0 3px rgba(212, 175, 53, 0.5));
}
.journey-curve {
  transition: stroke-opacity 0.3s ease;
}
@media (max-width: 980px) {
  .journey-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 16px;
  }
  .journey-path-svg {
    display: none;
  }
}
@media (max-width: 640px) {
  .journey-row {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .journey-step {
    padding: 0 10px 40px;
    position: relative;
  }
  .journey-step::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 50%;
    width: 2px;
    height: calc(100% - 80px);
    background: repeating-linear-gradient(
      180deg,
      var(--secondary) 0 6px,
      transparent 6px 12px
    );
    transform: translateX(-50%);
  }
  .journey-step:last-child::before {
    display: none;
  }
}
.benefit-card {
  position: relative;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.benefit-card:hover {
  box-shadow: 0 14px 28px rgba(20, 30, 70, 0.3);
  transform: translateY(-4px);
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(0.4px);
  z-index: -2;
  transition: transform 0.3s;
}
.benefit-card:hover::before {
  transform: scale(1.04);
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 76, 0.5);
  z-index: -1;
}
.benefit-card h5 {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.stats-band {
  background: var(--primary);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-item .circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.stat-item .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.stat-item:hover .circle {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 34px rgba(212, 175, 53, 0.45);
}
.stat-item:hover .circle img {
  transform: scale(1.12);
}
.stat-item .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
}
.stat-item .num .suffix {
  color: var(--secondary);
}
.stat-item .lbl {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}
.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.testi-head .left h2 {
  font-size: 40px;
  color: var(--primary);
  font-weight: 700;
}
.testi-head .left p {
  color: #4b5563;
  max-width: 560px;
  margin-top: 14px;
  font-size: 17px;
}
.carousel-arrows {
  display: flex;
  gap: 12px;
}
.carousel-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 30, 76, 0.2);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.carousel-arrows button:hover {
  background: var(--primary);
  color: #fff;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-carousel {
  position: relative;
  outline: 0;
}
.testi-viewport {
  overflow: hidden;
  padding: 22px 0 42px;
  margin: -22px 0 -42px;
}
.testi-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  perspective: 1200px;
}
.testi-track:active {
  cursor: grabbing;
}
.testi-slide {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
  padding: 0 12px;
  display: flex;
}
@media (max-width: 980px) {
  .testi-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 640px) {
  .testi-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.testi-card {
  border-top: 4px solid var(--secondary);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(20, 30, 70, 0.08);
  padding: 32px 28px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.testi-card:hover {
  transform: translateY(-10px) scale(1.025) rotateX(3deg);
  box-shadow:
    0 34px 60px rgba(20, 30, 70, 0.22),
    0 12px 24px rgba(212, 175, 53, 0.18);
}
.testi-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212, 175, 53, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}
.testi-person h5 {
  font-size: 19px;
  color: var(--primary);
  font-weight: 700;
}
.testi-person .role {
  color: var(--secondary-2);
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}
.testi-person .loc {
  color: #6b7280;
  font-size: 12.5px;
}
.stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p.body {
  color: #374151;
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.7;
}
.trust-band {
  background: var(--primary);
  color: #fff;
}
.trust-band .testi-head .left h2 {
  color: #fff;
}
.trust-band .testi-head .left p {
  color: rgba(255, 255, 255, 0.75);
}
.trust-band .carousel-arrows button {
  background: 0 0;
  border: 1px solid rgba(212, 175, 53, 0.45);
  color: var(--secondary);
}
.trust-band .carousel-arrows button:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
}
.trust-band .testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  padding: 36px 30px 32px;
}
.trust-band .testi-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 55px rgba(0, 0, 0, 0.32),
    0 10px 22px rgba(212, 175, 53, 0.2);
}
.trust-band .testi-card p.body {
  color: rgba(255, 255, 255, 0.85);
}
.trust-band .testi-person h5 {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.trust-band .testi-person .role {
  color: var(--secondary);
  font-size: 12.5px;
}
.trust-band .testi-top {
  margin-bottom: 20px;
}
.trust-band .testi-avatar,
.trust-band .testi-avatar-initials {
  width: 76px;
  height: 76px;
  border: 2px solid var(--secondary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.trust-band .testi-card:hover .testi-avatar,
.trust-band .testi-card:hover .testi-avatar-initials {
  transform: scale(1.05);
  box-shadow:
    0 0 0 6px rgba(212, 175, 53, 0.28),
    0 10px 22px rgba(212, 175, 53, 0.35);
}
.testi-avatar-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 53, 0.3);
  background: rgba(212, 175, 53, 0.16);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.trust-band .testi-slide {
  opacity: 0;
  transform: translateY(28px);
}
.trust-band .testi-slide.in-view {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.accred-card {
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 44px 34px;
  text-align: center;
  background: var(--gray-50);
  flex: 1;
  max-width: 420px;
}
.accred-badge {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 24px;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.accred-badge.cca {
  background: #b22222;
}
.accred-badge.cccis {
  background: var(--primary);
  border-color: var(--secondary);
}
.accred-card h4 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
.accred-card p {
  color: #4b5563;
  font-size: 15.5px;
}
.accred-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.accred-flip {
  flex: 1;
  max-width: 420px;
  perspective: 1600px;
  cursor: pointer;
}
.accred-flip-inner {
  position: relative;
  width: 100%;
  height: 400px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.accred-flip.flipped .accred-flip-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.accred-front,
.accred-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 2rem;
  overflow: hidden;
}
.accred-front {
  margin: 0;
}
.accred-back {
  background: #0b1e4c;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.accred-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.2rem;
}
#faq {
  position: relative;
  overflow: hidden;
}
.faq-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 242, 0.78);
  z-index: 1;
}
#faq > .container {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .faq-video {
    display: none;
  }
  #faq {
    background: var(--gray-50);
  }
}
.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  color: #4b5563;
  font-size: 16px;
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.chev-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(20, 30, 70, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  flex-shrink: 0;
}
.faq-q:hover .chev-btn {
  transform: scale(1.05);
  box-shadow:
    0 2px 8px rgba(20, 30, 70, 0.15),
    0 0 14px rgba(212, 175, 53, 0.55);
}
.chev-icon {
  display: block;
  transition: transform 0.3s ease-in-out;
}
.faq-item.open .chev-icon {
  transform: rotate(180deg);
}
.cta-band {
  background: var(--primary);
  padding: 20px 0 96px;
}
.cta-box {
  position: relative;
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.cta-box-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 76, 0.68),
    rgba(5, 12, 30, 0.7) 60%
  );
  z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
  .cta-box-video {
    display: none;
  }
  .cta-box {
    background:
      linear-gradient(135deg, rgba(212, 175, 53, 0.06), transparent 60%),
      var(--primary);
  }
}
.cta-box h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 700;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 18px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(20, 30, 70, 0.06);
}
.contact-form h3 {
  font-size: 26px;
  margin-bottom: 26px;
  color: var(--primary);
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--gray-50);
  font-family: inherit;
  font-size: 14.5px;
}
select:disabled {
  background: #ececef;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.send-btn {
  width: 100%;
  margin-top: 8px;
  padding: 17px;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
}
.form-note {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  margin-top: 16px;
}
.contact-info {
  background: var(--primary);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
}
.contact-info h3 {
  font-size: 26px;
  margin-bottom: 28px;
  font-weight: 700;
}
.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.info-row .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.info-row h5 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}
.info-row p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.info-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.info-btns a {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-call {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-book {
  background: var(--secondary);
  color: var(--primary);
}
.map-box {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  height: 230px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-card {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-logo-card img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.tech-partner-card {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 18px;
}
.tech-partner-card img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.tech-partner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 6px 16px rgba(212, 175, 53, 0.25);
}
.tech-partner-btn + .tech-partner-btn {
  margin-top: 12px;
}
.tech-partner-btn span {
  transition: transform 0.3s ease;
}
.tech-partner-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(212, 175, 53, 0.4);
  background: var(--secondary-2);
}
.tech-partner-btn:hover span {
  transform: translateX(4px);
}
.footer-col h5 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 14px;
}
.footer-col ul li a:hover {
  color: var(--secondary);
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  margin-left: 22px;
}
@media (max-width: 980px) {
  .hamburger {
    display: flex;
  }
  .nav-wrap nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: none;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(20, 30, 70, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.3s ease;
  }
  .nav-wrap nav.mobile-open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-row {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }
  nav ul li a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  nav ul li a:hover {
    transform: none;
    box-shadow: none;
  }
  nav ul li a.founder-nav-link {
    width: auto;
    margin: 12px 24px 4px;
    padding: 14px 24px;
    text-align: center;
    border-bottom: 1px solid var(--secondary);
    border-radius: 999px;
  }
  .nav-mobile-cta {
    display: flex;
    padding: 18px 24px;
  }
  .nav-mobile-cta .btn {
    width: 100%;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 38px;
  }
  .hero-stats {
    display: none;
  }
  .mini-stats .grid4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-grid,
  .sci-grid {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }
  .tl-line {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-tech-partner {
    grid-column: span 2;
  }
  .testi-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .badge-float {
    position: static;
    margin-top: -40px;
    margin-left: 0;
    width: 100%;
    border-radius: 0 0 18px 18px;
  }
}
@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }
  .container {
    padding: 0 18px;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .btn {
    padding: 14px 26px;
    font-size: 14.5px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .contact-form,
  .contact-info {
    padding: 26px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .mini-stats .grid4 {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .mini-stats .item {
    height: 210px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .nav-wrap {
    height: 88px;
  }
  .logo img {
    height: 48px;
    transform: scale(1.15);
  }
  .nav-right .btn {
    display: none;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 15.5px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btns .btn {
    width: 100%;
    text-align: center;
  }
  .section-head h2 {
    font-size: 27px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-tech-partner {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom a {
    margin: 0 10px;
  }
}
.wp-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(6, 14, 36, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.wp-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.wp-modal {
  position: relative;
  width: 100%;
  max-width: 1040px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  opacity: 0;
  transform: scale(0.93) translateY(18px);
  transition:
    opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wp-overlay.open .wp-modal {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.wp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 30, 76, 0.85);
  border: 2px solid var(--secondary);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.wp-close:hover {
  transform: scale(1.08) rotate(90deg);
  background: var(--secondary);
  color: var(--primary);
}
.wp-left {
  background:
    linear-gradient(
      160deg,
      rgba(11, 30, 76, 0.92) 0,
      rgba(10, 24, 54, 0.88) 55%,
      rgba(5, 12, 30, 0.94) 100%
    ),
    url("assets/wp_left_bg.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.wp-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 53, 0.22) 0,
    transparent 70%
  );
  pointer-events: none;
}
.wp-left::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 53, 0.14) 0,
    transparent 70%
  );
  pointer-events: none;
}
.wp-left-inner {
  position: relative;
  z-index: 1;
}
.wp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.wp-logo-card {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.wp-logo-card img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.wp-headline {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.wp-headline .accent {
  color: var(--secondary);
}
.wp-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
  line-height: 1.6;
}
.wp-sub strong {
  color: var(--secondary);
  font-weight: 700;
}
.wp-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--secondary);
}
.wp-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 53, 0.6),
    transparent
  );
}
.wp-divider .line.right {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 53, 0.6)
  );
}
.wp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 22px;
}
.wp-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
.wp-feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 53, 0.4);
}
.wp-feature .ic {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-feature .ic svg {
  stroke: var(--secondary);
}
.wp-feature span {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}
.wp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 53, 0.14);
  border: 1px solid rgba(212, 175, 53, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: #fff;
}
.wp-badge .gift {
  font-size: 20px;
  flex-shrink: 0;
}
.wp-badge strong {
  color: var(--secondary);
  display: block;
  font-size: 13.5px;
}
.wp-right {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.wp-form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.wp-form-head .cal-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--secondary),
    var(--secondary-2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(212, 175, 53, 0.35);
}
.wp-form-head h3 {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
}
.wp-form-head h3 .big {
  display: block;
  font-size: 21px;
  font-weight: 800;
}
.wp-field {
  position: relative;
  margin-bottom: 14px;
}
.wp-field .fic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  display: flex;
  pointer-events: none;
}
.wp-field input,
.wp-field select {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: var(--gray-50);
  transition:
    border-color 0.25s,
    background 0.25s;
  outline: 0;
  color: #1f2937;
  appearance: none;
  -webkit-appearance: none;
}
.wp-field select {
  cursor: pointer;
}
.wp-field input:focus,
.wp-field select:focus {
  border-color: var(--secondary);
  background: #fff;
}
.wp-field .sel-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
.wp-cta {
  width: 100%;
  background: linear-gradient(
    120deg,
    var(--secondary),
    var(--secondary-2)
  );
  color: var(--primary);
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  margin-top: 4px;
}
.wp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(212, 175, 53, 0.4);
}
.wp-cta .arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.wp-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}
.wp-or .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.wp-whatsapp {
  width: 100%;
  background: var(--primary);
  border-radius: 14px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.wp-whatsapp:hover {
  transform: translateY(-2px);
  background: #132759;
}
.wp-whatsapp .wa-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wp-whatsapp .wa-txt {
  color: #fff;
}
.wp-whatsapp .wa-txt strong {
  display: block;
  font-size: 14px;
}
.wp-whatsapp .wa-txt span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
}
.wp-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  margin-top: 16px;
}
.wp-secure svg {
  stroke: var(--secondary);
  flex-shrink: 0;
}
.wp-trust {
  grid-column: 1/-1;
  border-top: 1px solid var(--border);
  background: var(--gray-50);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.wp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-trust-item .tb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.wp-trust-item .tb.cca {
  background: linear-gradient(145deg, #b22222, #8b1a1a);
}
.wp-trust-item .tb.cccis {
  background: linear-gradient(145deg, #1a4fa0, #0d2c5e);
}
.wp-trust-item .tb.gold {
  background: linear-gradient(
    145deg,
    var(--secondary),
    var(--secondary-2)
  );
  color: var(--primary);
}
.wp-trust-item .tn {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.wp-trust-item .tl {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.3;
}
.wp-foot {
  grid-column: 1/-1;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 32px;
  font-size: 12.5px;
  text-align: center;
  border-radius: 0 0 22px 22px;
}
.wp-foot a {
  color: var(--secondary);
  font-weight: 600;
}
@media (max-width: 840px) {
  .wp-modal {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }
  .wp-left {
    padding: 34px 26px;
  }
  .wp-right {
    padding: 30px 26px;
  }
  .wp-headline {
    font-size: 25px;
  }
  .wp-trust {
    padding: 16px 20px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .wp-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .wp-feature {
    padding: 12px 8px;
  }
  .wp-trust {
    gap: 12px 20px;
  }
  .wp-trust-item .tl {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-close,
  .wp-cta,
  .wp-feature,
  .wp-modal,
  .wp-overlay,
  .wp-whatsapp {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}
.scl-bubble {
  position: fixed;
  bottom: 104px;
  right: 24px;
  z-index: 298;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(11, 30, 76, 0.82),
    rgba(19, 42, 94, 0.72)
  );
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 175, 53, 0.18);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease;
}
.scl-bubble.scl-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scl-bubble.scl-dim {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
}
.scl-bubble:hover {
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 175, 53, 0.4);
  transform: translateY(-3px) scale(1.02);
}
.scl-bubble.scl-visible:hover {
  transform: translateY(-3px) scale(1.02);
}
.scl-bubble.scl-shake {
  animation: sclShake 0.6s ease-in-out;
}
@keyframes sclShake {
  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0);
  }
  10% {
    transform: translateY(0) scale(1) rotate(-5deg);
  }
  20% {
    transform: translateY(0) scale(1) rotate(5deg);
  }
  30% {
    transform: translateY(0) scale(1) rotate(-5deg);
  }
  40% {
    transform: translateY(0) scale(1) rotate(5deg);
  }
  50% {
    transform: translateY(0) scale(1) rotate(-3deg);
  }
  60% {
    transform: translateY(0) scale(1) rotate(3deg);
  }
  70% {
    transform: translateY(0) scale(1) rotate(-1deg);
  }
  100%,
  80% {
    transform: translateY(0) scale(1) rotate(0);
  }
}
.scl-bubble-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(212, 175, 53, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scl-bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scl-bubble span {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .scl-bubble {
    right: 16px;
    bottom: 94px;
    padding: 9px 16px 9px 9px;
    font-size: 13px;
  }
  .scl-bubble-icon {
    width: 30px;
    height: 30px;
  }
}
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(3, 9, 22, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.legal-overlay.legal-open {
  opacity: 1;
  pointer-events: auto;
}
.legal-modal {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 86vh;
  background: var(--card-dark);
  border: 1px solid rgba(212, 175, 53, 0.25);
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.35s ease;
}
.legal-overlay.legal-open .legal-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.legal-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.legal-modal-head h3 {
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}
.legal-modal-updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  margin-top: 6px;
  font-family: Inter, sans-serif;
}
.legal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--secondary);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.legal-close:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(90deg);
}
.legal-modal-body {
  padding: 22px 30px 34px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.75;
}
.legal-modal-body h4 {
  color: var(--secondary);
  font-size: 16.5px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  margin: 24px 0 10px;
}
.legal-modal-body h4:first-child {
  margin-top: 0;
}
.legal-modal-body p {
  margin-bottom: 13px;
}
.legal-modal-body ul {
  margin: 0 0 13px 20px;
}
.legal-modal-body li {
  margin-bottom: 7px;
}
.legal-modal-body a {
  color: var(--secondary);
  text-decoration: underline;
}
.legal-modal-body strong {
  color: #fff;
}
@media (max-width: 640px) {
  .legal-overlay {
    padding: 12px;
  }
  .legal-modal {
    max-height: 92vh;
    border-radius: 14px;
  }
  .legal-modal-head {
    padding: 20px 20px 16px;
  }
  .legal-modal-head h3 {
    font-size: 21px;
  }
  .legal-modal-body {
    padding: 18px 20px 28px;
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .legal-close,
  .legal-modal,
  .legal-overlay {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}
.choice-overlay {
  position: fixed;
  inset: 0;
  z-index: 960;
  background: rgba(3, 9, 22, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.choice-overlay.choice-open {
  opacity: 1;
  pointer-events: auto;
}
.choice-modal {
  background: #0c1526;
  border-radius: 22px;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.35s ease;
}
.choice-overlay.choice-open .choice-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.choice-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.choice-overlay-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 16, 34, 0.5) 0%,
    rgba(9, 16, 34, 0.82) 55%,
    rgba(9, 16, 34, 0.96) 100%
  );
  z-index: 1;
}
.choice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.choice-close:hover {
  background: rgba(255, 255, 255, 0.24);
}
.choice-content {
  position: relative;
  z-index: 2;
  padding: 150px 30px 34px;
  text-align: left;
}
.choice-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.28;
}
.choice-content p {
  color: #c7cede;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 26px;
}
.choice-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.choice-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.choice-pill:hover {
  transform: translateY(-2px);
}
.choice-pill-outline {
  background: rgba(20, 30, 60, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
}
.choice-pill-gold {
  background: linear-gradient(135deg, #e3c583, #c19a49);
  color: #0c1526;
  border-color: transparent;
  box-shadow: 0 10px 26px -8px rgba(193, 154, 73, 0.6);
}
.choice-pill-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.choice-pill-gold .choice-pill-icon {
  background: rgba(12, 21, 38, 0.14);
}
.choice-pill-icon svg {
  width: 15px;
  height: 15px;
}
.choice-pill-label {
  flex: 1;
}
.choice-pill-arrow {
  font-size: 17px;
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  .choice-overlay,
  .choice-modal {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
}
.video-testi-band {
  background: var(--primary);
  color: #fff;
}
.video-testi-band .section-head h2 {
  color: #fff;
}
.video-testi-band .section-head p {
  color: rgba(255, 255, 255, 0.75);
}
.video-testi-wrap {
  position: relative;
  max-width: 1280px;
  margin: 56px auto 0;
}
.video-testi-viewport {
  overflow: hidden;
  border-radius: 20px;
}
.video-testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-testi-slide {
  flex: 0 0 33.333333%;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.video-testi-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 53, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  background: #000;
}
.video-testi-player {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
}
.video-testi-player::-webkit-media-controls-fullscreen-button,
.video-testi-player::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}
.video-testi-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(212, 175, 53, 0.92);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.video-testi-playbtn svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
  margin-left: 4px;
}
.video-testi-playbtn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--secondary);
}
.video-testi-card.is-playing .video-testi-playbtn {
  opacity: 0;
  pointer-events: none;
}
.video-testi-replaybtn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 53, 0.75);
  background: rgba(11, 30, 76, 0.84);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.video-testi-replaybtn:hover {
  transform: rotate(-25deg) scale(1.08);
  background: rgba(11, 30, 76, 0.96);
}
.video-testi-replaybtn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.video-testi-lower {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: auto;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 76, 0.82),
    rgba(19, 42, 94, 0.72)
  );
  border: 1px solid rgba(212, 175, 53, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    top 0.35s ease,
    bottom 0.35s ease;
  pointer-events: none;
  max-width: 75%;
}
.video-testi-card.is-playing .video-testi-lower {
  top: auto;
  bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
}
.video-testi-card.is-playing .video-testi-lower.show {
  opacity: 1;
  transform: translateY(0);
}
.video-testi-lower strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
}
.video-testi-lower span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.video-testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 53, 0.4);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-testi-prev {
  left: -58px;
}
.video-testi-next {
  right: -58px;
}
.video-testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.video-testi-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.video-testi-dot.active {
  width: 28px;
  background: var(--secondary);
}
@media (max-width: 960px) {
  .video-testi-slide {
    flex-basis: 50%;
  }
  .video-testi-prev {
    left: -10px;
  }
  .video-testi-next {
    right: -10px;
  }
}
@media (max-width: 640px) {
  .video-testi-wrap {
    margin-top: 36px;
  }
  .video-testi-slide {
    flex-basis: 100%;
    padding: 0;
  }
  .video-testi-playbtn {
    width: 60px;
    height: 60px;
  }
  .video-testi-playbtn svg {
    width: 20px;
    height: 20px;
  }
  .video-testi-replaybtn {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .video-testi-lower {
    left: 12px;
    top: 12px;
    bottom: auto;
    padding: 10px 14px;
    max-width: 80%;
  }
  .video-testi-card.is-playing .video-testi-lower {
    top: auto;
    bottom: 12px;
  }
  .video-testi-lower strong {
    font-size: 16px;
  }
}
    
