/* ============================================================
   ASSET MANAGEMENT — PAGE CSS
   WealthBridge Design System
   Sections:
     Hero (dark) → Why Asset Management (white) → Asset Classes (gray-50)
     → Portfolio Strategies (white) → Performance (dark)
     → Calc Strip (red) → Portfolio Construction (gray-50)
     → Testimonials (white) → FAQ (gray-50) → CTA (dark) → Related (white)
============================================================ */

/* ────────────────────────────────────────────────────────────
   HERO — DARK
──────────────────────────────────────────────────────────── */
.service-hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 100px 0 80px;
}
.sh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 64% 85% at 68% 46%,
      rgba(200, 16, 46, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 28% 36% at 2% 86%,
      rgba(200, 16, 46, 0.07) 0%,
      transparent 50%
    );
}
.sh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.sh-line {
  position: absolute;
  top: 0;
  right: 21%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 16, 46, 0.28),
    transparent
  );
}
.sh-line2 {
  position: absolute;
  top: 0;
  right: 37%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
}
.sh-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 42%,
    rgba(155, 13, 35, 0.06) 100%
  );
  pointer-events: none;
}
/* Animated floating circles background */
.sh-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 16, 46, 0.12);
  pointer-events: none;
}
.sh-circle.c1 {
  width: 360px;
  height: 360px;
  top: -80px;
  right: 6%;
  animation: rotateSlow 28s linear infinite;
}
.sh-circle.c2 {
  width: 220px;
  height: 220px;
  top: 30%;
  right: 12%;
  animation: rotateSlow 18s linear infinite reverse;
  border-style: dashed;
}
.sh-circle.c3 {
  width: 140px;
  height: 140px;
  bottom: 10%;
  right: 20%;
  animation: rotateSlow 12s linear infinite;
}
@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sh-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Hero Left ── */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: #ff8090;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero__title em {
  color: var(--red);
  font-style: italic;
  display: block;
}
.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.hero__stats > div {
  padding: 14px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1;
  text-align: center;
}
.hero__stats > div:last-child {
  border-right: none;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num span {
  color: var(--red);
}
.hero__stat-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
} 
/* ── Hero Right — Portfolio Card ── */
.hero__visual {
  position: relative;
}
.hero__card-main {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}
.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero__card-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero__card-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.hero__card-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: heroPulse 2s infinite;
}

/* Circular allocation chart */
.hero__alloc {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.hero__alloc-chart {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.hero__alloc-chart svg {
  transform: rotate(-90deg);
}
.alloc-ring {
  fill: none;
  stroke-width: 16;
  stroke-dasharray: 0;
  stroke-linecap: butt;
  transition: stroke-dasharray 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.alloc-ring.animated {
  stroke-dasharray: var(--da) var(--gap);
}
.alloc-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.alloc-center-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.alloc-center-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  text-transform: uppercase;
}

.hero__alloc-legend {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.hal-left {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
}
.hal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hal-pct {
  font-weight: 700;
  color: var(--white);
}

/* Performance rows */
.hero__perf {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hperf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
}
.hperf-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.hperf-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.hperf-bar-wrap {
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.hperf-bar {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.hperf-bar.animated {
  width: var(--w);
}
.hperf-ret {
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}
.ret-pos {
  color: #4ade80;
}
.ret-neg {
  color: #f87171;
}

/* 2×2 metrics */
.hero__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero__metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 14px;
}
.hero__metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.hero__metric-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.hero__metric-val .up {
  color: #4ade80;
  font-size: 11px;
  font-weight: 500;
  margin-left: 3px;
}
.hero__metric-val .neu {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 500;
  margin-left: 3px;
}

/* floating cards */
.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: heroFloat 4s ease-in-out infinite;
}
.hero__float.f1 {
  top: -22px;
  right: -22px;
  animation-delay: 0s;
}
.hero__float.f2 {
  bottom: -18px;
  left: -18px;
  animation-delay: 1.5s;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero__float-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.hero__float-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hero__float-val span {
  color: var(--red);
  font-size: 13px;
}
.hero__float-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 3px;
}

/* ────────────────────────────────────────────────────────────
   WHY ASSET MANAGEMENT — WHITE
──────────────────────────────────────────────────────────── */
.am-why {
  background: var(--white);
}
.am-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.am-why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.amwf-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.amwf-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.amwf-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.amwf-card:hover::after {
  transform: scaleX(1);
}
.amwf-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.amwf-card:hover .amwf-icon {
  background: var(--red);
  color: white;
}
.amwf-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.amwf-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* dark stat card right */
.am-why-visual {
  position: relative;
}
.am-why-bg-block {
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.am-why-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--black), var(--black-2));
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.amwc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.amwc-row {
  margin-bottom: 16px;
}
.amwc-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.amwc-row-top span:last-child {
  color: var(--red);
  font-weight: 700;
}
.amwc-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}
.amwc-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  width: 0;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.amwc-fill.animated {
  width: var(--w);
}
.amwc-footer {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.amwc-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.amwc-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.am-badge-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.am-badge-float.f1 {
  bottom: -18px;
  right: -18px;
}
.am-badge-float.f2 {
  top: -18px;
  right: 36px;
}
.ambf-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ambf-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 16, 46, 0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
}
.ambf-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
.ambf-label {
  font-size: 11px;
  color: var(--gray-500);
}

/* ────────────────────────────────────────────────────────────
   ASSET CLASSES — GRAY-50
──────────────────────────────────────────────────────────── */
.am-classes {
  background: var(--gray-50);
}
.am-classes .section-title {
  color: var(--black);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.class-card {
  background: var(--white);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.class-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.class-card:hover::before {
  transform: scaleX(1);
}
.class-card:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.class-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-equity {
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
}
.tag-debt {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.tag-gold {
  background: rgba(234, 179, 8, 0.12);
  color: #b45309;
}
.tag-re {
  background: rgba(168, 85, 247, 0.1);
  color: #7c3aed;
}
.tag-intl {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.tag-alt {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
}

.class-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.class-card:hover .class-icon {
  background: var(--red);
  color: white;
  transform: scale(1.05);
}

.class-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.class-subtitle {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.6;
}

.class-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.cm-item {
}
.cm-label {
  font-size: 10px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cm-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-top: 2px;
}
.cm-val.pos {
  color: #16a34a;
}
.cm-val.neg {
  color: var(--red);
}
.cm-val.neu {
  color: var(--gray-700);
}

.class-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.class-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-700);
}
.class-item i {
  color: var(--red);
  font-size: 11px;
  flex-shrink: 0;
}
.class-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--transition);
}
.class-card:hover .class-link {
  opacity: 1;
}

/* ────────────────────────────────────────────────────────────
   PORTFOLIO STRATEGIES — WHITE
──────────────────────────────────────────────────────────── */
.am-strategies {
  background: var(--white);
}
.am-strategies .section-title {
  color: var(--black);
}

.strategies-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

/* Left: strategy cards */
.strat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 22px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.strat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.strat-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.strat-card:hover::before {
  transform: scaleY(1);
}
.strat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.strat-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
  transition: var(--transition);
}
.strat-card:hover .strat-icon {
  background: var(--red);
  color: white;
}
.strat-risk {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}
.risk-low {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.risk-mid {
  background: rgba(234, 179, 8, 0.12);
  color: #b45309;
}
.risk-high {
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
}

.strat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.strat-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 12px;
}
.strat-allocations {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sa-tag {
  padding: 3px 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Right: dark returns panel */
.returns-panel {
  background: linear-gradient(135deg, var(--black), var(--black-2));
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-h)+24px);
}
.rp-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

/* mini bar chart */
.rp-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}
.rp-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  animation: growBar 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
  transform-origin: bottom;
}
.rp-bar.v1 {
  background: rgba(200, 16, 46, 0.25);
}
.rp-bar.v2 {
  background: var(--red);
}
@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.rp-bar:nth-child(1) {
  animation-delay: 0.04s;
}
.rp-bar:nth-child(2) {
  animation-delay: 0.08s;
}
.rp-bar:nth-child(3) {
  animation-delay: 0.12s;
}
.rp-bar:nth-child(4) {
  animation-delay: 0.16s;
}
.rp-bar:nth-child(5) {
  animation-delay: 0.2s;
}
.rp-bar:nth-child(6) {
  animation-delay: 0.24s;
}
.rp-bar:nth-child(7) {
  animation-delay: 0.28s;
}
.rp-bar:nth-child(8) {
  animation-delay: 0.32s;
}
.rp-bar:nth-child(9) {
  animation-delay: 0.36s;
}
.rp-bar:nth-child(10) {
  animation-delay: 0.4s;
}
.rp-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  text-align: center;
}

.rp-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}
.rp-row-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.rp-row-val {
  font-size: 13px;
  font-weight: 700;
}
.rp-row-val.green {
  color: #4ade80;
}
.rp-row-val.red {
  color: var(--red);
}
.rp-row-val.white {
  color: var(--white);
}
.rp-source {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
}

/* ────────────────────────────────────────────────────────────
   PERFORMANCE TRACK RECORD — DARK
──────────────────────────────────────────────────────────── */
.am-performance {
  background: var(--black);
}
.am-performance .section-title {
  color: var(--white);
}
.am-performance .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.am-performance .section-label {
  color: var(--red);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.perf-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.perf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.perf-card:hover {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.25);
  transform: translateY(-3px);
}
.perf-card:hover::before {
  transform: scaleX(1);
}
.perf-period {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.perf-return {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.perf-return span {
  color: var(--red);
}
.perf-bench {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.perf-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.pd-label {
  color: rgba(255, 255, 255, 0.5);
}
.pd-val {
  color: var(--white);
  font-weight: 600;
}
.pd-val.green {
  color: #4ade80;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.process-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-num,
.process-step.active .process-num {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 0 0 8px rgba(200, 16, 46, 0.14);
}
.process-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   CALC STRIP — RED
──────────────────────────────────────────────────────────── */
.calc-strip {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 56px 0;
}
.calc-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.calc-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.calc-strip__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.75;
}

/* ────────────────────────────────────────────────────────────
   PORTFOLIO CONSTRUCTION — GRAY-50
──────────────────────────────────────────────────────────── */
.am-portfolio {
  background: var(--gray-50);
}
.am-portfolio .section-title {
  color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.port-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.port-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.port-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.port-card:hover::before {
  transform: scaleX(1);
}
.port-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200, 16, 46, 0.07);
  line-height: 1;
  margin-bottom: 4px;
}
.port-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.port-card:hover .port-icon {
  background: var(--red);
  color: white;
}
.port-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.port-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}
.port-items {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.port-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-700);
}
.port-item::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS — WHITE
──────────────────────────────────────────────────────────── */
.am-testimonials {
  background: var(--white);
}
.am-testimonials .section-title {
  color: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-stars {
  color: var(--red);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200, 16, 46, 0.12);
  line-height: 1;
  margin-bottom: 4px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.testi-role {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ────────────────────────────────────────────────────────────
   FAQ — GRAY-50
──────────────────────────────────────────────────────────── */
.am-faq {
  background: var(--gray-50);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: calc(var(--nav-h)+24px);
}
.faq-intro-cta {
  margin-top: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 4px;
  cursor: pointer;
  transition: color var(--transition);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
}
/* ────────────────────────────────────────────────────────────
   CTA — DARK
──────────────────────────────────────────────────────────── */
.am-cta {
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    #1a0608 50%,
    var(--black) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 16, 46, 0.18);
}
.am-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.12), transparent 65%);
  pointer-events: none;
}
.am-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-title span {
  color: var(--red);
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 36px;
  max-width: 520px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.ct-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}
.ct-item i {
  color: var(--red);
}

/* ────────────────────────────────────────────────────────────
   RELATED — WHITE
──────────────────────────────────────────────────────────── */
.am-related {
  background: var(--white);
}
.am-related .section-title {
  color: var(--black);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rel-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.rel-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.rel-card:hover::before {
  transform: scaleX(1);
}
.rel-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rc-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.rel-card:hover .rc-icon {
  background: var(--red);
  color: white;
}
.rel-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.rel-card p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.65;
}
.rc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--transition);
}
.rel-card:hover .rc-link {
  opacity: 1;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sh-content {
    gap: 48px;
  }
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strategies-layout {
    grid-template-columns: 1fr;
  }
  .returns-panel {
    position: static;
  }
  .perf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .service-hero {
    padding: 80px 0 60px;
  }
  .sh-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    display: none;
  }
  .am-why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-intro {
    position: static;
  }
  .calc-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .calc-strip__desc {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .hero__stats > div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero__stats > div:last-child {
    border-bottom: none;
  }
  .hero__stats {
    flex-direction: column;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .am-why-features {
    grid-template-columns: 1fr;
  }
  .classes-grid {
    grid-template-columns: 1fr;
  }
  .perf-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .sh-circle {
    display: none;
  }
}
