﻿:root {
  --bg-dark: #0b1724;
  --bg-light: #f5f7fa;
  --text-light: #ffffff;
  --text-dark: #1b2633;
  --accent: #0b1c2b;
  --accent-soft: #2fb4ff;
  --overlay: linear-gradient(90deg, rgba(10, 18, 28, 0.8) 0%, rgba(10, 18, 28, 0.62) 42%, rgba(10, 18, 28, 0.38) 68%, rgba(10, 18, 28, 0.15) 100%);
  --max-width: 1400px;
  --font: "Poppins", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* Scrollbar: hide native scrollbars */
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  scrollbar-width: none;
}

/* ========== Global Link Hover (Effect #7 style) ========== */
a {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

a::before,
a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

a::before {
  bottom: -6px;
  transition-delay: 0.05s;
}

a::after {
  bottom: -12px;
  width: 80%;
  left: 10%;
  transition-delay: 0.12s;
}

a:hover::before,
a:hover::after,
a:focus-visible::before,
a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

a.no-hover-effect::before,
a.no-hover-effect::after {
  display: none !important;
}

/* Body state helpers */
body.menu-open {
  overflow: hidden;
}

body.is-loading .reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.is-loaded .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Navbar ========== */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.navbar {
  display: block;
  color: var(--text-light);
  transition: padding 0.6s ease-in-out, transform 0.6s ease-in-out, width 0.6s ease-in-out, margin 0.6s ease-in-out;
  pointer-events: auto;
  width: 100%;
  margin: 0;
  transform: translateY(0);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 72px;
  transform: translateY(0);
  transition: max-width 0.6s ease-in-out, padding 0.6s ease-in-out, transform 0.6s ease-in-out, height 0.6s ease-in-out;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(1040px, calc(100% - 64px));
  height: 70px;
  transform: translate(-50%, -8px);
  border-radius: 999px;
  background: rgba(14, 24, 36, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  box-shadow: 0 14px 30px rgba(5, 12, 20, 0.35);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.site-header.is-scrolled::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-header.is-scrolled .navbar {
  transform: translateY(0);
}

.site-header.is-scrolled .navbar-inner {
  max-width: min(1040px, calc(100% - 64px));
  padding: 0 56px;
  height: 70px;
  transform: translateY(14px);
}
.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-links a {
  transform: translateY(2px);
  opacity: 0.98;
}

.logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: none;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  white-space: nowrap;
  transform: translateY(0);
  color: var(--text-light);
}

.logo::before,
.logo::after {
  display: none;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(5, 12, 20, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}

.mobile-overlay.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.mobile-overlay-nav a {
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-open .mobile-overlay-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay-nav a:nth-child(1) { transition-delay: 0.2s; }
.mobile-overlay-nav a:nth-child(2) { transition-delay: 0.3s; }
.mobile-overlay-nav a:nth-child(3) { transition-delay: 0.4s; }

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transform: translateY(0);
}


/* ========== Hero Section ========== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 120px;
  color: var(--text-light);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: slow-zoom 26s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-top: 40px;
  margin-left: 0;
  text-shadow: 0 12px 28px rgba(5, 10, 18, 0.35);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(3.4rem, 6vw, 5.3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}

.subhead {
  margin-bottom: 24px;
  font-size: 1.05rem;
  opacity: 0.9;
}

.hero-actions .btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 10px 24px rgba(8, 16, 24, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: #101f30;
}

.btn.ghost {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.8);
}



/* ========== Sections ========== */
.section {
  padding: 120px 20px;
  background: var(--bg-light);
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* ========== Partners Section ========== */
.partners {
  background: #ffffff;
  padding: 50px 20px 40px;
}

.partners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.partners-label {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: #9a9a9a;
  font-weight: 700;
}

.partners-logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  justify-items: center;
  color: #6d6d6d;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.partners-logos img {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: none;
}

@media (max-width: 900px) {
  .partners-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========== Info Section ========== */
.info {
  background: #f3f2ef;
}

.info-head h2 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 2.4rem;
  color: inherit;
  margin-bottom: 8px;
}

.info-head p {
  max-width: 520px;
  color: #7a7a7a;
  font-size: 1rem;
}

.info-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.info-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.info-card.has-bg {
  background: var(--bg-image) center/cover no-repeat;
  position: relative;
  color: #ffffff;
}

.info-card.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.25) 60%, rgba(12, 12, 12, 0.15) 100%);
  border-radius: inherit;
  z-index: 0;
}

.info-hero {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 40px;
  min-height: 320px;
}

.info-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 0;
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.info-hero-content h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.15;
}

.info-hero-link {
  display: block;
  cursor: pointer;
}

.badge-button {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #101010;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8, 16, 24, 0.25);
}

.info-small {
  grid-column: span 4;
  padding: 24px;
}

.info-small h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-small p {
  color: #7a7a7a;
  margin-bottom: 12px;
  font-size: 0.95rem;
}


.info-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  min-height: 260px;
}

.info-wide-overlay {
  position: absolute;
  left: 28px;
  bottom: 26px;
  right: 28px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.info-profile {
  grid-column: span 4;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-height: 280px;
}

.info-profile-content {
  position: absolute;
  left: 28px;
  bottom: 26px;
  right: 28px;
  z-index: 1;
}


.info-profile-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-story {
  grid-column: span 8;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-height: 280px;
}

.info-story-content {
  position: absolute;
  left: 28px;
  bottom: 26px;
  right: 28px;
  z-index: 1;
}

.info-story-content h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-story-content p {
  color: #ffffff;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .info-hero {
    grid-template-columns: 1fr;
  }

  .info-small,
  .info-wide,
  .info-profile,
  .info-story {
    grid-column: span 12;
  }
}

/* ========== Milestones Section ========== */
.milestones {
  background: #ffffff;
}

.milestones.section {
  padding-bottom: 60px;
}

/* ========== Bridge Section ========== */
.bridge-section {
  position: relative;
  height: 300vh;
  background: #f5f7fa;
}

.bridge-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: visible;
  padding: 24px;
}

.bridge-bg {
  position: absolute;
  inset: 24px;
  background: url("./assets/bridge-bg.webp") center/cover no-repeat;
  z-index: 1;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.bridge-bg-title {
  color: #a8dbff;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 720px;
  text-shadow:
    0 6px 16px rgba(0, 0, 0, 0.85),
    0 16px 34px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.bridge-overlay {
  position: absolute;
  inset: 0;
  background: #111111;
  color: #ffffff;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  width: 100%;
  left: 0;
  transform-origin: top;
  margin-left: 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.bridge-overlay.is-visible {
  transform: translateY(0%);
}

.bridge-overlay-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 20px 110px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
}

.bridge-overlay-inner h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.05;
}

.bridge-overlay-inner p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 36px;
}

.bridge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 0;
}

.bridge-card {
  background: #1a1a1a;
  border-radius: 22px;
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bridge-card h3 {
  margin-bottom: 2px;
  font-size: 1.05rem;
}

.bridge-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

/* Bridge media mockup card */
.bridge-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.bridge-media-photo {
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  background: url("./assets/media-bg.webp") center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}

.bridge-media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}

/* ========== FAQ Section ========== */
.faq-section {
  background: #111111;
  color: #ffffff;
  padding-top: 110px;
  padding-bottom: 120px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-head h2 {
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}

.faq-head p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 0 24px;
  text-align: left;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  opacity: 0.8;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.65);
  padding: 0 0 18px;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* ========== Testimonials Section ========== */
.testimonials {
  background: #ffffff;
  padding-bottom: 80px;
}

/* ========== Footer Section ========== */
.footer-section {
  position: relative;
  background: #0e0e0e;
  color: #ffffff;
  padding: 0;
  content-visibility: auto;
  contain-intrinsic-size: 700px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.footer-video-wrap {
  position: relative;
  height: 320px;
  width: 100%;
  overflow: hidden;
}

.footer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.55) 45%, #0e0e0e 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.footer-cta {
  max-width: 620px;
  margin-bottom: 48px;
}

.footer-cta h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 10px;
  white-space: nowrap;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
  white-space: nowrap;
}

.footer-btn {
  background: #ffffff;
  color: #111111;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.footer-btn.light {
  width: fit-content;
  margin-top: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-contact h4,
.footer-form h4 {
  margin-bottom: 12px;
  font-size: 1rem;
}
.footer-contact-item {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-contact-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-item span {
  display: block;
}

.footer-form-inner {
  display: grid;
  gap: 12px;
}

.footer-form-inner input,
.footer-form-inner textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #151515;
  color: #ffffff;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-form-inner input:focus,
.footer-form-inner textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-video-wrap {
    height: 240px;
  }

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

@media (max-width: 600px) {
  .footer-content {
    padding: 50px 20px 30px;
  }

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

.testimonials-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.testimonials-head h2 {
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

.testimonials-head p {
  color: #7a7a7a;
  max-width: 520px;
}

.testimonials-track {
  width: 100%;
  overflow: hidden;
  --testimonial-gap: 24px;
  padding: 0 40px;
}

.testimonials-marquee {
  display: flex;
  gap: var(--testimonial-gap);
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.testimonial-card {
  width: max(260px, calc((100vw - 3 * var(--testimonial-gap) - 80px) / 4));
  border-radius: 26px;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.testimonial-badge strong {
  font-size: 1.05rem;
}

.testimonial-badge.bottom {
  top: auto;
  bottom: 14px;
}

.testimonial-badge strong {
  display: block;
  font-size: 0.78rem;
}

.testimonial-badge button {
  margin-left: auto;
  border: none;
  background: #f4f4f4;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4d6d3;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #2b2b2b;
}

.testimonial-card:nth-of-type(5n + 1) .avatar {
  background: #f4d6d3;
}

.testimonial-card:nth-of-type(5n + 2) .avatar {
  background: #d7e8ff;
}

.testimonial-card:nth-of-type(5n + 3) .avatar {
  background: #dff3e4;
}

.testimonial-card:nth-of-type(5n + 4) .avatar {
  background: #f7e6b5;
}

.testimonial-card:nth-of-type(5n + 5) .avatar {
  background: #ead9f7;
}

.country-badge {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4f4f4;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: 0.5px;
}

.testimonial-photo {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
}

.testimonial-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 22px 22px 64px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 35%, rgba(0, 0, 0, 0.7) 100%);
  font-size: 1rem;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.tphoto-1 { background-image: url("./assets/texture.webp"); }
.tphoto-2 { background-image: url("./assets/texture.webp"); }
.tphoto-3 { background-image: url("./assets/texture.webp"); }
.tphoto-4 { background-image: url("./assets/texture.webp"); }
.tphoto-5 { background-image: url("./assets/texture.webp"); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--testimonial-gap) / 2))); }
}

@media (max-width: 900px) {
  .testimonials-marquee {
    animation-duration: 48s;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 220px;
  }
  .testimonial-photo {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .bridge-sticky {
    padding: 18px;
  }

  .bridge-bg {
    inset: 18px;
    border-radius: 26px;
  }

  .bridge-overlay-inner {
    grid-template-columns: 1fr;
    padding: 90px 20px 90px;
  }

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

  .bridge-media-photo {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .bridge-section {
    height: 240vh;
  }

  .bridge-sticky {
    padding: 12px;
  }

  .bridge-bg {
    inset: 12px;
    border-radius: 22px;
  }

  .bridge-media-photo {
    min-height: 320px;
    border-radius: 22px;
  }

}

.milestones-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.milestones-head {
  text-align: center;
}

.milestones-head h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.6rem;
  color: inherit;
  margin-bottom: 8px;
}

.milestones-head p {
  color: #7a7a7a;
  font-size: 1rem;
}

.milestones-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.milestone-card {
  border-radius: 28px;
  min-height: 320px;
  padding: 24px;
  position: relative;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.milestone-card.has-bg {
  background: var(--bg-image) center/cover no-repeat;
}

.milestone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 12, 18, 0.55) 0%, rgba(8, 12, 18, 0.18) 70%);
  z-index: 0;
}

.milestone-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.milestone-card.highlight .milestone-card-content {
  justify-content: space-between;
  gap: 10px;
}


.milestone-amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.milestone-pill {
  background: #ffffff;
  color: #101010;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.milestone-pill.light {
  background: rgba(255, 255, 255, 0.85);
}

.milestone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.milestone-list li {
  margin-bottom: 6px;
}

.milestones-captions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.milestone-caption h4 {
  text-transform: uppercase;
  font-size: 1.05rem;
  color: inherit;
  margin-bottom: 8px;
}

.milestone-caption p {
  color: #7a7a7a;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .milestones-grid,
  .milestones-captions {
    grid-template-columns: 1fr;
  }

  .milestones-head h2 {
    font-size: 2.1rem;
  }
}


/* ========== Service Page ========== */
.service-hero {
  min-height: 100vh;
  background: #0a0a0a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  transition: background 0.6s ease, color 0.6s ease;
  position: relative;
  overflow: hidden;
}

.service-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.service-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
}

.service-scroll-indicator span {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.service-scroll-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  animation: service-arrow-bounce 1.6s ease-in-out infinite;
}

body.service-article-open .service-scroll-indicator {
  opacity: 1;
  transform: translate(-50%, 0);
}

.service-scroll-indicator.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@keyframes service-arrow-bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}

.service-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 auto;
}

.service-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.65) 0%, rgba(8, 12, 18, 0.75) 100%);
  z-index: 1;
}

.service-links {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.service-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  background: transparent;
  cursor: pointer;
}

.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
}

.service-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.service-article {
  display: none;
  opacity: 0;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  background: transparent;
  color: #111111;
  padding: 0;
  border-radius: 0;
  transition: opacity 0.45s ease;
}

.service-article-section {
  background: #ffffff;
  padding: 90px 20px 120px;
  display: none;
}

.service-article-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
  color: #111111;
}

.service-article-media {
  margin: 0 0 16px 24px;
  max-width: 550px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  background: #f2f2f2;
  float: right;
}

.service-article-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-article-body {
  color: #111111;
  font-size: 1rem;
  line-height: 1.7;
  display: none;
}

.service-article-body::after {
  content: "";
  display: block;
  clear: both;
}

.service-subtitle {
  display: block;
  margin: 22px 0 10px;
  font-weight: 700;
  font-size: 1rem;
  color: #111111;
  letter-spacing: 0.2px;
}

.service-back {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: #111111;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 22px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-back:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.4);
}

body.service-article-open .service-hero {
  background: #0a0a0a;
  color: #ffffff;
}

body.service-article-open .service-menu {
  opacity: 1;
  pointer-events: auto;
}

body.service-article-open .service-article {
  display: block;
  opacity: 1;
}

body.service-article-open .service-article-section {
  display: block;
}

body.service-article-open .service-hero {
  justify-content: center;
  padding-top: 120px;
}

body.service-article-open .service-hero-inner {
  align-items: center;
  text-align: center;
  max-width: 900px;
}



/* ========== Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.info .reveal-on-scroll {
  transition-delay: 0s !important;
}

.info-profile.reveal-on-scroll,
.info-story.reveal-on-scroll {
  transition-duration: 0.45s;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* ========== Responsive ========== */
@media (max-width: 768px) {
  .navbar-inner {
    padding: 18px 24px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .logo {
    font-size: 0.95rem;
  }

  .nav-toggle {
    margin-left: auto;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
  }

  .nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    transform-origin: center;
  }

  .menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    display: none !important;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 0.9rem;
  }

  .hero {
    padding: 0 24px;
  }

  .nav-links a {
    margin-left: 16px;
  }
}
