@import url("responsive.css");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #3d49d8;
  --navy2: #0917af;
  --navy3: #181f75;
  --accent: #00c59c;
  --accent2: #009d7c;
  --cream: #f6fbff;
  --white: #ffffff;
  --gray: #5b6785;
  --light: #f9f9f9;
  --black: #111111;
  --green: #22c55e;
  --red: #f87171;
  --shadow: 0 4px 24px rgba(51, 202, 229, .10);
  --shadow-lg: 0 16px 56px rgba(51, 202, 229, .16);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Google Sans', sans-serif;
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 202, 229, .07);
  padding: 0;
  box-shadow: 0 4px 20px rgba(16, 24, 40, .07);
  transition: all .4s ease;
}

nav.scrolled {
  box-shadow: 0 6px 28px rgba(16, 24, 40, .12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 200px;
  height: auto;
}

.logo-text {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1;
}

.logo-text em {
  color: var(--accent);
  font-style: normal;
}

.logo-sub {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .3px;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Mobile Hamburger Toggle Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: none;
  z-index: 10001;
  position: relative;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Slide-Down Drawer */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 9999;
  padding: 24px 20px 40px;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

.mobile-menu.open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.mobile-menu a {
  color: #0f172a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.mobile-menu .mob-cta {
  background: #0f172a;
  color: #ffffff !important;
  text-align: center;
  border-radius: 12px;
  margin-top: 10px;
  padding: 14px;
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .logo-img {
    width: 150px;
  }

  .mobile-menu {
    top: 70px;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0 16px;
    height: 64px;
  }

  .logo-img {
    width: 130px;
  }

  .mobile-menu {
    top: 64px;
    padding: 18px 16px 36px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 108px;
  margin-top: 80px;
}

.hero-orb1 {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgb(118 8 239 / 9%) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb2 {
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgb(70 51 229 / 12%) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left>* {
  animation: fadeUp .8s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: .05s;
}

.hero-left>*:nth-child(2) {
  animation-delay: .15s;
}

.hero-left>*:nth-child(3) {
  animation-delay: .22s;
}

.hero-left>*:nth-child(4) {
  animation-delay: .30s;
}

.hero-left>*:nth-child(5) {
  animation-delay: .40s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(51, 202, 229, .14);
  border: 1px solid rgba(51, 202, 229, .4);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-size: 55px;
  font-weight: 800;
  color: #272088;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-img {
  width: 100%;
  height: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  color: #5b6785;
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-hero-primary {
  background: var(--accent);
  color: #FFF;
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  border: 2px solid var(--accent);
}

.btn-hero-primary:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(51, 202, 229, .28);
}

.btn-hero-outline {
  background: rgba(51, 202, 229, .04);
  color: var(--accent);
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(51, 202, 229, .35);
  transition: all .3s;
}

.btn-hero-outline:hover {
  border-color: var(--accent);
  background: rgba(51, 202, 229, .1);
  transform: translateY(-2px);
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(51, 202, 229, .18);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5b6785;
  font-size: 13px;
}

.trust-item i {
  color: var(--accent);
  font-size: 15px;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(51, 202, 229, .18);
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  animation: floatY 4.5s ease-in-out infinite;
  position: relative;
}

.finance-card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.finance-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(51, 202, 229, .12) 0%, transparent 70%);
  border-radius: 50%;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-title-sm {
  color: #111;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.card-value {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
}

.card-badge-green {
  background: rgba(34, 197, 94, .15);
  color: #4ade80;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 88px;
  margin-bottom: 20px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, .1);
  transition: all .3s;
  cursor: pointer;
}

.bar.active {
  background: var(--accent);
}

.bar:hover {
  background: rgba(51, 202, 229, .6);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.chart-labels span {
  color: #111;
  font-size: 10.5px;
}

.divider-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 20px;
}

.portfolio-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portfolio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.portfolio-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.portfolio-name {
  color: #111;
  font-size: 13.5px;
  font-weight: 500;
}

.portfolio-sub {
  color: #111;
  font-size: 10.5px;
  margin-top: 1px;
}

.portfolio-price {
  color: #111;
  font-size: 13.5px;
  font-weight: 700;
  text-align: right;
}

.portfolio-change {
  font-size: 10.5px;
  margin-top: 2px;
  text-align: right;
}

.up {
  color: #4ade80;
}

.down {
  color: var(--red);
}

.floating-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #111;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(34, 197, 94, .45);
  white-space: nowrap;
  animation: floatY 3s ease-in-out infinite reverse;
}

.floating-badge small {
  display: block;
  font-size: 10px;
  opacity: .75;
  font-weight: 400;
}

/* ─── SECTIONS COMMON ─── */
section {
  padding: 96px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
}

.section-tag {
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.5px;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-subtitle {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 14px;
}

/* ─── WHY US STRIP ─── */
.why-us {
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  padding: 44px 32px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background .3s;
}

.why-item:hover {
  background: rgba(255, 255, 255, .03);
}

.why-item:last-child {
  border: none;
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(51, 202, 229, .14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.why-title {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-text {
  color: #111;
  font-size: 13px;
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.services {
  background: #f9f9f9;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .065);
  border-radius: 18px;
  padding: 38px 34px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(51, 202, 229, .12), rgba(51, 202, 229, .08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 22px;
  transition: all .35s;
}

.service-icon1 {
  width: 90px;
  height: 90px;
  background-image: url(images/mf-icon.png);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 22px;
  transition: all .35s;
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: #111;
  border-color: var(--navy);
}

.service-card h3 {
  font-size: 19.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.72;
  margin-bottom: 22px;
}

.service-card:hover .service-icon .bi {
  color: #FFF;
  transition: all .35s;
}

.service-link {
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .3s, color .3s;
}

.service-link:hover {
  gap: 13px;
  color: var(--accent);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 50%, var(--accent2) 100%);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(51, 202, 229, .15) 0%, transparent 60%);
}

.about-illustration {
  font-size: 110px;
  opacity: .1;
  position: absolute;
}

.about-img-badge {
  position: absolute;
  bottom: 28px;
  right: -22px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}

.badge-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.badge-text {
  color: var(--gray);
  font-size: 12.5px;
  margin-top: 4px;
}

.about-img-small {
  position: absolute;
  top: 28px;
  left: -22px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 28px rgba(51, 202, 229, .35);
}

.about-img-small .num {
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.about-img-small .lbl {
  font-size: 11.5px;
  color: #111;
  margin-top: 2px;
}

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(51, 202, 229, .09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  margin-bottom: 3px;
}

.feat-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── NUMBERS ─── */
.numbers {
  background: linear-gradient(135deg, var(--navy3), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}

.number-item {
  text-align: center;
  padding: 44px 24px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.number-item:last-child {
  border: none;
}

.number-big {
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.number-label {
  color: #111;
  font-size: 14px;
  letter-spacing: .3px;
}

/* ─── PROCESS ─── */
.process {
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 68px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(51, 202, 229, .15));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 68px;
  height: 68px;
  background: var(--navy);
  border: 3px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--light);
  margin: 0 auto 24px;
  position: relative;
  transition: all .3s;
}

.process-step:hover .step-num {
  background: var(--accent);
  color: var(--light);
  border-color: var(--accent);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ─── SIP SPOTLIGHT ─── */
.sip-spotlight {
  background: var(--light);
}

.sip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sip-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}

.sip-table th {
  background: var(--navy);
  color: #fff;
  padding: 11px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
}

.sip-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 14px;
  color: var(--gray);
}

.sip-table tr:last-child td {
  border: none;
}

.sip-table tr:hover td {
  background: rgba(51, 202, 229, .05);
}

.sip-table .amount {
  font-weight: 700;
  color: var(--navy);
}

.sip-table .corpus {
  font-weight: 800;
  color: var(--accent);
  font-size: 13px;
}

.sip-card-visual {
  background: #fff;
  border: 1px solid rgba(39, 32, 136, .08);
  border-radius: 22px;
  padding: 46px 44px 36px;
  color: var(--navy3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(31, 46, 94, .08);
}

.sip-card-visual>* {
  position: relative;
  z-index: 2;
}

.sip-card-kicker {
  color: #111;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.35;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sip-card-amount {
  color: var(--navy);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .95;
  margin-bottom: 10px;
}

.sip-card-sub {
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 36px;
}

.sip-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #eef7ff;
  border-radius: 10px;
  padding: 17px 20px;
  margin-bottom: 32px;
}

.sip-summary-item {
  min-width: 0;
}

.sip-summary-label {
  color: #111;
  font-size: 11.5px;
  line-height: 1.3;
  margin-bottom: 7px;
}

.sip-summary-value {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.sip-summary-item-right {
  text-align: right;
}

.sip-summary-value-accent {
  color: var(--accent);
}

.sip-card-arrow {
  color: rgba(51, 202, 229, .24);
  font-size: 14px;
}

.sip-multiplier {
  background: #eef7ff;
  border-radius: 10px;
  padding: 22px 20px 24px;
}

.sip-multiplier-title {
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sip-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 14px;
}

.sip-bar-row+.sip-bar-row {
  margin-top: 16px;
}

.sip-bar-row-returns {
  color: var(--accent);
}

.sip-bar-track {
  height: 10px;
  background: rgba(51, 202, 229, .14);
  border-radius: 999px;
  overflow: hidden;
}

.sip-bar-fill {
  height: 100%;
  border-radius: inherit;
}

.sip-bar-fill-invested {
  width: 24%;
  background: #808991;
}

.sip-bar-fill-returns {
  width: 76%;
  background: var(--accent);
}

.sip-card-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.sip-action {
  flex: 1 1 0;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.sip-action:hover {
  transform: translateY(-1px);
}

.sip-action-primary {
  background: var(--accent);
  color: var(--navy3);
  box-shadow: 0 10px 24px rgba(51, 202, 229, .24);
}

.sip-action-primary:hover {
  background: var(--navy);
  color: #fff;
}

.sip-action-secondary {
  background: #eef7ff;
  border: 1px solid rgba(51, 202, 229, .22);
  color: var(--navy);
}

.sip-action-secondary:hover {
  background: #fff;
  color: var(--accent);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--light);
}

.testi-header {
  text-align: center;
  margin-bottom: 56px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .3s;
  position: relative;
}

.feed-btn {
  text-align: center;
  margin-top: 40px;

}

.feed-btn .btn-primary {
  cursor: pointer;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quote-mark {
  font-size: 72px;
  line-height: .55;
  color: var(--accent);
  opacity: .28;
  margin-bottom: 14px;
  display: block;
}

.testi-stars {
  color: #fbbf24;
  font-size: 12.5px;
  margin-bottom: 14px;
}

.testi-text {
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
}

.author-role {
  color: var(--gray);
  font-size: 12px;
  margin-top: 2px;
}


/* ─── FAQ ─── */
.faq {
  background: #FFF;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, .07);
  overflow: hidden;
  transition: box-shadow .3s;
}

.faq-item.open {
  box-shadow: var(--shadow);
}

.faq-q {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  transition: all .3s;
  user-select: none;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-item.open .faq-q {
  background: #f3fbff;
  color: var(--accent);
}

.faq-icon {
  width: 26px;
  height: 26px;
  background: rgba(51, 202, 229, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  flex-shrink: 0;
  transition: all .3s;
}

.faq-item.open .faq-icon {
  background: rgba(51, 202, 229, .14);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 16px 26px 22px;
}

.faq-cta-box {

  border-radius: 20px;
  padding: 44px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.faq-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(51, 202, 229, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 202, 229, .045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.faq-cta-box>* {
  position: relative;
  z-index: 2;
}

.faq-cta-box h3 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-cta-box>p {
  color: #111;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-input {
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 8px;
  padding: 13px 16px;
  color: #111;
  font-size: 14px;
  font-family: 'Google Sans', sans-serif;
  width: 100%;
  transition: border-color .3s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(17, 17, 17, .5);
}

.form-input:focus {
  border-color: #CCC;
}

.form-input option {
  background: #fff;
}

textarea.form-input {
  resize: vertical;
  min-height: 92px;
}

.customer-query-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(145deg, #fff 0%, #f7fcff 100%);
  border: 1px solid rgba(51, 202, 229, .18);
  border-radius: 6px;
  padding: clamp(24px, 3.4vw, 34px);
  box-shadow: 0 22px 60px rgba(39, 32, 136, .09);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.customer-query-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.customer-query-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.customer-query-field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.customer-query-field em {
  color: #e11d48;
  font-style: normal;
  margin-left: 2px;
}

.customer-query-control {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(51, 202, 229, .2);
  border-radius: 10px;
  color: var(--navy);
  font-size: 15px;
  font-family: 'Google Sans', sans-serif;
  padding: 12px 16px;
  outline: none;
  transition: border-color .3s, box-shadow .3s, transform .2s;
  min-height: 48px;
}

.customer-query-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(51, 202, 229, .12);
}

.customer-query-control::placeholder {
  color: rgba(91, 103, 133, .72);
}

.service-interest-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.service-interest-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(51, 202, 229, .2);
  border-radius: 14px;
  padding: 12px;
}

.service-interest-option {
  border: 1px solid rgba(39, 32, 136, .09);
  background: #f8fcff;
  color: var(--navy);
  border-radius: 11px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s, transform .2s;
}

.service-interest-option:hover,
.service-interest-option:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(51, 202, 229, .12);
  outline: none;
  transform: translateY(-1px);
}

.service-interest-option.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(39, 32, 136, .16);
}

.service-interest-check {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(39, 32, 136, .18);
  border-radius: 7px;
  background: #fff;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: 0 0 auto;
}

.service-interest-option.is-selected .service-interest-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.service-interest-option span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.service-interest-help {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 2px;
}

.customer-query-file {
  width: 100%;
  background: #fff;
  border: 1px dashed rgba(51, 202, 229, .45);
  border-radius: 10px;
  color: var(--navy);
  font-size: 14px;
  font-family: 'Google Sans', sans-serif;
  padding: 12px;
  min-height: 48px;
}

.customer-query-file::file-selector-button {
  border: 0;
  border-radius: 8px;
  background: rgba(51, 202, 229, .14);
  color: var(--navy);
  font-weight: 800;
  padding: 9px 12px;
  margin-right: 12px;
  cursor: pointer;
}

.customer-query-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all .3s;
  font-family: 'Google Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  white-space: normal;
}

.customer-query-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.form-status {
  display: none;
  margin-top: 10px;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.btn-full {
  width: 100%;
  background: var(--accent);
  color: #111;
  padding: 15px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Google Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-full:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-1px);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--light);
  border-top: 1px solid rgba(51, 202, 229, .12);
  border-bottom: 1px solid rgba(51, 202, 229, .12);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(51, 202, 229, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 202, 229, .045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.cta-banner h2 em {
  font-style: normal;
  color: var(--accent);
}

.cta-banner>.container>p {
  color: #111;
  font-size: 17.5px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: #f3fbff;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: #fff;
  color: var(--accent);
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(51, 202, 229, .3);
  transition: all .3s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: #f3fbff;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: #f7fbff;
  padding: 72px 0 0;
  color: #111;
  border-top: 1px solid rgba(51, 202, 229, .14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(51, 202, 229, .12);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #111;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: -.3px;
}

.footer-logo-text em {
  color: var(--accent);
  font-style: normal;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.82;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.foot-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13.5px;
  transition: all .3s;
  text-decoration: none;
}

.foot-social:hover {
  background: var(--accent);
  color: #111;
}

.footer-col h4 {
  color: #111;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-size: 13.5px;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 13px;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  width: 15px;
  font-size: 12.5px;
}

.footer-contact-item span {
  font-size: 13px;
  line-height: 1.65;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.disclaimer-bottom {
  display: flex;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  flex-direction: column;
  align-items: center;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #111;
  text-decoration: none;
  font-size: 12.5px;
  transition: color .3s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.amfi-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(51, 202, 229, .16);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #111;
  margin-top: 16px;
}

.amfi-badge i {
  color: var(--accent);
}

.disclaimer-bar {
  background: #f3fbff;
  color: #111;
  font-size: 11.5px;
  text-align: center;
  padding: 13px 32px;
  line-height: 1.75;
  border-top: 1px solid rgba(51, 202, 229, .12);
}

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 16px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(51, 202, 229, .4);
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 24px;
  z-index: 997;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  text-decoration: none;
  transition: all .3s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .6);
}

/* ─── FADE ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-cta-box {

    border-radius: 6px;
    padding: 44px;
    position: sticky;
    top: 100px;
    overflow: hidden;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: 520px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .sip-inner {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-item:nth-child(2) {
    border-right: none;
  }

  .why-item:nth-child(4) {
    border: none;
  }

  .hero-orb1 {
    bottom: -10%;
    left: -2%;
    width: 450px;
    height: 450px;
  }

  .hero-orb2 {
    bottom: -45%;
    left: -15%;
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 68px 0;
  }

  .faq-cta-box {

    border-radius: 6px;
    padding: 44px;
    position: sticky;
    top: 100px;
    overflow: hidden;
  }

  .container {
    padding: 0 22px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .amc-inner {
    padding: 0 22px;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-cta-box {
    position: static;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .hero-trust {
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .why-item:last-child {
    border: none;
  }

  .hero {
    margin-top: 0;
  }

  .hero-content {
    padding-bottom: 60px;
  }

  .sip-card-visual {
    padding: 36px 28px 30px;
  }

  .sip-card-summary {
    align-items: flex-start;
  }

  .customer-query-grid {
    grid-template-columns: 1fr;
  }

  .service-interest-picker {
    grid-template-columns: 1fr;
  }

  .hero-orb2 {
    bottom: -45%;
    left: -15%;
    width: 380px;
    height: 380px;
  }

  .hero-orb1 {
    bottom: -10%;
    left: -2%;
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .faq-cta-box {

    border-radius: 6px;
    padding: 44px 0;
    position: sticky;
    top: 100px;
    overflow: hidden;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .number-item {
    padding: 32px 16px;
  }

  .number-big {
    font-size: 40px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sip-card-visual {
    padding: 32px 20px 24px;
  }

  .sip-card-summary {
    flex-direction: column;
    gap: 18px;
  }

  .hero-orb2 {
    bottom: -45%;
    left: -15%;
    width: 380px;
    height: 380px;
  }

  .sip-summary-item-right {
    text-align: left;
  }

  .sip-card-arrow {
    transform: rotate(90deg);
  }

  .sip-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sip-card-actions {
    flex-direction: column;
  }

  .service-interest-picker {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    justify-content: center;
  }
}