:root {
    --investi-primary: var(--bs-primary);
    --investi-secondary: var(--bs-secondary);
    --investi-accent: #dc2626;
    --investi-gold: #d97706;
    --investi-success: #059669;
    --investi-light: #f8fafc;
    --investi-dark: #1e293b;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section - Dark Futuristic */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at 30% 40%, #1a1a2e 0%, #16213e 25%, var(--bs-primary), #0a0a0a 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff, #ff6b6b, #4ecdc4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    font-weight: 300;
    margin: 2rem 0;
}

.btn-neon {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #00f5ff;
    color: #00f5ff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon:hover {
    color: #0a0a0a;
    box-shadow: 0 0 20px #00f5ff, 0 0 40px #00f5ff;
    background: #00f5ff;
}

.geometric-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #00f5ff;
    border-radius: 50%;
    top: 20%;
    right: 10%;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* About Section - Minimalist Cards */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.highlight-text {
    color: #00f5ff;
    font-weight: 600;
}

/* Features Section - Hexagon Grid */
.features-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.feature-hexagon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    margin: 0 auto 2rem;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-hexagon:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.feature-hexagon i {
    font-size: 2.5rem;
    color: white;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Counter Section - Neon Style */
.counter-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0a 70%);
    position: relative;
}

.counter-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid transparent;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    animation: borderSlide 2s linear infinite;
}

@keyframes borderSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.counter-item:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transform: scale(1.05);
}

.counter-number {
    font-size: 4rem;
    font-weight: 800;
    color: #00f5ff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    display: block;
    margin-bottom: 1rem;
}

.counter-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.counter-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Animated Background Elements */
.bg-element {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00f5ff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.bg-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.bg-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.bg-element:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 0.5s;
}

.bg-element:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 1.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.featured-plan {
    border: 2px solid #007bff;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.modal-content {
    color: #0a0a0a;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--investi-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(135deg, var(--investi-gold), var(--investi-secondary));
    border-radius: 2px;
    margin: 20px auto;
}

.badge-custom {
    background: linear-gradient(135deg, var(--investi-gold), #f59e0b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-hero {
    background: linear-gradient(135deg, var(--investi-primary), var(--investi-dark));
    color: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--investi-gold);
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expertise-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--investi-gold), var(--investi-secondary));
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.icon-investment {
    background: linear-gradient(135deg, var(--investi-secondary), #3b82f6);
}

.icon-analysis {
    background: linear-gradient(135deg, var(--investi-success), #10b981);
}

.icon-strategy {
    background: linear-gradient(135deg, var(--investi-gold), #f59e0b);
}

.icon-management {
    background: linear-gradient(135deg, var(--investi-accent), #ef4444);
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--investi-primary);
    margin-bottom: 15px;
}

.expertise-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.expertise-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-points li {
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.expertise-points li i {
    margin-right: 12px;
    color: var(--investi-success);
    font-size: 0.8rem;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--investi-gold), var(--investi-secondary));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--investi-gold);
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--investi-gold), var(--investi-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
    border: 4px solid white;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--investi-primary);
    margin-bottom: 20px;
}

.timeline-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.timeline-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-achievements li {
    color: var(--investi-success);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.timeline-achievements li i {
    margin-right: 12px;
    font-size: 0.9rem;
}

.timeline-metric {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--investi-secondary);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--investi-secondary);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-year {
        left: 30px;
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-hero {
        padding: 40px 30px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--investi-primary), var(--investi-dark));
    color: white;
    padding: 80px 0;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--investi-gold), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-description {
    opacity: 0.9;
    line-height: 1.6;
}