/* ForceX Index Specific Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 8% 60px;
    gap: 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    text-shadow: none;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: animatePulse 2s infinite;
}

@keyframes animatePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: none;
}

.hero p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-visuals img {
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    border-radius: 8px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

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

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* About / HWID Box Görseli */
.about-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(255, 255, 255, 0.01) 50%, var(--bg-color) 100%);
    position: relative;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes float-slow {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.2));
    }

    50% {
        transform: translateY(-20px);
        filter: drop-shadow(0 0 50px rgba(6, 182, 212, 0.6));
    }

    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.2));
    }
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #fff 0%, var(--primary) 25%, rgba(59, 130, 246, 0.1) 50%, var(--primary) 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 5s linear infinite;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
    letter-spacing: -1px;
}

.about-text {
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-text p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin: 0 auto 25px auto;
    line-height: 1.8;
    max-width: 800px;
}

@keyframes textFlow {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

.about-list {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

/* Özellikler (Features) */
section {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title p {
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-item {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    /* High iOS-style radius */
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent);
    pointer-events: none;
}

.feature-item:hover {
    transform: scale(1.05);
    /* Zoom effect */
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    /* Purely depth-based shadow */
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    /* iOS Icon style */
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #f8fafc;
}

.feature-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Fiyatlandırma (Pricing) */
.pricing-grid {
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.price-item {
    display: flex;
    flex-direction: column;
    opacity: 0.85;
    /* Slightly muted */
    cursor: pointer;
    transform: scale(0.96);
    /* Orantılı küçültme */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

.price-item:hover {
    opacity: 1;
}

.price-item:hover::before {
    opacity: 1;
}

.price-item.featured {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 48px 32px;
    transform: scale(1.08); /* Orantılı büyüme */
    opacity: 1;
    z-index: 2;
}

/* Plan Specific Hover Styles */
.price-item[data-plan="daily"]:hover {
    border-color: var(--color-daily);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.price-item[data-plan="daily"]:hover::before {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0.05) 100%);
}

.price-item[data-plan="daily"]:hover .tier,
.price-item[data-plan="daily"]:hover h3 {
    color: var(--color-daily);
}

.price-item[data-plan="weekly"]:hover {
    border-color: var(--color-weekly);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.price-item[data-plan="weekly"]:hover::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.price-item[data-plan="weekly"]:hover .tier,
.price-item[data-plan="weekly"]:hover h3 {
    color: var(--color-weekly);
}

.price-item[data-plan="monthly"]:hover {
    border-color: var(--color-monthly);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.price-item[data-plan="monthly"]:hover::before {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(167, 139, 250, 0.05) 100%);
}

.price-item[data-plan="monthly"]:hover .tier,
.price-item[data-plan="monthly"]:hover h3 {
    color: var(--color-monthly);
}

.price-item[data-plan="lifetime"]:hover {
    border-color: var(--color-lifetime);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.price-item[data-plan="lifetime"]:hover::before {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0.05) 100%);
}

.price-item[data-plan="lifetime"]:hover .tier,
.price-item[data-plan="lifetime"]:hover h3 {
    color: var(--color-lifetime);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #0f111a;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
}

.tier {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.price-item ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-item ul li {
    margin-bottom: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.price-item ul li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.price-item button {
    margin-top: auto;
}

/* Footer Section */
footer {
    padding: 40px 8%;
    background: rgba(0, 0, 0, 0.5); /* Orijinal şeffaf siyah */
    border-top: 1px solid var(--card-border);
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: #4b5563; /* Daha sönük ve koyu gri, resimdeki gibi */
    font-size: 0.8rem;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.footer-content p span#year {
    color: #94a3b8;
}
