:root {
  --color-bg: #f6f2ea;
  --color-surface: #ffffff;
  --color-text: #17171d;
  --color-muted: #4a4a53;
  --color-primary: #c8a985;
  --color-border: #d9e2ec;
  --color-header: #bba582;
  --container-width: 1280px;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 400;
}

.container {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}

.section-space {
  padding: 3rem 0;
}

.site-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 260ms ease, padding 260ms ease;
  padding: 0.2rem 0;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: var(--header-height);
  padding: 0.45rem 0;
  transition: min-height 260ms ease, padding 260ms ease, background-color 260ms ease, border-radius 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 40px; /* Adjust based on actual logo aspect ratio */
  width: auto;
  display: block;
}

.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.primary-menu,
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 2.1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.primary-menu a,
.footer-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: opacity 180ms ease;
}

.primary-menu a:hover,
.footer-nav a:hover {
  opacity: 0.7;
}

.primary-menu .menu-link-label {
  position: relative;
  z-index: 2;
}

.primary-menu .menu-item-service > a {
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  gap: 0;
  transition: opacity 180ms ease;
}

.primary-menu .menu-item-service > a::before {
  content: none;
}

.primary-menu .menu-item-service > a::after {
  content: none;
}

.primary-menu .menu-item-service > a:hover {
  opacity: 0.7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: var(--color-primary);
  min-height: 58px;
  min-width: 220px;
  padding: 0.8rem 1.4rem;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: filter 180ms ease, background-color 260ms ease;
}

.nav-cta:hover {
  filter: brightness(0.95);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.is-menu-open .hamburger-inner {
  transform: rotate(45deg);
}

.is-menu-open .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.is-menu-open .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.site-header.is-scrolled {
  background: transparent;
}

.site-header.is-scrolled .container {
  min-height: 74px;
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 44px;
  box-shadow: 0 12px 34px rgba(50, 35, 22, 0.16);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
}

.site-header.is-scrolled .nav-cta {
  min-height: 52px;
  min-width: 210px;
  border-radius: 999px;
}

.page-content,
.entry-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #bca681 0%, #d6c8ae 100%);
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 2.15rem 0 4.2rem;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.hero-title {
  margin: 0;
  color: #ffffff;
  font-family: "Space Mono", "Sora", monospace;
  font-size: 4.45rem;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 700;
  text-wrap: balance;
}

.hero-line {
  display: inline-block;
}

.hero-char {
  display: inline-block;
}

.hero-title.smoke-ready .hero-char {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(12px) scale(1.06);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.78);
  animation: smoke-write 900ms cubic-bezier(0.18, 0.72, 0.25, 1) forwards;
  animation-delay: var(--char-delay, 0s);
}

@keyframes smoke-write {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(12px) scale(1.06);
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.78);
  }
  45% {
    opacity: 0.66;
    filter: blur(7px);
    transform: translateY(4px) scale(1.03);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.58);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero-text {
  margin: 1.4rem auto 0;
  max-width: 860px;
  color: #3f3f48;
  font-size: 1.22rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 58px;
  border-radius: 999px;
  padding: 0.78rem 1.65rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

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

.hero-btn-primary {
  color: #ffffff;
  min-width: 230px;
  background: #c8ab89;
}

.hero-btn-secondary {
  color: #1a1a1f;
  min-width: 175px;
  background: #cfc1ad;
}

.hero-cloud {
  position: absolute;
  top: 13%;
  width: 260px;
  height: 132px;
  z-index: 1;
  opacity: 0.74;
}

.hero-cloud-left {
  left: -56px;
}

.hero-cloud-right {
  right: -56px;
  transform: scaleX(-1);
}

.cloud-puff {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  filter: blur(4px);
}

.hero-cloud .puff-one {
  width: 56%;
  height: 70%;
  left: 0;
  bottom: 0;
}

.hero-cloud .puff-two {
  width: 50%;
  height: 64%;
  left: 30%;
  bottom: 16%;
}

.hero-cloud .puff-three {
  width: 35%;
  height: 50%;
  left: 58%;
  bottom: 8%;
}

.hero-showcase {
  margin-top: 2rem;
  height: 330px;
  overflow: hidden;
  border-radius: 28px;
}

.showcase-card {
  max-width: 980px;
  margin-inline: auto;
  border-radius: 28px;
  overflow: hidden;
  background: #d9c7ac;
  box-shadow: 0 26px 70px rgba(70, 46, 22, 0.26);
  transform-origin: center top;
  transform: perspective(1400px) rotateX(16deg) rotateZ(-3deg) translateY(68px) scale(0.94);
  will-change: transform;
}

.showcase-card img {
  display: block;
  width: 100%;
  height: min(44vw, 640px);
  object-fit: cover;
}

.trusted-section {
  background: #f7f7f8;
  padding: 3.25rem 0 2rem;
}

.trusted-kicker {
  margin: 0;
  text-align: center;
  color: #7a7a80;
  font-size: 1rem;
  letter-spacing: 0;
}

.logo-marquee {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f7f7f8 0%, rgba(247, 247, 248, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f7f7f8 0%, rgba(247, 247, 248, 0) 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: logo-scroll 22s linear infinite;
  color: #74747c;
  font-weight: 600;
  font-size: 1.55rem;
}

.logo-track span {
  white-space: nowrap;
  opacity: 0.92;
}

.logo-track .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 42px;
}

.logo-track .logo-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.impact-section {
  background: #f7f7f8;
  padding: 2rem 0 4.8rem;
}

.impact-content {
  text-align: center;
  max-width: 1040px;
}

.impact-title {
  margin: 0;
  color: #c29f79;
  font-size: 3.1rem;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 700;
}

.impact-text {
  margin: 1.9rem auto 0;
  max-width: 980px;
  color: #414149;
  font-size: 1.18rem;
  line-height: 1.65;
}

.feature-visual-section {
  background: #f7f7f8;
  padding: 0 0 5rem;
}

.feature-visual-card {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin-inline: auto;
  border-radius: 30px;
  aspect-ratio: 1.42 / 1;
  background: #ead9c3;
}

.feature-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transform-origin: center center;
  will-change: transform;
  transition: opacity 160ms ease;
}

.feature-pill-row {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: flex;
  width: min(72%, 720px);
  transform: translateX(-50%);
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(221, 204, 185, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: 0 12px 34px rgba(70, 46, 22, 0.2);
}

.feature-pill {
  border: 0;
  appearance: none;
  font-family: inherit;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.feature-pill-active {
  background: #2d2926;
}

.service-section {
  background: #ffffff;
  padding: 5.3rem 0;
}

.service-section-enterprise {
  padding-top: 2.4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 4.6rem;
  max-width: 1060px;
}

.service-grid-reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.05fr);
}

.service-image-shell {
  overflow: hidden;
  border-radius: 28px;
  padding: 2.1rem;
  background: linear-gradient(145deg, #c09a75 0%, #f7eee4 86%);
  transform: translateY(34px);
  opacity: 0.86;
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}

.service-image-blue {
  background: linear-gradient(145deg, #9fc6ee 0%, #f1e6db 100%);
}

.service-image-shell img {
  display: block;
  width: 100%;
  aspect-ratio: 0.78 / 1;
  border-radius: 20px;
  object-fit: cover;
}

.service-image-blue img {
  object-position: center center;
}

.service-copy {
  color: #17171d;
}

.service-kicker {
  margin: 0 0 1.35rem;
  color: #6d5048;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-copy h2 {
  margin: 0;
  max-width: 430px;
  color: #17171d;
  font-size: 3rem;
  line-height: 1.14;
  font-weight: 700;
}

.service-copy p:not(.service-kicker) {
  margin: 1.35rem 0 0;
  max-width: 430px;
  color: #4b4544;
  font-size: 1.08rem;
  line-height: 1.58;
}

.service-copy strong {
  color: #2d2926;
  font-weight: 700;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 2rem;
  padding: 0.8rem 1.65rem;
  border-radius: 999px;
  background: #c8a985;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.service-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 430px;
  margin-top: 2.2rem;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid #ece8e4;
  border-radius: 999px;
  color: #211f23;
  font-size: 0.96rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.82);
}

.service-page-hero {
  background: #f7f4ef;
  padding: 6.4rem 0 4.6rem;
}

.service-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.9fr);
  gap: 3rem;
  align-items: center;
  max-width: 1060px;
}

.service-page-copy h1 {
  margin: 0;
  max-width: 620px;
  color: #17171d;
  font-size: 3.1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-page-copy p {
  margin: 1.35rem 0 0;
  max-width: 620px;
  color: #4b4544;
  font-size: 1.08rem;
  line-height: 1.58;
}

.service-page-kicker {
  margin: 0 0 1.25rem;
  color: #6d5048;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-page-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 2rem;
  padding: 0.8rem 1.65rem;
  border-radius: 999px;
  background: #2d2926;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.service-page-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  padding: 1.1rem;
  background: linear-gradient(145deg, #d6be9f 0%, #f6ece3 100%);
}

.service-page-image-wrap img {
  display: block;
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
}

.service-accordion-section {
  background: #ffffff;
  padding: 4rem 0 6.2rem;
}

.service-accordion-shell {
  max-width: 980px;
}

.service-accordion-intro h2 {
  margin: 0;
  color: #17171d;
  font-size: 2.2rem;
  line-height: 1.2;
}

.service-accordion-intro p {
  margin: 1rem 0 0;
  max-width: 700px;
  color: #5a5654;
  font-size: 1rem;
  line-height: 1.6;
}

.service-accordion-list {
  margin-top: 2.25rem;
  display: grid;
  gap: 0.9rem;
}

.service-accordion-item {
  border: 1px solid #e8e1d9;
  border-radius: 18px;
  overflow: hidden;
  background: #faf7f2;
}

.service-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: #1d1c22;
  font-size: 1.04rem;
  font-weight: 600;
}

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

.service-accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #d8cabb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-accordion-item[open] .service-accordion-icon {
  transform: rotate(45deg);
}

.service-accordion-content {
  padding: 0 1.35rem 1.25rem;
}

.service-accordion-content p {
  margin: 0;
  color: #5b5551;
  font-size: 0.99rem;
  line-height: 1.58;
}

.wealth-section {
  background: #f7f7f8;
  padding: 5.5rem 0 6rem;
}

.wealth-heading {
  text-align: center;
}

.wealth-heading .service-kicker {
  margin-bottom: 1.35rem;
}

.wealth-heading h2 {
  margin: 0;
  color: #17171d;
  font-size: 3.15rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.wealth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
  max-width: 1040px;
  margin: 3.7rem auto 0;
}

.wealth-card {
  min-height: 278px;
  border-radius: 24px;
  background: #eee8e1;
  padding: 2.1rem;
}

.wealth-card h3 {
  margin: 0;
  color: #17171d;
  font-size: 1.55rem;
  line-height: 1.2;
}

.wealth-card p {
  margin: 5rem 0 0;
  max-width: 430px;
  color: #4a4545;
  font-size: 1.04rem;
  line-height: 1.55;
}

.wealth-card strong {
  color: #2d2926;
}

.wealth-card-logos {
  overflow: hidden;
}

.wealth-logo-window {
  position: relative;
  width: calc(100% + 4.2rem);
  margin: 4.3rem -2.1rem 0;
  overflow: hidden;
}

.wealth-logo-window::before,
.wealth-logo-window::after {
  content: "";
  position: absolute;
  top: 0;
  width: 86px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.wealth-logo-window::before {
  left: 0;
  background: linear-gradient(to right, #eee8e1 0%, rgba(238, 232, 225, 0) 100%);
}

.wealth-logo-window::after {
  right: 0;
  background: linear-gradient(to left, #eee8e1 0%, rgba(238, 232, 225, 0) 100%);
}

.wealth-logo-row {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.35rem 0;
  will-change: transform;
}

.wealth-logo-row-two {
  margin-top: 0.55rem;
  transform: translateX(-36px);
}

.wealth-logo-row span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(20, 20, 25, 0.1);
  color: #6d52f4;
  font-size: 1.65rem;
  font-weight: 700;
}

.wealth-logo-row span img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.wealth-card-logos p {
  margin-top: 4.2rem;
}

.trust-section {
  background: linear-gradient(180deg, #edf5fc 0%, #dcebfa 100%);
  padding: 6rem 0 8rem;
}

.trust-title {
  margin: 0 0 3.6rem;
  text-align: center;
  color: #17171d;
  font-size: 3.1rem;
  line-height: 1.12;
  font-weight: 700;
}

.trust-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.trust-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 3.5rem;
  align-items: center;
  max-width: 1040px;
  margin-inline: auto;
  padding: 3.2rem;
  border-radius: 20px;
  background: #f8fafc;
}

.trust-money-panel {
  overflow: hidden;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.trust-money-image {
  width: min(100%, 520px);
  transform: scale(1.16);
  transform-origin: center center;
  will-change: transform;
}

.trust-money-image[src*="/assets/images/ico/"] {
  transform: scale(1);
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: center center;
}

.trust-copy {
  max-width: 430px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #6e514a;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-copy h3 {
  margin: 1.6rem 0 0;
  color: #17171d;
  font-size: 2.25rem;
  line-height: 1.16;
}

.trust-copy p {
  margin: 1.35rem 0 0;
  color: #4a4545;
  font-size: 1.08rem;
  line-height: 1.58;
}

.trust-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
  max-width: 1040px;
  margin: 2rem auto 0;
}

.trust-mini-card {
  position: relative;
  overflow: visible;
  margin: 0;
}

.trust-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  border-radius: 14px;
  object-fit: contain;
  background: #eef3fa;
  transition: transform 260ms ease;
}

.trust-mini-card img[src*="/assets/images/ico/"] {
  object-fit: contain;
  object-position: center center;
  background: #eef3fa;
  padding: 0.35rem;
}

.trust-mini-card:hover img {
  transform: scale(1.06);
}

.trust-mini-label {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 3;
  min-width: 82px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.trust-mini-blue {
  background: #2274c9;
}

.trust-mini-gold {
  background: #d49511;
}

.trust-mini-green {
  background: #17a760;
}

.partner-cta-section {
  position: relative;
  overflow: hidden;
  background: #dcebfa;
  padding: 6.2rem 0 4.5rem;
}

.partner-cloud {
  position: absolute;
  top: 18%;
  width: 250px;
  height: 124px;
  opacity: 0.7;
}

.partner-cloud-left {
  left: -52px;
}

.partner-cloud-right {
  right: -52px;
  transform: scaleX(-1);
}

.partner-cta-content {
  max-width: 940px;
  text-align: center;
}

.partner-cta-content h2 {
  margin: 0;
  color: #17171d;
  font-size: 4.15rem;
  line-height: 1.08;
  font-weight: 700;
}

.partner-cta-content p {
  margin: 1.5rem auto 0;
  max-width: 900px;
  color: #47464e;
  font-size: 1.2rem;
  line-height: 1.55;
}

.partner-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  min-height: 68px;
  min-width: 192px;
  border-radius: 999px;
  background: #c8a985;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.home-footer-section {
  background: #dcebfa;
  padding: 0 0 5.8rem;
}

.home-footer-card {
  max-width: 1080px;
  margin-inline: auto;
  border-radius: 42px;
  border: 1px solid #c2d7ea;
  background: rgba(241, 248, 255, 0.72);
  padding: 3rem 3rem 1.3rem;
  box-shadow: 0 22px 50px rgba(40, 56, 74, 0.08);
}

.home-footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(360px, 1fr);
  gap: 3rem;
  align-items: start;
}

.home-footer-brand p {
  margin: 1.15rem 0 0;
  max-width: 280px;
  color: #41414a;
  font-size: 1.08rem;
  line-height: 1.6;
}

.home-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.home-social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f1f25;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: lowercase;
}

.home-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.home-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 2rem;
  justify-items: start;
}

.home-footer-col h3 {
  margin: 0;
  color: #17171d;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.home-footer-col ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.home-footer-col a {
  color: #2a2a33;
  text-decoration: none;
  font-size: 1rem;
}

.home-footer-col a:hover {
  opacity: 0.7;
}

.home-footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid #c9d8e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-footer-bottom p {
  margin: 0;
  color: #4a4a53;
  font-size: 0.95rem;
}

body.home .site-footer,
body.front-page .site-footer,
body.blog .site-footer,
body.page-template-page-listing .site-footer {
  display: none;
}

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.site-footer .container {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .is-menu-open.site-header {
    background: var(--color-header);
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    flex-direction: column;
    padding: 120px 40px;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
  }

  .is-menu-open .primary-nav {
    right: 0;
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .primary-menu a {
    color: var(--color-text);
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
  }

  .nav-cta {
    display: none;
  }

  .primary-nav .nav-cta {
    display: inline-flex;
    margin-top: 3rem;
    min-width: 100%;
    background: var(--color-primary);
    color: #fff;
    border-radius: 15px;
    justify-content: center;
    padding: 1.2rem;
  }

  .site-header.is-scrolled .container {
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    margin-top: 10px;
  }

  .footer-nav ul {
    flex-wrap: wrap;
  }

  .hero-section {
    min-height: auto;
    padding: 2.8rem 0 4rem;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-text {
    font-size: 1.1rem;
    margin-top: 1.2rem;
  }

  .hero-btn {
    min-height: 58px;
    width: 100%;
  }

  .hero-cloud {
    top: 6%;
    opacity: 0.6;
  }

  .showcase-card {
    transform: none;
    border-radius: 18px;
  }

  .showcase-card img {
    height: 56vw;
  }

  .hero-showcase {
    height: clamp(170px, 42vw, 250px);
    border-radius: 18px;
  }

  .trusted-section {
    padding: 2.2rem 0 1.6rem;
  }

  .logo-track {
    gap: 1.5rem;
    font-size: 1.25rem;
    animation-duration: 16s;
  }

  .logo-track .logo-icon {
    min-width: 84px;
    height: 34px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 44px;
  }

  .impact-section {
    padding: 1.4rem 0 3rem;
  }

  .impact-title {
    font-size: 2.35rem;
  }

  .impact-text {
    font-size: 1.05rem;
    margin-top: 1.3rem;
  }

  .feature-visual-section {
    padding-bottom: 3rem;
  }

  .feature-visual-card {
    border-radius: 20px;
    aspect-ratio: 0.86 / 1;
  }

  .feature-pill-row {
    bottom: 1rem;
    width: calc(100% - 1.5rem);
    flex-direction: column;
    border-radius: 24px;
  }

  .feature-pill {
    min-height: 48px;
    white-space: normal;
    font-size: 0.92rem;
  }

  .service-section {
    padding: 3rem 0;
  }

  .service-grid,
  .service-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-grid-reverse .service-copy {
    order: 2;
  }

  .service-grid-reverse .service-image-shell {
    order: 1;
  }

  .service-image-shell {
    padding: 1rem;
    border-radius: 20px;
  }

  .service-image-shell img {
    border-radius: 16px;
    aspect-ratio: 1 / 1.05;
  }

  .service-copy h2 {
    font-size: 2.25rem;
  }

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

  .service-page-hero {
    padding: 4.4rem 0 3.2rem;
  }

  .service-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-page-copy h1 {
    font-size: 2.2rem;
  }

  .service-page-image-wrap {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .service-page-image-wrap img {
    border-radius: 16px;
    aspect-ratio: 1 / 1.05;
  }

  .service-accordion-section {
    padding: 2.2rem 0 4rem;
  }

  .service-accordion-intro h2 {
    font-size: 1.9rem;
  }

  .service-accordion-item summary {
    font-size: 0.98rem;
    padding: 1rem 1rem;
  }

  .service-accordion-content {
    padding: 0 1rem 1rem;
  }

  .wealth-section {
    padding: 3.5rem 0 4rem;
  }

  .wealth-heading h2 {
    font-size: 2.4rem;
  }

  .wealth-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .wealth-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .wealth-card p,
  .wealth-card-logos p {
    margin-top: 2.5rem;
  }

  .wealth-logo-window {
    width: calc(100% + 3rem);
    margin: 2.5rem -1.5rem 0;
  }

  .wealth-logo-row span {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .wealth-logo-row span img {
    width: 26px;
    height: 26px;
  }

  .trust-section {
    padding: 3.5rem 0 5rem;
  }

  .trust-title {
    font-size: 2.35rem;
    margin-bottom: 2rem;
  }

  .trust-card {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.4rem;
  }

  .trust-money-panel {
    min-height: 260px;
  }

  .trust-copy h3 {
    font-size: 2rem;
  }

  .trust-mini-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .partner-cta-section {
    padding: 4.2rem 0 3.2rem;
  }

  .partner-cloud {
    width: 190px;
    height: 102px;
    top: 8%;
    opacity: 0.58;
  }

  .partner-cta-content h2 {
    font-size: 2.6rem;
  }

  .partner-cta-content p {
    font-size: 1.05rem;
  }

  .partner-cta-btn {
    min-height: 56px;
    min-width: 166px;
    font-size: 1.05rem;
  }

  .home-footer-section {
    padding-bottom: 3.4rem;
  }

  .home-footer-card {
    border-radius: 24px;
    padding: 1.5rem 1.3rem 1rem;
  }

  .home-footer-top {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .home-footer-brand p {
    max-width: 100%;
    font-size: 1rem;
  }

  .home-footer-links {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .home-footer-bottom {
    margin-top: 1.7rem;
    padding-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------------------------------------------------------- */
/* Contact Page Redesign Styles
/* -------------------------------------------------------------------------- */
.cnt-page {
    background: #c4a17a; /* Base tan color from image */
    background: radial-gradient(circle at 50% 50%, #d1bc9e 0%, #c4a17a 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

.cnt-hero {
    padding: 100px 0 120px;
    position: relative;
    text-align: center;
}

/* Clouds */
.cnt-cloud {
    position: absolute;
    width: 300px;
    height: 150px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.cnt-cloud-left {
    top: 15%;
    left: -50px;
}

.cnt-cloud-right {
    top: 10%;
    right: -50px;
}

.cloud-puff {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(20px);
}

.cnt-cloud-left .puff-1 { width: 150px; height: 150px; top: 0; left: 0; }
.cnt-cloud-left .puff-2 { width: 120px; height: 120px; top: 30px; left: 80px; }
.cnt-cloud-left .puff-3 { width: 100px; height: 100px; top: -20px; left: 50px; }

.cnt-cloud-right .puff-1 { width: 160px; height: 160px; top: 0; right: 0; }
.cnt-cloud-right .puff-2 { width: 130px; height: 130px; top: 40px; right: 90px; }
.cnt-cloud-right .puff-3 { width: 110px; height: 110px; top: -10px; right: 60px; }

/* In the actual image they look like real clouds, I'll use a CSS trick with radial gradients */
.cnt-cloud::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.6) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(255,255,255,0.5) 0%, transparent 70%);
    filter: blur(30px);
}

.cnt-badge-wrap {
    margin-bottom: 20px;
}

.cnt-badge {
    background: #ffffff;
    color: #c4a17a;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cnt-title {
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.cnt-desc {
    max-width: 500px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Form Card */
.cnt-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: #f1ede8;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.cnt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cnt-form-field {
    margin-bottom: 24px;
}

.cnt-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #a9967b;
    margin-bottom: 12px;
}

.cnt-form-field input, 
.cnt-form-field textarea,
.cnt-form-field select {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    color: #2c2a38;
    transition: all 0.3s ease;
}

.cnt-form-field input::placeholder, 
.cnt-form-field textarea::placeholder {
    color: #d1bc9e;
}

.cnt-form-field input:focus, 
.cnt-form-field textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 161, 122, 0.2);
}

/* Select Styling */
.cnt-select-wrap {
    position: relative;
}

.cnt-select-wrap::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23a9967b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.cnt-form-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit Button */
.cnt-form-submit {
    width: 100%;
    background: #1a1917;
    color: #ffffff;
    border: none;
    padding: 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cnt-form-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cnt-hero {
        padding: 60px 0 80px;
    }
    
    .cnt-form-card {
        padding: 40px 20px;
    }
    
    .cnt-form-row {
        grid-template-columns: 1fr;
    }
    
    .cnt-cloud {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Testimonials Marquee
/* -------------------------------------------------------------------------- */
.cnt-testimonials {
    padding: 100px 0;
    background: #f1ede8;
    overflow: hidden;
}

.cnt-testi-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1a1917;
    line-height: 1.2;
}

.cnt-testi-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.cnt-testi-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: cnt-marquee 40s linear infinite;
}

.cnt-testi-track:hover {
    animation-play-state: paused;
}

@keyframes cnt-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.cnt-testi-card {
    width: 400px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-quote {
    font-size: 16px;
    color: #69686e;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1917;
    margin: 0;
}

.testi-role {
    font-size: 13px;
    color: #a9967b;
    margin: 4px 0 0;
}

@media (max-width: 768px) {
    .cnt-testimonials {
        padding: 60px 0;
    }
    
    .cnt-testi-heading {
        margin-bottom: 40px;
    }
    
    .cnt-testi-card {
        width: 320px;
        padding: 30px;
    }
}

body.page-template-page-listing {
  background: #f3efea;
}

.listing-hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 25%, #fbfaf8 0%, #f0ede8 54%, #e2d4c1 100%);
  padding: 5.3rem 0 14rem;
  z-index: 1;
}

.listing-hero-content {
  text-align: center;
  max-width: 1160px;
}

.listing-headline {
  margin: 0;
  color: #b89d75;
  font-size: clamp(2rem, 5vw, 5.8rem);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.3vw, 1.3rem);
}

.listing-headline-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(44px, 5.6vw, 102px);
  height: clamp(44px, 5.6vw, 102px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #bea176;
  font-size: clamp(1.45rem, 2.7vw, 3.4rem);
  box-shadow: 0 12px 30px rgba(133, 105, 65, 0.12);
}

.listing-headline-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  display: block;
}

.listing-hero-content h1 {
  margin: 1.6rem 0 0;
  color: #6f5b48;
  font-size: clamp(2rem, 4.35vw, 5.5rem);
  line-height: 1.07;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.listing-subtext {
  margin: 1.2rem auto 0;
  max-width: 900px;
  color: #c39f79;
  font-size: clamp(0.98rem, 1.2vw, 1.9rem);
  line-height: 1.45;
}

.listing-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.listing-btn {
  min-height: 64px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.listing-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.listing-btn-ghost {
  min-width: 188px;
  padding: 0.75rem 1.4rem;
  background: rgba(255, 255, 255, 0.55);
  color: #c39f79;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.listing-btn-primary {
  min-width: 232px;
  padding: 0.28rem;
  background: rgba(221, 196, 164, 0.4);
  border: 1px solid rgba(214, 185, 147, 0.8);
  color: #b99368;
  justify-content: space-between;
  gap: 1rem;
}

.listing-btn-primary span:first-child {
  padding-left: 1.15rem;
}

.listing-btn-arrow {
  width: 59px;
  height: 54px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(199, 162, 111, 0.65);
  color: #ffffff;
  font-size: 2rem;
}

.listing-tags {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: #6f5b48;
  font-size: 2rem;
}

.listing-tags li {
  position: relative;
  line-height: 1;
}

.listing-tags li + li::before {
  content: "•";
  position: absolute;
  left: -1.15rem;
  color: #c39f79;
}

.listing-image-reveal-section {
  background: linear-gradient(180deg, #efe9e1 0%, #f4efea 44%, #f7f3ef 100%);
  margin-top: -9.5rem;
  padding: 0 0 5rem;
  position: relative;
  z-index: 2;
}

.listing-image-frame {
  position: relative;
  max-width: 1320px;
  margin-inline: auto;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, #ccb089 0%, #9f8d6f 100%);
  padding: 2rem;
  transform: translateY(245px) scale(0.95);
  will-change: transform;
}

.listing-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.2;
  border-radius: 24px;
  object-fit: cover;
}

.listing-image-smoke {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  height: 30%;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(244, 239, 234, 0) 0%, rgba(244, 239, 234, 0.72) 56%, rgba(244, 239, 234, 0.97) 100%);
  filter: blur(1.6px);
  pointer-events: none;
}

.listing-investment-section {
  background: #f4f4f6;
  padding: 3rem 0 5rem;
}

.listing-investment-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto 2.7rem;
  color: #958676;
  font-size: 2rem;
  text-align: center;
}

.listing-investment-icons .stagger-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-investment-icons .stagger-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.listing-investment-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.listing-investment-copy {
  color: #17171d;
}

.listing-investment-kicker {
  margin: 0;
  color: #6e5a3f;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
}

.listing-investment-copy h2 {
  margin: 1.2rem 0 0;
  color: #5b4a32;
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.listing-investment-copy p:not(.listing-investment-kicker) {
  margin: 1.5rem 0 0;
  color: #1e1f27;
  max-width: 600px;
  font-size: 1.12rem;
  line-height: 1.48;
}

.listing-investment-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 248px;
  min-height: 56px;
  border-radius: 16px;
  text-decoration: none;
  background: #dfddd9;
  color: #17171d;
  overflow: hidden;
  font-size: 1.06rem;
  font-weight: 600;
}

.listing-investment-btn span:first-child {
  padding-left: 1.2rem;
  padding-right: 0.7rem;
}

.listing-investment-btn-arrow {
  width: 54px;
  height: 56px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  background: #e8e6e3;
  color: #a9967b;
  font-size: 1.85rem;
}

.listing-flow-panel {
  position: relative;
  min-height: 620px;
  padding: 2rem 1.9rem;
  overflow: hidden;
}

.listing-flow-panel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(160, 110, 80, 0.18) 0%, rgba(244, 244, 246, 0) 65%);
  z-index: 0;
  pointer-events: none;
}

.listing-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.listing-flow-line {
  stroke: #b3a3d7;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.9;
}

.listing-flow-panel.is-active .listing-flow-line {
  animation: listing-line-draw 2.8s ease forwards;
}

.listing-flow-panel.is-active .listing-flow-line:nth-child(2) {
  animation-delay: 0.8s;
}

.listing-flow-panel.is-active .listing-flow-line:nth-child(3) {
  animation-delay: 1.5s;
}

.listing-flow-panel.is-active .listing-flow-line:nth-child(4) {
  animation-delay: 2.2s;
}

.listing-flow-panel.is-active .listing-flow-line:nth-child(5) {
  animation-delay: 2.9s;
}

@keyframes listing-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.listing-flow-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: #6b5945;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 18px;
  padding: 0.7rem 1.05rem;
  box-shadow: 0 12px 30px rgba(70, 53, 31, 0.06);
  z-index: 2;
}

.listing-flow-node h3 {
  margin: 0;
  text-transform: none;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.listing-flow-node p {
  margin: 0.15rem 0 0;
  color: #342d24;
  font-size: 0.95rem;
  line-height: 1.2;
}

.listing-flow-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: rgba(245, 241, 236, 1);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(50, 42, 32, 0.08);
  flex-shrink: 0;
}

.listing-flow-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.listing-flow-icon-check svg {
  width: 32px;
  height: 32px;
}

.listing-flow-icon-check path {
  fill: none;
  stroke: #5f5034;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.listing-flow-node-top {
  top: 2.5rem;
  left: 2.2rem;
}

.listing-flow-node-main {
  top: 11.5rem;
  left: 2rem;
  width: min(360px, calc(100% - 4rem));
}

.listing-flow-node-main .listing-flow-icon {
  width: 60px;
  height: 60px;
}

.listing-flow-title-caps {
  text-transform: uppercase !important;
}

.listing-flow-yes {
  position: absolute;
  top: 15.8rem;
  right: 26%;
  min-width: 50px;
  min-height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 1);
  color: #6b5945;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.listing-flow-node-left {
  top: 23rem;
  left: 2rem;
}

.listing-flow-node-right {
  top: 23rem;
  right: 2rem;
}

.listing-flow-node-bottom {
  top: 31.6rem;
  left: 2rem;
}

.listing-struct-section {
  background: #f4f4f6;
  padding: 2.2rem 0 4.6rem;
}

.listing-struct-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
}

.listing-enterprise-visual {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: radial-gradient(95% 120% at 50% 50%, #d8c4ac 0%, #eee6dc 57%, #f4f3f0 100%);
  box-shadow: 0 20px 52px rgba(100, 82, 59, 0.13);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.listing-enterprise-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 66px rgba(100, 82, 59, 0.2);
}

.listing-enterprise-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 48% 46%, rgba(188, 160, 123, 0.28) 0%, rgba(188, 160, 123, 0) 62%);
  pointer-events: none;
}

.listing-enterprise-row {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
}

.listing-enterprise-row::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(177, 158, 213, 0.35);
}

.listing-enterprise-row-top {
  top: 2.1rem;
}

.listing-enterprise-row-mid {
  top: 8.5rem;
}

.listing-enterprise-row-bottom {
  top: 14.9rem;
}

.listing-enterprise-row-track {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.9rem;
  will-change: transform;
}

.listing-enterprise-tile {
  min-width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(247, 245, 242, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(80, 66, 47, 0.1);
  color: #9d8d7b;
  font-size: 1.85rem;
  user-select: none;
}

.listing-enterprise-tile img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.listing-enterprise-core {
  position: absolute;
  left: 50%;
  top: 48.5%;
  transform: translate(-50%, -50%);
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(244, 243, 242, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(92, 75, 56, 0.15);
}

.listing-enterprise-core span {
  color: #b49f7f;
  font-size: 3rem;
}

.listing-enterprise-core span img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.listing-bold-line-section {
  background: #f4f4f6;
  padding: 2.6rem 0 3.2rem;
}

.listing-bold-line {
  width: 100%;
  height: 238px;
  background: linear-gradient(180deg, #b79b77 0%, #b29773 44%, #91734c 100%);
  position: relative;
}

.listing-bold-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 140px;
  background: radial-gradient(110% 100% at 50% 20%, rgba(95, 67, 24, 0.65) 0%, rgba(95, 67, 24, 0) 68%);
  filter: blur(15px);
  opacity: 0.86;
  pointer-events: none;
}

.listing-real-estate-section {
  background: linear-gradient(180deg, #f8f8f8 0%, #f4f4f6 100%);
  padding: 6.6rem 0 7.2rem;
}

.listing-real-estate-header {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.listing-real-estate-header .listing-struct-kicker {
  background: rgba(247, 243, 247, 0.96);
  color: #574323;
  box-shadow: 0 12px 28px rgba(84, 68, 45, 0.05);
}

.listing-real-estate-header h2 {
  margin: 1.55rem 0 0;
  color: #574323;
  font-size: 5.25rem;
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.listing-real-estate-header h2 span {
  display: block;
}

.listing-real-estate-header h2 span:last-child {
  text-transform: uppercase;
}

.listing-real-estate-cards {
  max-width: 1240px;
  margin: 5.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.35rem;
}

.listing-real-estate-card {
  min-height: 300px;
  padding: 2rem 2rem 1.9rem;
  border-radius: 16px;
  background: rgba(248, 247, 246, 0.82);
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(74, 64, 53, 0.1);
  color: #5f4d72;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.listing-real-estate-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 24px 58px rgba(78, 69, 85, 0.13);
}

.listing-real-estate-number {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: linear-gradient(135deg, #bea17c 0%, #715821 100%);
  box-shadow: 0 14px 24px rgba(99, 75, 35, 0.22);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

.listing-real-estate-card h3 {
  margin: 3.15rem 0 0;
  color: #5c4771;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.2;
}

.listing-real-estate-card p {
  margin: 0.75rem 0 0;
  color: #8b759c;
  font-size: 1.05rem;
  line-height: 1.42;
}

.listing-project-section {
  background: #f4f4f6;
  padding: 4.4rem 0 5rem;
}

.listing-project-header {
  text-align: center;
}

.listing-project-header h2 {
  margin: 1rem 0 0;
  color: #574323;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
}

.listing-project-carousel {
  position: relative;
  max-width: 1720px;
  min-height: 680px;
  margin: 4.2rem auto 0;
  border: 1px solid rgba(26, 26, 31, 0.08);
  background: #fff;
  box-shadow: 0 18px 52px rgba(30, 24, 18, 0.05);
  overflow: hidden;
}

.listing-project-track {
  position: relative;
  min-height: 680px;
}

.listing-project-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(390px, 0.78fr);
  justify-content: center;
  align-items: center;
  gap: 5.2rem;
  padding: 0 8rem;
  opacity: 0;
  transform: translateX(32px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.listing-project-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.listing-project-copy {
  max-width: 480px;
}

.listing-project-logo {
  width: 104px;
  height: 54px;
  margin: 0 auto 3rem;
  display: grid;
  place-items: center;
  color: #9d7658;
  font-size: 2.45rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0;
  text-shadow: 0 10px 16px rgba(108, 78, 51, 0.2);
}

.listing-project-statement {
  margin: 0;
  color: #090909;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.48;
}

.listing-project-label {
  margin: 2rem 0 0;
  color: #6b512b;
  font-size: 1rem;
  font-weight: 600;
}

.listing-project-card {
  position: relative;
  width: 430px;
  min-height: 650px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 84% 30%, rgba(147, 107, 61, 0.2), rgba(147, 107, 61, 0) 27%),
    linear-gradient(135deg, #c8a177 0%, #ecd8be 48%, #f7eadb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 58px rgba(99, 74, 45, 0.2);
  color: #68411e;
}

.listing-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(105, 70, 32, 0.07) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(105, 70, 32, 0.04) 0 1px, transparent 1px 42px);
  opacity: 0.45;
}

.listing-project-card::after {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 10.6rem;
  width: 74px;
  height: 150px;
  border-radius: 50% 50% 0 0;
  border-left: 3px solid rgba(116, 74, 31, 0.52);
  transform: rotate(-8deg);
}

.listing-project-card-copy {
  position: relative;
  z-index: 2;
  max-width: 230px;
  padding: 2.1rem 0 0 2.25rem;
}

.listing-project-index {
  display: block;
  color: #70451d;
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 0.9;
}

.listing-project-card h3 {
  margin: 0.5rem 0 0;
  color: #70451d;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 0.98;
}

.listing-project-card-copy p {
  margin: 2rem 0 0;
  color: #6f5136;
  font-size: 0.88rem;
  line-height: 1.35;
}

.listing-project-steps {
  position: absolute;
  z-index: 2;
  top: 2rem;
  right: 1.8rem;
  width: 134px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.listing-project-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.55rem;
  color: #5e4530;
  font-size: 0.7rem;
  line-height: 1.1;
}

.listing-project-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(202, 166, 119, 0.38);
  border: 1px solid rgba(124, 84, 41, 0.12);
  color: #7a552d;
  font-size: 1.1rem;
}

.listing-project-desk {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 300px;
}

.listing-project-laptop,
.listing-project-board,
.listing-project-report,
.listing-project-paper {
  position: absolute;
  border: 5px solid #211912;
  background: #f5eadc;
  box-shadow: 0 14px 28px rgba(61, 42, 21, 0.22);
}

.listing-project-laptop {
  left: 0.2rem;
  bottom: 7.2rem;
  width: 205px;
  height: 118px;
  border-radius: 8px;
  transform: rotate(-3deg);
}

.listing-project-laptop::before,
.listing-project-board::before,
.listing-project-report::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 28px;
  height: 7px;
  border-radius: 999px;
  background: #af7e45;
  box-shadow: 30px 28px 0 #bd905b, 74px 54px 0 #976b38, 112px 82px 0 #c29661;
}

.listing-project-paper {
  right: 1rem;
  bottom: 1rem;
  width: 168px;
  height: 120px;
  border-width: 0;
  border-radius: 8px;
  transform: rotate(6deg);
}

.listing-project-paper::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 25px;
  height: 8px;
  border-radius: 999px;
  background: #ba8550;
  box-shadow: 0 24px 0 #d3b18b, 0 48px 0 #d3b18b;
}

.listing-project-cup {
  position: absolute;
  right: 1.4rem;
  bottom: 6.8rem;
  width: 74px;
  height: 55px;
  border-radius: 0 0 26px 26px;
  background: #8c5a2d;
  box-shadow: inset 0 12px 0 rgba(255, 255, 255, 0.22);
}

.listing-project-team,
.listing-project-standing {
  position: absolute;
  left: 1.4rem;
  bottom: 2rem;
  width: 140px;
  height: 150px;
}

.listing-project-team::before,
.listing-project-team::after,
.listing-project-standing::before,
.listing-project-standing::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 110px;
  border-radius: 28px 28px 10px 10px;
  background: #9e6e40;
}

.listing-project-team::before,
.listing-project-standing::before {
  left: 0;
}

.listing-project-team::after,
.listing-project-standing::after {
  right: 10px;
  height: 132px;
  background: #6f4e32;
}

.listing-project-board {
  right: 1.2rem;
  bottom: 6rem;
  width: 182px;
  height: 132px;
  border-radius: 8px;
}

.listing-project-report {
  left: 8.8rem;
  bottom: 5.6rem;
  width: 190px;
  height: 150px;
  border-width: 0;
  border-radius: 10px;
  transform: rotate(-2deg);
}

.listing-project-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
}

.listing-project-arrow {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(79, 64, 96, 0.1);
  color: #9a82ad;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.listing-project-arrow:hover {
  transform: translateY(-2px);
  color: #5b4327;
  box-shadow: 0 14px 30px rgba(79, 64, 96, 0.16);
}

.listing-discipline-section {
  background: #f4f4f6;
  padding: 6.5rem 0 8.8rem;
}

.listing-discipline-header {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.listing-discipline-header h2 {
  margin: 1.35rem 0 0;
  color: #574323;
  font-size: 5.3rem;
  font-weight: 500;
  line-height: 1;
}

.listing-discipline-header > p:last-child {
  margin: 1.6rem auto 0;
  max-width: 1020px;
  color: #131317;
  font-size: 1.48rem;
  line-height: 1.42;
}

.listing-discipline-trust {
  margin-top: 5rem;
  text-align: center;
}

.listing-discipline-trust > p {
  margin: 0;
  color: #574323;
  font-size: 1.35rem;
  font-weight: 600;
}

.listing-discipline-icons {
  max-width: 820px;
  margin: 1.9rem auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.55rem 1.65rem;
  align-items: center;
}

.listing-discipline-icon {
  min-height: 104px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #9c9185;
  font-size: 2.3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(232, 226, 217, 0.72));
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 42px rgba(82, 73, 63, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.listing-discipline-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.listing-discipline-icon:hover {
  transform: translateY(-5px);
  color: #6f5d48;
  box-shadow: 0 28px 54px rgba(82, 73, 63, 0.15);
}

.listing-discipline-icon:nth-child(1) {
  grid-column: 1 / span 2;
}

.listing-discipline-icon:nth-child(2) {
  grid-column: 3 / span 2;
}

.listing-discipline-icon:nth-child(3) {
  grid-column: 5 / span 2;
}

.listing-discipline-icon:nth-child(4) {
  grid-column: 2 / span 2;
}

.listing-discipline-icon:nth-child(5) {
  grid-column: 4 / span 2;
}

.listing-growth-section {
  background: linear-gradient(180deg, #f4f4f6 0%, #eee9e3 100%);
  padding: 5.2rem 0 7.2rem;
}

.listing-growth-header {
  text-align: center;
}

.listing-growth-header h2 {
  margin: 1.35rem 0 0;
  color: #574323;
  font-size: 5.3rem;
  font-weight: 500;
  line-height: 1;
}

.listing-growth-card {
  position: relative;
  max-width: 1180px;
  min-height: 230px;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) 64px;
  align-items: start;
  gap: 2.6rem;
  padding: 3rem 2.8rem;
  border-radius: 16px;
  background: rgba(247, 246, 244, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 65px rgba(74, 64, 53, 0.12);
}

.listing-growth-question,
.listing-growth-answer {
  margin: 0;
  color: #19191d;
  font-size: 1.45rem;
  line-height: 1.36;
}

.listing-growth-question {
  color: #574323;
  font-weight: 500;
}

.listing-growth-mark {
  justify-self: center;
  align-self: center;
  color: #5c4771;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.listing-struct-copy {
  color: #1a1a1f;
}

.listing-struct-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6e5a3f;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  background: #f0efed;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.listing-struct-kicker::before {
  content: "•";
  color: #9b8056;
}

.listing-struct-copy h2 {
  margin: 1.5rem 0 0;
  color: #5b4a32;
  font-size: clamp(2.4rem, 3.3vw, 4rem);
  line-height: 1.1;
}

.listing-struct-copy p:not(.listing-struct-kicker) {
  margin: 1.4rem 0 0;
  max-width: 740px;
  color: #1f2028;
  font-size: 1.1rem;
  line-height: 1.5;
}

body.page-template-page-listing .partner-cta-section {
  padding-top: 5.3rem;
}

body.page-template-page-listing .home-footer-section {
  background: linear-gradient(180deg, #eee9e3 0%, #e9e3da 100%);
  padding: 0 0 5.8rem;
}

body.page-template-page-listing .home-footer-card {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(247, 246, 244, 0.76);
  box-shadow: 0 24px 64px rgba(74, 64, 53, 0.12);
}

body.page-template-page-listing .home-footer-brand p,
body.page-template-page-listing .home-footer-col a,
body.page-template-page-listing .home-footer-bottom p {
  color: #3e3a35;
}

body.page-template-page-listing .home-footer-col h3,
body.page-template-page-listing .home-footer-brand .brand-name {
  color: #17171d;
}

body.page-template-page-listing .home-footer-bottom {
  border-top-color: rgba(107, 88, 58, 0.18);
}

@media (max-width: 900px) {
  .listing-hero-section {
    padding: 2.7rem 0 7.2rem;
  }

  .listing-headline {
    font-size: clamp(1.5rem, 8vw, 3rem);
    gap: 0.6rem;
  }

  .listing-headline-icon {
    border-radius: 16px;
  }

  .listing-hero-content h1 {
    margin-top: 1rem;
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }

  .listing-subtext {
    max-width: 96%;
    font-size: 0.98rem;
  }

  .listing-actions {
    margin-top: 1.35rem;
  }

  .listing-btn {
    min-height: 52px;
    border-radius: 12px;
    font-size: 0.98rem;
  }

  .listing-btn-ghost,
  .listing-btn-primary {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }

  .listing-btn-arrow {
    width: 48px;
    height: 44px;
    border-radius: 10px;
  }

  .listing-tags {
    font-size: 1.2rem;
    gap: 1.45rem;
    margin-top: 0.85rem;
  }

  .listing-tags li + li::before {
    left: -0.9rem;
  }

  .listing-image-reveal-section {
    margin-top: -4.3rem;
    padding-bottom: 2.8rem;
  }

  .listing-image-frame {
    border-radius: 20px;
    padding: 0.9rem;
    transform: translateY(138px) scale(0.96);
  }

  .listing-image-frame img {
    border-radius: 14px;
  }

  .listing-image-smoke {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    border-radius: 0 0 14px 14px;
  }

  .listing-investment-section {
    padding: 2.2rem 0 3rem;
  }

  .listing-investment-icons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }

  .listing-investment-icons .stagger-item img {
    width: 34px;
    height: 34px;
  }

  .listing-investment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .listing-investment-copy p:not(.listing-investment-kicker) {
    font-size: 1rem;
  }

  .listing-investment-btn {
    width: 100%;
    max-width: 320px;
  }

  .listing-flow-panel {
    min-height: 560px;
    border-radius: 20px;
    padding: 1.2rem;
  }

  .listing-flow-node h3 {
    font-size: 0.86rem;
  }

  .listing-flow-node p {
    font-size: 0.8rem;
  }

  .listing-flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .listing-flow-icon img {
    width: 28px;
    height: 28px;
  }

  .listing-flow-icon-check svg {
    width: 24px;
    height: 24px;
  }

  .listing-flow-node-top {
    top: 0.8rem;
    left: 1.3rem;
  }

  .listing-flow-node-main {
    top: 5.2rem;
    left: 1rem;
    width: min(280px, calc(100% - 2rem));
    padding: 0.5rem;
  }

  .listing-flow-node-main .listing-flow-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .listing-flow-yes {
    top: 10.5rem;
    right: 2.6rem;
    min-width: 40px;
    min-height: 28px;
    font-size: 0.86rem;
  }

  .listing-flow-node-left {
    top: 16rem;
    left: 1rem;
  }

  .listing-flow-node-right {
    top: 16rem;
    right: 1rem;
  }

  .listing-flow-node-bottom {
    top: 25rem;
    left: 1rem;
  }

  .listing-struct-section {
    padding: 1.4rem 0 2.7rem;
  }

  .listing-struct-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .listing-enterprise-visual {
    min-height: 320px;
    border-radius: 20px;
  }

  .listing-enterprise-row-top {
    top: 1.5rem;
  }

  .listing-enterprise-row-mid {
    top: 7.1rem;
  }

  .listing-enterprise-row-bottom {
    top: 12.7rem;
  }

  .listing-enterprise-row-track {
    gap: 0.45rem;
    padding: 0 0.55rem;
  }

  .listing-enterprise-tile {
    min-width: 52px;
    height: 52px;
    border-radius: 10px;
    font-size: 1.2rem;
  }

  .listing-enterprise-tile img {
    width: 24px;
    height: 24px;
  }

  .listing-enterprise-core {
    width: 102px;
    height: 102px;
  }

  .listing-enterprise-core span {
    font-size: 2.1rem;
  }

  .listing-enterprise-core span img {
    width: 30px;
    height: 30px;
  }

  .listing-bold-line-section {
    padding: 1.5rem 0 2rem;
  }

  .listing-bold-line {
    height: 138px;
  }

  .listing-bold-line::after {
    height: 84px;
  }

  .listing-real-estate-section {
    padding: 3.4rem 0 4rem;
  }

  .listing-real-estate-header .listing-struct-kicker {
    font-size: 0.74rem;
    line-height: 1.25;
    max-width: 92%;
    justify-content: center;
  }

  .listing-real-estate-header h2 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .listing-real-estate-cards {
    margin-top: 2.4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .listing-real-estate-card {
    min-height: 0;
    padding: 1.25rem;
    border-radius: 12px;
    border-width: 2px;
  }

  .listing-real-estate-number {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 1.55rem;
  }

  .listing-real-estate-card h3 {
    margin-top: 1.7rem;
    font-size: 1.12rem;
  }

  .listing-real-estate-card p {
    font-size: 0.98rem;
  }

  .listing-project-section {
    padding: 2.8rem 0 3.2rem;
  }

  .listing-project-header h2 {
    font-size: 2.4rem;
  }

  .listing-project-carousel {
    min-height: 760px;
    margin-top: 2rem;
    border-radius: 0;
  }

  .listing-project-track {
    min-height: 760px;
  }

  .listing-project-slide {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2rem 1.1rem 5.5rem;
    align-content: start;
  }

  .listing-project-copy {
    max-width: none;
  }

  .listing-project-logo {
    width: 78px;
    height: 42px;
    margin-bottom: 1.1rem;
    font-size: 1.8rem;
  }

  .listing-project-statement {
    font-size: 1.35rem;
    line-height: 1.42;
  }

  .listing-project-label {
    margin-top: 1.1rem;
  }

  .listing-project-card {
    width: min(100%, 380px);
    min-height: 500px;
    margin: 0 auto;
    border-radius: 22px;
  }

  .listing-project-card-copy {
    max-width: 190px;
    padding: 1.4rem 0 0 1.35rem;
  }

  .listing-project-index {
    font-size: 2.6rem;
  }

  .listing-project-card h3 {
    font-size: 1.65rem;
  }

  .listing-project-card-copy p {
    margin-top: 1rem;
    font-size: 0.72rem;
  }

  .listing-project-steps {
    top: 1.4rem;
    right: 0.9rem;
    width: 120px;
    gap: 0.48rem;
  }

  .listing-project-steps li {
    grid-template-columns: 34px 1fr;
    gap: 0.42rem;
    font-size: 0.61rem;
  }

  .listing-project-steps span {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .listing-project-desk {
    height: 235px;
  }

  .listing-project-laptop {
    width: 160px;
    height: 94px;
    bottom: 6.1rem;
  }

  .listing-project-paper {
    width: 132px;
    height: 96px;
    right: 0.5rem;
  }

  .listing-project-board {
    width: 142px;
    height: 102px;
    right: 0.6rem;
    bottom: 5.4rem;
  }

  .listing-project-report {
    width: 142px;
    height: 112px;
    left: 6.8rem;
    bottom: 4.7rem;
  }

  .listing-project-team,
  .listing-project-standing {
    transform: scale(0.78);
    transform-origin: left bottom;
  }

  .listing-project-cup {
    right: 0.8rem;
    bottom: 5.6rem;
    width: 54px;
    height: 42px;
  }

  .listing-project-controls {
    bottom: 1rem;
  }

  .listing-project-arrow {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .listing-discipline-section {
    padding: 3.4rem 0 4.2rem;
  }

  .listing-discipline-header h2 {
    font-size: 2.65rem;
  }

  .listing-discipline-header > p:last-child {
    font-size: 1rem;
    line-height: 1.5;
  }

  .listing-discipline-trust {
    margin-top: 2.7rem;
  }

  .listing-discipline-trust > p {
    font-size: 1.05rem;
  }

  .listing-discipline-icons {
    margin-top: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .listing-discipline-icon {
    min-height: 84px;
    border-radius: 12px;
    font-size: 1.75rem;
  }

  .listing-discipline-icon img {
    width: 38px;
    height: 38px;
  }

  .listing-discipline-icon:nth-child(n) {
    grid-column: auto;
  }

  .listing-discipline-icon:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 48%;
    width: 100%;
    justify-self: center;
  }

  .listing-growth-section {
    padding: 3.2rem 0 4.2rem;
  }

  .listing-growth-header h2 {
    font-size: 2.65rem;
  }

  .listing-growth-card {
    min-height: 0;
    margin-top: 2.4rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.4rem;
    border-radius: 14px;
  }

  .listing-growth-question,
  .listing-growth-answer {
    font-size: 1rem;
    line-height: 1.45;
  }

  .listing-growth-mark {
    justify-self: end;
    font-size: 2rem;
  }

  .listing-struct-copy h2 {
    font-size: 2rem;
  }

  .listing-struct-copy p:not(.listing-struct-kicker) {
    font-size: 1rem;
  }
}

/* Service page (Framer-like) */
.svc-page {
  background: #faf9f8;
  color: #060612;
}

.svc-page .container {
  max-width: 1120px;
}

.svc-kicker {
  margin: 0;
  color: #9a7a52;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.64rem 1.22rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.svc-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

.svc-btn-soft {
  background: #d7b181;
  color: #ffffff;
}

.svc-btn-dark {
  background: #2e2823;
  color: #ffffff;
}

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.svc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.svc-circles-left, .svc-circles-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

.svc-circles-left {
  left: -450px;
}

.svc-circles-right {
  right: -450px;
}

.svc-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate-ring 60s linear infinite;
}

.svc-circles-right .svc-circle {
  animation: rotate-ring-reverse 60s linear infinite;
}

.svc-circle-outer {
  width: 1800px;
  height: 1800px;
  background-color: #faf9f8;
  box-shadow: inset 0px 0px 6px 0px rgba(6, 6, 18, 0.18);
  padding: 10px;
}

.svc-circle-middle {
  width: 1400px;
  height: 1400px;
  background-color: #eeecea;
  box-shadow: inset 0px 0px 6px 0px rgba(6, 6, 18, 0.18);
  padding: 8px;
}

.svc-circle-inner {
  width: 1000px;
  height: 1000px;
  background-color: #eeecea;
  box-shadow: inset 0px 0px 6px 0px rgba(6, 6, 18, 0.18);
  padding: 6px;
}

.svc-circles-left .svc-circle-outer { background-color: #faf9f8; }
.svc-circles-left .svc-circle-middle { background-color: #eeecea; border: 1px solid #fff; }
.svc-circles-left .svc-circle-inner { background-color: #eeecea; border: 1px solid #fff; }

.svc-circles-left .svc-circle-outer::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #bf9d78; border: 1px solid #fff; z-index: -1; }
.svc-circles-left .svc-circle-middle::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #d4c8bc; border: 1px solid #fff; z-index: -1; }
.svc-circles-left .svc-circle-inner::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #c2bdb8; border: 1px solid #fff; z-index: -1; }

.svc-circles-right .svc-circle-outer::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #bf9d78; border: 1px solid #fff; z-index: -1; }
.svc-circles-right .svc-circle-middle::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #d4c8bc; border: 1px solid #fff; z-index: -1; }
.svc-circles-right .svc-circle-inner::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #c2bdb8; border: 1px solid #fff; z-index: -1; }

.svc-circle-icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 76px;
  height: 76px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  margin-top: -38px;
  margin-left: -38px;
  animation: counter-rotate 60s linear infinite;
}

.svc-circles-right .svc-circle-icon {
  animation: counter-rotate-reverse 60s linear infinite;
}

.svc-icon-left-1 { top: 25%; left: 87%; }
.svc-icon-left-2 { top: 60%; left: 95%; margin-top: -38px; margin-left: -38px; }

.svc-icon-right-1 { top: 15%; left: 15%; }
.svc-icon-right-2 { top: 75%; left: 10%; }

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

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

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

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

.svc-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(6, 6, 18, 0.1);
  border-radius: 999px;
  background: #ffffff;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.svc-hero-badge span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #69686e;
  text-transform: uppercase;
}

.svc-hero-badge::before, .svc-hero-badge::after {
  content: "›";
  color: #c4c4c4;
  margin: 0 4px;
}
.svc-hero-badge::before { transform: rotate(180deg); }

.svc-hero h1 {
  margin: 0;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #060612;
}

.svc-hero-copy {
  margin: 1.5rem auto 0;
  max-width: 600px;
  color: #69686e;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
}

.svc-hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  position: relative;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.svc-btn-soft {
  background: #c99b6e;
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 10px rgba(201, 155, 110, 0.3);
}

.svc-btn-soft:hover {
  background: #b5885c;
  transform: translateY(-2px);
}

.svc-btn-dark {
  background: #4b3117;
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 4px 10px rgba(75, 49, 23, 0.3);
}

.svc-btn-dark:hover {
  background: #3a2612;
  transform: translateY(-2px);
}

.svc-handwritten-arrow {
  position: absolute;
  left: -150px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: rotate(-10deg);
}

.svc-hw-text {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 5px;
  margin-right: 15px;
}

.svc-hero-discover {
  margin-top: 5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #69686e;
  text-transform: uppercase;
}

.svc-portfolio {
  padding: 3rem 0 5rem;
  overflow: hidden;
  background: #faf9f8;
}

.svc-marquee-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.svc-marquee-row {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.svc-marquee-track {
  display: inline-flex;
  gap: 1.5rem;
}

.svc-marquee-right .svc-marquee-track {
  animation: marquee-right 40s linear infinite;
}

.svc-marquee-left .svc-marquee-track {
  animation: marquee-left 40s linear infinite;
}

@keyframes marquee-right {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-left {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.svc-marquee-container .svc-mosaic-card {
  width: 380px;
  height: 260px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.svc-mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-mosaic-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 20px 50px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 6px solid #f8f6f2;
}

.svc-mosaic-center-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-mosaic-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fdfaf7;
  border: 1px solid rgba(181, 136, 92, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.svc-mosaic-center h2 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #060612;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  max-width: 250px;
}

.svc-strategy {
  padding: 6rem 0;
  background: #faf9f8;
}

.svc-strategy-title {
  margin: 0 auto 4rem;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #060612;
  line-height: 1.1;
  max-width: 800px;
  text-align: center;
}

.svc-strategy-title span {
  color: #cdad8c;
}

.svc-strategy-columns {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.svc-strategy-card {
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.svc-card-left {
  background: #ffffff;
  z-index: 1;
  transform: translateX(40px);
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  min-height: 480px;
}

.svc-card-right {
  background: linear-gradient(135deg, #d8ab76 0%, #d19f63 100%);
  z-index: 2;
  transform: translateX(-40px);
  padding: 4rem 3rem;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
  color: #000;
  min-height: 540px;
}

.svc-card-inner h3 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.svc-card-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.svc-card-inner li {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #69686e;
  line-height: 1.4;
}

.svc-card-right li {
  color: #1a1715;
  border-bottom-color: rgba(0,0,0,0.15);
}

.svc-card-inner li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.svc-li-icon {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  stroke: currentColor;
}

.svc-finance {
  padding: 8rem 0;
  background: #faf9f8;
}

.svc-finance-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.svc-finance-copy .svc-kicker {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #69686e;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.svc-finance-copy h2 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #060612;
  line-height: 1.1;
  margin: 0 0 3rem 0;
}

.svc-finance-action {
  position: relative;
  display: inline-block;
}

.svc-hw-arrow-alt {
  position: absolute;
  top: 100%;
  left: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  white-space: nowrap;
}

.svc-hw-arrow-alt .svc-hw-text {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: #ff6321;
  margin-left: 30px;
  margin-top: -5px;
}

.svc-finance-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #eeecea;
  padding: 1.5rem;
  border-radius: 20px;
}

.svc-finance-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.svc-finance-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.svc-finance-item-header h3 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  color: #060612;
}

.svc-finance-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #faf9f8;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-finance-item p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0,0,0,0.1);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #69686e;
  line-height: 1.5;
}

.svc-why {
  background: #faf9f8;
}

.svc-why-sticky-container {
  height: 350vh;
  position: relative;
}

.svc-why-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.svc-why-content h2 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #060612;
  margin: 1rem 0 3rem;
  text-align: center;
}

.svc-why-content .svc-kicker {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #69686e;
  text-transform: uppercase;
  margin-bottom: 0;
}

.svc-rotary-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-arc-container {
  position: relative;
  width: 1400px;
  height: 1400px;
  margin-top: 2rem;
}

.svc-arc-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 60%);
}

.svc-arc-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* Start from top */
}

.svc-arc-bg {
  stroke: rgba(0,0,0,0.08);
  stroke-width: 3;
}

.svc-arc-progress {
  stroke: #d8ab76;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
  stroke-dasharray: 4398.23;
  stroke-dashoffset: 4398.23;
}

.svc-arc-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  will-change: transform;
}

.svc-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: #ffffff;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #69686e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transform-origin: center center;
}

.svc-node.active {
  background: #d8ab76;
  color: #ffffff;
  border-color: #d8ab76;
}

.svc-step-label {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #a49e98;
  z-index: 10;
}

.svc-arc-center {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-arc-center.fade-in {
  animation: svc-fade-in 0.5s ease forwards;
}

@keyframes svc-fade-in {
  0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.svc-arc-center h3 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #060612;
  margin: 0 0 1rem;
}

.svc-arc-center p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: #69686e;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.svc-rotary-bullets {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #69686e;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  width: 100%;
}

.svc-rotary-pagination {
  position: absolute;
  top: 600px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.js-rotary-counter {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #060612;
  letter-spacing: 0.1em;
}

.svc-rotary-dots {
  display: flex;
  gap: 6px;
}

.svc-rotary-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dcdad5;
  transition: background 0.3s ease;
}

.svc-rotary-dots .dot.active {
  background: #ff6321;
}

.svc-industries {
  padding: 8rem 0;
  background: #faf9f8;
}

.svc-industries-header {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}

.svc-industries h2 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #060612;
  margin: 0;
  display: inline-block;
  position: relative;
}

.svc-hw-industries {
  position: absolute;
  top: -40px;
  right: -80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  white-space: nowrap;
}

.svc-hw-industries .svc-hw-text {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: #d7ab71;
  margin-bottom: -15px;
  margin-right: 20px;
  transform: rotate(-5deg);
}

.svc-accordion-wrapper {
  background: #f1f0ee;
  border-radius: 20px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.svc-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-accordion-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.svc-accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #060612;
}

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

.svc-accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.svc-accordion-item[open] .svc-accordion-icon .acc-plus-v {
  opacity: 0;
}

.svc-accordion-content {
  padding: 0 2rem 1.5rem;
}

.svc-accordion-content p {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: #69686e;
  line-height: 1.5;
}

.svc-banners {
  padding: 1.2rem 0 4.8rem;
}

.svc-banners .container {
  display: grid;
  gap: 0.66rem;
}

.svc-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d8cebf;
  min-height: 120px;
}

.svc-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(1.04);
}

.svc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 236, 226, 0.92) 10%, rgba(243, 236, 226, 0.68) 45%, rgba(243, 236, 226, 0.78) 100%);
}

.svc-banner-copy {
  position: relative;
  z-index: 2;
  padding: 1.3rem 1.4rem;
  max-width: 460px;
}

.svc-banner-copy p {
  margin: 0;
  color: #9b7448;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  font-weight: 700;
}

.svc-banner-copy h3 {
  margin: 0.45rem 0 0;
  font-size: 1.9rem;
  line-height: 1.05;
}

.svc-page .js-svc-reveal {
  opacity: 0;
  transform: translateY(36px);
}

.svc-page .js-svc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.19, 0.82, 0.24, 1);
}

@media (max-width: 1024px) {
  .svc-ring {
    width: 340px;
    height: 680px;
    top: -35px;
  }

  .svc-ring-left {
    left: -230px;
  }

  .svc-ring-right {
    right: -230px;
  }

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

  .svc-finance-grid {
    grid-template-columns: 1fr;
  }

  .svc-finance-copy {
    text-align: center;
  }

  .svc-arc-center {
    top: 42%;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    padding-top: 4.2rem;
  }

  .svc-ring {
    display: none;
  }

  .svc-chip {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .svc-chip-a { left: 7%; top: 30%; }
  .svc-chip-b { right: 8%; top: 34%; }
  .svc-chip-c { right: 14%; top: 56%; }

  .svc-hero-actions {
    width: 100%;
    justify-content: center;
  }

  .svc-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .svc-mosaic-card,
  .svc-mosaic-card img {
    min-height: 112px;
  }

  .svc-mosaic-center {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    border-radius: 18px;
    padding: 1rem;
    grid-column: 1 / -1;
  }

  .svc-mosaic-center h2 {
    font-size: 1.5rem;
  }

  .svc-columns {
    grid-template-columns: 1fr;
  }

  .svc-arc-wrap {
    padding-top: 1.3rem;
  }

  .svc-arc-line {
    height: 350px;
  }

  .svc-arc-center {
    top: 38%;
    width: calc(100% - 1.4rem);
  }

  .svc-stats {
    position: static;
    transform: none;
    margin-top: 0.8rem;
  }

  .svc-industries h2,
  .svc-finance-copy h2,
  .svc-banner-copy h3 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-page .js-svc-reveal,
  .svc-page .js-svc-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .svc-btn,
  .svc-chip,
  .svc-mosaic-center,
  .svc-arc-center {
    transition: none;
  }
}

/* ==========================================================================
   Investment Page Styles - High Fidelity
   ========================================================================== */

.inv-page {
  background-color: #f8f8f8;
  color: #333;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* --- Typography --- */
.inv-subtitle {
  display: block;
  font-family: 'Outfit', sans-serif;
  color: #a4917a;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.inv-h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: #4a3b2c;
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

.inv-h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #c0aa91;
  font-size: 3.6rem;
}

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

/* --- Hero Section --- */
.inv-hero {
  position: relative;
  padding: 120px 0 0;
  text-align: center;
  overflow: hidden;
  background-color: #fffcf9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 850px;
}

.inv-hero-bg-lines {
  position: absolute;
  top: -100px; left: -100px; right: -100px; bottom: 0;
  background-image: repeating-radial-gradient(
    circle at center -200px,
    transparent 0,
    transparent 40px,
    rgba(218, 192, 161, 0.05) 40px,
    rgba(218, 192, 161, 0.05) 42px
  );
  z-index: 0;
  pointer-events: none;
}

.inv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.inv-badge-wrap {
  margin-bottom: 2rem;
}

.inv-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.inv-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 500;
  color: #a4917a;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.inv-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 5.5rem;
}

.inv-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.inv-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 3rem;
}

.inv-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.inv-btn-primary {
  background: #ffffff;
  color: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.inv-btn-primary:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.inv-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f6efe8;
  border-radius: 50%;
  margin-left: 12px;
  color: #a4917a;
  font-size: 0.9rem;
}

.inv-btn-secondary {
  background: #c0aa91;
  color: #fff;
}

.inv-btn-secondary:hover {
  background: #a4917a;
}



/* --- Marquee Section --- */
.inv-marquee-section {
  background: #fdfdfd;
  padding: 50px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
}

.inv-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.inv-marquee-track {
  display: flex;
  gap: 15px;
  animation: scroll-marquee 30s linear infinite;
  align-items: center;
  width: max-content;
  padding: 20px 0;
}

.inv-marquee:hover .inv-marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7.5px)); }
}

.inv-marquee-item {
  flex-shrink: 0;
  width: 150px;
  height: 90px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.02);
}

.inv-marquee-item.has-label {
  width: 180px;
  gap: 8px;
}

.inv-marquee-item.has-label span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c2a38;
}

.inv-marquee-item:hover {
  transform: scale(1.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  z-index: 10;
  width: 200px;
  height: 120px;
}

.inv-marquee-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.inv-marquee-item:hover img {
  width: 52px;
  height: 52px;
}

/* --- Evaluation Section --- */
.inv-evaluation {
  padding: 100px 0 0;
  background: #fdfdfd;
  text-align: center;
  position: relative;
}

.inv-arcs-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 480px;
  margin: 60px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.inv-arc {
  position: absolute;
  left: 50%;
  border: 4px solid rgba(220, 185, 130, 0.4);
  border-radius: 50%;
  transform-origin: center;
}

/* Outer: 1000px */
.inv-arc-outer {
  width: 1000px;
  height: 1000px;
  bottom: -500px;
  margin-left: -500px;
  animation: rotate-arc 60s linear infinite;
}

/* Middle: 700px */
.inv-arc-middle {
  width: 700px;
  height: 700px;
  bottom: -350px;
  margin-left: -350px;
  animation: rotate-arc 45s linear infinite reverse;
}

/* Inner: 400px */
.inv-arc-inner {
  width: 400px;
  height: 400px;
  bottom: -200px;
  margin-left: -200px;
  animation: rotate-arc 30s linear infinite;
}

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

.inv-arc-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -35px;
  margin-left: -35px;
  border: 3px solid #f6efe8;
}

/* Counter Rotations so icons stay upright */
.inv-arc-outer .inv-arc-icon {
  animation: counter-rotate-arc 60s linear infinite reverse;
}
.inv-arc-middle .inv-arc-icon {
  animation: counter-rotate-arc-reverse 45s linear infinite reverse;
}
.inv-arc-inner .inv-arc-icon {
  animation: counter-rotate-arc 30s linear infinite reverse;
}

@keyframes counter-rotate-arc {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes counter-rotate-arc-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Outer */
.inv-arc-outer .icon-1 { top: 14.6%; left: 14.6%; } 
.inv-arc-outer .icon-2 { top: 0%; left: 50%; }
.inv-arc-outer .icon-3 { top: 14.6%; left: 85.4%; }
.inv-arc-outer .icon-4 { top: 50%; left: 100%; }
.inv-arc-outer .icon-5 { top: 50%; left: 0%; }

/* Middle */
.inv-arc-middle .icon-1 { top: 8%; left: 25%; }
.inv-arc-middle .icon-2 { top: 8%; left: 75%; }
.inv-arc-middle .icon-3 { top: 50%; left: 100%; }

/* Inner */
.inv-arc-inner .icon-1 { top: 0%; left: 50%; }
.inv-arc-inner .icon-2 { top: 50%; left: 0%; }

.inv-icon-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fbe8c7, #dfb47e);
}

/* --- Core Philosophy Section --- */
.inv-philosophy {
  padding: 120px 0;
  background: #f8f8f8;
}

.inv-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.inv-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.inv-card-image-wrap {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inv-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.inv-card:hover .inv-card-image-wrap img {
  transform: scale(1.05);
}

.inv-img-glow {
  position: absolute;
  top: 50%;
  width: 130%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255,140,100,0.4) 0%, transparent 60%);
  transform: translateY(-50%);
  z-index: 0;
}

.inv-card-image-wrap.style-blue .inv-img-glow {
  background: radial-gradient(ellipse at center, rgba(100, 160, 255, 0.15) 0%, transparent 60%);
}

.inv-card-image-wrap.style-orange .inv-img-glow {
  background: radial-gradient(ellipse at center, rgba(255, 120, 80, 0.2) 0%, transparent 60%);
}

.inv-card-image-wrap.style-blue {
  background: #fdfdfd;
}

.inv-card-image-wrap.style-orange {
  background: #fefcfb;
}

.inv-placeholder-icon {
  width: 220px;
  height: 200px;
  background: #f2efeb;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.card-icon-1 { border-radius: 40px; }
.card-icon-2 { border-radius: 20px; }

.inv-card h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #3b3127;
  margin-bottom: 15px;
}

.inv-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 400;
}

/* --- Opportunities Section --- */
.inv-opportunities {
  padding: 60px 0 150px;
  background: #f8f8f8;
}

.inv-opp-line-container {
  position: relative;
  margin-top: 80px;
}

.inv-opp-line {
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: #e2dcd5;
  z-index: 1;
}

.inv-opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.inv-opp-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 40px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
}

.inv-opp-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #888;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  z-index: 3;
}

.inv-opp-card .opp-image-wrap {
  height: 220px;
  width: 100%;
  background: none;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.opp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inv-opp-card .opp-icon {
  width: 100%;
  height: 100%;
  background: #f7f4f0;
  box-shadow: none;
  border: none;
}

.inv-opp-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3b3127;
  margin-bottom: 12px;
}

.inv-opp-card p {
  color: #777;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Risk Management Section --- */
.inv-risk {
  padding: 80px 0 150px;
  background: #f8f8f8;
}

.inv-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.inv-risk-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.inv-risk-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.inv-risk-card-content {
  padding: 35px 30px;
}

.inv-risk-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3b3127;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.inv-risk-card p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* --- Value Creation Section --- */
.inv-value-creation {
  padding: 0 0 100px;
  background: #f8f8f8;
}

.inv-value-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 80px 60px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.inv-value-content {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.inv-value-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.inv-value-content h2 em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.inv-value-content p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.inv-value-content p:last-child {
  margin-bottom: 0;
}

/* --- Why Choose Us Page --- */
.wcu-page {
  background-color: #f0f2f5;
  min-height: 100vh;
}

.wcu-hero {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wcu-hero-content {
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wcu-badge-wrap {
  margin-bottom: 25px;
}

.wcu-badge {
  display: inline-block;
  padding: 8px 24px;
  background: #fdfdfd;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
}

.wcu-title {
  font-size: 4rem;
  font-weight: 700;
  color: #2c2a38;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.wcu-title span {
  color: #c4a17a;
}

.wcu-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #69686e;
  margin-bottom: 40px;
  max-width: 700px;
}

.wcu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background-color: #c4a17a;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(196, 161, 122, 0.3);
}

.wcu-btn:hover {
  background-color: #b08d66;
  transform: translateY(-2px);
  color: #fff;
}

/* WCU Marquee */
.wcu-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.wcu-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-wcu-marquee 30s linear infinite;
  align-items: center;
}

.wcu-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 50px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  color: #3b3127;
}

.wcu-marquee-item:hover {
  opacity: 1;
}

.wcu-marquee-item svg {
  height: 30px;
  width: auto;
}

.wcu-marquee-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.wcu-marquee-item .logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes scroll-wcu-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* WCU Values Section */
.wcu-values {
  padding: 80px 0 120px;
}

.wcu-values-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.wcu-badge-outline {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.05);
  color: #c4a17a;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.wcu-values-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c2a38;
  margin-bottom: 20px;
}

.wcu-values-header h2 span {
  color: #c4a17a;
}

.wcu-values-header p {
  color: #69686e;
  font-size: 1.1rem;
  line-height: 1.7;
}

.wcu-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 120px;
}

.wcu-value-row.reverse {
  flex-direction: row-reverse;
}

.wcu-value-row:last-child {
  margin-bottom: 0;
}

.wcu-val-content {
  flex: 1;
}

.wcu-val-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.val-number {
  font-size: 5rem;
  font-weight: 700;
  color: #c4a17a;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}

.wcu-val-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c2a38;
  margin-bottom: 20px;
}

.wcu-val-content p {
  color: #69686e;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Neumorphic Common */
.neu-visual-wrap, .neu-browser-card, .neu-rocket-card {
  position: relative;
  background: #f0f2f5;
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 01 Visual */
.neu-main-card {
  background: #fdfdfd;
  width: 65%;
  height: 60%;
  border-radius: 20px;
  box-shadow: 10px 15px 40px rgba(0,0,0,0.06), -10px -10px 30px #ffffff;
  transform: rotate(-15deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.neu-line {
  height: 8px;
  background: #e6e8eb;
  border-radius: 4px;
}
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-90 { width: 90%; }
.w-70 { width: 70%; }
.w-85 { width: 85%; }
.w-50 { width: 50%; }

.neu-pin { position: absolute; }
.pin-1 { top: 20%; left: 10%; }
.pin-2 { top: 50%; left: 40%; }
.pin-3 { top: 15%; left: 60%; }
.neu-target { position: absolute; bottom: 10%; right: 10%; }

.neu-small-card {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fdfdfd;
  border-radius: 15px;
  box-shadow: 8px 8px 20px rgba(0,0,0,0.06), -8px -8px 20px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neu-small-card.pos-1 { top: -10%; left: 5%; }
.neu-small-card.pos-2 { top: -10%; right: 5%; }
.neu-small-card.pos-3 { bottom: -10%; left: 5%; }
.neu-small-card.pos-4 { bottom: -10%; right: 5%; }

/* 02 Visual */
.neu-browser-card {
  flex-direction: column;
  padding: 25px;
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: 15px 15px 40px rgba(0,0,0,0.06), -15px -15px 40px #ffffff;
  background: #fdfdfd;
}

.browser-header {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f2f5;
}
.browser-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dcdcdc;
}

.browser-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.skel-row { display: flex; align-items: center; gap: 15px; }
.skel-circle { width: 16px; height: 16px; border-radius: 50%; background: #e0e0e0; }
.skel-line { height: 12px; background: #e0e0e0; border-radius: 6px; }
.w-40 { width: 40%; }
.w-30 { width: 30%; }
.w-20 { width: 20%; }
.w-25 { width: 25%; }
.w-35 { width: 35%; }

/* 03 Visual */
.neu-rocket-card {
  box-shadow: 15px 15px 40px rgba(0,0,0,0.06), -15px -15px 40px #ffffff;
  background: #fdfdfd;
  overflow: hidden;
}

.rocket-icon {
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

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

.rocket-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.r-line {
  position: absolute;
  width: 60px;
  height: 3px;
  background: #e6d3a8;
  transform: rotate(45deg);
  border-radius: 2px;
}
.l-1 { top: 20%; left: 20%; }
.l-2 { top: 40%; left: 10%; }
.l-3 { top: 80%; left: 30%; }
.l-4 { top: 15%; left: 60%; }
.l-5 { top: 30%; right: -5%; }
.l-6 { bottom: 20%; right: 20%; }

/* What Makes Us Different Section */
.wcu-different {
  padding: 0 0 120px;
}

.wcu-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.wcu-diff-card {
  background: #f0f2f5;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.05), -20px -20px 60px #ffffff;
  display: flex;
  flex-direction: column;
}

.diff-visual {
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.diff-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c2a38;
  margin-bottom: 15px;
}

.diff-content p {
  color: #69686e;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Network Graphic */
.net-center {
  width: 80px; height: 80px;
  background: #fdfdfd;
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0,0,0,0.05), -8px -8px 20px #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 2.2rem;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.net-item {
  position: absolute;
  width: 50px; height: 50px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 6px 6px 15px rgba(0,0,0,0.05), -6px -6px 15px #ffffff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.n-1 { top: 15%; left: 25%; }
.n-2 { top: 15%; right: 25%; }
.n-3 { top: 50%; right: 10%; transform: translateY(-50%); }
.n-4 { bottom: 15%; right: 25%; }
.n-5 { bottom: 15%; left: 25%; }
.n-6 { top: 50%; left: 10%; transform: translateY(-50%); }

.net-lines {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  z-index: 1;
}

.n-line {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 50%;
  height: 2px;
  background: rgba(93, 95, 239, 0.2);
}

.nl-1 { width: 120px; transform: rotate(-140deg); }
.nl-2 { width: 120px; transform: rotate(-40deg); }
.nl-3 { width: 130px; transform: rotate(0deg); }
.nl-4 { width: 120px; transform: rotate(40deg); }
.nl-5 { width: 120px; transform: rotate(140deg); }
.nl-6 { width: 130px; transform: rotate(180deg); }

/* Chat Graphic */
.diff-visual-chat {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0 30px;
  gap: 20px;
}

.chat-bubble {
  padding: 15px 25px;
  border-radius: 20px;
  font-size: 0.95rem;
  max-width: 85%;
  line-height: 1.5;
}

.chat-bubble.left {
  align-self: flex-start;
  background: #6b73ff;
  color: white;
  border-bottom-left-radius: 4px;
}

.chat-bubble.right {
  align-self: flex-end;
  background: #fdfdfd;
  color: #333;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.04), -10px -10px 30px #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-input-bar {
  margin-top: 15px;
  height: 55px;
  background: #fdfdfd;
  border-radius: 30px;
  box-shadow: inset 5px 5px 10px rgba(0,0,0,0.02), inset -5px -5px 10px #ffffff, 8px 8px 20px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
}

/* FAQ Section */
.wcu-faq {
  padding: 0 0 120px;
}

.wcu-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wcu-faq-item {
  background: #fdfdfd;
  border-radius: 20px;
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 10px 10px 25px rgba(0,0,0,0.03), -10px -10px 25px #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.wcu-faq-item:hover {
  transform: translateY(-2px);
}

.wcu-faq-item span {
  font-weight: 600;
  color: #3b3127;
  font-size: 1.1rem;
}

.wcu-faq-item svg {
  color: #888;
}

/* About Us Section */
.wcu-about {
  padding: 0 0 120px;
}

.wcu-about-card {
  background: #fdfdfd;
  border-radius: 40px;
  padding: 80px 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.04), -20px -20px 60px #ffffff;
}

.wcu-about-card h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c2a38;
  margin-bottom: 30px;
}

.wcu-about-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #69686e;
  margin-bottom: 25px;
}

.wcu-about-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #6b73ff;
  color: #ffffff;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(107, 115, 255, 0.25);
}

.wcu-about-btn:hover {
  background-color: #555cff;
  transform: translateY(-2px);
  color: #ffffff;
}

.wcu-about-subtext {
  display: block;
  font-size: 0.95rem;
  color: #888;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .inv-philosophy-grid, .inv-opp-grid, .inv-risk-grid, .wcu-diff-grid { grid-template-columns: 1fr; }
  .inv-opp-line { display: none; }
  .inv-h2 { font-size: 2.5rem; }
  .inv-title { font-size: 3rem; }
  .inv-hero { min-height: 600px; }
  
  .wcu-value-row, .wcu-value-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .inv-title { font-size: 2.2rem; }
  .inv-hero-content p { font-size: 1rem; }
  .inv-actions { flex-direction: column; }
  .inv-btn { width: 100%; text-align: center; margin-bottom: 15px; }
  .inv-btn-secondary { margin-left: 0; margin-bottom: 0; }
  .inv-value-card { padding: 40px 20px; justify-content: center; }
  .inv-value-content { padding: 25px; }
  .inv-value-content h2 { font-size: 1.8rem; }
  .wcu-values-header h2 { font-size: 2.5rem; }
  .val-number { font-size: 4rem; }
  .neu-visual-wrap, .neu-browser-card, .neu-rocket-card, .diff-visual { max-width: 100%; aspect-ratio: 1; height: auto; padding: 40px 0; }
  .neu-small-card { width: 45px; height: 45px; }
  .neu-small-card svg { width: 20px; height: 20px; }
  .wcu-about-card { padding: 40px 20px; }
}

/* -------------------------------------------------------------------------- */
/* Animation System
/* -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.9); }

.reveal.is-active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered Animations */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.is-active .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.is-active .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.is-active .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.is-active .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.is-active .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.is-active .stagger-item:nth-child(5) { transition-delay: 0.5s; }
.is-active .stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Image Specific Zoom */
.reveal-zoom-in img {
  transform: scale(1.2);
  transition: transform 1.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal-zoom-in.is-active img {
  transform: scale(1);
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}


/* -------------------------------------------------------------------------- */
/* Advanced High-Quality Animations
/* -------------------------------------------------------------------------- */

/* Curtain Reveal Effect */
.curtain-reveal {
  position: relative;
  overflow: hidden;
  display: block;
}

.curtain-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary, #6b73ff);
  transform: translateX(-100%);
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-reveal img {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0s 0.4s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}

.curtain-reveal.is-active::after {
  transform: translateX(100%);
}

.curtain-reveal.is-active img {
  opacity: 1;
  transform: scale(1);
}

/* Magnetic / Liquid Buttons */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn-premium:hover::before {
  width: 300%;
  height: 300%;
}

.btn-premium:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Glass Shimmer Effect */
.glass-shimmer {
  position: relative;
  overflow: hidden;
}

.glass-shimmer::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  transform: rotate(-45deg);
  transition: all 0.6s;
  pointer-events: none;
}

.glass-shimmer:hover::before {
  top: 150%;
  left: 150%;
}

/* Floating Drifts (Hero Clouds) */
@keyframes cloudDrift {
  0% { transform: translate(0, 0) rotate(0); }
  33% { transform: translate(15px, -10px) rotate(1deg); }
  66% { transform: translate(-10px, 15px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

.hero-cloud {
  animation: cloudDrift 12s ease-in-out infinite;
}

.hero-cloud-right {
  animation-delay: -6s;
}

/* Text Split / Reveal */
.text-reveal {
  overflow: hidden;
  display: block;
}

.text-reveal span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.is-active .text-reveal span {
  transform: translateY(0);
}


/* ==========================================================================
   PREMIUM MOBILE RESPONSIVE OVERHAUL
   ========================================================================== */

@media (max-width: 768px) {
  /* Global Adjustments */
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(100% - 2.5rem, var(--container-width));
  }

  .section-space {
    padding: 2.5rem 0;
  }

  /* Typography */
  h1 { font-size: 2.8rem; line-height: 1.1; }
  h2 { font-size: 2.1rem; line-height: 1.2; }
  h3 { font-size: 1.6rem; }

  /* Home Page - Hero */
  .hero-section {
    padding: 2rem 0 3.5rem;
  }
  .hero-title {
    font-size: 2.45rem !important;
    text-align: center;
  }
  .hero-text {
    font-size: 1.02rem;
    margin-top: 1.2rem;
    padding: 0 0.5rem;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .hero-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px;
  }

  /* Home Page - Impact */
  .impact-section {
    padding: 1rem 0 3rem;
  }
  .impact-title {
    font-size: 1.95rem !important;
    text-align: center;
  }
  .impact-text {
    font-size: 1.05rem;
    text-align: center;
    margin-top: 1.2rem;
  }

  /* Feature Visuals */
  .feature-visual-section {
    padding-bottom: 2.5rem;
  }
  .feature-visual-card {
    aspect-ratio: 1 / 1.15;
    border-radius: 24px;
  }
  .feature-pill-row {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 1.2rem;
    background: rgba(221, 204, 185, 0.5);
    flex-direction: column;
    padding: 0.6rem;
    gap: 0.5rem;
  }
  .feature-pill {
    min-height: 52px;
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  /* Service Sections */
  .service-section {
    padding: 2.8rem 0;
  }
  .service-copy h2 {
    font-size: 1.85rem !important;
    text-align: center;
  }
  .service-copy p {
    text-align: center;
    font-size: 1rem;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
  }
  .service-tags span {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
  }
  .service-cta {
    display: flex;
    margin: 1.8rem auto 0;
    width: fit-content;
  }

  /* Wealth Grid */
  .wealth-section {
    padding: 3rem 0;
  }
  .wealth-heading h2 {
    font-size: 1.9rem !important;
    text-align: center;
  }
  .wealth-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .wealth-card {
    padding: 2rem 1.5rem;
  }

  /* Trust Section */
  .trust-section {
    padding: 3rem 0;
  }
  .trust-title {
    font-size: 2.1rem !important;
    text-align: center;
    margin-bottom: 2.2rem;
  }
  .trust-card {
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 24px;
  }
  .trust-money-panel {
    width: 100%;
    height: 220px;
    margin-bottom: 1.8rem;
  }
  .trust-copy {
    text-align: center;
  }
  .trust-mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .trust-mini-card:last-child {
    grid-column: 1 / -1;
  }

  /* Home Page - Impact */
  .impact-section {
    padding: 3rem 0;
  }
  .impact-title {
    font-size: 2rem !important;
    text-align: center;
  }
  .impact-text {
    text-align: center;
    font-size: 1.05rem;
  }

  /* Home Page - Wealth */
  .wealth-logo-window {
    height: 120px !important;
  }
  .wealth-logo-row {
    font-size: 2rem !important;
  }

  .partner-cta-btn {
    width: 100%;
    margin-top: 2rem;
  }

  /* Listing Page */
  .listing-hero-section {
    padding: 3rem 0 4rem;
  }
  .listing-hero-content h1 {
    font-size: 2.1rem !important;
    text-align: center;
  }
  .listing-subtext {
    text-align: center;
    font-size: 1.05rem;
  }
  .listing-actions {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .listing-btn {
    width: 100%;
    justify-content: center;
  }
  .listing-investment-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .listing-investment-copy {
    text-align: center;
  }
  .listing-flow-panel {
    min-height: auto !important;
    padding: 2.5rem 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .listing-flow-lines {
    display: none;
  }
  .listing-flow-node {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.8);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .listing-struct-grid {
    grid-template-columns: 1fr !important;
    gap: 3.5rem;
  }
  .listing-enterprise-visual {
    height: 320px !important;
    order: -1;
  }
  .listing-real-estate-cards {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }
  .listing-project-slide {
    flex-direction: column !important;
    padding: 0 1rem !important;
    gap: 2.5rem;
  }

  /* Investment Page */
  .inv-hero {
    padding: 4rem 0 3rem;
    min-height: auto !important;
  }
  .inv-title {
    font-size: 2.2rem !important;
    text-align: center;
  }
  .inv-text {
    text-align: center;
  }
  .inv-actions {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .inv-btn {
    width: 100%;
    justify-content: center;
  }
  .inv-philosophy-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .inv-opp-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .inv-arcs-container {
    height: auto !important;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .inv-arc {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    border: none !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.4);
    border-radius: 20px;
  }
  .inv-arc-icon {
    position: static !important;
    transform: none !important;
  }
  .inv-risk-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Why Choose Us Page */
  .wcu-hero {
    padding: 3.5rem 0;
  }
  .wcu-hero-content {
    text-align: center;
  }
  .wcu-title {
    font-size: 2.4rem !important;
  }
  .wcu-value-row {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
  }
  .wcu-value-row.reverse {
    flex-direction: column !important;
  }
  .wcu-val-visual {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .wcu-diff-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .wcu-faq-list {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
  }
  .wcu-about-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  /* Contact Page */
  .contact-hero-section {
    padding: 3.5rem 0;
  }
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  .contact-info-grid {
    grid-template-columns: 1fr !important;
  }

  /* Service Page */
  .svc-hero {
    padding: 3.5rem 0;
  }
  .svc-hero-inner h1 {
    font-size: 2.2rem !important;
    text-align: center;
  }
  .svc-hero-copy {
    text-align: center;
  }
  .svc-hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .svc-strategy-columns {
    flex-direction: column !important;
    gap: 1.5rem;
  }
  .svc-finance-container {
    flex-direction: column !important;
    gap: 3rem;
  }
  .svc-finance-copy {
    text-align: center;
  }
  .svc-rotary-wrapper {
    padding: 2rem 0;
  }
  .svc-arc-container {
    transform: scale(0.6) !important;
    margin: -100px auto !important;
  }

  /* Global Footer */
  .home-footer-section {
    padding: 3rem 0;
  }
  .home-footer-top {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .home-footer-brand {
    align-items: center;
    text-align: center;
  }
  .home-footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  .home-footer-col h3 {
    margin-bottom: 1rem;
  }
  .home-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.3rem !important; }
  h2 { font-size: 1.8rem !important; }
  
  .hero-title { font-size: 2.15rem !important; }
  
  .trust-mini-grid {
    grid-template-columns: 1fr;
  }
  .trust-mini-card:last-child {
    grid-column: auto;
  }
}

/* Listing Project Section - Image Slider Override */
.listing-project-carousel {
  min-height: auto;
  max-width: 1220px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.listing-project-track {
  min-height: 0;
  height: 720px;
}

.listing-project-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform: translateX(20px);
}

.listing-project-image-frame {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 45px rgba(47, 35, 23, 0.12);
}

.listing-project-image-frame img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.listing-project-carousel .listing-project-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 1.1rem;
  justify-content: space-between;
  pointer-events: none;
}

.listing-project-carousel .listing-project-arrow {
  pointer-events: auto;
}

@media (max-width: 992px) {
  .listing-project-track {
    height: 560px;
  }
}

@media (max-width: 768px) {
  .listing-project-carousel {
    margin-top: 2.2rem;
    border-radius: 22px;
  }

  .listing-project-track {
    height: 360px;
  }

  .listing-project-slide {
    padding: 0.8rem;
  }

  .listing-project-image-frame {
    border-radius: 16px;
  }

  .listing-project-carousel .listing-project-controls {
    top: auto;
    bottom: -0.35rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 0;
    justify-content: center;
    gap: 0.7rem;
  }
}
