        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4e73df;
            --primary-dark: #224abe;
            --primary-light: #6f8ce8;
            --secondary: #858796;
            --success: #1cc88a;
            --info: #36b9cc;
            --warning: #f6c23e;
            --danger: #e74a3b;
            --dark: #5a5c69;
            --darker: #3a3b45;
            --light: #f8f9fc;
            --white: #ffffff;
            --shadow: 0 0.15rem 1.75rem 0 rgba(58,59,69,.15);
            --shadow-lg: 0 0.5rem 2rem 0 rgba(58,59,69,.2);
        }

        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background-color: var(--light);
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hide {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.3);
            border-top: 5px solid #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Header - Pirus Style */
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: var(--shadow-lg);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: inline-block;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo img {
            height: 45px;
            width: auto;
            vertical-align: middle;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.4rem;
            align-items: center;
        }

        .nav-links a {
            white-space: nowrap;
        }

        .nav-links .cta-button {
            padding: 0.55rem 1.2rem;
            font-size: 0.9rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #ffffff !important;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(78, 115, 223, 0.4);
            color: #ffffff !important;
        }

        .cta-button::after {
            display: none;
        }

        /* Hero Section - Pirus Gradient Style */
        .hero {
            background: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
            padding: 140px 5% 100px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            min-height: 650px;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/hero-slider.png') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: var(--light);
            border-radius: 50% 50% 0 0;
            transform: scaleX(1.5);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s both;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .demo-button {
            background: var(--success);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(28, 200, 138, 0.3);
        }

        .demo-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(28, 200, 138, 0.4);
            background: #17a673;
        }

        .hero .cta-button {
            background: rgba(255,255,255,0.15);
            border: 2px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
        }

        .hero .cta-button:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.8);
        }

        /* Features Section */
        .features {
            padding: 100px 5%;
            background: var(--light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--darker);
            position: relative;
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            color: var(--secondary);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--success));
            margin: 1rem auto;
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--success));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.75rem;
            color: var(--white);
            transition: transform 0.6s ease;
            box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
        }

        .feature-icon.success { background: linear-gradient(135deg, var(--success) 0%, #13855c 100%); box-shadow: 0 4px 15px rgba(28, 200, 138, 0.3); }
        .feature-icon.info { background: linear-gradient(135deg, var(--info) 0%, #258391 100%); box-shadow: 0 4px 15px rgba(54, 185, 204, 0.3); }
        .feature-icon.warning { background: linear-gradient(135deg, var(--warning) 0%, #dda20a 100%); box-shadow: 0 4px 15px rgba(246, 194, 62, 0.3); }
        .feature-icon.danger { background: linear-gradient(135deg, var(--danger) 0%, #be2617 100%); box-shadow: 0 4px 15px rgba(231, 74, 59, 0.3); }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--darker);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--secondary);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Screenshot Section */
        .screenshots {
            padding: 100px 5%;
            background: var(--white);
        }

        .screenshot-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .screenshot {
            background: var(--light);
            border-radius: 16px;
            padding: 1rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .screenshot:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .screenshot img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            display: block;
        }

        .screenshot h4 {
            margin-top: 1rem;
            color: var(--darker);
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
        }

        /* Trust Badges Section */
        .trust-badges {
            padding: 50px 5%;
            background: var(--white);
            border-top: 1px solid #e3e6f0;
            border-bottom: 1px solid #e3e6f0;
        }

        .badges-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--dark);
            font-weight: 600;
            padding: 0.75rem 1.25rem;
            background: var(--light);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .badge-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .badge-item i {
            font-size: 1.25rem;
            color: var(--primary);
        }

        /* Stats Section - Pirus Style */
        .stats-section {
            background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
            color: white;
            padding: 80px 5%;
            position: relative;
        }

        .stats-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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
            background-size: 100px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .stat-box p {
            opacity: 0.9;
            font-weight: 600;
        }

        /* Kimler İçin Section */
        .for-who {
            padding: 100px 5%;
            background: var(--white);
        }

        .for-who .features-grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .for-who .feature-card {
            padding: 1.5rem;
        }

        .for-who .feature-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .for-who .feature-card h3 {
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 5%;
            background: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: 1px solid transparent;
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-item.active {
            border-color: var(--primary);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--darker);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--secondary);
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 300px;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 5%;
            background: var(--white);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.75rem;
            max-width: 1080px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
            background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
        }

        .pricing-card.featured::before {
            content: 'Popüler';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0.35rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--darker);
            font-weight: 700;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .price span {
            font-size: 1rem;
            color: var(--secondary);
            font-weight: 600;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--dark);
            position: relative;
            padding-left: 2rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
            background: rgba(28, 200, 138, 0.1);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .pricing-card .cta-button {
            display: inline-block;
            width: 100%;
            padding: 1rem;
            margin-top: auto;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: 12px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 20px rgba(78, 115, 223, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 998;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(78, 115, 223, 0.5);
        }

        /* Cookie Notice */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--darker);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 997;
            flex-wrap: wrap;
        }

        .cookie-notice.show {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 800px;
            font-size: 0.9rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: var(--primary);
            color: white;
        }

        .cookie-accept:hover {
            background: var(--primary-dark);
        }

        .cookie-decline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .cookie-decline:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Footer - Pirus Style */
        footer {
            background: linear-gradient(180deg, #3a3b45 0%, #2d2d37 100%);
            color: var(--white);
            padding: 60px 5% 30px;
            text-align: center;
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom a {
            color: var(--primary-light);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Modal Styles - Pirus Style */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
        }

        .modal-dialog {
            position: relative;
            width: auto;
            margin: 50px auto;
            max-width: 450px;
        }

        .modal-dialog-centered {
            display: flex;
            align-items: center;
            min-height: calc(100% - 100px);
        }

        .modal-content {
            background: #fff;
            border-radius: 16px;
            border: none;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        .modal-header {
            background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
            color: white;
            padding: 1.75rem;
            border: none;
            position: relative;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            margin: 0;
        }

        .btn-close-white {
            filter: brightness(0) invert(1);
            opacity: 0.8;
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .btn-close-white:hover {
            opacity: 1;
        }

        .modal-body {
            padding: 2rem;
        }

        .form-label {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-control {
            width: 100%;
            background: var(--light);
            border: 2px solid #e3e6f0;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.2s;
            box-sizing: border-box;
            font-family: inherit;
        }

        .form-control:focus {
            background: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.15);
            outline: none;
        }

        .form-control::placeholder {
            color: #b7b9cc;
        }

        .mb-3 {
            margin-bottom: 1.25rem !important;
        }

        .text-muted {
            background: rgba(28, 200, 138, 0.1);
            color: var(--success);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .modal-footer {
            padding: 1.5rem 2rem;
            background: var(--light);
            border: none;
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
        }

        .modal-footer .btn {
            padding: 0.75rem 1.5rem;
            font-weight: 700;
            font-size: 0.875rem;
            border-radius: 8px;
            border: none;
            transition: all 0.2s;
            min-width: 100px;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-secondary {
            background: #e3e6f0;
            color: var(--dark);
        }

        .btn-secondary:hover {
            background: #d1d3e2;
            color: var(--darker);
        }

        .btn-success {
            background: linear-gradient(135deg, var(--success) 0%, #13855c 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(28, 200, 138, 0.3);
        }

        .btn-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(28, 200, 138, 0.4);
        }

        .modal-backdrop {
            z-index: 9998;
        }

        .modal.show {
            display: block;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow-lg);
                padding: 1rem 0 1.5rem;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 0;
            }

            .nav-links a {
                display: block;
                padding: 0.7rem 1rem;
            }

            .nav-links .cta-button {
                display: inline-block;
                margin-top: 0.5rem;
            }

            .hero {
                padding: 120px 5% 80px;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

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

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: none;
            }

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

            .modal-dialog {
                margin: 1rem;
                max-width: calc(100% - 2rem);
            }

            .modal-footer {
                flex-direction: column-reverse;
            }

            .modal-footer .btn {
                width: 100%;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 26px;
                bottom: 20px;
                left: 20px;
            }

            .scroll-top {
                right: 20px;
                bottom: 20px;
                width: 45px;
                height: 45px;
            }

            .badges-container {
                gap: 1rem;
            }

            .badge-item {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
            }

            .cookie-notice {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }

            .stats-section .stat-number {
                font-size: 2.5rem;
            }
        }
		
.old-price {
    text-decoration: line-through !important;
    color: #e74a3b !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-right: 0.75rem;
}
		

/* ============================================
   Çok sayfalı yapı - ortak bileşenler
   ============================================ */

/* Aktif menü öğesi */
.nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after {
    width: 100%;
}

/* Satın Al butonu (yeşil CTA) */
.cta-button.cta-buy {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
    box-shadow: 0 4px 15px rgba(28, 200, 138, 0.3);
}
.cta-button.cta-buy:hover {
    box-shadow: 0 6px 20px rgba(28, 200, 138, 0.45);
}

/* Alt sayfa başlık alanı (page hero) */
.page-hero {
    background: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
    padding: 150px 5% 70px;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.95;
}
.page-hero .breadcrumb-nav {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    opacity: 0.85;
}
.page-hero .breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
}
.page-hero .breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* Genel içerik bölümü */
.page-section {
    padding: 70px 5%;
}
.page-section .container {
    max-width: 1140px;
    margin: 0 auto;
}
.page-section.alt {
    background: var(--light, #f8f9fc);
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* Footer ızgara */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: left;
    margin-bottom: 1rem;
}
.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 0.7rem;
}
.footer-menu a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-menu a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-col .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    justify-content: flex-start;
}
footer {
    text-align: left;
}
.footer-bottom {
    text-align: center;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 2.1rem;
    }
}