/* updated-site — layout & sections (Webflow base unchanged) */

:root {
  --nav-h: 76px;
  --brand-blue: #007aff;
  --ink: #0f172a;
  --muted: #64748b;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

/* —— Transparent Navbar —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: var(--nav-h);
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Slight blur on scroll — NO background */
.site-nav.is-scrolled {
  background: transparent;
}

/* 3-column grid: logo | pill | right */
.site-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Left — Logo (glass capsule) */
.site-nav__brand {
  display: flex;
  align-items: center;
  justify-self: start;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-nav__brand:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
}

.site-nav__brand img {
  display: block;
  height: 30px;
  width: auto;
}

/* —— Centered Glass Pill —— */
.site-nav__pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  /* Ultra-Clear Refractive Glass */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

/* Noise overlay for glass realism */
.site-nav__pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Sliding Indicator (Glass Blob with Blueish Glow) */
.site-nav__pill-indicator {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  /* BLUE GLOW EFFECT */
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(240, 248, 255, 0.8) 40%,
      rgba(200, 230, 255, 0.5) 75%,
      rgba(100, 180, 255, 0.3) 100%);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  /* Blueish spectral glow shadow */
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.04),
    0 0 25px rgba(0, 122, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.site-nav.is-scrolled .site-nav__pill {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Individual link inside pill */
.snav-link {
  position: relative;
  z-index: 2;
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Dispersion/Shimmer effect on hover */
.snav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
  pointer-events: none;
  overflow: hidden;
  border-radius: 999px;
}

.snav-link:hover {
  color: var(--brand-blue);
}

.snav-link:hover::after {
  transform: translateX(100%);
}

.snav-link.is-active {
  color: var(--brand-blue);
}

/* Right side */
.site-nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

/* CTA button */
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 18px rgba(0, 122, 255, 0.3);
  white-space: nowrap;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.site-nav__cta:hover {
  background: #0065d9;
  box-shadow: 0 8px 28px rgba(0, 122, 255, 0.38);
  transform: translateY(-1px);
}

/* Hamburger (no glass) */
.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-nav__toggle:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.site-nav-pad {
  padding-top: var(--nav-h);
}

/* —— Mobile (No Glass, No Hover) —— */
@media (max-width: 900px) {
  .site-nav__toggle {
    display: flex;
  }

  .site-nav__toggle:hover {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
  }

  .site-nav__inner {
    grid-template-columns: 1fr auto;
  }

  /* Hide the sliding indicator on mobile to remove the "glass circle" artifact */
  .site-nav__pill-indicator {
    display: none !important;
  }

  .site-nav__brand {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
  }

  .site-nav__brand:hover {
    background: #ffffff !important;
  }

  .site-nav__pill {
    position: absolute;
    top: calc(var(--nav-h) + 12px);
    left: 16px;
    right: 16px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    display: none;
    z-index: 100;
    /* Clean solid background, no glass */
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
  }

  .site-nav__pill::before {
    display: none !important;
  }

  .site-nav.is-open .site-nav__pill {
    display: flex;
  }

  .snav-link {
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 15px;
  }

  .snav-link:hover {
    color: var(--ink) !important;
    background: transparent !important;
  }

  .snav-link:after {
    display: none !important;
  }

  .site-nav__right .site-nav__cta {
    display: none;
  }
}


/* —— Trust + stats: 3-line headline (letter blur) + light sharp numerals —— */
.trust-stats-section {
  padding: clamp(80px, 14vw, 140px) 24px clamp(88px, 12vw, 128px);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.trust-stats-section__inner {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.trust-stats-section .trust-hero-heading {
  margin: 0 0 clamp(56px, 9vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000000;
  line-height: 1.15;
  text-transform: none !important;
  font-variant: normal;
}

.trust-stats-section .trust-hero-line.trust-char-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 auto;
  max-width: 100%;
  text-transform: none !important;
  font-variant: normal;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.trust-hero-line.trust-char-line+.trust-char-line {
  margin-top: 0.8em;
}

.trust-line-chunk {
  display: inline-block;
  font: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

/* Per-letter blur reveal (driven by .reveal on each .trust-char) */
.trust-stats-section .trust-char {
  display: inline-block;
  text-transform: none !important;
  font-variant: normal;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 0.12em, 0) scale(0.98);
  transition:
    opacity 0.3s cubic-bezier(0.12, 0.9, 0.18, 1),
    filter 0.35s cubic-bezier(0.12, 0.9, 0.18, 1),
    transform 0.3s cubic-bezier(0.12, 0.9, 0.18, 1);
  will-change: opacity, filter, transform;
}

.trust-stats-section .trust-char.reveal {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.trust-stats-section .trust-char--accent {
  color: #007aff;
  font-weight: 800;
}

.trust-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(32px, 7vw, 72px);
  max-width: 1000px;
  margin: 0 auto;
}

.trust-stat-card {
  flex: 1 1 160px;
  min-width: 140px;
  max-width: 220px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(12px);
  transition:
    opacity 1s cubic-bezier(0.12, 0.9, 0.18, 1),
    filter 1.1s cubic-bezier(0.12, 0.9, 0.18, 1),
    transform 1s cubic-bezier(0.12, 0.9, 0.18, 1);
}

.trust-stats-section--stats-visible .trust-stat-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.trust-stats-section--stats-visible .trust-stat-card:nth-child(1) {
  transition-delay: 0.05s;
}

.trust-stats-section--stats-visible .trust-stat-card:nth-child(2) {
  transition-delay: 0.14s;
}

.trust-stats-section--stats-visible .trust-stat-card:nth-child(3) {
  transition-delay: 0.23s;
}

.trust-stats-section--stats-visible .trust-stat-card:nth-child(4) {
  transition-delay: 0.32s;
}

.trust-stats-section .trust-stat-card__value {
  font-size: clamp(2.35rem, 5.25vw, 3.65rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  text-transform: none !important;
}

.trust-stats-section .trust-stat-card__label {
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #64748b;
  line-height: 1.35;
  text-transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .trust-stats-section .trust-char {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .trust-stat-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* —— Your Investment Journey —— */
.journey-section {
  padding: clamp(80px, 10vw, 120px) 24px;
  background: #fff;
  font-family: Inter, sans-serif;
}

.journey-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.journey-section__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.journey-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.journey-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.1;
}

.journey-subtitle {
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
}

/* —— Timeline row —— */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: clamp(48px, 7vw, 72px);
}

/* The horizontal connecting line */
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  /* center of the circle */
  left: calc(100% / 8);
  /* start at center of first step */
  right: calc(100% / 8);
  /* end at center of last step */
  height: 1px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, rgba(0, 122, 255, 0.2) 100%);
  z-index: 0;
}

/* Each step column */
.jstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-section.is-visible .jstep {
  opacity: 1;
  transform: translateY(0);
}

.journey-section.is-visible .jstep:nth-child(1) {
  transition-delay: 0.05s;
}

.journey-section.is-visible .jstep:nth-child(2) {
  transition-delay: 0.16s;
}

.journey-section.is-visible .jstep:nth-child(3) {
  transition-delay: 0.27s;
}

.journey-section.is-visible .jstep:nth-child(4) {
  transition-delay: 0.38s;
}

/* Number circle */
.jstep__circle {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-blue);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.jstep__circle-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  font-family: Inter, sans-serif;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.jstep:hover .jstep__circle {
  background: var(--brand-blue);
  box-shadow: 0 0 0 8px rgba(0, 122, 255, 0.1), 0 12px 32px rgba(0, 122, 255, 0.22);
  transform: scale(1.08);
}

.jstep:hover .jstep__circle-num {
  color: #fff;
}

/* Text below circle */
.jstep__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  transition: color 0.3s ease;
}

.jstep:hover .jstep__title {
  color: var(--brand-blue);
}

.jstep__body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 18ch;
  font-family: Inter, sans-serif;
}

.jstep__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(0, 122, 255, 0.07);
  border: 1px solid rgba(0, 122, 255, 0.15);
  border-radius: 999px;
  padding: 4px 11px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.jstep:hover .jstep__badge {
  opacity: 1;
  transform: translateY(0);
  background: rgba(0, 122, 255, 0.13);
}

/* Animated line that draws on scroll */
.journey-line-wrap {
  position: relative;
  overflow: hidden;
  height: 1px;
  margin: 0 calc(100% / 8);
  background: rgba(0, 122, 255, 0.12);
  margin-bottom: 0;
}

.journey-line-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-blue), rgba(0, 122, 255, 0.3));
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.journey-section.is-visible .journey-line-fill {
  width: 100%;
}

/* CTA button */
.journey-cta {
  text-align: center;
}

.journey-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--brand-blue);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.975rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 28px rgba(0, 122, 255, 0.28);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.journey-cta__btn:hover {
  background: #0065d9;
  box-shadow: 0 14px 40px rgba(0, 122, 255, 0.36);
  transform: translateY(-2px);
}

.journey-cta__btn svg {
  transition: transform 0.3s ease;
}

.journey-cta__btn:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .journey-timeline::before {
    display: none;
  }

  .journey-line-wrap {
    display: none;
  }
}

@media (max-width: 480px) {
  .journey-timeline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jstep {
    opacity: 1 !important;
    transform: none !important;
  }

  .journey-line-fill {
    width: 100% !important;
    transition: none !important;
  }
}

/* —— Mobile app —— */
.mobile-app-section {
  padding: 88px 24px;
  background: #f8fafc;
  font-family: Inter, sans-serif;
}

.mobile-app-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .mobile-app-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.mobile-app-section__visual {
  display: flex;
  justify-content: center;
}

.mobile-app-section__visual img {
  max-width: 100%;
  width: min(400px, 100%);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.mobile-app-section__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mobile-app-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
}

.mobile-app-section__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
}

.mobile-app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-app-feature {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.mobile-app-feature h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.mobile-app-feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

/* —— Services: 6 cards, no left column —— */
#services .payment-wrapper {
  display: block;
}

#services .payment-contant-right {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
  width: 100%;
}

@media (max-width: 991px) {
  #services .payment-contant-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 600px) {
  #services .payment-contant-right {
    grid-template-columns: 1fr;
  }
}

#services .simple-payment-card {
  min-height: 100%;
}

/* —— Trust Grid (replaces old why-mikio list) —— */
.trust-grid-section {
  padding: clamp(88px, 12vw, 130px) 24px;
  background: #f8fafc;
  font-family: Inter, sans-serif;
}

.trust-grid-section__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.trust-grid-section__header {
  text-align: center;
  margin-bottom: clamp(44px, 7vw, 64px);
}

.trust-grid-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trust-grid-title {
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.1;
}

.trust-grid-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 auto;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

/* Individual card */
.tg-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e8eef6;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.trust-grid-section.is-visible .tg-card {
  opacity: 1;
  transform: translateY(0);
}

.trust-grid-section.is-visible .tg-card:nth-child(1) {
  transition-delay: 0.05s;
}

.trust-grid-section.is-visible .tg-card:nth-child(2) {
  transition-delay: 0.12s;
}

.trust-grid-section.is-visible .tg-card:nth-child(3) {
  transition-delay: 0.19s;
}

.trust-grid-section.is-visible .tg-card:nth-child(4) {
  transition-delay: 0.26s;
}

.tg-card:hover {
  border-color: rgba(0, 122, 255, 0.22);
  box-shadow: 0 16px 48px rgba(0, 122, 255, 0.09);
}

/* Blue accent bar that slides in on hover */
.tg-card__hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-blue), #00c6ff);
  border-radius: 0 0 0 0;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tg-card:hover .tg-card__hover-line {
  width: 100%;
}

/* Icon */
.tg-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.09), rgba(0, 198, 255, 0.06));
  border: 1px solid rgba(0, 122, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 18px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

.tg-card:hover .tg-card__icon {
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.16), rgba(0, 198, 255, 0.12));
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.18);
  transform: rotate(-5deg) scale(1.08);
}

.tg-card__index {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 10px;
  opacity: 0.7;
}

.tg-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
}

.tg-card__body {
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--muted);
  margin: 0;
  font-family: Inter, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .tg-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Portfolio Review Section —— */
.portfolio-review-section {
  padding: clamp(88px, 12vw, 130px) 24px;
  background: #fff;
  font-family: Inter, sans-serif;
}

.portfolio-review__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .portfolio-review__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Left copy */
.portfolio-review__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-review__title {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.12;
}

.portfolio-review__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 42ch;
}

.portfolio-review__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-review__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.portfolio-review-section.is-visible .portfolio-review__checklist li {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-review-section.is-visible .portfolio-review__checklist li:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio-review-section.is-visible .portfolio-review__checklist li:nth-child(2) {
  transition-delay: 0.17s;
}

.portfolio-review-section.is-visible .portfolio-review__checklist li:nth-child(3) {
  transition-delay: 0.24s;
}

.portfolio-review-section.is-visible .portfolio-review__checklist li:nth-child(4) {
  transition-delay: 0.31s;
}

.portfolio-review-section.is-visible .portfolio-review__checklist li:nth-child(5) {
  transition-delay: 0.38s;
}

.portfolio-review__checklist li svg {
  flex-shrink: 0;
  color: var(--brand-blue);
  background: rgba(0, 122, 255, 0.09);
  border-radius: 50%;
  padding: 3px;
  width: 22px;
  height: 22px;
}

/* Right card */
.portfolio-review__card {
  background: #fff;
  border: 1px solid #e2eaf4;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(15, 23, 42, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-review-section.is-visible .portfolio-review__card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.portfolio-review__card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-blue), #00a8e8);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.portfolio-review__card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 6px;
}

.portfolio-review__card-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 24px;
}

/* Form */
.portfolio-review__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .pr-form__row {
    grid-template-columns: 1fr;
  }
}

.pr-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pr-form__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.pr-form__field input,
.pr-form__field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde4ee;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.pr-form__field input:focus,
.pr-form__field select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
  background: #fff;
}

.pr-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.pr-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--brand-blue);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 28px rgba(0, 122, 255, 0.28);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  margin-top: 4px;
}

.pr-form__submit:hover {
  background: #0065d9;
  box-shadow: 0 12px 36px rgba(0, 122, 255, 0.38);
  transform: translateY(-1px);
}

.pr-form__submit:active {
  transform: translateY(0);
}

.pr-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 8px 0 0;
  text-align: center;
  justify-content: center;
}

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

  .portfolio-review__checklist li,
  .portfolio-review__card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Hide default nav container from Webflow export (not used) */
.navber-container {
  display: none !important;
}

/* —— Services Section Header —— */
.services-section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 76px);
  width: 100%;
}

.services-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}

.services-title {
  font-size: clamp(2.1rem, 4.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}

.services-subtitle {
  font-size: 1.05rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  margin: 0 auto;
}

/* —— About Section (Matching Services Gradient) —— */
.about-section {
  padding: clamp(80px, 10vw, 130px) 24px;
  background: linear-gradient(135deg, #6FC4F6 0%, #0367B8 15%, #020B6E 80%);
  position: relative;
  overflow: hidden;
  font-family: Inter, sans-serif;
}

/* Noise overlay for depth */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

/* ——— LEFT COLUMN ——— */
.about-left {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0px;
}

.about-section.is-visible .about-left {
  opacity: 1;
  transform: translateX(0);
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff !important;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title {
  font-size: clamp(2.745rem, 5.58vw, 4.095rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.0;
  margin: 0 0 36px;
}

.about-title-gradient {
  background: linear-gradient(110deg, #60a5fa, #007aff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat Pills */
.about-stat-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-stat-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.about-stat-pill:hover {
  background: rgba(0, 122, 255, 0.08);
  border-color: rgba(0, 122, 255, 0.25);
}

.about-stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.about-stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ——— RIGHT COLUMN ——— */
.about-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.about-section.is-visible .about-right {
  opacity: 1;
  transform: translateX(0);
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
}

.about-body p {
  margin-bottom: 20px;
}

.about-body strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

/* Pillar Cards — 2×2 Grid */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-pillar {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  opacity: 0;
  transform: translateY(18px);
}

.about-pillar:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-section.is-visible .about-pillar {
  opacity: 1;
  transform: translateY(0);
}

.about-section.is-visible .about-pillar:nth-child(1) {
  transition-delay: 0.3s;
}

.about-section.is-visible .about-pillar:nth-child(2) {
  transition-delay: 0.42s;
}

.about-section.is-visible .about-pillar:nth-child(3) {
  transition-delay: 0.54s;
}

.about-section.is-visible .about-pillar:nth-child(4) {
  transition-delay: 0.66s;
}

.about-pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}

/* Glowing icon orb */
.about-pillar__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.about-pillar:hover .about-pillar__icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 24px rgba(111, 196, 246, 0.3);
  transform: scale(1.08);
}

.about-pillar__icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
  display: block;
}

.about-pillar__text {
  flex: 1;
}

.about-pillar strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.about-pillar p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Remove the now-unused line element */
.about-pillar__line {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-stat-pills {
    justify-content: center;
  }

  .about-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    margin-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .about-stat-pills {
    flex-direction: row;
  }
}

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

  .about-left,
  .about-right,
  .about-pillar {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hide Webflow badge */
.w-webflow-badge {
  display: none !important;
}

/* Footer Logo Spacing Fix */
.footer-bottom-left {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  height: auto !important;
}

.footer-logo-part {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 12px !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-25px) !important;
}

.logo-icon-footer,
.logo-icon-footer a,
.logo-icon-footer img {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-logo-text {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}