/* Investor page styles */

/* Hero Section */
.investor-hero {
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  color: var(--primary-foreground);
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.investor-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.investor-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.investor-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .investor-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.investor-hero-content {
  position: relative;
  z-index: 10;
}
.investor-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.investor-hero-badge svg {
  width: 1rem;
  height: 1rem;
}
.investor-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.investor-hero-title .highlight {
  color: var(--accent);
}
.investor-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.investor-hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.investor-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.investor-feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Contact Form Card */
.investor-form-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  align-self: start;
}
@media (min-width: 1024px) {
  .investor-form-card {
    padding: 2rem 2.5rem;
  }
}
.investor-form-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.investor-form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.investor-form-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.investor-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.investor-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.investor-form .form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
}
.investor-form .form-group input,
.investor-form .form-group select,
.investor-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--background);
  color: var(--foreground);
  transition: all 0.2s ease;
}
.investor-form .form-group input:focus,
.investor-form .form-group select:focus,
.investor-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}
.investor-form .form-group input::placeholder,
.investor-form .form-group textarea::placeholder {
  color: var(--muted-foreground);
}
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-submit-btn {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.25rem;
}
.form-privacy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.25rem;
}
.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background: var(--background);
}

/* Business Plan Section */
.business-plan-section {
  padding: 6rem 0;
  background: var(--secondary);
}
.bp-grid {
  max-width: 800px;
  margin: 0 auto;
}
.bp-list {
  margin: 0;
  padding: 0;
}
.bp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.bp-row:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}
.bp-row:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
@media (min-width: 640px) {
  .bp-row {
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
  }
}
.bp-row dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bp-row dd {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Phase Tabs Navigation */
.phase-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.phase-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}
.phase-tab:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(201, 166, 107, 0.12);
}
.phase-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.2);
}
.phase-tab-number {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.phase-tab.active .phase-tab-number {
  opacity: 0.85;
  color: var(--primary-foreground);
}
.phase-tab-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}
.phase-tab.active .phase-tab-label {
  color: var(--primary-foreground);
}
.phase-tab-connector {
  display: none;
}
@media (min-width: 768px) {
  .phase-tab-connector {
    display: flex;
    align-items: center;
  }
  .phase-tab-connector svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
  }
}

/* Phase Content Panels */
.phase-content {
  display: none;
  animation: phaseIn 0.4s ease;
}
.phase-content.active {
  display: block;
}
@keyframes phaseIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Phase Header Card */
.phase-header-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--gradient-dark);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.phase-header-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phase-header-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.phase-header-icon-final {
  background: var(--accent);
}
.phase-header-icon-final svg {
  color: var(--primary);
}
.phase-header-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}
.phase-header-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

/* Phase Steps Grid */
.phase-steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .phase-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .phase-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Phase Step Card */
.phase-step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.phase-step-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(201, 166, 107, 0.1);
  transform: translateY(-3px);
}
.phase-step-card-final {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.06) 0%, rgba(201, 166, 107, 0.01) 100%);
}
.phase-step-num {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.phase-step-num-final {
  background: var(--accent);
  color: var(--primary);
}
.phase-step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.phase-step-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: var(--secondary);
}
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(201, 166, 107, 0.15);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Value Proposition Section */
.value-section {
  padding: 6rem 0;
  background: var(--gradient-dark);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}
.value-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.value-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.value-content {
  position: relative;
  z-index: 1;
}
.value-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.value-content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.value-list li:last-child {
  border-bottom: none;
}
.value-list-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-list-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}
.value-list-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.value-list-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.value-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.value-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}
.value-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Section */
.final-cta-section {
  padding: 6rem 0;
  background: var(--card);
}
.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.final-cta-content p {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Form Messages */
.form-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-message-error {
  background: var(--error-bg);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error);
}
.form-message-success {
  background: var(--success-bg);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
}
.form-message svg {
  flex-shrink: 0;
}

/* Success State */
.form-success-state {
  text-align: center;
  padding: 1.5rem 0;
}
.form-success-state .success-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success-state .success-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--success);
}
.form-success-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.form-success-state > p {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.success-next-steps {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.next-step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--foreground);
}
.next-step-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.next-step-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}
.form-success-state .btn {
  margin-top: 0.5rem;
}
