        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f5f5f5;
            --bg-card: #ffffff;
            --bg-card-hover: #f9f9f9;
            --accent: #95BC0A;
            --accent-light: #a8d10b;
            --accent-dark: #7fa008;
            --text-primary: #1a1a1a;
            --text-secondary: #555555;
            --text-muted: #888888;
            --border: #e0e0e0;
            --gradient-accent: linear-gradient(135deg, #95BC0A 0%, #a8d10b 100%);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 52px;
        }

        /* Navbar */
        .navbar {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
            margin-top: 38px;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #000;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -1px;
        }

        .logo-text span {
            color: var(--accent);
        }

        .logo-arrow {
            color: var(--accent);
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links > li > a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links > li > a:hover {
            color: var(--accent);
        }

        /* Dropdown */
        .nav-links > li.has-dropdown > a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .nav-links > li.has-dropdown > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .nav-links > li.has-dropdown.active > a::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            min-width: 220px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            z-index: 1000;
            padding: 8px 0;
        }

        .nav-links > li.has-dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: var(--bg-secondary);
            color: var(--accent);
        }

        .dropdown-menu a i {
            width: 20px;
            text-align: center;
            font-size: 1rem;
            color: var(--accent);
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--border);
            color: var(--text-primary);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: #000;
            font-weight: 700;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(149, 188, 10, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 20px 2rem 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(149, 188, 10, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(149, 188, 10, 0.1);
            border: 1px solid rgba(149, 188, 10, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .hero-badge i {
            font-size: 0.75rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .hero-image {
            position: relative;
        }

        .hero-mockup {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border);
        }

        .floating-card {
            position: absolute;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .floating-icon.green { background: rgba(149, 188, 10, 0.2); color: var(--accent); }
        .floating-icon.blue { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
        .floating-icon.purple { background: rgba(139, 92, 246, 0.2); color: #8b5cf6; }

        /* Sipariş Geldi Slider Animasyonu */
        .order-notification-card {
            padding: 1rem 1.25rem;
        }

        .order-notification-card .order-text-slider {
            position: relative;
            height: 38px;
            min-width: 120px;
        }

        .order-notification-card .order-text-slide {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            white-space: nowrap;
        }

        .order-notification-card .order-text-slide:nth-child(1) { animation: textSlide1 9s ease-in-out infinite; }
        .order-notification-card .order-text-slide:nth-child(2) { animation: textSlide2 9s ease-in-out infinite; }
        .order-notification-card .order-text-slide:nth-child(3) { animation: textSlide3 9s ease-in-out infinite; }

        @keyframes textSlide1 {
            0%, 5% { opacity: 0; }
            8%, 30% { opacity: 1; }
            33%, 100% { opacity: 0; }
        }

        @keyframes textSlide2 {
            0%, 33% { opacity: 0; }
            36%, 63% { opacity: 1; }
            66%, 100% { opacity: 0; }
        }

        @keyframes textSlide3 {
            0%, 66% { opacity: 0; }
            69%, 96% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* AI Kargo Slider Animasyonu */
        .ai-kargo-card {
            padding: 1rem 1.25rem;
        }

        .ai-kargo-card .ai-kargo-slider {
            position: relative;
            height: 38px;
            min-width: 140px;
        }

        .ai-kargo-card .ai-kargo-slide {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            white-space: nowrap;
        }

        .ai-kargo-card .ai-kargo-slide:nth-child(1) { animation: kargoSlide1 12s ease-in-out infinite; }
        .ai-kargo-card .ai-kargo-slide:nth-child(2) { animation: kargoSlide2 12s ease-in-out infinite; }
        .ai-kargo-card .ai-kargo-slide:nth-child(3) { animation: kargoSlide3 12s ease-in-out infinite; }
        .ai-kargo-card .ai-kargo-slide:nth-child(4) { animation: kargoSlide4 12s ease-in-out infinite; }

        @keyframes kargoSlide1 {
            0%, 3% { opacity: 0; }
            5%, 22% { opacity: 1; }
            25%, 100% { opacity: 0; }
        }

        @keyframes kargoSlide2 {
            0%, 25% { opacity: 0; }
            28%, 47% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        @keyframes kargoSlide3 {
            0%, 50% { opacity: 0; }
            53%, 72% { opacity: 1; }
            75%, 100% { opacity: 0; }
        }

        @keyframes kargoSlide4 {
            0%, 75% { opacity: 0; }
            78%, 97% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* WMS Slider Animasyonu */
        .wms-card {
            padding: 1rem 1.25rem;
        }

        .wms-card .wms-slider {
            position: relative;
            height: 38px;
            min-width: 150px;
        }

        .wms-card .wms-slide {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            white-space: nowrap;
        }

        .wms-card .wms-slide:nth-child(1) { animation: wmsSlide1 15s ease-in-out infinite; }
        .wms-card .wms-slide:nth-child(2) { animation: wmsSlide2 15s ease-in-out infinite; }
        .wms-card .wms-slide:nth-child(3) { animation: wmsSlide3 15s ease-in-out infinite; }
        .wms-card .wms-slide:nth-child(4) { animation: wmsSlide4 15s ease-in-out infinite; }
        .wms-card .wms-slide:nth-child(5) { animation: wmsSlide5 15s ease-in-out infinite; }

        @keyframes wmsSlide1 {
            0%, 2% { opacity: 0; }
            4%, 18% { opacity: 1; }
            20%, 100% { opacity: 0; }
        }

        @keyframes wmsSlide2 {
            0%, 20% { opacity: 0; }
            22%, 38% { opacity: 1; }
            40%, 100% { opacity: 0; }
        }

        @keyframes wmsSlide3 {
            0%, 40% { opacity: 0; }
            42%, 58% { opacity: 1; }
            60%, 100% { opacity: 0; }
        }

        @keyframes wmsSlide4 {
            0%, 60% { opacity: 0; }
            62%, 78% { opacity: 1; }
            80%, 100% { opacity: 0; }
        }

        @keyframes wmsSlide5 {
            0%, 80% { opacity: 0; }
            82%, 98% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Muhasebe Slider Animasyonu */
        .muhasebe-card {
            padding: 1rem 1.25rem;
        }

        .muhasebe-card .muhasebe-slider {
            position: relative;
            height: 38px;
            min-width: 140px;
        }

        .muhasebe-card .muhasebe-slide {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            white-space: nowrap;
        }

        .muhasebe-card .muhasebe-slide:nth-child(1) { animation: muhasebeSlide1 15s ease-in-out infinite; }
        .muhasebe-card .muhasebe-slide:nth-child(2) { animation: muhasebeSlide2 15s ease-in-out infinite; }
        .muhasebe-card .muhasebe-slide:nth-child(3) { animation: muhasebeSlide3 15s ease-in-out infinite; }
        .muhasebe-card .muhasebe-slide:nth-child(4) { animation: muhasebeSlide4 15s ease-in-out infinite; }
        .muhasebe-card .muhasebe-slide:nth-child(5) { animation: muhasebeSlide5 15s ease-in-out infinite; }

        @keyframes muhasebeSlide1 {
            0%, 2% { opacity: 0; }
            4%, 18% { opacity: 1; }
            20%, 100% { opacity: 0; }
        }

        @keyframes muhasebeSlide2 {
            0%, 20% { opacity: 0; }
            22%, 38% { opacity: 1; }
            40%, 100% { opacity: 0; }
        }

        @keyframes muhasebeSlide3 {
            0%, 40% { opacity: 0; }
            42%, 58% { opacity: 1; }
            60%, 100% { opacity: 0; }
        }

        @keyframes muhasebeSlide4 {
            0%, 60% { opacity: 0; }
            62%, 78% { opacity: 1; }
            80%, 100% { opacity: 0; }
        }

        @keyframes muhasebeSlide5 {
            0%, 80% { opacity: 0; }
            82%, 98% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Rapor Mini Chart */
        .rapor-card {
            padding: 1rem 1.25rem;
        }

        .rapor-card .mini-chart {
            width: 100px;
            height: 25px;
            overflow: hidden;
            margin-top: 4px;
        }

        .rapor-card .chart-line {
            width: 200px;
            height: 25px;
            animation: chartScroll 4s linear infinite;
        }

        .rapor-card .chart-line polyline {
            fill: none;
            stroke: #8b5cf6;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @keyframes chartScroll {
            0% { transform: translateX(0); }
            50% { transform: translateX(-40px); }
            100% { transform: translateX(0); }
        }

        .floating-text {
            font-size: 0.85rem;
        }

        .floating-text strong {
            display: block;
            font-weight: 600;
        }

        .floating-text span {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        /* Features Section */
        .section {
            padding: 100px 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(149, 188, 10, 0.1);
            border: 1px solid rgba(149, 188, 10, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-title span {
            color: var(--accent);
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        /* Modules Grid */
        .modules-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .module-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .module-card:hover {
            transform: translateY(-5px);
            border-color: rgba(149, 188, 10, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

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

        .module-icon {
            width: 56px;
            height: 56px;
            background: rgba(149, 188, 10, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 1.25rem;
        }

        .module-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .module-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .module-features {
            list-style: none;
        }

        .module-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .module-features li i {
            color: var(--accent);
            font-size: 0.75rem;
        }

        /* Integration Section */
        .integrations {
            background: var(--bg-secondary);
        }

        .integration-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .integration-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .integration-item:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .integration-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            padding: 12px;
        }

        .integration-icon img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .integration-name {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

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

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .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;
        }

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

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(149, 188, 10, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        /* Footer */
        .footer {
            background: var(--bg-primary);
            padding: 60px 2rem 30px;
            border-top: 1px solid var(--border);
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin-top: 1rem;
            font-size: 0.95rem;
            max-width: 300px;
        }

        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-title { font-size: 2.5rem; }
            .hero-description { margin-left: auto; margin-right: auto; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-image { order: -1; max-width: 600px; margin: 0 auto; }
            .floating-card { display: none; }
            .modules-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .navbar-container { padding: 0 1rem; }
            .nav-links { display: none; }
            .hero { padding: 100px 1rem 60px; }
            .hero-title { font-size: 2rem; }
            .section-title { font-size: 2rem; }
            .modules-grid { grid-template-columns: 1fr; }
            .cta-title { font-size: 2rem; }
            .footer-top { grid-template-columns: 1fr; text-align: center; }
            .footer-brand p { max-width: 100%; }
            .footer-bottom { flex-direction: column; gap: 1rem; }
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-cta { display: none; }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        /* Contact Popup */
        .contact-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .contact-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .contact-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: var(--bg-card);
            border-radius: 24px;
            padding: 40px;
            width: 90%;
            max-width: 500px;
            z-index: 2001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .contact-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .contact-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-popup-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .contact-popup-close {
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg-secondary);
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .contact-popup-close:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group textarea {
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(149, 188, 10, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            .contact-popup {
                padding: 25px;
            }
        }

        .contact-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient-accent);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .contact-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(149, 188, 10, 0.3);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid var(--border);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .contact-info-item i {
            color: var(--accent);
        }

        /* Referanslar Section */
        .referanslar {
            padding: 60px 2rem;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .referanslar-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .referanslar-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .referanslar-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 64px;
            flex-wrap: wrap;
        }

        .referans-logo-wrap {
            width: 160px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.35s ease;
        }

        .referans-logo {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            opacity: 0.55;
            filter: grayscale(100%);
            transition: opacity 0.35s ease, filter 0.35s ease;
        }

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

        .referans-logo-wrap:hover .referans-logo {
            opacity: 1;
            filter: grayscale(0%);
        }

        @media (max-width: 768px) {
            .referanslar-logos {
                gap: 36px;
            }
            .referans-logo-wrap {
                width: 120px;
                height: 48px;
            }
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--bg-secondary);
        }

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

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.25rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.popular {
            border-color: var(--accent);
            transform: scale(1.02);
        }

        .pricing-card.popular:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-accent);
            color: #000;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .pricing-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .pricing-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }

        .pricing-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            flex: 1;
            margin-bottom: 1.5rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .pricing-features li i {
            color: var(--accent);
            font-size: 0.7rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .pricing-features li.disabled {
            color: var(--text-muted);
            text-decoration: line-through;
            opacity: 0.5;
        }

        .pricing-features li.disabled i {
            color: var(--text-muted);
        }

        .pricing-btn {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid var(--border);
            background: transparent;
            color: var(--text-primary);
        }

        .pricing-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .pricing-card.popular .pricing-btn {
            background: var(--gradient-accent);
            border-color: transparent;
            color: #000;
        }

        .pricing-card.popular .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(149, 188, 10, 0.3);
        }

        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.popular {
                transform: scale(1);
            }
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
        }

        /* Promo Banner */
        .promo-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            background: linear-gradient(90deg, #1a1a1a 0%, #111111 50%, #1a1a1a 100%);
            border-bottom: 2px solid var(--border);
            padding: 12px 0;
        }

        .promo-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }

        .promo-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
        }

        .promo-item i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .promo-item i.fa-fire {
            color: #ef4444;
            animation: pulse 1s ease-in-out infinite;
        }

        .promo-item i.fa-gift {
            color: #8b5cf6;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .promo-item span {
            color: var(--text-secondary);
        }

        .promo-item strong {
            color: var(--accent);
        }

        .promo-divider {
            width: 1px;
            height: 30px;
            background: var(--border);
        }

        .countdown {
            display: flex;
            gap: 8px;
            margin-left: 10px;
        }

        .countdown-item {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 6px;
            padding: 4px 8px;
            text-align: center;
            min-width: 45px;
        }

        .countdown-item span {
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: #ef4444;
        }

        .countdown-item small {
            font-size: 0.65rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .promo-phone i {
            color: var(--accent);
        }

        .promo-call-btn {
            background: var(--gradient-accent);
            color: #000;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            margin-left: 8px;
            transition: all 0.3s ease;
        }

        .promo-call-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(149, 188, 10, 0.4);
        }

        @media (max-width: 1024px) {
            .promo-phone {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .promo-container {
                flex-direction: column;
                gap: 10px;
            }
            .promo-divider {
                display: none;
            }
            .promo-item {
                font-size: 0.8rem;
            }
            .countdown-item {
                min-width: 38px;
                padding: 3px 6px;
            }
            .countdown-item span {
                font-size: 0.85rem;
            }
        }
