﻿/* ========================================= */
/* MOBİL VE MASAÜSTÜ BANNER GÖRÜNÜRLÜK KURALLARI (GÜNCEL) */
/* ========================================= */

/* Varsayılan olarak (mobil için) */
.desktop-banner,
.button-ust-sag,
.button-alt-buyuk {
    display: none !important; /* Masaüstü ile ilgili her şeyi mobilde KESİNLİKLE gizle */
}

.mobile-view {
    display: block !important; /* Mobil görünümünü (resim ve buton) KESİNLİKLE göster */
}


/* Tablet ve daha geniş ekranlar için (768px ve üzeri) */
@media (min-width: 768px) {
    .mobile-view {
        display: none !important; /* Mobil görünümünü geniş ekranlarda KESİNLİKLE gizle */
    }

    .desktop-banner {
        display: block !important; /* Masaüstü banner'ını KESİNLİKLE göster */
    }

    .button-alt-buyuk {
        display: block !important; /* Alt büyük butonu KESİNLİKLE göster */
    }
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

.content-wrapper {
    flex-grow: 1;
}

* {
    box-sizing: border-box;
}

.banner-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}

.banner-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-content-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

main {
    flex-grow: 1;
    background-color: transparent;
}

.button {
    position: absolute;
    z-index: 10;
    --stone-50: #fafaf9;
    --stone-800: #292524;
    --yellow-400: #a04f94;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    line-height: 1;
    padding: 1px;
    outline: 2px solid transparent;
    outline-offset: 5px;
    border-radius: 9999px;
    background-color: var(--stone-800);
    color: var(--stone-800);
    transition: transform 300ms ease, box-shadow 150ms ease;
    text-align: center;
    box-shadow: 0.5px 0.5px 0 0 var(--stone-800), 1px 1px 0 0 var(--stone-800), 1.5px 1.5px 0 0 var(--stone-800), 2px 2px 0 0 var(--stone-800), 2.5px 2.5px 0 0 var(--stone-800), 3px 3px 0 0 var(--stone-800), 0 0 0 2px var(--stone-50), 0.5px 0.5px 0 2px var(--stone-50), 1px 1px 0 2px var(--stone-50), 1.5px 1.5px 0 2px var(--stone-50), 2px 2px 0 2px var(--stone-50), 2.5px 2.5px 0 2px var(--stone-50), 3px 3px 0 2px var(--stone-50), 3.5px 3.5px 0 2px var(--stone-50), 4px 4px 0 2px var(--stone-50);
}

    .button:hover {
        box-shadow: 0 0 0 2px var(--stone-50);
    }

    .button:active,
    .button:focus-visible {
        outline-color: var(--yellow-400);
    }

    .button:focus-visible {
        outline-style: dashed;
    }

    .button > div {
        position: relative;
        pointer-events: none;
        background-color: var(--yellow-400);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 9999px;
    }

        .button > div::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 9999px;
            opacity: 0.5;
            background-size: 8px 8px;
        }

        .button > div > span {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.25rem;
            gap: 0.25rem;
            filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.25));
            color: white;
        }

            .button > div > span:active {
                transform: translateY(2px);
            }

@keyframes dots {
    0% {
        background-position: 0 0, 4px 4px;
    }

    100% {
        background-position: 8px 0, 12px 4px;
    }
}

:root {
    --btn-small-size-mobile: 0.75rem;
    --btn-small-size-tablet: 0.7rem;
    --btn-small-size-laptop: 0.5rem;
    --btn-small-size-large-laptop: 0.8rem;
    --btn-small-size-desktop: 1.1rem;
    --btn-large-size-mobile: 0.9rem;
    --btn-large-size-tablet: 0.5rem;
    --btn-large-size-laptop: 0.7rem;
    --btn-large-size-large-laptop: 1rem;
    --btn-large-size-desktop: 1.4rem;
}

.button-ust-sag {
    top: 19%;
    left: 78%;
    font-size: var(--btn-small-size-mobile);
    transform: translate(-50%, -2px) rotateY(-5deg) rotateX(5deg);
    display: none;
    text-decoration: none !important;
}

    .button-ust-sag:hover {
        transform: translate(-50%, 0px) rotateY(-5deg) rotateX(5deg) scale(0.98);
    }

.button-alt-buyuk {
    top: 63%;
    left: 23%;
    font-size: var(--btn-large-size-mobile);
    transform: translate(-50%, -2px) rotateY(10deg) rotateZ(-1deg);
    background: transparent;
    padding: 0;
    box-shadow: none !important;
    text-decoration: none !important;
}

    .button-alt-buyuk:hover {
        transform: translate(-50%, 0px) rotateY(10deg) rotateZ(-1deg) scale(0.98);
    }

    .button-alt-buyuk > div {
        filter: drop-shadow(-3px 3px 1px rgba(0, 0, 0, 0.3));
        transition: filter 300ms ease, transform 300ms ease;
    }

    .button-alt-buyuk:hover > div {
        filter: drop-shadow(-2px 2px 1px rgba(0, 0, 0, 0.35));
    }

@media (min-width: 768px) {
    .button-alt-buyuk {
        font-size: var(--btn-large-size-tablet);
        transform: translate(-50%, -4px) rotateY(12deg) rotateX(1deg) rotateZ(-2deg);
    }

        .button-alt-buyuk:hover {
            transform: translate(-50%, -2px) rotateY(12deg) rotateX(1deg) rotateZ(-2deg) scale(0.98);
        }

        .button-alt-buyuk > div {
            filter: drop-shadow(-4px 4px 2px rgba(0, 0, 0, 0.35));
        }

        .button-alt-buyuk:hover > div {
            filter: drop-shadow(-3px 3px 1px rgba(0, 0, 0, 0.4));
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .button-ust-sag {
        top: 18% !important;
        left: 78%;
        font-size: var(--btn-small-size-laptop);
        display: block !important;
        transform: translate(-50%, -4px) rotateY(-16deg) rotateX(15deg) rotateZ(-2deg);
        box-shadow: 0.5px 0.5px 0 0 var(--stone-800), 1px 1px 0 0 var(--stone-800), 1.5px 1.5px 0 0 var(--stone-800), 2px 2px 0 0 var(--stone-800), 0 0 0 2px var(--stone-50), 0.5px 0.5px 0 2px var(--stone-50), 1px 1px 0 2px var(--stone-50), 1.5px 1.5px 0 2px var(--stone-50), 2px 2px 0 2px var(--stone-50), 2.5px 2.5px 0 2px var(--stone-50);
    }

        .button-ust-sag:hover {
            transform: translate(-50%, -2px) rotateY(-16deg) rotateX(15deg) rotateZ(-2deg) scale(0.98);
            box-shadow: 0 0 0 2px var(--stone-50);
        }

    .button-alt-buyuk {
        font-size: var(--btn-large-size-laptop);
        transform: translate(-50%, -4px) rotateY(15deg) rotateX(1deg) rotateZ(-2deg);
    }

        .button-alt-buyuk:hover {
            transform: translate(-50%, -2px) rotateY(15deg) rotateX(1deg) rotateZ(-2deg) scale(0.98);
        }

        .button-alt-buyuk > div {
            filter: drop-shadow(-5px 5px 2px rgba(0, 0, 0, 0.35));
        }

        .button-alt-buyuk:hover > div {
            filter: drop-shadow(-4px 4px 1px rgba(0, 0, 0, 0.4));
        }
}

@media (min-width: 1200px) and (max-width: 1449px) {
    .button-ust-sag {
        top: 18% !important;
        left: 78%;
        font-size: var(--btn-small-size-large-laptop);
        display: block !important;
        transform: translate(-50%, -4px) rotateY(-16deg) rotateX(15deg) rotateZ(-2deg);
        box-shadow: 0.5px 0.5px 0 0 var(--stone-800), 1px 1px 0 0 var(--stone-800), 1.5px 1.5px 0 0 var(--stone-800), 2px 2px 0 0 var(--stone-800), 0 0 0 2px var(--stone-50), 0.5px 0.5px 0 2px var(--stone-50), 1px 1px 0 2px var(--stone-50), 1.5px 1.5px 0 2px var(--stone-50), 2px 2px 0 2px var(--stone-50), 2.5px 2.5px 0 2px var(--stone-50);
    }

        .button-ust-sag:hover {
            transform: translate(-50%, -2px) rotateY(-16deg) rotateX(15deg) rotateZ(-2deg) scale(0.98);
            box-shadow: 0 0 0 2px var(--stone-50);
        }

    .button-alt-buyuk {
        font-size: var(--btn-large-size-large-laptop);
        transform: translate(-50%, -4px) rotateY(15deg) rotateX(1deg) rotateZ(-2deg);
    }

        .button-alt-buyuk:hover {
            transform: translate(-50%, -2px) rotateY(15deg) rotateX(1deg) rotateZ(-2deg) scale(0.98);
        }

        .button-alt-buyuk > div {
            filter: drop-shadow(-5px 5px 2px rgba(0, 0, 0, 0.35));
        }

        .button-alt-buyuk:hover > div {
            filter: drop-shadow(-4px 4px 1px rgba(0, 0, 0, 0.4));
        }
}

@media (min-width: 1450px) {
    .button-ust-sag {
        font-size: var(--btn-small-size-desktop);
        display: block !important;
        transform: translate(-50%, -4px) rotateY(-12deg) rotateX(0deg) rotateZ(1deg);
        box-shadow: initial;
    }

        .button-ust-sag:hover {
            transform: translate(-50%, -2px) rotateY(-12deg) rotateX(0deg) rotateZ(1deg) scale(0.98);
        }

    .button-alt-buyuk {
        font-size: var(--btn-large-size-desktop);
        transform: translate(-50%, -4px) rotateY(15deg) rotateX(1deg) rotateZ(-2deg);
    }

        .button-alt-buyuk > div {
            filter: drop-shadow(-5px 5px 2px rgba(0, 0, 0, 0.35));
        }

    .banner-container {
        margin-top: -50px;
    }
}
/* Mobil banner alanını, butonu konumlandırmak için hazırlama */
.mobile-view {
    position: relative; /* İçindeki absolute konumlandırılmış butona referans olacak */
}

/* Sadece mobilde görünecek yeni butonun stilleri */
.mobile-only-button {
    /* Konumlandırma Stilleri */
    position: absolute; /* Konumu, üst element olan .mobile-view'a göre ayarlanacak */
    bottom: 70%; /* Alttan %12 yukarıda (Değeri değiştirerek ince ayar yapabilirsiniz) */
    left: 50%; /* Soldan %50 içeride */
    transform: translateX(-50%); /* Butonu yatayda tam ortalamak için */
    z-index: 5; /* Butonun resmin üzerinde kalmasını sağlar */
    width: 80%; /* Ekran genişliğinin %80'i kadar (isteğe bağlı) */
    max-width: 200px; /* Butonun çok fazla büyümesini engeller (isteğe bağlı) */
    /* Sizin Verdiğiniz Görünüm Stilleri */
    display: inline-block; /* a etiketini blok gibi davrandırmak için */
    text-decoration: none !important; /* a etiketinin alt çizgisini kaldırmak için */
    text-align: center; /* Yazıyı ortalamak için */
    padding: 10px 15px; /* 40px yerine 20px daha orantılı olabilir */
    background: linear-gradient(145deg, #ff6e00, #d17e3f);
    font-size: 0.7rem;
    font-weight: 900;
    border: 0;
    border-radius: 30px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
    box-shadow: inset 0 -15px 10px rgba(0,0,0,.3), 0 10px 5px rgba(0,0,0,.3);
    transition: transform 0.2s ease; /* Butona basma efekti için */
}

    .mobile-only-button:active {
        transform: translateX(-50%) scale(0.98); /* Tıklama anında hafifçe küçülme efekti */
    }
/* ========================================= */
/* EN KÜÇÜK MOBİL EKRANLAR İÇİN BUTON AYARI */
/* ========================================= */

@media (max-width: 400px) {
    .mobile-only-button {
        font-size: 0.7rem; /* Yazıyı daha da küçültelim */
        font-weight: 700; /* Çok küçük ekranda daha okunaklı olabilir */
        padding: 8px 14px; /* Butonun iç boşluğunu azaltarak küçültelim */
        max-width: 180px; /* Butonun maksimum genişliğini sınırlayalım */
        /* Gerekirse konumunu da güncelleyebilirsiniz */
        /* bottom: 75%; */
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #1e293b;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.geometric-shape {
    position: absolute;
    opacity: 0.08;
    animation: float 12s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: #818cf8;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 10%;
    left: 5%;
    animation-duration: 8s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #60a5fa;
    border-radius: 50%;
    top: 20%;
    right: 5%;
    animation-duration: 11s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #a78bfa;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    bottom: 15%;
    left: 10%;
    animation-duration: 9s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: #38bdf8;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 5%;
    right: 15%;
    animation-duration: 14s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: #f472b6;
    border-radius: 50%;
    top: 50%;
    left: 2%;
    animation-duration: 10s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    background: #fbbf24;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 75%;
    right: 10%;
    animation-duration: 12s;
}

.shape-7 {
    width: 130px;
    height: 130px;
    background: #34d399;
    clip-path: polygon(50% 0%, 83% 25%, 83% 75%, 50% 100%, 17% 75%, 17% 25%);
    bottom: 60%;
    left: 40%;
    animation-duration: 7s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(20deg) scale(1.05);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .glass-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.btn-gradient {
    background-image: linear-gradient(to right, #4f46e5, #7c3aed);
    border: none;
}

.premium-glow {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
}

.navbar-sticky {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-section {
    min-height: 100vh;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-indigo {
    color: #4f46e5 !important;
}

.bg-gradient-blue {
    background-image: linear-gradient(to bottom right, #3b82f6, #60a5fa);
}

.bg-gradient-indigo {
    background-image: linear-gradient(to bottom right, #6366f1, #818cf8);
}

.bg-gradient-purple {
    background-image: linear-gradient(to bottom right, #8b5cf6, #a78bfa);
}

.premium-card-bg {
    background-image: linear-gradient(to bottom right, #4f46e5, #3b82f6);
}

.cta-bg {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
}
/* Base styling for the store button */
.store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle; /* Dikey hizalamayı düzeltir */
}

    .store-btn:hover {
        transform: scale(1.05); /* Hover durumunda hafif büyüme efekti */
    }

    .store-btn img {
        width: 100%;
        height: 100%;
        /* 'contain' görselin en-boy oranını koruyarak container'a sığmasını sağlar */
        object-fit: contain;
    }

/* Size for the Google Play button */
.google-play-btn {
    width: 200px;
    height: 67px;
}

.step-circle {
    background-color: #e0e7ff;
    color: #3730a3;
}
/* New Title Colors */
.text-title-1 {
    color: #20B2AA !important;
}
/* LightSeaGreen */
.text-title-2 {
    color: #FF7F50 !important;
}
/* Coral */
.text-title-3 {
    color: #9370DB !important;
}
/* MediumPurple */
.text-title-4 {
    color: #6495ED !important;
}
/* CornflowerBlue */
.text-title-5 {
    color: #DAA520 !important;
}
/* GoldenRod */
.text-title-6 {
    color: #DB7093 !important;
}
/* PaleVioletRed */

/* General Body Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Title Styling */
.text-title-6 {
    font-weight: 700;
    color: #1e293b;
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.35s ease;
    border: 1px solid #e5e7eb;
}

    .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

/* Title Styling */
.text-title-6 {
    font-weight: 700;
    color: #1e293b;
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.35s ease;
    border: 1px solid #e5e7eb;
}

    .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

/* Carousel Container: Hides overflowing parts */
.carousel-container {
    overflow: hidden;
}

/* --- Carousel Customization for Multi-Item Display --- */
/* Always ensure our custom carousel items remain visible (override Bootstrap) */
#bilsemCarousel .carousel-inner {
    display: flex !important;
    width: calc(100% * 10 / 2) !important; /* Mobile: Container to fit all 10 cards when showing 2 */
}

#bilsemCarousel .carousel-item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex: 0 0 calc(100% / 10) !important; /* Mobile: Each card 10% of container (20% of viewport) */
    max-width: calc(100% / 10) !important;
    margin-right: 0 !important;
    padding: 0 0.5rem !important; /* Padding between cards */
}

/* Applied only on tablets and larger screens (768px and up) */
@media (min-width: 768px) {
    #bilsemCarousel .carousel-inner {
        display: flex !important;
        width: calc(100% * 10 / 3) !important; /* Desktop: Container width to fit all 10 cards when showing 3 */
    }

    #bilsemCarousel .carousel-item {
        flex: 0 0 calc(100% / 10) !important; /* Desktop: Each card takes 1/10 of total container (3.33% of viewport) */
        max-width: calc(100% / 10) !important;
        margin-right: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 0.75rem; /* Add spacing between cards */
    }
}

/* On mobile devices, add some horizontal padding */
@media (max-width: 767.98px) {
    /* Mobile: show 2 cards side by side */
    #bilsemCarousel .carousel-inner {
        display: flex !important;
        transition: transform 0.6s cubic-bezier(.4,0,.2,1);
        will-change: transform;
        width: calc(100% * 10 / 2) !important; /* Mobile: Container width to fit all 10 cards when showing 2 */
        overflow: hidden;
    }
    #bilsemCarousel .carousel-item {
        flex: 0 0 calc(100% / 10) !important; /* Each card: 10% of total container (20% of viewport for 2 cards) */
        max-width: calc(100% / 10) !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-right: 0 !important;
        padding: 0 0.5rem !important; /* Padding between cards */
    }
    
    #bilsemCarousel .carousel-item:last-child {
        margin-right: 0 !important; /* Remove margin from last card */
    }
}


/* Control Buttons Position and Style */
.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 5;
    position: absolute; /* Required for button positioning */
    transition: all 0.3s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: #0d6efd;
    }

        .carousel-control-prev:hover .ri-arrow-left-s-line,
        .carousel-control-next:hover .ri-arrow-right-s-line {
            color: white;
        }

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Button Icon Color and Size */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* Remove Bootstrap's default icon */
    width: auto;
    height: auto;
}

    .carousel-control-prev-icon i,
    .carousel-control-next-icon i {
        color: #0d6efd; /* Bootstrap's default blue color */
        font-size: 2rem;
        line-height: 1;
        transition: color 0.3s ease;
    }

/* Thumbnail sizing - larger and responsive */
#thumbnailContainer .thumbnail {
    width: 64px !important;
    height: 56px !important; /* slightly increased height */
}

@media (max-width: 575.98px) {
    #thumbnailContainer .thumbnail {
        width: 56px !important;
        height: 50px !important; /* slightly increased height */
    }
}

/* Thumbnail nav container: remove vertical scrollbars */
#thumbnailContainer {
    overflow-y: hidden;
}

/* ========================================= */
/* PRICING CARD STYLES */
/* ========================================= */

/* Pricing Card Base Styles */
.pricing-card {
    padding: 0;
    border: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Default Pricing Card */
.pricing-card-default {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
}

.pricing-card-default:hover {
    border-color: #0d6efd;
}

/* Highlighted Pricing Card */
.pricing-card-highlighted {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    position: relative;
    overflow: hidden;
}

.pricing-card-highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 50%, rgba(217, 70, 239, 0.9) 100%);
    z-index: 1;
}

.pricing-card-highlighted .pricing-card-image,
.pricing-card-highlighted .pricing-card-content {
    position: relative;
    z-index: 2;
}

/* Pricing Card Content */
.pricing-card-image {
    padding: 2rem 1.5rem 1rem 1.5rem;
}

.pricing-card-content {
    padding: 0 1.5rem 2rem 1.5rem;
}

/* Typography */
.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
}

.pricing-description {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.pricing-features {
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features li {
    padding: 0.3rem 0;
}

/* Pricing Button Styles */
.pricing-btn {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card-default .pricing-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
}

.pricing-card-default .pricing-btn:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.pricing-card-highlighted .pricing-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #6366f1;
}

.pricing-card-highlighted .pricing-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* KEŞİF PAKETİ Styles */
.pricing-card-kesif {
    background: #a9fcff;
    border: 2px solid #88d4d8;
}

.pricing-card-kesif:hover {
    border-color: #6bb6bb;
}

.pricing-card-kesif .pricing-btn {
    background: #ffffff;
    color: #000000;
    border: 1px solid #e0e0e0;
}

.pricing-card-kesif .pricing-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* GELİŞİM PAKETİ Styles */
.pricing-card-gelisim {
    background: #e5e0dc;
    border: 2px solid #d0c7bf;
}

.pricing-card-gelisim:hover {
    border-color: #b8a99d;
}

.pricing-card-gelisim .pricing-btn {
    background: #18385d;
    color: #9cbba5;
    border: none;
}

.pricing-card-gelisim .pricing-btn:hover {
    background: #0f2a44;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 56, 93, 0.3);
}

/* ZİRVE PAKETİ Styles */
.pricing-card-zirve {
    background: #ffde59;
    border: 2px solid #e6c64a;
}

.pricing-card-zirve:hover {
    border-color: #ccae3b;
}

.pricing-card-zirve .pricing-btn {
    background: #b7f26c;
    color: #000000;
    border: none;
}

.pricing-card-zirve .pricing-btn:hover {
    background: #a5e058;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 242, 108, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 1.6rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-card-image {
        padding: 1.5rem 1rem 0.5rem 1rem;
    }
    
    .pricing-card-content {
        padding: 0 1rem 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-features {
        font-size: 0.9rem;
    }
}
