:root {
  --navy: #0B3C5D;
  --navy-dark: #042238;
  --emerald: #2ECC71;
  --paper: #f8fafc;
  --ink: #102a43;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 1px 1px, rgba(11, 60, 93, 0.06) 1px, transparent 0),
    radial-gradient(circle at 10% 0%, rgba(46, 204, 113, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
  background-size: 22px 22px, auto, auto;
  color: var(--ink);
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

body h1 {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  line-height: 1.18 !important;
}

body h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem) !important;
  line-height: 1.22 !important;
}

body h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem) !important;
  line-height: 1.3 !important;
}

body h4 {
  line-height: 1.35 !important;
}

.container-pad {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-logo {
  height: 56px;
  width: auto;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.nav-link {
  position: relative;
  color: #475569;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--emerald);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-kicker {
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(135deg, #0B3C5D 0%, #0f6f61 45%, #2ECC71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.simple-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.94)),
    radial-gradient(circle at top right, rgba(46, 204, 113, 0.1), transparent 34%);
  box-shadow: 0 14px 35px rgba(11, 60, 93, 0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.simple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(11, 60, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 60, 93, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
}

.simple-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.35);
  box-shadow: 0 24px 60px rgba(11, 60, 93, 0.12);
}

.rationale-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 253, 247, 0.94), rgba(242, 248, 255, 0.96)) padding-box,
    linear-gradient(135deg, rgba(46, 204, 113, 0.16), rgba(11, 60, 93, 0.18)) border-box;
  box-shadow: 0 18px 46px rgba(11, 60, 93, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rationale-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1.5px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(120deg, #2ecc71, #0b3c5d, #22d3ee, #2ecc71);
  background-size: 260% 260%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 0.35s ease;
}

.rationale-card > * {
  position: relative;
  z-index: 1;
}

.rationale-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 26px 70px rgba(11, 60, 93, 0.15);
}

.rationale-card:hover::after {
  opacity: 1;
  animation: gradientBorderMove 2.6s linear infinite;
}

.rationale-card-featured {
  background:
    linear-gradient(135deg, rgba(11, 60, 93, 0.94), rgba(12, 120, 108, 0.9), rgba(46, 204, 113, 0.72)) padding-box,
    linear-gradient(135deg, rgba(46, 204, 113, 0.42), rgba(11, 60, 93, 0.36)) border-box;
  box-shadow: 0 24px 62px rgba(11, 60, 93, 0.16);
}

.rationale-card-featured h3,
.rationale-card-featured p {
  color: #fff;
}

.rationale-card-featured p {
  opacity: 0.82;
}

.rationale-card-dark {
  background:
    linear-gradient(135deg, rgba(11, 60, 93, 0.98), rgba(9, 93, 88, 0.96), rgba(46, 204, 113, 0.86)) padding-box,
    linear-gradient(135deg, rgba(46, 204, 113, 0.7), rgba(255, 255, 255, 0.28), rgba(34, 211, 238, 0.65)) border-box;
  box-shadow: 0 26px 70px rgba(11, 60, 93, 0.18);
}

.rationale-card-dark::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(46, 204, 113, 0.2), transparent 28%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(11, 60, 93, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.premium-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(11, 60, 93, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.14), rgba(11, 60, 93, 0.08));
  transition: opacity 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-7px);
  border-color: rgba(46, 204, 113, 0.45);
  box-shadow: 0 26px 70px rgba(11, 60, 93, 0.13);
}

.premium-card:hover::before {
  opacity: 1;
}

.hero-bg {
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(46, 204, 113, 0.28), transparent 28%),
    linear-gradient(135deg, #031e31 0%, #0B3C5D 52%, #0a7558 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
}

.hero-slider {
  position: relative;
  min-height: clamp(540px, 72vh, 720px);
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  background-position: center;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.active h1,
.hero-slide.active h2,
.hero-slide.active .section-kicker,
.hero-slide.active a {
  animation: heroContentIn 0.75s ease both;
}

.hero-slide.active h1,
.hero-slide.active h2 {
  animation-delay: 0.08s;
}

.hero-slide.active a {
  animation-delay: 0.16s;
}

.hero-slide-brand {
  background-image:
    linear-gradient(90deg, rgba(3,30,49,0.7), rgba(11,60,93,0.48), rgba(10,117,88,0.58)),
    url("hero-brand.svg");
}

.hero-slide-investment {
  background-image:
    linear-gradient(90deg, rgba(3,30,49,0.76), rgba(11,60,93,0.5), rgba(10,117,88,0.62)),
    url("Gemini_Generated_Image_291gio291gio291g.png");
}

.hero-slide-mutual {
  background-image:
    linear-gradient(90deg, rgba(3,30,49,0.72), rgba(11,60,93,0.46), rgba(10,117,88,0.56)),
    url("hero-mutual-fund.svg");
}

.hero-arrow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(46, 204, 113, 0.28);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 32px;
  background: var(--emerald);
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, #13a36b 45%, #0B3C5D 100%);
  box-shadow: 0 18px 42px rgba(46, 204, 113, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(46, 204, 113, 0.36);
}

.soft-grid {
  background-image:
    linear-gradient(rgba(11, 60, 93, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 60, 93, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

main > section:not(:first-child) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

main > section:not(:first-child)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(46, 204, 113, 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(11, 60, 93, 0.06), transparent 30%),
    linear-gradient(rgba(11, 60, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 60, 93, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

main > section:not(:first-child) > * {
  position: relative;
  z-index: 1;
}

main article,
main .rounded-xl.bg-slate-50,
main .rounded-2xl.bg-slate-50,
main .rounded-xl.bg-emerald-50 {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

main article:hover,
main .rounded-xl.bg-slate-50:hover,
main .rounded-2xl.bg-slate-50:hover,
main .rounded-xl.bg-emerald-50:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(11, 60, 93, 0.09);
}

main a.inline-flex,
nav a.rounded-xl,
footer a.grid,
button.rounded-xl {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

main a.inline-flex:hover,
nav a.rounded-xl:hover,
footer a.grid:hover,
button.rounded-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 60, 93, 0.14);
}

main img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

main .rounded-2xl:has(img) {
  overflow: hidden;
}

main .rounded-2xl:hover > img,
main .rounded-2xl:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

body.motion-ready .motion-target {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready .motion-target.motion-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-delay-1 { --motion-delay: 70ms; }
.motion-delay-2 { --motion-delay: 140ms; }
.motion-delay-3 { --motion-delay: 210ms; }
.motion-delay-4 { --motion-delay: 280ms; }
.motion-delay-5 { --motion-delay: 350ms; }
.motion-delay-6 { --motion-delay: 420ms; }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.accordion-item.active .accordion-content {
  max-height: 170px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.range-input {
  accent-color: var(--emerald);
}

.chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 1.8s ease forwards 0.3s;
}

.hero-preview-image {
  border-radius: 10px;
}

.portfolio-donut {
  background: conic-gradient(#2ECC71 0 42%, #0B3C5D 42% 72%, #9fd7bf 72% 88%, #dbeafe 88% 100%);
}

.sip-bar-18 { height: 18%; }
.sip-bar-29 { height: 29%; }
.sip-bar-42 { height: 42%; }
.sip-bar-55 { height: 55%; }
.sip-bar-68 { height: 68%; }
.sip-bar-82 { height: 82%; }
.sip-bar-96 { height: 96%; }

.form-field {
  width: 100%;
  border: 1px solid #dbe3ea;
  border-radius: 14px;
  background: #ffffff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.12);
}

.map-panel {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #042238 0%, #0B3C5D 60%, #0a7558 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
}

.home-hero-copy {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
  padding: 0 16px;
  text-align: center;
}

.home-hero-copy .section-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(187, 247, 208, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 12px;
  color: #bbf7d0;
}

.home-intro-section {
  background: rgba(255, 255, 255, 0.74);
}

.home-intro-grid,
.home-dark-grid,
.home-mutual-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.home-dark-grid {
  gap: 34px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.home-proof-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #042238 0%, #0b3c5d 54%, #0b8769 100%);
  background-size: 32px 32px, 32px 32px, auto;
  padding: 32px;
  color: #fff;
  box-shadow: 0 30px 90px rgba(11, 60, 93, 0.2);
}

.home-proof-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(0deg, rgba(46, 204, 113, 0.22), transparent);
}

.home-trust-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(46, 204, 113, 0.09), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(11, 60, 93, 0.06), transparent 28%),
    rgba(255, 255, 255, 0.84);
}

.home-trust-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.home-trust-head h2 {
  max-width: 600px;
}

.home-trust-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.9)),
    radial-gradient(circle at 86% 14%, rgba(46, 204, 113, 0.12), transparent 30%);
  padding: 26px;
  box-shadow: 0 18px 46px rgba(11, 60, 93, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.38);
  box-shadow: 0 24px 64px rgba(11, 60, 93, 0.12);
}

.home-trust-card span {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.home-trust-card h3 {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 900;
}

.home-trust-card p {
  margin-top: 9px;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.65;
}

.home-dark-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #031e31 0%, #0b3c5d 56%, #0b7f64 100%);
  background-size: 36px 36px, 36px 36px, auto;
}

.home-dark-section .section-kicker,
.home-cta-strip .section-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(187, 247, 208, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 7px 12px;
  color: #bbf7d0;
}

.home-value-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-value-item {
  display: flex;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.home-value-item:hover {
  transform: translateX(6px);
  border-color: rgba(46, 204, 113, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.home-value-item i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(187, 247, 208, 0.18);
  border-radius: 14px;
  background: rgba(46, 204, 113, 0.12);
  color: var(--emerald);
}

.home-value-item h3 {
  color: #fff;
  font-weight: 900;
}

.home-value-item p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.home-mutual-section,
.home-brand-section {
  background:
    radial-gradient(circle at 22% 22%, rgba(46, 204, 113, 0.1), transparent 28%),
    radial-gradient(circle at 78% 8%, rgba(11, 60, 93, 0.07), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

.home-mutual-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.home-image-panel {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 253, 246, 0.9));
  padding: 12px;
  box-shadow: 0 28px 80px rgba(11, 60, 93, 0.1);
}

.home-image-panel img {
  display: block;
  width: 100%;
  height: 390px;
  border-radius: 22px;
  object-fit: cover;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-chip-row span {
  border: 1px solid rgba(46, 204, 113, 0.18);
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.08);
  padding: 9px 13px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
}

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

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

.home-process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.9));
  padding: 26px;
  box-shadow: 0 18px 46px rgba(11, 60, 93, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.38);
  box-shadow: 0 24px 64px rgba(11, 60, 93, 0.12);
}

.home-process-card span {
  color: rgba(46, 204, 113, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-process-card h3 {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 900;
}

.home-process-card p {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.65;
}

.home-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #042238 0%, #0b3c5d 55%, #0a8b68 100%);
  background-size: 34px 34px, 34px 34px, auto;
  padding: 36px;
  box-shadow: 0 28px 80px rgba(11, 60, 93, 0.16);
}

.home-enquiry-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(46, 204, 113, 0.1), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(11, 60, 93, 0.07), transparent 28%),
    rgba(255, 255, 255, 0.8);
}

.home-enquiry-grid {
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.home-enquiry-points {
  display: grid;
  gap: 12px;
}

.home-enquiry-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 11px 15px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(11, 60, 93, 0.06);
}

.home-enquiry-points i {
  color: var(--emerald);
}

.home-enquiry-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 249, 0.94)),
    radial-gradient(circle at 90% 8%, rgba(46, 204, 113, 0.12), transparent 32%);
  padding: 30px;
  box-shadow: 0 28px 80px rgba(11, 60, 93, 0.1);
}

.about-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(46, 204, 113, 0.16);
  padding: 48px 0 70px;
  background:
    linear-gradient(rgba(11, 60, 93, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 60, 93, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 82% 20%, rgba(46, 204, 113, 0.15), transparent 30%),
    linear-gradient(135deg, #f5fff9 0%, #ffffff 45%, #eef7ff 100%);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.about-breadcrumb {
  display: inline-flex;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 16px;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(11, 60, 93, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-hero-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 370px;
}

.about-hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #042238 0%, #0b3c5d 54%, #0b8769 100%);
  background-size: 32px 32px, 32px 32px, auto;
  padding: 32px;
  color: #fff;
  box-shadow: 0 30px 90px rgba(11, 60, 93, 0.22);
}

.about-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(0deg, rgba(46, 204, 113, 0.22), transparent);
}

.about-panel-rule {
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
}

.about-section-head {
  max-width: 760px;
}

.about-section-head.text-center {
  margin-inline: auto;
}

.about-story-section {
  background: rgba(255, 255, 255, 0.72);
}

.about-story-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.about-story-card,
.about-focus-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 249, 0.94)),
    radial-gradient(circle at 92% 12%, rgba(46, 204, 113, 0.12), transparent 32%);
  padding: 34px;
  box-shadow: 0 22px 58px rgba(11, 60, 93, 0.07);
}

.about-metric-grid {
  display: grid;
  gap: 14px;
}

.about-metric {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 253, 246, 0.9));
  padding: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-metric:hover,
.about-pillar:hover,
.about-focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.38);
  box-shadow: 0 24px 64px rgba(11, 60, 93, 0.12);
}

.about-metric span {
  color: rgba(46, 204, 113, 0.9);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.about-metric p {
  margin-top: 6px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.65;
}

.about-pillar-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-pillar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.9));
  padding: 26px;
  box-shadow: 0 18px 46px rgba(11, 60, 93, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.12), rgba(11, 60, 93, 0.06));
  transition: opacity 0.35s ease;
}

.about-pillar:hover::before {
  opacity: 1;
}

.about-pillar > * {
  position: relative;
  z-index: 1;
}

.about-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(46, 204, 113, 0.12);
  color: var(--navy);
  font-size: 1.1rem;
}

.about-pillar h3 {
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.about-pillar p {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.65;
}

.about-dark-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #031e31 0%, #0b3c5d 56%, #0b7f64 100%);
  background-size: 36px 36px, 36px 36px, auto;
}

.about-dark-section .section-kicker,
.about-cta-strip .section-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(187, 247, 208, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 7px 12px;
  color: #bbf7d0;
}

.about-advantage-grid {
  display: grid;
  align-items: start;
  gap: 46px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-advantage-list {
  display: grid;
  gap: 14px;
}

.about-advantage-item {
  display: flex;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.about-advantage-item:hover {
  transform: translateX(6px);
  border-color: rgba(46, 204, 113, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.about-advantage-item i {
  margin-top: 4px;
  color: var(--emerald);
}

.about-advantage-item h3 {
  color: #fff;
  font-weight: 900;
}

.about-advantage-item p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.founder-card {
  display: grid;
  gap: 0;
  grid-template-columns: 340px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(11, 60, 93, 0.1);
}

.founder-profile {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, #042238, #0b3c5d 58%, #0b7b62);
  background-size: 32px 32px, 32px 32px, auto;
  padding: 34px;
}

.founder-avatar {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--emerald);
  font-size: 1.6rem;
  font-weight: 900;
}

.founder-copy {
  padding: 38px;
}

.about-quote {
  margin-top: 26px;
  border-left: 4px solid var(--emerald);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.08), rgba(11, 60, 93, 0.05));
  padding: 22px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.55;
}

.about-focus-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #042238 0%, #0b3c5d 55%, #0a8b68 100%);
  background-size: 34px 34px, 34px 34px, auto;
  padding: 36px;
  box-shadow: 0 28px 80px rgba(11, 60, 93, 0.16);
}

@media (max-width: 1024px) {
  .home-intro-grid,
  .home-enquiry-grid,
  .home-dark-grid,
  .home-mutual-grid,
  .about-hero-grid,
  .about-story-grid,
  .about-advantage-grid,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .home-rationale-grid,
  .home-trust-grid,
  .home-process-grid,
  .about-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 560px;
  }

  .about-hero {
    padding: 34px 0 52px;
  }

  .about-breadcrumb {
    margin-bottom: 28px;
  }

  .home-proof-panel,
  .home-enquiry-card,
  .home-cta-strip,
  .about-hero-panel,
  .about-story-card,
  .about-focus-card,
  .founder-profile,
  .founder-copy,
  .about-cta-strip {
    padding: 24px;
  }

  .home-rationale-grid,
  .home-trust-grid,
  .home-process-grid,
  .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .home-value-list {
    grid-template-columns: 1fr;
  }

  .home-image-panel img {
    height: 300px;
  }

  .home-cta-strip,
  .about-cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientBorderMove {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 260% 50%;
  }
}

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