/* =====================================================================
   Anuyog Financial Services — premium light theme (one-pager)
   Navy + logo blue→cyan · refined typography · mobile-first
   ===================================================================== */

:root {
  /* Palette — light, airy, private-banking refined */
  --bg:            #f6f8fc;
  --bg-2:          #eef2f8;
  --surface:       #ffffff;
  --surface-2:     #fbfcfe;
  --ink:           #0a1b3d;           /* navy — primary "premium" tone */
  --ink-2:         #142a58;
  --ink-soft:      rgba(10, 27, 61, 0.65);
  --body:          #46556e;
  --mute:          #6f7e98;
  --faint:         #9aa7bf;
  --line:          #e2e8f2;
  --line-soft:     #eef2f8;

  /* Brand — from logo */
  --blue:          #2563eb;
  --blue-deep:     #1e3a8a;
  --sky:           #60a5fa;
  --cyan:          #22d3ee;
  --ocean:         #0c4a6e;

  /* Refined accent (replaces gold) — a quiet teal-ink */
  --accent:        #0c6e75;
  --accent-soft:   rgba(12, 110, 117, 0.08);

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #22d3ee 100%);
  --grad-soft:     linear-gradient(135deg, #e8efff 0%, #eafbfd 100%);
  --grad-ink:      linear-gradient(135deg, #0a1b3d 0%, #1e3a8a 60%, #2563eb 100%);

  /* Type */
  --ff-serif:      'Fraunces', 'Playfair Display', Georgia, serif;
  --ff-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii / shadows */
  --r-sm:          12px;
  --r:             20px;
  --r-lg:          28px;
  --sh-1:          0 2px 8px rgba(10, 27, 61, 0.04);
  --sh-2:          0 14px 30px -18px rgba(10, 27, 61, 0.18);
  --sh-3:          0 30px 60px -30px rgba(10, 27, 61, 0.25);
  --sh-blue:       0 18px 50px -20px rgba(37, 99, 235, 0.35);

  /* Section rhythm */
  --section-y:     clamp(74px, 10vw, 130px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}
img, svg, iframe { max-width: 100%; height: auto; display: block; }

/* Prevent grid/flex items from refusing to shrink below intrinsic content width. */
main, .container, section, header, footer, nav { min-width: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
input, select, textarea, button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.12;
}
p { margin: 0; }
::selection { background: var(--blue); color: #fff; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 22px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d-1 { transition-delay: .08s; }
.reveal.d-2 { transition-delay: .16s; }
.reveal.d-3 { transition-delay: .24s; }
.reveal.d-4 { transition-delay: .32s; }
.reveal.d-5 { transition-delay: .4s; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 14px 0;
  background:
    linear-gradient(180deg, #061024 0%, #0a1b3d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(10, 27, 61, 0.02), 0 14px 40px -24px rgba(6, 16, 36, 0.6);
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 16, 36, 0.92);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px -20px rgba(6, 16, 36, 0.8);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand {
  display: inline-flex; align-items: center;
  line-height: 0;
}
.brand-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(96, 165, 250, 0.28));
  transition: transform .3s ease, filter .3s ease;
}
.brand:hover .brand-logo { transform: scale(1.03); filter: drop-shadow(0 8px 22px rgba(96, 165, 250, 0.45)); }
.site-header.scrolled .brand-logo { height: 40px; }
@media (min-width: 640px) {
  .brand-logo { height: 56px; }
  .site-header.scrolled .brand-logo { height: 50px; }
}
@media (min-width: 1100px) {
  .brand-logo { height: 64px; }
  .site-header.scrolled .brand-logo { height: 56px; }
}

.nav-links { display: none; gap: 30px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  position: relative;
  transition: color .25s ease;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

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

/* Desktop nav CTA — bright gradient pill that pops against the dark navbar */
@media (min-width: 900px) {
  .site-header .nav-cta.btn-primary,
  .site-header .nav-cta.btn-primary:hover,
  .site-header .nav-cta.btn-primary:focus {
    background: var(--grad-brand);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
      0 14px 30px -14px rgba(34, 211, 238, 0.55),
      0 0 0 1px rgba(34, 211, 238, 0.25);
  }
  .site-header .nav-cta.btn-primary:hover {
    box-shadow:
      0 22px 40px -14px rgba(34, 211, 238, 0.75),
      0 0 0 1px rgba(34, 211, 238, 0.45);
  }
}

.nav-toggle {
  width: 42px; height: 42px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.nav-toggle span {
  width: 20px; height: 1.6px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 72px; left: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  z-index: 899;
  box-shadow: var(--sh-3);
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
  padding: 14px 16px; border-radius: 12px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .2s ease, color .2s ease;
}
.mobile-nav a:not(.btn-primary):hover { background: var(--bg); }
.mobile-nav .btn-primary,
.mobile-nav .btn-primary:hover,
.mobile-nav .btn-primary:focus {
  margin-top: 10px;
  justify-content: center;
  color: #fff;
  background: var(--grad-ink);
}
.mobile-nav .btn-primary i { color: #fff; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn-primary, .btn-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 26px;
  font-family: var(--ff-sans);
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-ink);
  color: #fff;
  box-shadow: var(--sh-blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.7,0,.3,1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 55px -18px rgba(37, 99, 235, 0.55);
  color: #fff;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary i { transition: transform .3s ease; font-size: 12px; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-link {
  color: var(--ink);
  background: transparent;
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 var(--ink);
  letter-spacing: 0.14em;
}
.btn-link:hover { color: var(--blue); box-shadow: inset 0 -1px 0 var(--blue); }
.btn-link i { font-size: 11px; transition: transform .3s ease; }
.btn-link:hover i { transform: translateX(3px); }

.btn-sm { padding: 11px 22px; font-size: 11.5px; }
.btn-lg { padding: 17px 34px; font-size: 13.5px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0;
  font-family: var(--ff-sans); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.eyebrow.center { justify-content: center; }

/* =====================================================================
   SECTION HEAD
   ===================================================================== */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(46px, 6vw, 72px) auto;
}
.section-head.row-head {
  text-align: left;
  max-width: none;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: end; justify-content: space-between;
}
.section-head.row-head .eyebrow { justify-content: flex-start; }

.section-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  margin-top: 18px;
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, #eafbfd 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, #e8efff 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg .blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55;
}
.hero-bg .blob-a { width: 420px; height: 420px; background: rgba(96, 165, 250, 0.35); top: -140px; right: -120px; }
.hero-bg .blob-b { width: 360px; height: 360px; background: rgba(34, 211, 238, 0.3); bottom: -140px; left: -90px; }
.hero-bg .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10, 27, 61, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 5%, transparent 65%);
          mask-image: radial-gradient(ellipse at 50% 40%, #000 5%, transparent 65%);
  opacity: .5;
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 44px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }          /* let grid items shrink below content width */
.hero-copy { overflow-wrap: break-word; word-wrap: break-word; }
.ht-main, .ht-brand { overflow-wrap: break-word; word-wrap: break-word; }

.hero-title { margin: 6px 0 22px; }
.ht-kicker {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 500; font-size: clamp(13px, 2.4vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 22px;
}
.ht-main {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(32px, 7vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.ht-brand {
  display: block;
  margin-top: 10px;
  padding-bottom: 0.18em;                      /* room for descenders (g, y) */
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(36px, 8vw, 84px);
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;                           /* was 1 — clipped descenders */
  overflow: visible;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.ht-brand em {
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  padding-bottom: 0.05em;
}

.hero-desc {
  max-width: 560px;
  margin: 0 0 34px;
  font-size: clamp(15.5px, 2.4vw, 17.5px);
  line-height: 1.75;
  color: var(--body);
}

.hero-cta {
  display: flex; gap: 22px; flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-marks {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-marks li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-marks i {
  color: var(--blue);
  font-size: 13px;
  width: 16px; text-align: center;
}

/* Hero card */
.hero-card {
  position: relative;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.hero-card::before {
  content: ""; position: absolute; top: -1px; left: 24px; right: 24px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.hc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hc-mark {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #eaf1ff, #e6fbfd);
  flex: 0 0 54px;
}
.hc-mark img { width: 38px; height: 38px; }
.hc-label {
  font-family: var(--ff-sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.hc-sub {
  font-family: var(--ff-serif); font-style: italic; font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
}

.hc-chart {
  width: 100%;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 14px;
  margin-bottom: 18px;
}
.hc-chart svg { width: 100%; height: 140px; }
.hc-stroke { stroke-dasharray: 600; stroke-dashoffset: 600; animation: stroke-draw 2.2s cubic-bezier(.4,.1,.3,1) .8s forwards; }
@keyframes stroke-draw { to { stroke-dashoffset: 0; } }
.hc-pulse { opacity: 0; animation: pulse-in .4s ease 2.8s forwards, pulse-loop 2.4s ease 3.2s infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pulse-in { to { opacity: 1; } }
@keyframes pulse-loop { 0% { r: 4; opacity: 1; } 100% { r: 10; opacity: 0; } }

.hc-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.hc-stats > div { min-width: 0; }
@media (min-width: 420px) {
  .hc-stats { grid-template-columns: repeat(4, 1fr); }
}
.hc-stats > div {
  text-align: center;
  padding: 6px 4px;
}
.hc-stats strong {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hc-stats span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

.scroll-hint {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  z-index: 5;
  padding: 6px 4px;
}
.scroll-hint span:last-child { order: 2; }
.scroll-hint .scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--blue), transparent);
  position: relative; overflow: hidden;
  order: 1;
}
.scroll-hint .scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  animation: scan-y 2s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes scan-y {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee-section {
  padding: 22px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee-section::before, .marquee-section::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.marquee { display: flex; }
.marquee-track {
  display: inline-flex; align-items: center; gap: 42px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  flex-shrink: 0;
  padding-right: 42px;
}
.marquee-track span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--ink-soft);
}
.marquee-track i {
  color: var(--blue); font-size: 8px; font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   ABOUT FIRM
   ===================================================================== */
.about-firm {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 44px;
  align-items: center;
}
.about-media .media-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4 / 5;
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.about-media .media-card:hover img { transform: scale(1.04); }
.media-badge {
  position: absolute; bottom: 22px; left: 22px;
  padding: 18px 24px;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  text-align: left;
}
.media-badge .mb-small {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute);
}
.media-badge .mb-big {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 36px;
  color: var(--ink); line-height: 1;
  margin: 2px 0;
  letter-spacing: -0.02em;
}

.about-copy p {
  color: var(--body);
  font-size: 16px; line-height: 1.8;
  margin-top: 14px;
}
.pillars {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.pillars li {
  display: flex; align-items: flex-start; gap: 16px;
}
.pillars i {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--blue);
  font-size: 16px;
}
.pillars h5 {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}
.pillars p {
  margin: 0;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.6;
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.services {
  padding: var(--section-y) 0;
  background: var(--surface);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.service-grid > * { height: 100%; }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px 26px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 28px; right: 28px;
  height: 2px; background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--sh-3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: rgba(37, 99, 235, 0.1);
  letter-spacing: -0.04em;
  user-select: none;
  transition: color .3s ease, transform .4s ease;
}
.service-card:hover .num { color: rgba(37, 99, 235, 0.2); transform: translateY(-2px); }

.service-card .icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 20px;
  transition: transform .4s ease, color .3s ease, background .3s ease;
}
.service-card:hover .icon {
  transform: rotate(-5deg) scale(1.05);
  background: var(--grad-brand);
  color: #fff;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 21px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.chips li {
  font-family: var(--ff-sans);
  font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 99px;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line-soft);
}

.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0 0;
  border-top: 1px solid var(--line-soft);
  width: 100%;
  margin-top: auto;                /* pin to card bottom */
  transition: color .25s ease, gap .3s ease;
}
.service-link i { color: var(--blue); transition: transform .3s ease; }
.service-link:hover { color: var(--blue); gap: 16px; }
.service-link:hover i { transform: translateX(4px); }

.service-card.featured {
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f7ff 100%);
  border-color: rgba(37, 99, 235, 0.2);
}
.service-card.featured::before { transform: scaleX(1); }
.service-card.featured .icon { background: var(--grad-brand); color: #fff; }
.service-card .badge {
  position: absolute; top: 22px; left: 28px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 99px;
  background: var(--grad-ink);
  color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.service-card .badge i { font-size: 9px; color: var(--cyan); }

/* =====================================================================
   APPROACH
   ===================================================================== */
.approach {
  padding: var(--section-y) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.approach-grid {
  display: grid; grid-template-columns: 1fr; gap: 50px;
}
.approach-intro p {
  margin-top: 18px;
  color: var(--body);
  font-size: 16px; line-height: 1.8;
  max-width: 480px;
}
.approach-intro .mt { margin-top: 28px; }

.approach-steps {
  display: flex; flex-direction: column; gap: 14px;
  counter-reset: step;
}
.approach-steps li {
  display: flex; gap: 20px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.approach-steps li:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(6px);
  box-shadow: var(--sh-2);
}
.approach-steps .step-no {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500; font-size: 18px;
  color: var(--blue);
  background: var(--grad-soft);
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.approach-steps h4 {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 18px;
  margin-bottom: 4px;
  color: var(--ink);
}
.approach-steps p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* =====================================================================
   WHY
   ===================================================================== */
.why {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.why-card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.why-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.why-card i {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 18px;
  display: inline-block;
  padding: 14px;
  background: var(--grad-soft);
  border-radius: 14px;
  width: 52px; height: 52px;
  text-align: center;
  line-height: 24px;
}
.why-card h4 {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-card p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* =====================================================================
   FOUNDER
   ===================================================================== */
.founder {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--bg);
  overflow: hidden;
}
.founder-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(96, 165, 250, 0.2), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(34, 211, 238, 0.18), transparent 55%);
}
.founder-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 44px;
  align-items: start;
}

.founder-portrait {
  display: flex; flex-direction: column; gap: 0;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #e8efff, #e6fbfd);
  box-shadow: var(--sh-3);
}
.portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.portrait:hover img { transform: scale(1.03); }
.portrait-ring {
  position: absolute; inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: calc(var(--r-lg) - 12px);
  pointer-events: none;
}

.founder-card {
  margin-top: -40px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  position: relative;
  z-index: 2;
}
.fc-name {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.fc-role {
  font-family: var(--ff-serif);
  font-style: italic; font-weight: 400;
  color: var(--blue);
  font-size: 14.5px;
  margin-top: 2px;
}
.fc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.fc-tags li {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--ink-soft);
}
.fc-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--grad-ink);
  color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fc-link:hover { transform: translateY(-2px); box-shadow: var(--sh-blue); color: #fff; }

.founder-copy .founder-quote {
  position: relative;
  margin: 28px 0 0;
  padding: 0;
  font-family: var(--ff-serif);
  font-weight: 400;
}
.founder-quote > i.fa-quote-left {
  font-size: 40px;
  color: rgba(37, 99, 235, 0.18);
  margin-bottom: 8px;
  display: block;
}
.founder-quote p {
  color: var(--ink-2);
  font-size: clamp(16.5px, 2.4vw, 19px);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.founder-quote p.sign-off {
  font-style: normal;
  font-family: var(--ff-sans);
  font-size: 15.5px;
  color: var(--body);
  margin-top: 22px;
  line-height: 1.7;
}

.signature {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.signature svg { width: 180px; height: auto; margin-bottom: 8px; opacity: .85; }
.signature .sig-img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 72px;
  margin-bottom: 10px;
  opacity: .88;
  object-fit: contain;
}
.signature p { font-family: var(--ff-sans); font-size: 14px; color: var(--ink-soft); }
.signature strong { color: var(--ink); font-weight: 600; }

/* =====================================================================
   NUMBERS
   ===================================================================== */
.numbers {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.numbers-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.stat-card {
  position: relative;
  text-align: center;
  padding: 36px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.stat-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  transform: translateY(-4px);
  background: var(--surface);
  box-shadow: var(--sh-2);
}
.stat-no {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stat-no span {
  font-size: clamp(48px, 8vw, 70px);
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-no i {
  font-style: italic;
  font-size: clamp(14px, 2.4vw, 18px);
  color: var(--blue);
  font-weight: 500;
  font-family: var(--ff-serif);
}
.stat-card p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

/* =====================================================================
   INSIGHTS / NEWS
   ===================================================================== */
.insights {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.insights-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
  align-items: stretch;
}
.insights-grid > * { height: 100%; }
.insight-card {
  display: flex; flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: rgba(37, 99, 235, 0.18);
}
.ic-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.ic-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.insight-card:hover .ic-media img { transform: scale(1.06); }
.ic-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 9.75px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: 7px;
  max-width: calc(100% - 70px);
  white-space: nowrap;
}
.ic-tag i { color: #0a66c2; font-size: 10px; }
.ic-post {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 10px;
  background: var(--grad-ink);
  color: #fff;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.02em;
  border-radius: 99px;
  box-shadow: 0 6px 16px -8px rgba(10, 27, 61, 0.5);
}
.ic-body {
  padding: 20px 20px 20px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.ic-date {
  font-size: 12px; font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.ic-date i { color: var(--blue); font-size: 11px; }
.insight-card h4 {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: 17.5px;
  line-height: 1.3;
  color: var(--ink);
  transition: color .3s ease;
  letter-spacing: -0.01em;
}
.insight-card:hover h4 { color: var(--blue); }
.ic-body p {
  color: var(--body);
  font-size: 13.75px;
  line-height: 1.6;
  margin-bottom: 4px;
  flex: 1;
}
.ic-read {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
  transition: color .25s ease, gap .3s ease;
}
.ic-read i { color: var(--blue); transition: transform .3s ease; }
.insight-card:hover .ic-read { color: var(--blue); gap: 14px; }
.insight-card:hover .ic-read i { transform: translateX(4px); }

/* LinkedIn-flavoured insight cards */
.linkedin-card .ic-read { color: #0a66c2; }
.linkedin-card .ic-read i { color: #0a66c2; font-size: 13px; }
.linkedin-card:hover .ic-read { color: #004182; gap: 12px; }
.linkedin-card:hover .ic-read i { transform: none; }
.linkedin-card::after {
  content: "";
  position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, #0a66c2, #22d3ee);
  transition: height .5s cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
}
.linkedin-card { position: relative; }
.linkedin-card:hover::after { height: 100%; }

.hide-sm { display: none; }

/* =====================================================================
   QUOTES / TESTIMONIALS
   ===================================================================== */
.quotes {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.quotes-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.quote-card {
  position: relative;
  padding: 36px 28px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  margin: 0;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: rgba(37, 99, 235, 0.2);
}
.quote-card > i {
  font-size: 36px;
  color: rgba(37, 99, 235, 0.2);
  margin-bottom: 12px;
  display: block;
}
.quote-card blockquote {
  margin: 0 0 22px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.quote-card figcaption {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-card figcaption strong {
  display: block;
  font-family: var(--ff-sans); font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.quote-card figcaption span {
  display: block;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.06em;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.faq-wrap {
  display: grid; grid-template-columns: 1fr; gap: 44px;
  align-items: start;
}
.faq-intro p {
  margin-top: 18px;
  color: var(--body);
  font-size: 15.5px; line-height: 1.75;
  max-width: 400px;
}
.faq-intro .mt { margin-top: 22px; }

.faq-list {
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open { border-color: rgba(37, 99, 235, 0.3); box-shadow: var(--sh-2); }
.faq-q {
  width: 100%;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color .25s ease;
}
.faq-q:hover { color: var(--blue); }
.faq-q i {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--blue);
  font-size: 12px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s ease, color .3s ease;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
  background: var(--grad-brand);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 22px 22px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.75;
}

/* =====================================================================
   CTA
   ===================================================================== */
.cta {
  padding: var(--section-y) 0;
  background: var(--surface);
  position: relative;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: start;
}

.cta-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  box-shadow: var(--sh-2);
}
.cta-card::before {
  content: ""; position: absolute; top: -1px; left: 40px; right: 40px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.cta-card .section-title { text-align: left; font-size: clamp(26px, 4.6vw, 40px); }
.cta-desc {
  margin: 16px 0 26px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.7;
}

.cta-form {
  display: flex; flex-direction: column; gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cta-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cta-form label.full { grid-column: 1 / -1; }
.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: var(--ff-sans);
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(111, 126, 152, 0.5); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.cta-form textarea { resize: vertical; min-height: 96px; }
.cta-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%232563eb' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; background-size: 10px; padding-right: 38px; }
.cta-form button { align-self: flex-start; margin-top: 8px; }
.cta-foot {
  font-size: 12px; color: var(--mute);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.cta-foot i { color: var(--blue); font-size: 11px; margin-right: 6px; }

.cta-aside {
  display: flex; flex-direction: column; gap: 18px;
}
.side-card {
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.side-card h5 {
  font-family: var(--ff-sans);
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.cline {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  transition: color .25s ease;
}
.cline:first-of-type { border-top: 0; padding-top: 0; }
.cline i {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--blue);
  font-size: 14px;
}
.cline small {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.cline strong {
  display: block;
  font-weight: 500; font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
a.cline:hover strong { color: var(--blue); }

.side-socials {
  padding: 20px 24px;
  background: var(--grad-ink);
  border-radius: var(--r);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.side-socials p {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.side-socials .socials { gap: 10px; display: inline-flex; }
.side-socials .socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .25s ease;
}
.side-socials .socials a:hover {
  background: #fff; color: var(--ink); border-color: #fff;
  transform: translateY(-2px);
}

/* =====================================================================
   MAP
   ===================================================================== */
.map-section {
  position: relative;
  height: clamp(380px, 60vw, 520px);
  overflow: hidden;
  background: var(--bg);
}
.map-frame {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
}
.map-overlay {
  position: absolute; z-index: 2;
  top: 24px; left: 24px; right: 24px;
  pointer-events: none;
}
.map-overlay-inner {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 26px 26px;
  box-shadow: var(--sh-3);
  max-width: 520px;
}
.map-overlay-inner h3 {
  font-family: var(--ff-serif);
  font-weight: 600; font-size: clamp(20px, 3vw, 24px);
  margin: 4px 0 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.map-overlay-inner p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* =====================================================================
   FOOTER — rich, multi-column + credit bar
   ===================================================================== */
.footer {
  background: linear-gradient(180deg, #061024 0%, #0a1b3d 100%);
  color: #cbd5e6;
  padding: 64px 0 0;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-brand .f-logo {
  width: 210px;
  max-width: 80%;
  margin: 0 0 18px -42px;                      /* negative left margin trims the PNG's built-in left padding */
  filter: drop-shadow(0 10px 30px rgba(96, 165, 250, 0.25));
}
@media (min-width: 1100px) {
  .footer-brand .f-logo { margin-left: -46px; }
}
.footer-brand .f-tag {
  color: rgba(203, 213, 230, 0.8);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 360px;
}
.footer .socials { display: inline-flex; gap: 10px; }
.footer .socials a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all .25s ease;
}
.footer .socials a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--sh-blue);
}

.footer-col h5 {
  font-family: var(--ff-sans);
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  color: rgba(203, 213, 230, 0.78);
  font-size: 14px;
  line-height: 1.55;
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-col ul.plain li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(203, 213, 230, 0.78);
}
.footer-col ul.plain i {
  color: var(--sky);
  font-size: 13px;
  width: 16px;
  margin-top: 4px;
  flex: 0 0 16px;
}

/* ---- Credit bar (bottom) ---- */
.footer-base {
  background: #040b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}
.footer-base-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.fb-copy {
  color: rgba(203, 213, 230, 0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}

.fb-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(203, 213, 230, 0.7);
  text-align: center;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.fb-credit:hover {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -18px rgba(96, 165, 250, 0.4);
}
.fb-credit-line {
  font-family: var(--ff-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
.fb-credit-line strong {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================================
   BACK TO TOP
   ===================================================================== */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: var(--sh-blue);
  z-index: 850;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), visibility .35s, box-shadow .3s ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.to-top:hover {
  transform: translateY(-3px) scale(1);
  box-shadow: 0 30px 55px -18px rgba(37, 99, 235, 0.55);
}
.to-top:active { transform: translateY(-1px) scale(0.96); }
.to-top i { transition: transform .3s ease; }
.to-top:hover i { transform: translateY(-2px); }

@media (min-width: 640px) {
  .to-top { right: 28px; bottom: 28px; width: 52px; height: 52px; font-size: 15px; }
}

/* =====================================================================
   RESPONSIVE — tablet / desktop
   ===================================================================== */
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .hero { padding: 150px 0 90px; }
}

@media (min-width: 900px) {
  .nav-links { display: inline-flex; }
  .nav-cta { display: inline-flex !important; }
  .nav-toggle { display: none; }

  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 60px; }
  .hero-copy { text-align: left; }
  .scroll-hint { display: flex; }

  .about-grid { grid-template-columns: 1fr 1.15fr; gap: 60px; }
  .approach-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .insights-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .quotes-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .founder-grid { grid-template-columns: 0.9fr 1.2fr; gap: 70px; align-items: center; }
  .founder-portrait { max-width: none; }

  .faq-wrap { grid-template-columns: 1fr 1.4fr; gap: 70px; }

  .cta-grid { grid-template-columns: 1.4fr 1fr; gap: 30px; }
  .cta-card { padding: 44px; }

  .footer-wrap { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; }
  .footer-base-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: center; }
  .fb-credit-line { flex-wrap: nowrap; }

  .hide-sm { display: inline-flex; }
}

@media (min-width: 1100px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 170px 0 110px; }
  .footer-brand .f-logo { width: 230px; }
}

/* =====================================================================
   INVESTMENT VEHICLES (MF / PMS / AIF)
   ===================================================================== */
.services.vehicles {
  background: var(--bg);
}
.services.vehicles .service-grid { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .services.vehicles .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services.vehicles .service-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.services.vehicles .service-card .num {
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  color: rgba(37, 99, 235, 0.18);
}
.services.vehicles .service-card:hover .num { color: rgba(37, 99, 235, 0.35); }
.vehicle-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px !important;
  font-weight: 500;
  color: var(--ink-soft) !important;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px dashed var(--line-soft);
  margin-bottom: 18px !important;
}
.vehicle-meta i { color: var(--blue); font-size: 12px; }
.services.vehicles .service-card.featured .vehicle-meta {
  background: #fff;
  border-style: solid;
  border-color: rgba(37, 99, 235, 0.18);
}
.vehicle-note {
  margin-top: 32px;
  padding: 18px 22px;
  border-radius: var(--r-md, 12px);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  display: flex; align-items: flex-start; gap: 12px;
}
.vehicle-note i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.vehicle-note p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
