.free-badge {
    background: var(--global--color-primary);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-left: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.highlight-text {
    color: var(--global--color-primary);
    font-weight: bold;
}

.highlight-text-anim {
    color: var(--global--color-primary-anim)!important;
    font-weight: bold;
}

.hero-title {
    color: #2c3e50 !important;
}

.hero-desc {
    color: #5a6c7d !important;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
}

.feature-card {
    position: relative;
}

.stats-banner {
    background: linear-gradient(135deg, #6c63ff 0%, #5a54d8 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
}

.stats-banner h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stats-banner p {
    color: white;
}

.why-free-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.why-free-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-free-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.why-free-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, #6c63ff 0%, #5a54d8 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
}

.comparison-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table th {
    background: #6c63ff;
    color: white;
    font-weight: 600;
}

.check-icon {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: bold;
}

.cross-icon {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-section {
    background: white;
    padding: 4rem 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #6c63ff;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.process-card {
    transition: all 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.heading-title {
    color: #2c3e50;
}

.heading-subtitle {
    color: #6c63ff;
    font-weight: 600;
}

/* Line görselleri yerine border kullan */
.divider .line {
    border-top: 2px solid #6c63ff;
    width: 60px;
    margin: 0 auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .free-badge {
        display: none;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .stats-banner {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }

    .stats-banner h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .stats-banner p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hero-action {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-top: 1.5rem !important;
        align-items: center;
    }

    .feature-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .feature-badge {
        top: -8px;
        right: -8px;
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }

    .why-free-section {
        padding: 2.5rem 1rem;
        margin: 2rem 0;
    }

    .why-free-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .why-free-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .highlight-box {
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .comparison-table {
        margin: 2rem 0;
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .comparison-table th {
        font-size: 0.9rem;
    }

    .check-icon,
    .cross-icon {
        font-size: 1.2rem;
    }

    .faq-section {
        padding: 2.5rem 1rem;
    }

    .faq-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
        border-left-width: 3px;
    }

    .faq-item h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-item:hover {
        transform: translateX(3px);
    }

    .process-card {
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .process-card:hover {
        transform: translateY(-5px);
    }

    .heading-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .heading-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .free-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-left: 0;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .stats-banner {
        padding: 1rem 0.8rem;
        margin: 1rem 0;
    }

    .stats-banner h3 {
        font-size: 1.3rem;
    }

    .stats-banner p {
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-badge {
        top: -6px;
        right: -6px;
        padding: 0.15rem 0.5rem;
        font-size: 0.65rem;
    }

    .why-free-section {
        padding: 2rem 0.8rem;
        margin: 1.5rem 0;
    }

    .why-free-content h2 {
        font-size: 1.5rem;
    }

    .why-free-content p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 0.8rem;
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .comparison-table {
        font-size: 0.8rem;
        margin: 1.5rem 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.75rem;
    }

    .check-icon,
    .cross-icon {
        font-size: 1rem;
    }

    .faq-section {
        padding: 2rem 0.8rem;
    }

    .faq-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .faq-item h4 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .process-card {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .heading-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }

    .heading-subtitle {
        font-size: 0.8rem;
    }

    .divider .line {
        width: 40px;
    }
}

/* Extra small screens (Galaxy Fold, etc.) */
@media (max-width: 320px) {
    .free-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin-top: 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
    }

    .stats-banner h3 {
        font-size: 1.1rem;
    }

    .stats-banner p {
        font-size: 0.75rem;
    }

    .why-free-content h2 {
        font-size: 1.3rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.7rem;
    }

    .faq-item {
        padding: 0.6rem;
    }

    .faq-item h4 {
        font-size: 0.9rem;
    }

    .faq-item p {
        font-size: 0.8rem;
    }

    .heading-title {
        font-size: 1.3rem !important;
    }
}