* {
    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(200deg, transparent, var(--bs-primary), 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;
}