/* ============================================
   REDVERS E-MOBILITY - INVESTORS PAGE STYLES
   Premium Investment Page Design
   ============================================ */

/* ============================================
   INVESTOR HERO SECTION
   ============================================ */
.investor-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--secondary);
    overflow: hidden;
    padding-top: 80px;
}

.investor-hero__bg {
    position: absolute;
    inset: 0;
}

.investor-hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(0, 210, 106, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 20%, rgba(0, 168, 232, 0.1) 0%, transparent 30%);
}

.investor-hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 210, 106, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 106, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.investor-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glow-pulse 6s ease-in-out infinite;
}

.investor-hero__glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 210, 106, 0.15);
    top: -200px;
    right: -200px;
}

.investor-hero__glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 53, 0.1);
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.investor-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 4rem 0;
}

.investor-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: badge-appear 0.8s ease forwards;
}

.investor-hero__badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.investor-hero__badge span:last-child {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.investor-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.investor-hero__title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--electric-blue) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investor-hero__description {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.investor-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.investor-hero__stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.investor-hero__stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--electric-blue));
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--secondary);
}

.investor-hero__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.investor-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.investor-hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.investor-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.investor-hero__scroll i {
    font-size: 1rem;
    color: var(--primary);
}

/* ============================================
   OPPORTUNITY CARDS
   ============================================ */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.opportunity-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--electric-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.opportunity-card:hover::before {
    transform: scaleX(1);
}

.opportunity-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}

.opportunity-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.1), rgba(0, 168, 232, 0.1));
    border-radius: 20px;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.opportunity-card:hover .opportunity-card__icon {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1);
}

.opportunity-card__title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.opportunity-card__description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.opportunity-card__points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opportunity-card__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.opportunity-card__points i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ============================================
   MARKET DATA SECTION
   ============================================ */
.market-data__header {
    text-align: center;
    margin-bottom: 3rem;
}

.market-data__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.market-data__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
}

.market-data__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.market-stat-card {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-lighter);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.market-stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.market-stat-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 210, 106, 0.1);
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.market-stat-card__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.market-stat-card__label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.market-stat-card__trend {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 210, 106, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary);
}

/* ============================================
   INVESTMENT PACKAGES
   ============================================ */
.investment-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.investment-package {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.investment-package:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.investment-package--featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    transform: scale(1.05);
    z-index: 1;
}

.investment-package--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.investment-package__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--electric-blue));
    color: var(--secondary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    white-space: nowrap;
}

.investment-package__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.investment-package__name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.investment-package--featured .investment-package__name {
    color: var(--white);
}

.investment-package__tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin: 0;
}

.investment-package__price {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.investment-package--featured .investment-package__price {
    border-color: var(--secondary-lighter);
}

.investment-package__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.investment-package__amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.investment-package--featured .investment-package__amount {
    color: var(--white);
}

.investment-package__period {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.investment-package__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.investment-package__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
}

.investment-package--featured .investment-package__features li {
    border-color: var(--secondary-lighter);
    color: var(--gray-200);
}

.investment-package__features li:last-child {
    border-bottom: none;
}

.investment-package__features i {
    font-size: 1rem;
}

.investment-package__features .fa-check-circle {
    color: var(--primary);
}

.investment-package__features .fa-times-circle {
    color: var(--gray-300);
}

.investment-package__feature--disabled {
    opacity: 0.5;
}

.investment-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.investment-note i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.investment-note p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* ============================================
   USE OF FUNDS
   ============================================ */
.use-of-funds {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.use-of-funds__donut {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary) 0deg 144deg,
        var(--electric-blue) 144deg 234deg,
        var(--accent) 234deg 288deg,
        var(--solar-yellow) 288deg 342deg,
        #9B59B6 342deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.use-of-funds__donut::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 50%;
}

.use-of-funds__center {
    position: relative;
    z-index: 1;
    text-align: center;
}

.use-of-funds__center-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.use-of-funds__center-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.use-of-funds__item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--secondary-lighter);
}

.use-of-funds__item:last-child {
    border-bottom: none;
}

.use-of-funds__item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.use-of-funds__item-color {
    width: 16px;
    height: 16px;
    background: var(--color);
    border-radius: 4px;
}

.use-of-funds__item-name {
    flex: 1;
    font-weight: 600;
    color: var(--white);
}

.use-of-funds__item-percent {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
}

.use-of-funds__item-desc {
    margin: 0;
    padding-left: 2rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ============================================
   TRACTION TIMELINE
   ============================================ */
.traction-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.traction-item {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.traction-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.traction-item--future {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-color: var(--primary);
}

.traction-item__year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.traction-item__content h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.traction-item--future .traction-item__content h4 {
    color: var(--white);
}

.traction-item__content p {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--electric-blue));
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--secondary);
    margin: 0 auto 1.5rem;
}

.team-card__name {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card__bio {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-card__social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-card__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.team-card__social a:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* ============================================
   PARTNERS SHOWCASE
   ============================================ */
.partners-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.partner-card {
    padding: 1.5rem 2.5rem;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.partner-card span {
    font-weight: 600;
    color: var(--gray-500);
}

/* ============================================
   INVESTOR CONTACT
   ============================================ */
.investor-contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.investor-contact__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.investor-contact__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.investor-contact__description {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.investor-contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investor-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.investor-contact__detail > i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 210, 106, 0.1);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.25rem;
}

.investor-contact__detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.investor-contact__detail a,
.investor-contact__detail span {
    color: var(--gray-200);
    font-size: 1rem;
}

.investor-contact__detail a:hover {
    color: var(--primary);
}

.investor-contact__form {
    background: var(--secondary-light);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--secondary-lighter);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.form-disclaimer i {
    color: var(--primary);
}

/* ============================================
   INVESTOR CTA
   ============================================ */
.investor-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.investor-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.investor-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.investor-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 1rem;
}

.investor-cta__description {
    font-size: 1.25rem;
    color: var(--secondary);
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-data__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-packages {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 2rem;
    }
    
    .investment-package--featured {
        transform: none;
    }
    
    .use-of-funds {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .investor-hero__stats {
        gap: 1.5rem;
    }
    
    .investor-hero__stat {
        flex: 1 1 calc(50% - 1rem);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .investor-contact {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .investor-hero {
        padding-top: 100px;
    }
    
    .investor-hero__stat {
        flex: 1 1 100%;
    }
    
    .investor-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .investor-hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .market-data__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .traction-item {
        min-width: 140px;
    }
}