/* ============================================
INVEST COMPONENT STYLES
============================================ */

.invest-component {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Background Text */

.invest-component .invest-bg-text {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: rgba(202, 166, 106, 0.03);
  z-index: 0;
  pointer-events: none;
  letter-spacing: 12px;
  user-select: none;
}

/* Container */

.invest-component .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================
INVEST HERO
============================================ */

.invest-component .invest-hero {
  text-align: center;
  margin-bottom: 60px;
}

.invest-component .invest-hero .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.invest-component .invest-hero .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 16px;
}

.invest-component .invest-hero .section-subtitle {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Hero Metrics */

.invest-component .invest-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0 60px;
}

.invest-component .invest-metric {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.invest-component .invest-metric:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.invest-component .invest-metric .metric-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
}

.invest-component .invest-metric .metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ============================================
WHY INVEST
============================================ */

.invest-component .invest-why {
  margin-bottom: 60px;
}

.invest-component .invest-why-header {
  text-align: center;
  margin-bottom: 40px;
}

.invest-component .invest-why-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--text-light);
  margin-bottom: 8px;
}

.invest-component .invest-why-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

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

.invest-component .invest-pillar {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.invest-component .invest-pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.invest-component .invest-pillar .pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.invest-component .invest-pillar .pillar-icon {
  font-size: 32px;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: block;
}

.invest-component .invest-pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.invest-component .invest-pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
INVEST FORM
============================================ */

.invest-component .invest-form-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 60px;
}

.invest-component .invest-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.invest-component .invest-form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--text-light);
  margin-bottom: 8px;
}

.invest-component .invest-form-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Progress Bar */

.invest-component .form-progress {
  margin-bottom: 40px;
}

.invest-component .form-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}

.invest-component .form-progress-bar .progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 2px;
  width: 0%;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.invest-component .form-indicators {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.invest-component .step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  cursor: pointer;
}

.invest-component .step-indicator .step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.invest-component .step-indicator.active .step-dot {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
  box-shadow: 0 0 20px rgba(202, 166, 106, 0.3);
}

.invest-component .step-indicator.completed .step-dot {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
}

.invest-component .step-indicator .step-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.invest-component .step-indicator.active .step-label,
.invest-component .step-indicator.completed .step-label {
  color: var(--text-light);
}

/* Form Steps */

.invest-component .form-step {
  display: none;
  animation: fadeStep 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.invest-component .form-step.active {
  display: block;
}

@keyframes fadeStep {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

.invest-component .form-step .step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.invest-component .form-step .step-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

/* Option Group */

.invest-component .option-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.invest-component .option-group.single-select {
  grid-template-columns: repeat(2, 1fr);
}

.invest-component .option-card {
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

.invest-component .option-card:hover {
  border-color: rgba(202, 166, 106, 0.3);
  transform: translateY(-2px);
}

.invest-component .option-card.active {
  border-color: var(--gold-primary);
  background: rgba(202, 166, 106, 0.08);
  box-shadow: 0 8px 30px rgba(202, 166, 106, 0.05);
}

.invest-component .option-card .option-icon {
  font-size: 24px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 8px;
}

.invest-component .option-card .option-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.invest-component .option-card .option-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Form Fields */

.invest-component .form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.invest-component .form-fields .field-full {
  grid-column: 1 / -1;
}

.invest-component .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.invest-component .form-field label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.invest-component .form-field input,
.invest-component .form-field select,
.invest-component .form-field textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.invest-component .form-field input:focus,
.invest-component .form-field select:focus,
.invest-component .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
}

.invest-component .form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.invest-component .form-field input::placeholder,
.invest-component .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.invest-component .form-field select option {
  background: var(--dark-secondary);
  color: var(--text-light);
}

/* Form Navigation */

.invest-component .form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.invest-component .form-navigation .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.invest-component .form-navigation .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.invest-component .form-navigation .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.invest-component .form-navigation .btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.invest-component .form-navigation .btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(202, 166, 106, 0.1);
}

.invest-component .form-navigation .btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.invest-component .form-navigation .btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
FORM SUCCESS
============================================ */

.invest-component .form-success {
  text-align: center;
  padding: 40px 20px;
}

.invest-component .form-success .success-icon {
  font-size: 64px;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.invest-component .form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.invest-component .form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.invest-component .form-success .success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.invest-component .form-success .success-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.invest-component .form-success .success-actions .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.invest-component .form-success .success-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.invest-component .form-success .success-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.invest-component .form-success .success-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
CTA ACTIONS
============================================ */

.invest-component .invest-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(202, 166, 106, 0.08);
}

.invest-component .invest-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.invest-component .invest-actions .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.invest-component .invest-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.invest-component .invest-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.8s ease;
}

.invest-component .invest-actions .btn-primary:hover::before {
  left: 150%;
}

.invest-component .invest-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.invest-component .invest-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.invest-component .invest-actions .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 106, 0.3), transparent);
  transition: 0.8s ease;
}

.invest-component .invest-actions .btn-outline:hover::before {
  left: 150%;
}

/* ============================================
REVEAL ANIMATIONS
============================================ */

.invest-component .invest-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.invest-component .invest-reveal-delay-1 {
  transition-delay: 0.1s;
}

.invest-component .invest-reveal-delay-2 {
  transition-delay: 0.2s;
}

.invest-component .invest-reveal-delay-3 {
  transition-delay: 0.3s;
}

.invest-component .invest-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
RESPONSIVE
============================================ */

@media (max-width: 1024px) {
  .invest-component .invest-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .invest-component .invest-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .invest-component {
    padding: 60px 0;
  }

  .invest-component .invest-hero {
    margin-bottom: 40px;
  }

  .invest-component .invest-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .invest-component .invest-form-container {
    padding: 30px 20px;
  }

  .invest-component .option-group {
    grid-template-columns: 1fr;
  }

  .invest-component .option-group.single-select {
    grid-template-columns: 1fr;
  }

  .invest-component .form-fields {
    grid-template-columns: 1fr;
  }

  .invest-component .form-indicators {
    flex-wrap: wrap;
    justify-content: center;
  }

  .invest-component .step-indicator {
    flex: none;
    width: auto;
    padding: 0 8px;
  }

  .invest-component .step-indicator .step-label {
    font-size: 10px;
  }

  .invest-component .form-navigation {
    flex-direction: column;
    gap: 12px;
  }

  .invest-component .form-navigation .btn {
    width: 100%;
  }

  .invest-component .invest-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .invest-component .invest-actions {
    flex-direction: column;
    width: 100%;
  }

  .invest-component .invest-actions .btn {
    width: 100%;
    text-align: center;
  }

  .invest-component .form-success .success-actions {
    flex-direction: column;
    width: 100%;
  }

  .invest-component .form-success .success-actions .btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .invest-component .invest-hero .section-title {
    font-size: 28px;
  }

  .invest-component .invest-form-container {
    padding: 20px 16px;
  }

  .invest-component .invest-form-header h3 {
    font-size: 22px;
  }

}

/* ============================================
REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {
  .invest-component .invest-reveal {
    opacity: 1;
    transform: none;
  }

  .invest-component .invest-metric {
    transition: none;
  }

  .invest-component .invest-metric:hover {
    transform: none;
  }

  .invest-component .invest-pillar {
    transition: none;
  }

  .invest-component .invest-pillar:hover {
    transform: none;
  }

  .invest-component .option-card {
    transition: none;
  }

  .invest-component .option-card:hover {
    transform: none;
  }

  .invest-component .form-step {
    animation: none;
  }

  .invest-component .form-navigation .btn {
    transition: none;
  }

  .invest-component .form-navigation .btn:hover {
    transform: none;
  }

  .invest-component .invest-actions .btn {
    transition: none;
  }

  .invest-component .invest-actions .btn:hover {
    transform: none;
  }

  .invest-component .invest-actions .btn-primary::before,
.invest-component .invest-actions .btn-outline::before {
    display: none;
  }

}

/* Component styles are inherited from base CSS */

