:root {
  --navy-900: #0a1f44;
  --navy-800: #133566;
  --navy-700: #1e4d87;
  --teal-500: #0b8d8d;
  --gold-500: #be9a53;
  --white: #ffffff;
  --cloud: #f3f6fb;
  --sand: #f7f4ed;
  --ink: #1d2940;
  --muted: #596579;
  --line: #d8e2ef;
  --success: #18794e;
  --radius-lg: 0.95rem;
  --radius-md: 0.72rem;
  --radius-sm: 0.5rem;
  --shadow-soft: 0 22px 45px rgba(10, 31, 68, 0.12);
  --shadow-card: 0 14px 32px rgba(10, 31, 68, 0.1);
  --content: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -8%, rgba(11, 141, 141, 0.06), transparent 34%),
    radial-gradient(circle at 88% -12%, rgba(190, 154, 83, 0.08), transparent 36%),
    linear-gradient(180deg, #fafcff 0%, #f6faff 46%, #f9f8f4 100%);
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  margin-top: 0;
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.narrow {
  max-width: 760px;
}

.section-pad {
  padding: clamp(3.2rem, 6vw, 5.4rem) 0;
}

.section-tight {
  padding: clamp(1.6rem, 4vw, 2.4rem) 0;
}

.alt-bg {
  background: linear-gradient(175deg, rgba(16, 40, 77, 0.1), rgba(16, 40, 77, 0.05));
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-500);
  font-weight: 700;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.75);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.accent {
  color: var(--gold-500);
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head p {
  max-width: 65ch;
  color: var(--muted);
}

.section-head h2 {
  position: relative;
  padding-bottom: 0.45rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), rgba(190, 154, 83, 0.2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(19, 53, 102, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(10, 31, 68, 0.1);
}

.nav-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.site-header .brand-logo {
  width: auto;
  height: clamp(95px, 9.5vw, 135px);
  max-width: min(580px, 66vw);
  object-fit: contain;
  background: transparent;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-header .brand-text {
  display: none;
}

.brand-text strong {
  font-size: 1.02rem;
  color: var(--navy-900);
}

.brand-text small {
  font-size: 0.73rem;
  color: var(--muted);
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 43, 89, 0.6);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.main-nav > a {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.12rem;
  position: relative;
}

.main-nav > a.btn {
  font-size: 1.06rem;
  padding: 0.59rem 1.25rem;
}

.main-nav > a.btn.btn-pill {
  padding: 0.67rem 1.38rem;
}

.main-nav > a.btn,
.main-nav > a.btn:hover,
.main-nav > a.btn:focus-visible {
  color: var(--white);
}

.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav > a:hover:not(.btn),
.main-nav > a.active {
  color: var(--navy-900);
}

.main-nav > a:hover:not(.btn)::after,
.main-nav > a.active:not(.btn)::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  padding: 0.72rem 1.28rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-pill {
  border-radius: 999px;
  padding: 0.78rem 1.5rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 14px 26px rgba(10, 31, 68, 0.32);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy-800);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.inline-link {
  color: var(--navy-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
  text-decoration-color: rgba(190, 154, 83, 0.55);
}

.inline-link:hover {
  text-decoration-color: var(--gold-500);
}

.hero {
  position: relative;
  overflow: clip;
}

.home-hero {
  padding-top: clamp(3.8rem, 7vw, 5.8rem);
  padding-bottom: clamp(2.2rem, 4.5vw, 3.3rem);
}

.hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 154, 83, 0.27), transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -150px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 141, 141, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: clamp(420px, 60vh, 620px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(10, 31, 68, 0.14);
  background: #0d2b59;
}

.hero-left {
  padding: clamp(2.2rem, 4vw, 3.1rem);
  background: linear-gradient(160deg, #0d2b59 0%, #113c78 70%);
  color: var(--white);
  display: grid;
  gap: 0.75rem;
}

.hero-left h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  margin-bottom: 0.4rem;
}

.hero-left .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
}

.hero-left .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-left .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.hero-tagline {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-right {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #dfe8f5;
  box-shadow: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  background-size: cover;
  background-position: center;
}

html:not(.js) .slide {
  animation: hero-fade 18s infinite;
}

html:not(.js) .slide-2 {
  animation-delay: 3s;
}

html:not(.js) .slide-3 {
  animation-delay: 6s;
}

html:not(.js) .slide-4 {
  animation-delay: 9s;
}

html:not(.js) .slide-5 {
  animation-delay: 12s;
}

html:not(.js) .slide-6 {
  animation-delay: 15s;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-1 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.18), rgba(13, 43, 89, 0.25)),
    url("assets/hero-1.png");
}

.slide-2 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.18), rgba(13, 43, 89, 0.25)),
    url("assets/hero-2.png");
}

.slide-3 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.18), rgba(13, 43, 89, 0.25)),
    url("assets/hero-3.png");
}

.slide-4 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.18), rgba(13, 43, 89, 0.25)),
    url("assets/hero-4.png");
}

.slide-5 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.18), rgba(13, 43, 89, 0.25)),
    url("assets/hero-5.png");
}

.slide-6 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.18), rgba(13, 43, 89, 0.25)),
    url("assets/hero-6.png");
}

.slider-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
}

.slider-dot {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(19, 53, 102, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
  background: var(--gold-500);
  transform: scaleX(1.05);
}

@keyframes hero-fade {
  0%,
  12% {
    opacity: 1;
    transform: scale(1);
  }
  18%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.hero-actions.center {
  justify-content: center;
}

.quick-promise {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(19, 53, 102, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 28px rgba(10, 31, 68, 0.08);
}

.proof-band {
  margin-top: 1.2rem;
}

.home-highlights {
  padding: clamp(1.4rem, 3.6vw, 2.6rem) 0 clamp(2rem, 4.2vw, 3rem);
  background: linear-gradient(180deg, rgba(12, 42, 87, 0.06), rgba(12, 42, 87, 0.01));
}

.promise-item {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  border: 1px solid rgba(19, 53, 102, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.82rem 0.92rem;
  position: relative;
}

.promise-item::before {
  content: "";
  position: absolute;
  left: 0.92rem;
  top: 0.66rem;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-500), rgba(11, 141, 141, 0.15));
}

.promise-item h3 {
  font-size: 0.99rem;
  margin-bottom: 0.38rem;
  margin-top: 0.45rem;
}

.promise-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-visual-card {
  background: linear-gradient(165deg, #0c2a57 0%, #143f74 74%);
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.3vw, 1.6rem);
  box-shadow: 0 20px 46px rgba(9, 28, 58, 0.34);
}

.snapshot-label {
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.hero-visual-copy h2 {
  color: var(--white);
  font-size: clamp(1.32rem, 2.2vw, 1.8rem);
  margin-bottom: 0.7rem;
}

.hero-visual-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.globe-shell {
  position: relative;
  width: min(310px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
}

.motion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 auto 1rem;
}

.motion-tile {
  aspect-ratio: 4 / 3;
  border-radius: 0.6rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: float-tile 6.4s ease-in-out infinite;
}

.motion-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-120%);
  animation: sheen 4.8s ease-in-out infinite;
}

.tile-a {
  background: linear-gradient(135deg, rgba(11, 141, 141, 0.32), rgba(15, 53, 105, 0.15));
  animation-delay: 0s;
}

.tile-b {
  background: linear-gradient(135deg, rgba(190, 154, 83, 0.32), rgba(15, 53, 105, 0.12));
  animation-delay: 0.6s;
}

.tile-c {
  background: linear-gradient(135deg, rgba(22, 95, 135, 0.3), rgba(15, 53, 105, 0.18));
  animation-delay: 1.1s;
}

@keyframes float-tile {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  55% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.orbit-globe {
  width: 76%;
  color: rgba(255, 255, 255, 0.55);
  animation: globe-spin 18s linear infinite;
  transform-origin: 50% 50%;
}

.globe-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-a {
  width: 87%;
  height: 66%;
  animation: orbit-rotate 11s linear infinite;
}

.orbit-b {
  width: 64%;
  height: 88%;
  animation: orbit-rotate 16s linear infinite reverse;
}

@keyframes globe-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-visual-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.8rem;
}

.hero-visual-copy .inline-link {
  font-weight: 600;
}

.hero-visual-copy .inline-link::after {
  content: " ->";
}

.scroll-btn {
  border: 1px solid rgba(19, 53, 102, 0.22);
  background: var(--white);
  color: var(--navy-900);
  width: 40px;
  height: 40px;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.trust-card,
.map-wrap {
  min-height: 168px;
}

.footer-brand .brand-mark {
  border-radius: 0.55rem;
}

.site-header {
  backdrop-filter: blur(7px);
}

.scroll-btn:hover {
  transform: translateY(-1px);
  background: var(--cloud);
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 290px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.7rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 77, 135, 0.35) transparent;
}

.service-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(19, 53, 102, 0.15);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 260px;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 154, 83, 0.55);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  background: rgba(11, 141, 141, 0.11);
}

.hero-visual-card .inline-link {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.hero-visual-card .inline-link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.legacy-hide {
  display: none;
}

.meter-ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #0f3569;
  z-index: -1;
}

.meter-ring span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.meter-ring strong {
  display: block;
  font-size: 1.45rem;
  color: var(--white);
  text-align: center;
  margin-top: -2px;
}

.meter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.meter-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.meter-list li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.3rem;
  background: #86dddd;
  flex: none;
}

.milestone-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.milestone {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
  padding: 0.5rem 0.52rem;
}

.milestone small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.7);
}

.milestone strong {
  color: var(--white);
  font-size: 0.93rem;
}

.hero-visual-card .inline-link {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.hero-visual-card .inline-link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.scroll-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.scroll-btn {
  border: 1px solid rgba(19, 53, 102, 0.22);
  background: var(--white);
  color: var(--navy-900);
  width: 40px;
  height: 40px;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.scroll-btn:hover {
  transform: translateY(-1px);
  background: var(--cloud);
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 290px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.7rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 77, 135, 0.35) transparent;
}

.services-track::-webkit-scrollbar {
  height: 6px;
}

.services-track::-webkit-scrollbar-thumb {
  background: rgba(30, 77, 135, 0.35);
  border-radius: 999px;
}

.service-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(19, 53, 102, 0.15);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 260px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 154, 83, 0.55);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  background: rgba(11, 141, 141, 0.11);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--navy-700);
}

.service-card h3 {
  margin-bottom: 0;
}

.service-card p {
  color: var(--muted);
  flex-grow: 1;
}

.service-meta {
  margin-bottom: 0;
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-700) !important;
}

.proof-band {
  padding: 1.6rem 0 clamp(2.4rem, 4.5vw, 3.4rem);
  background: linear-gradient(180deg, rgba(12, 42, 87, 0.06), rgba(12, 42, 87, 0.01));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
  border: 1px solid rgba(19, 53, 102, 0.14);
  border-top: 3px solid rgba(11, 141, 141, 0.6);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.proof-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(10, 31, 68, 0.18);
  border-color: rgba(19, 53, 102, 0.22);
}

.proof-item strong {
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.34rem;
}

.proof-item strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--teal-500);
  flex: none;
}

.proof-item:nth-child(2) {
  border-top-color: rgba(190, 154, 83, 0.72);
}

.proof-item:nth-child(2) strong::before {
  background: var(--gold-500);
}

.proof-item:nth-child(3) {
  border-top-color: rgba(30, 77, 135, 0.6);
}

.proof-item:nth-child(3) strong::before {
  background: var(--navy-700);
}

.proof-item p {
  margin: 0;
  color: var(--muted);
}

.home-services-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  gap: 1.2rem;
  align-items: start;
}

.services-intro-card {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 1px solid rgba(19, 53, 102, 0.14);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  position: sticky;
  top: 92px;
}

.services-intro-card p {
  color: var(--muted);
}

.services-panel {
  min-width: 0;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-node {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.14);
  border-radius: var(--radius-md);
  padding: 1.05rem;
}

.step-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(140deg, var(--teal-500), var(--navy-700));
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.process-node p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.why-panel,
.about-panel-home {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.14);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.62rem;
}

.trust-list li {
  color: var(--muted);
}

.trust-list strong {
  color: var(--navy-900);
}

.about-panel-home p {
  color: var(--muted);
}

.about-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cloud);
  padding: 0.78rem;
  margin: 0.9rem 0 1rem;
}

.about-note p {
  margin: 0.35rem 0 0;
}

.insights-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.insight-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(19, 53, 102, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.insight-panel .section-head {
  margin-bottom: 1.1rem;
}

.stacked-testimonials {
  display: grid;
  gap: 0.7rem;
}

.stacked-testimonials .testimonial {
  box-shadow: none;
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-card {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
}

.about-copy p {
  color: var(--muted);
}

.about-metrics {
  display: grid;
  gap: 0.9rem;
}

.about-metrics article {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.about-metrics strong {
  color: var(--navy-900);
}

.about-metrics p {
  margin-top: 0.45rem;
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  margin: 0;
  padding: 1.15rem;
  border: 1px solid rgba(19, 53, 102, 0.15);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.testimonial p {
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.testimonial cite {
  font-style: normal;
  color: var(--navy-700);
  font-weight: 700;
  font-size: 0.9rem;
}

.faq-wrap {
  display: grid;
  gap: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  height: clamp(320px, 40vw, 380px);
  align-content: start;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.faq-extra {
  display: grid;
  gap: 0.7rem;
}

.js .faq-extra {
  display: none;
}

.js .faq-wrap.is-expanded .faq-extra {
  display: grid;
}

.faq-toggle {
  display: none;
  justify-self: flex-start;
}

.js .faq-toggle {
  display: inline-flex;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy-900);
  padding: 0.9rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: rgba(190, 154, 83, 0.45);
}

.faq-item p {
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.page-hero {
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3.9vw, 3.15rem);
}

.page-hero .lead {
  margin: 0 auto;
}

.service-sections {
  display: grid;
  gap: 1rem;
}

.service-detail {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.16);
  border-radius: var(--radius-md);
  padding: 0;
  scroll-margin-top: 92px;
  overflow: hidden;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 0;
  align-items: stretch;
}

.service-detail-content {
  display: grid;
  gap: 0.35rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.service-detail-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #dfe8f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 1px solid rgba(19, 53, 102, 0.1);
  box-shadow: none;
  min-height: 300px;
  height: 100%;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.service-media-mutual {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.14), rgba(13, 43, 89, 0.22)),
    url("assets/executives-preparing-meeting.jpg");
  background-position: 55% 40%;
}

.service-media-stock {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.14), rgba(13, 43, 89, 0.22)),
    url("assets/service-stock-advisory.jpg");
  background-position: 72% 40%;
}

.service-media-insurance {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.14), rgba(13, 43, 89, 0.22)),
    url("assets/service-insurance.jpg");
  background-position: 64% 44%;
}

.service-media-retirement {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.14), rgba(13, 43, 89, 0.22)),
    url("assets/service-retirement.jpg");
  background-position: 66% 45%;
}

.service-media-tax {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.14), rgba(13, 43, 89, 0.22)),
    url("assets/researchers-looking-alternative-energy-sources.jpg");
  background-position: 52% 45%;
}

.detail-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.service-tag {
  width: 38px;
  height: 38px;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  color: var(--white);
  background: linear-gradient(140deg, #0c7f94, #154b84);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(20, 75, 132, 0.24);
}

.service-detail p:not(.service-tag) {
  color: var(--muted);
}

.service-detail ul {
  margin-top: 0.6rem;
}

.service-detail li {
  margin-bottom: 0.35rem;
}

.insurance-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 0.9rem;
}

.insurance-split section {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: var(--cloud);
  scroll-margin-top: 92px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.process-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-panel {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.15);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.3vw, 1.5rem);
}

.about-panel p,
.about-panel li {
  color: var(--muted);
}

.approach-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.approach-card,
.team-card {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.approach-card p,
.team-card p {
  color: var(--muted);
}

.role {
  color: var(--navy-700) !important;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(19, 53, 102, 0.16);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.3vw, 1.55rem);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.65rem;
}

.contact-list li {
  display: grid;
  gap: 0.12rem;
}

.contact-list strong {
  color: var(--navy-900);
}

.contact-list span,
.contact-list a,
.contact-card p {
  color: var(--muted);
}

.consultation-form {
  display: grid;
  gap: 0.65rem;
}

.consultation-form label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
}

.consultation-form input,
.consultation-form textarea {
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.76rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fdfefe;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  outline: 2px solid rgba(11, 141, 141, 0.36);
  border-color: var(--teal-500);
}

.form-note {
  margin-top: 0.2rem;
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-note.success {
  color: var(--success);
}

.form-note.error {
  color: #b23b3b;
}

.map-wrap {
  border: 1px solid rgba(19, 53, 102, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.cta-band {
  background:
    linear-gradient(160deg, rgba(10, 31, 68, 0.96), rgba(19, 53, 102, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 48%);
  color: var(--white);
}

.cta-content {
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: var(--white);
}

.cta-content p {
  max-width: 65ch;
  margin: 0 auto 1rem;
  opacity: 0.95;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(5, 14, 30, 0.3);
}

.cta-band .btn-primary:hover {
  background: #f3f8ff;
  color: var(--navy-900);
}

.site-footer {
  background: #07162f;
  color: rgba(244, 248, 255, 0.93);
  padding-top: 2.4rem;
  isolation: isolate;
}

.footer-brand .brand-logo {
  width: clamp(140px, 16vw, 200px);
  height: clamp(52px, 6vw, 68px);
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: brightness(1.05) saturate(1.05);
  background: transparent;
}

.footer-brand .brand-text {
  display: inline-flex;
  align-items: center;
}

.footer-brand .brand-text strong {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-brand .brand-tagline,
.footer-brand .brand-subline {
  display: block;
}

.footer-brand .brand-tagline {
  margin-top: 0.3rem;
  letter-spacing: 0.18em;
}

.footer-brand .brand-subline {
  margin-top: 0.35rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 1.3rem;
  padding-bottom: 1.4rem;
}

.footer-brand .brand-mark {
  background: linear-gradient(145deg, #0d8c8c, #0d4f7a);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer small {
  color: rgba(244, 248, 255, 0.86);
}

.site-footer .brand-text strong,
.site-footer .brand-text small,
.site-footer .brand-tagline {
  color: rgba(244, 248, 255, 0.92);
}

.site-footer .brand-text strong,
.site-footer .brand-text small {
  color: rgba(244, 248, 255, 0.92);
}

.site-footer .brand-text strong {
  color: var(--white);
}

.site-footer .brand-text small {
  color: rgba(244, 248, 255, 0.88);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.copyright {
  margin: 0;
  border-top: 1px solid rgba(244, 248, 255, 0.14);
  text-align: center;
  padding: 0.9rem 0 1.2rem;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 105;
  background: #0aa357;
  color: var(--white);
  border-radius: 0.7rem;
  padding: 0.65rem 1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(2, 94, 46, 0.32);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .home-services-layout {
    grid-template-columns: 1fr;
  }

  .services-intro-card {
    position: static;
  }

  .insights-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-split,
  .home-story-grid,
  .insights-layout,
  .about-preview,
  .contact-layout,
  .about-layout,
  .insurance-split {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    border-left: 0;
    border-top: 1px solid rgba(19, 53, 102, 0.1);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    min-height: 220px;
  }

  .hero-split {
    border-radius: var(--radius-md);
  }

  .quick-promise,
  .proof-grid,
  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-promise {
    margin-top: 0.9rem;
  }

  .plan-meter {
    grid-template-columns: 1fr;
  }

  .meter-ring {
    width: 108px;
    height: 108px;
  }

  .process-grid,
  .approach-grid,
  .team-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-aside {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: min(290px, 92vw);
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    background: var(--white);
    border: 1px solid rgba(19, 53, 102, 0.15);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta {
    width: 100%;
  }

  .services-track {
    grid-auto-columns: minmax(82%, 1fr);
  }

  .quick-promise,
  .proof-grid,
  .home-process-grid,
  .home-story-grid,
  .insights-layout,
  .milestone-strip {
    grid-template-columns: 1fr;
  }

  .promise-item,
  .proof-item {
    padding: 0.88rem;
  }

  .services-intro-card,
  .insight-panel,
  .why-panel,
  .about-panel-home {
    padding: 1rem;
  }

  .scroll-controls {
    display: none;
  }

  .testimonial-grid,
  .process-grid,
  .approach-grid,
  .team-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    padding: 0.55rem 0.88rem;
    font-size: 0.86rem;
  }

  .nav-wrap {
    min-height: 100px;
  }

  .site-header .brand-logo {
    height: clamp(78px, 18vw, 108px);
    max-width: min(433px, 78vw);
  }
}

/* Ecosystem & Partner Logos */
.ecosystem-section {
  position: relative;
  background: var(--white);
  border-top: 1px solid rgba(19, 53, 102, 0.05);
  border-bottom: 1px solid rgba(19, 53, 102, 0.05);
  overflow: hidden;
  padding: 5rem 0;
}

.ecosystem-container {
  text-align: center;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.editorial-heading {
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-size: 1.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.ecosystem-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 15%,
    hsl(0 0% 0% / 1) 85%,
    hsl(0 0% 0% / 0)
  );
  -webkit-mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 15%,
    hsl(0 0% 0% / 1) 85%,
    hsl(0 0% 0% / 0)
  );
}

.marquee {
  display: flex;
  flex: 0 0 auto;
  min-width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5rem;
  padding: 0 2.5rem;
  animation: scrollLogo 45s linear infinite;
  min-width: 100%;
}

@keyframes scrollLogo {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100%));
  }
}

.partner-logo {
  height: 57px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* About - Location Showcase */
.location-showcase {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.location-header {
  max-width: 560px;
  margin: 0 auto;
}

.location-header h3 {
  margin-bottom: 0.6rem;
}

.location-text {
  color: var(--muted);
  margin-bottom: 0;
}

.location-slider-wrap {
  display: grid;
  gap: 1.1rem;
}

.location-slider {
  position: relative;
  width: min(860px, 100%);
  height: clamp(220px, 34vw, 360px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e7eef8;
  box-shadow: var(--shadow-card);
}

.location-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  background-size: cover;
  background-position: center;
}

.location-slide.active {
  opacity: 1;
  transform: scale(1);
}

.location-slide-1 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.12), rgba(13, 43, 89, 0.2)),
    url("assets/photo1.jpeg");
}

.location-slide-2 {
  background-image:
    linear-gradient(120deg, rgba(13, 43, 89, 0.12), rgba(13, 43, 89, 0.2)),
    url("assets/8.jpeg");
}

.location-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}

.location-dot {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(19, 53, 102, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.location-dot.active {
  background: var(--gold-500);
  transform: scaleX(1.05);
}
