/* ============================================
   INVESTORS PAGE STYLES
   ============================================ */

/* ---- HERO ---- */
.investor-hero {
  min-height: 100vh;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 18vw;
  font-weight: var(--weight-bold);
  color: rgba(201, 169, 110, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.hero-line-left,
.hero-line-right {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  opacity: 0.15;
}

.hero-line-left {
  left: 18%;
  top: 0;
  height: 100%;
  animation: investLineFloat 8s ease-in-out infinite;
}

.hero-line-right {
  right: 15%;
  top: 0;
  height: 100%;
  animation: investLineFloat 8s ease-in-out 2s infinite;
}

@keyframes investLineFloat {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.2; }
}

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

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 10px 24px;
  margin-bottom: 40px;
  opacity: 0;
  animation: investFadeUp 0.7s ease 0.2s forwards;
}

.investor-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: var(--leading-tight);
  max-width: 850px;
  margin: 0 auto 12px;
  opacity: 0;
  animation: investFadeUp 0.8s ease 0.4s forwards;
}

.investor-hero h1 em {
  display: block;
  font-style: italic;
  color: var(--color-gold);
  font-size: 4.5rem;
  margin-top: 8px;
}

.hero-sub {
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.35);
  max-width: 520px;
  line-height: var(--leading-relaxed);
  margin: 24px auto 50px;
  opacity: 0;
  animation: investFadeUp 0.7s ease 0.6s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: investFadeUp 0.7s ease 0.8s forwards;
}

.btn-gold {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-gold);
  padding: 18px 42px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.25);
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 18px 32px;
  text-decoration: none;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--color-gold); }

.btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: investFadeIn 0.6s ease 1.3s forwards;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: investScrollBounce 2s ease infinite;
}

@keyframes investScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}

/* ---- DIAMOND TIMELINE ---- */
.diamond-timeline-section {
  padding: var(--space-5xl) 60px;
  background: var(--color-white);
}

.dt-header {
  text-align: center;
  margin-bottom: 90px;
}

.dt-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-navy);
  margin-bottom: 14px;
}

.dt-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.dt-subtitle {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
  font-weight: var(--weight-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.diamond-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.diamond-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(201, 169, 110, 0.15), var(--color-gold));
  transform: translateX(-50%);
}

.dt-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.dt-item.is-visible {
  animation: investFadeUp 0.6s ease forwards;
}

.dt-item:nth-child(odd) { flex-direction: row; }
.dt-item:nth-child(even) { flex-direction: row-reverse; }

.dt-diamond {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-gold);
  background: var(--color-white);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-diamond-number {
  transform: rotate(-45deg);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-gold);
}

.dt-icon {
  position: absolute;
  left: 50%;
  transform: translateX(40px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dt-item:nth-child(even) .dt-icon {
  transform: translateX(calc(-100% - 40px));
}

.dt-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.dt-card {
  width: 42%;
  padding: 36px;
  background: var(--color-off-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(11, 29, 58, 0.04);
  transition: all 0.3s;
  text-align: center;
}

.dt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(11, 29, 58, 0.06);
  border-color: rgba(201, 169, 110, 0.15);
}

.dt-item:nth-child(odd) .dt-card { margin-right: auto; }
.dt-item:nth-child(even) .dt-card { margin-left: auto; }

.dt-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-navy);
  margin-bottom: 10px;
}

.dt-card-desc {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
  margin-bottom: 18px;
}

.dt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.dt-tag {
  font-size: 11px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.5px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid rgba(11, 29, 58, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.25s;
}

.dt-tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ---- PROPERTY TYPE STRIP ---- */
.property-types-section {
  padding: var(--space-4xl) 60px;
  background: var(--color-off-white);
}

.pt-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.pt-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-medium);
  color: var(--color-navy);
  margin-bottom: 0;
}

.pt-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.pt-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pt-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pt-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(11, 29, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pt-item:hover .pt-icon {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.06);
}

.pt-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.pt-item:hover .pt-icon svg {
  stroke: var(--color-gold);
}

.pt-label {
  font-size: 11px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.5px;
  color: var(--color-mid-gray);
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s;
}

.pt-item:hover .pt-label {
  color: var(--color-navy);
}

/* ---- DUAL PLATFORM POWERHOUSE ---- */
.dual-platform-section {
  padding: var(--space-5xl) 60px;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.dual-platform-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.dp-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dp-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.dp-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 14px;
}

.dp-header h2 .gold { color: var(--color-gold); }

.dp-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  font-weight: var(--weight-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.dp-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 60px auto 50px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.dp-card {
  padding: 45px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}

.dp-card.is-visible { animation: investFadeUp 0.6s ease forwards; }
.dp-card:nth-child(3).is-visible { animation-delay: 0.2s; }

.dp-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-gold);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.dp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.dp-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.dp-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 8px;
}

.dp-card-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: var(--leading-normal);
  font-weight: var(--weight-light);
  margin-bottom: 24px;
}

.dp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dp-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dp-list li:last-child { border-bottom: none; padding-bottom: 0; }

.dp-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.dp-plus {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -12px;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.dp-plus svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.dp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.dp-benefit {
  text-align: center;
  padding: 30px 24px;
  position: relative;
}

.dp-benefit:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.dp-benefit-icon {
  margin-bottom: 10px;
  color: var(--color-gold);
  display: flex;
  justify-content: center;
}

.dp-benefit-icon svg {
  width: 28px;
  height: 28px;
}

.dp-benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 6px;
}

.dp-benefit-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: var(--weight-light);
  line-height: 1.5;
}

/* ---- INVESTMENT TYPES ---- */
.types-section {
  padding: var(--space-5xl) 60px;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.types-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.types-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.types-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 14px;
}

.types-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.types-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  font-weight: var(--weight-light);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.type-card {
  padding: 50px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(30px);
}

.type-card.is-visible {
  animation: investFadeUp 0.6s ease forwards;
}

.type-card:nth-child(2).is-visible {
  animation-delay: 0.15s;
}

.type-card:nth-child(3).is-visible {
  animation-delay: 0.3s;
}

.type-card:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.type-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.type-card:hover .type-icon {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.type-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.type-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 12px;
}

.type-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
  margin-bottom: 24px;
}

.type-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.type-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.type-features li svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* ---- CTA ---- */
.investor-cta {
  padding: 160px 60px;
  background: var(--color-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.investor-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-frame {
  position: relative;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 80px 60px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--border-radius);
}

.cta-frame::before,
.cta-frame::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--color-gold);
  border-style: solid;
  opacity: 0.4;
}

.cta-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.cta-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.investor-cta h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: var(--leading-tight);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.investor-cta h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.cta-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.35);
  font-weight: var(--weight-light);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.cta-phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 18px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.3s;
}

.cta-phone:hover {
  color: var(--color-gold);
  border-color: rgba(201, 169, 110, 0.3);
}

/* ---- ANIMATIONS ---- */
@keyframes investFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes investFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .investor-hero h1 { font-size: var(--text-4xl); }
  .investor-hero h1 em { font-size: var(--text-4xl); }
  .hero-cta-group { flex-direction: column; }
  .hero-line-left, .hero-line-right { display: none; }
  .types-grid { grid-template-columns: 1fr; }
  .diamond-timeline-section, .property-types-section, .dual-platform-section,
  .types-section, .investor-cta { padding: 80px 24px; }
  .investor-cta h2 { font-size: var(--text-3xl); }
  .cta-buttons { flex-direction: column; }
  .cta-frame { padding: 50px 24px; }

  /* Diamond Timeline mobile */
  .dt-header h2 { font-size: var(--text-3xl); }
  .diamond-timeline::before { left: 24px; }
  .dt-item, .dt-item:nth-child(even) { flex-direction: row; }
  .dt-card { width: 100%; margin-left: 60px !important; margin-right: 0 !important; }
  .dt-diamond { left: 24px; }
  .dt-icon { display: none; }

  /* Property Type Strip mobile */
  .pt-strip { flex-wrap: wrap; gap: 24px 32px; }
  .pt-header h2 { font-size: var(--text-2xl); }

  /* Dual Platform mobile */
  .dp-header h2 { font-size: var(--text-3xl); }
  .dp-cards { grid-template-columns: 1fr; gap: 20px; }
  .dp-plus { margin: 0 auto; }
  .dp-benefits { grid-template-columns: 1fr; }
  .dp-benefit:not(:last-child)::after { display: none; }
}
