:root {
  --ink: #10141b;
  --muted: #667085;
  --line: rgba(16, 20, 27, 0.12);
  --surface: #ffffff;
  --soft: #f5f7f4;
  --deep: #111827;
  --emerald: #0f9f86;
  --emerald-dark: #0d6b63;
  --cobalt: #2f6fed;
  --gold: #d7a43b;
  --gold-light: #f5d779;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  --radius: 8px;
  --section: clamp(72px, 9vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.navbar {
  padding: 18px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
  color: var(--ink);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 24px rgba(215, 164, 59, 0.28);
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  margin: 0 6px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-light);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
  color: var(--emerald-dark);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 10px 18px !important;
}

.navbar.scrolled .nav-cta {
  border-color: var(--line);
}

.navbar-toggler {
  border: 0;
  background: rgba(255, 255, 255, 0.78);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #ffffff;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.88) 0%, rgba(8, 13, 20, 0.64) 44%, rgba(8, 13, 20, 0.28) 100%),
    radial-gradient(circle at 80% 22%, rgba(215, 164, 59, 0.32), transparent 34%);
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-section h1 {
  max-width: 850px;
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero-section .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-premium {
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  box-shadow: 0 18px 34px rgba(215, 164, 59, 0.28);
}

.btn-premium:hover,
.btn-premium:focus {
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(215, 164, 59, 0.34);
}

.hero-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.panel-top i {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.panel-value {
  margin: 24px 0 8px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.mini-chart {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mini-chart span {
  flex: 1;
  min-width: 20px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold-light), var(--emerald));
  animation: growBar 1.3s ease both;
}

.trust-strip {
  padding: 30px 0;
  background: var(--deep);
  color: #ffffff;
}

.metric {
  display: block;
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.section-pad {
  padding: var(--section) 0;
  background: var(--soft);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.feature-band h2,
.insight-section h2,
.cta-section h2 {
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 159, 134, 0.32);
  box-shadow: var(--shadow);
}

.service-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--surface);
  background: linear-gradient(135deg, var(--emerald), var(--cobalt));
  font-size: 1.35rem;
}

.service-card h3,
.timeline-item h3 {
  font-size: 1.24rem;
  font-weight: 850;
  margin-bottom: 14px;
}

.service-card p,
.feature-band p,
.insight-section p,
.timeline-item p,
.cta-section p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-band,
.insight-section {
  padding: var(--section) 0;
  background: var(--surface);
}

.insight-section {
  background:
    linear-gradient(rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.82)),
    url("../images/wealth-pattern.webp") center/cover;
  color: #ffffff;
}

.insight-section p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.performance-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.performance-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  background: #f8faf8;
}

.performance-list i {
  color: var(--emerald);
  font-size: 1.35rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timeline-item {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.6rem;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 72px;
  left: 34px;
  width: calc(100% - 68px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(15, 159, 134, 0.18));
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-weight: 850;
}

.link-arrow:hover {
  color: #ffffff;
}

.cta-section {
  padding: var(--section) 0;
  background: var(--soft);
}

.cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(13, 107, 99, 0.92)),
    url("../images/wealth-pattern.webp") center/cover;
  box-shadow: var(--shadow);
}

.cta-wrap p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.form-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 0.22rem rgba(215, 164, 59, 0.18);
  background-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.form-select option {
  color: var(--ink);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold-light);
  font-weight: 750;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #0b1017;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--deep);
  background: var(--gold-light);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 20;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

@keyframes growBar {
  from {
    transform: scaleY(0.18);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .navbar-brand,
  .nav-link {
    color: var(--ink);
  }

  .navbar-collapse {
    padding-top: 18px;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 8px;
    border-color: var(--line);
  }

  .hero-section h1 {
    font-size: clamp(2.6rem, 9vw, 4.6rem);
  }

  .hero-panel {
    margin-bottom: 48px;
  }

  .timeline,
  .cta-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content .row {
    padding-top: 120px;
    min-height: auto !important;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-heading {
    text-align: left;
  }

  .trust-strip .col-lg-3 {
    padding: 10px 0;
  }

  .cta-wrap {
    padding: 26px 18px;
  }

  .contact-form {
    padding: 18px;
  }
}
