﻿*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(10, 10, 10, .95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid #1e1e1e
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px
        }

        .nav-brand {
            flex-shrink: 0
        }

        .nav-brand a {
            text-decoration: none
        }

        .logo img {
            height: 54px;
            width: auto;
            display: block
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex: 1;
            justify-content: center;
            flex-wrap: nowrap;
            overflow: hidden
        }

        .nav-link {
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: 500;
            font-size: .83rem;
            color: rgba(255, 255, 255, .8);
            text-decoration: none;
            transition: color .2s, background .2s;
            white-space: nowrap
        }

        .nav-link:hover {
            color: #e63946
        }

        .nav-link.active {
            color: #e63946;
            background: rgba(230, 57, 70, .08)
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0
        }

        .btn-nav {
            background: #d90429;
            color: #fff !important;
            padding: 10px 18px;
            border-radius: 14px;
            font-weight: 600;
            font-size: .83rem;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: background .2s, transform .2s
        }

        .btn-nav:hover {
            background: #c0021f;
            transform: translateY(-1px)
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            background: none;
            border: none
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform .3s, opacity .3s
        }

        /* ===== HERO ===== */
        .hero {
            padding: 140px 0 90px;
            background: linear-gradient(135deg, #0a0a0a 0%, rgba(230, 57, 70, .07) 50%, #0a0a0a 100%);
            border-bottom: 1px solid #1e1e1e;
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(230, 57, 70, .06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(230, 57, 70, .06) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            font-size: .82rem
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, .5);
            text-decoration: none;
            transition: color .2s
        }

        .breadcrumb a:hover {
            color: #e63946
        }

        .breadcrumb .sep {
            color: rgba(255, 255, 255, .25);
            font-size: .65rem
        }

        .breadcrumb .current {
            color: rgba(255, 255, 255, .8)
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 18px;
            border-radius: 30px;
            font-size: .82rem;
            font-weight: 600;
            color: #e63946;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .25);
            margin-bottom: 18px
        }

        .text-red {
            color: #e63946
        }

        .hero-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            line-height: 1.15;
            margin: 0 0 20px
        }

        .hero-desc {
            color: rgba(255, 255, 255, .65);
            font-size: 1.05rem;
            line-height: 1.8;
            margin: 0 0 28px
        }

        .hero-badges {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-top: 26px
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .84rem;
            color: rgba(255, 255, 255, .65)
        }

        .badge-item i {
            color: #22c55e
        }

        /* CTA Buttons */
        .cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .btn-phone {
            padding: 15px 28px;
            background: #e63946;
            color: #fff;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background .2s, transform .2s
        }

        .btn-phone:hover {
            background: #c0021f;
            transform: translateY(-2px)
        }

        .btn-wa {
            padding: 15px 28px;
            background: #25d366;
            color: #fff;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background .2s, transform .2s
        }

        .btn-wa:hover {
            background: #1db954;
            transform: translateY(-2px)
        }

        /* Hero aside card */
        .hero-card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(230, 57, 70, .2);
            border-radius: 20px;
            padding: 32px;
            backdrop-filter: blur(10px)
        }

        .hero-card-title {
            font-size: .85rem;
            font-weight: 700;
            color: #e63946;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: .06em
        }

        .hero-card-links {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .hcl-phone {
            padding: 16px;
            background: #e63946;
            color: #fff;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background .2s
        }

        .hcl-phone:hover {
            background: #c0021f
        }

        .hcl-wa {
            padding: 16px;
            background: #25d366;
            color: #fff;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background .2s
        }

        .hcl-wa:hover {
            background: #1db954
        }

        .hcl-form {
            padding: 16px;
            background: rgba(255, 255, 255, .06);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background .2s
        }

        .hcl-form:hover {
            background: rgba(255, 255, 255, .1)
        }

        .hero-card-note {
            margin-top: 18px;
            padding: 12px;
            background: rgba(34, 197, 94, .05);
            border: 1px solid rgba(34, 197, 94, .15);
            border-radius: 10px;
            font-size: .8rem;
            color: rgba(255, 255, 255, .6);
            text-align: center
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: #111;
            border-top: 1px solid rgba(255, 255, 255, .07);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            padding: 32px 0
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center
        }

        .stat-item {
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px
        }

        .stat-number {
            font-size: 2.1rem;
            font-weight: 900;
            color: #e63946;
            line-height: 1
        }

        .stat-label {
            font-size: .78rem;
            color: rgba(255, 255, 255, .55);
            margin-top: 6px
        }

        /* ===== SECTIONS ===== */
        section {
            padding: 80px 0
        }

        .section-header {
            text-align: center;
            margin-bottom: 52px
        }

        .section-header h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-top: 12px
        }

        .section-header p {
            color: rgba(255, 255, 255, .6);
            max-width: 580px;
            margin: 12px auto 0;
            font-size: .97rem
        }

        /* ===== CARDS ===== */
        .card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 18px;
            padding: 28px;
            transition: border-color .3s, transform .3s
        }

        .card:hover {
            border-color: rgba(230, 57, 70, .3);
            transform: translateY(-4px)
        }

        .card-icon {
            width: 52px;
            height: 52px;
            background: rgba(230, 57, 70, .1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px
        }

        .card-icon i {
            color: #e63946;
            font-size: 1.3rem
        }

        .card h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px
        }

        .card p {
            color: rgba(255, 255, 255, .6);
            font-size: .88rem;
            line-height: 1.8
        }

        /* ===== INFO SECTION ===== */
        .info-section {
            background: rgba(255, 255, 255, .01);
            border-top: 1px solid #1e1e1e;
            border-bottom: 1px solid #1e1e1e
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center
        }

        .info-text h2 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            margin-bottom: 20px
        }

        .info-text p {
            color: rgba(255, 255, 255, .65);
            font-size: .97rem;
            line-height: 1.85;
            margin-bottom: 16px
        }

        .info-text p:last-child {
            margin-bottom: 0
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: .92rem;
            color: rgba(255, 255, 255, .8);
            line-height: 1.6
        }

        .feature-list li i {
            color: #e63946;
            font-size: .9rem;
            margin-top: 3px;
            flex-shrink: 0
        }

        /* ===== KAMERA TİPLERİ ===== */
        .camera-type-tag {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .2);
            border-radius: 8px;
            font-size: .77rem;
            font-weight: 700;
            color: #e63946;
            margin-bottom: 14px
        }

        .camera-card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 18px;
            padding: 28px;
            transition: border-color .3s, transform .3s
        }

        .camera-card:hover {
            border-color: rgba(230, 57, 70, .3);
            transform: translateY(-4px)
        }

        .camera-card h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px
        }

        .camera-card p {
            color: rgba(255, 255, 255, .6);
            font-size: .88rem;
            line-height: 1.8;
            margin-bottom: 12px
        }

        .camera-brand {
            font-size: .78rem;
            color: rgba(255, 255, 255, .35)
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 32px
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            padding: 22px 0
        }

        .faq-item:last-child {
            border-bottom: none
        }

        .faq-q {
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            font-size: .95rem
        }

        .faq-a {
            color: rgba(255, 255, 255, .62);
            font-size: .9rem;
            line-height: 1.8
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            border-top: 1px solid #1e1e1e
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(230, 57, 70, .08), rgba(230, 57, 70, .02));
            border: 1px solid rgba(230, 57, 70, .2);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center
        }

        .cta-box h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            margin: 16px 0 12px
        }

        .cta-box p {
            color: rgba(255, 255, 255, .65);
            max-width: 560px;
            margin: 0 auto 32px;
            font-size: 1rem;
            line-height: 1.7
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap
        }

        .btn-cta-primary {
            padding: 16px 32px;
            background: #e63946;
            color: #fff;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background .2s, transform .2s
        }

        .btn-cta-primary:hover {
            background: #c0021f;
            transform: translateY(-2px)
        }

        .btn-cta-wa {
            padding: 16px 32px;
            background: #25d366;
            color: #fff;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background .2s, transform .2s
        }

        .btn-cta-wa:hover {
            background: #1db954;
            transform: translateY(-2px)
        }

        .btn-cta-ghost {
            padding: 16px 32px;
            background: rgba(255, 255, 255, .07);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background .2s
        }

        .btn-cta-ghost:hover {
            background: rgba(255, 255, 255, .12)
        }

        /* ===== FOOTER ===== */
        footer {
            border-top: 1px solid #1e1e1e;
            padding: 24px 0;
            text-align: center
        }

        footer p {
            color: rgba(255, 255, 255, .4);
            font-size: .85rem
        }

        footer a {
            color: rgba(255, 255, 255, .5);
            text-decoration: none
        }

        /* ===== WHATSAPP FLOAT ===== */
        .wa-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #fff;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
            text-decoration: none;
            transition: transform .2s
        }

        .wa-float:hover {
            transform: scale(1.1)
        }

        /* ===== ACİLİYET BANDI ===== */
        .urgency-bar {
            background: linear-gradient(90deg, #b91c1c 0%, #e63946 50%, #b91c1c 100%);
            padding: 12px 0;
            text-align: center;
            position: relative;
            z-index: 999;
            overflow: hidden
        }

        .urgency-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(90deg,
                    transparent,
                    transparent 40px,
                    rgba(255, 255, 255, .04) 40px,
                    rgba(255, 255, 255, .04) 80px);
            pointer-events: none
        }

        .urgency-bar-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1
        }

        .urgency-dot {
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            animation: urgency-pulse 1.4s ease-in-out infinite
        }

        @keyframes urgency-pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .4;
                transform: scale(.7)
            }
        }

        .urgency-text {
            font-size: .88rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: .02em
        }

        .urgency-text strong {
            font-weight: 900
        }

        .urgency-badge {
            background: rgba(255, 255, 255, .18);
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: .78rem;
            font-weight: 700;
            color: #fff
        }

        /* ===== DÖNÜŞÜM GRID ===== */
        .conversion-section {
            padding: 70px 0;
            background: #0d0d0d;
            border-bottom: 1px solid #1e1e1e
        }

        .conversion-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px
        }

        .conv-card {
            background: linear-gradient(135deg, rgba(230, 57, 70, .06) 0%, rgba(255, 255, 255, .02) 100%);
            border: 1px solid rgba(230, 57, 70, .2);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            transition: border-color .3s, transform .3s, box-shadow .3s;
            position: relative;
            overflow: hidden
        }

        .conv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #e63946, #ff6b6b);
            border-radius: 20px 20px 0 0
        }

        .conv-card:hover {
            border-color: rgba(230, 57, 70, .5);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(230, 57, 70, .12)
        }

        .conv-icon {
            width: 72px;
            height: 72px;
            background: rgba(230, 57, 70, .12);
            border: 2px solid rgba(230, 57, 70, .25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: #e63946
        }

        .conv-card h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3
        }

        .conv-card p {
            color: rgba(255, 255, 255, .6);
            font-size: .9rem;
            line-height: 1.75
        }

        .conv-card .conv-highlight {
            display: inline-block;
            margin-top: 14px;
            padding: 5px 14px;
            background: rgba(34, 197, 94, .1);
            border: 1px solid rgba(34, 197, 94, .2);
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 700;
            color: #22c55e
        }

        /* ===== MEGA CTA BLOĞU ===== */
        .mega-cta {
            background: linear-gradient(135deg, rgba(230, 57, 70, .1) 0%, rgba(230, 57, 70, .03) 100%);
            border: 1px solid rgba(230, 57, 70, .25);
            border-radius: 24px;
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .mega-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(230, 57, 70, .04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(230, 57, 70, .04) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none
        }

        .mega-cta-inner {
            position: relative;
            z-index: 1
        }

        .mega-cta h2 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 900;
            margin-bottom: 10px
        }

        .mega-cta p {
            color: rgba(255, 255, 255, .65);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7
        }

        .mega-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap
        }

        .btn-mega-wa {
            padding: 18px 36px;
            background: #25d366;
            color: #fff;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: background .2s, transform .2s, box-shadow .2s;
            box-shadow: 0 8px 24px rgba(37, 211, 102, .3)
        }

        .btn-mega-wa:hover {
            background: #1db954;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, .45)
        }

        .btn-mega-kesif {
            padding: 18px 36px;
            background: rgba(255, 255, 255, .07);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .2);
            border-radius: 16px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: background .2s, border-color .2s, transform .2s
        }

        .btn-mega-kesif:hover {
            background: rgba(255, 255, 255, .12);
            border-color: rgba(255, 255, 255, .35);
            transform: translateY(-3px)
        }

        .mega-cta-note {
            margin-top: 20px;
            font-size: .82rem;
            color: rgba(255, 255, 255, .4)
        }

        .mega-cta-note i {
            color: #22c55e;
            margin-right: 5px
        }

        /* ===== MOBİL ===== */
        @media (max-width: 768px) {
            .hamburger {
                display: flex
            }

            .nav-menu {
                display: none;
                position: fixed;
                inset: 0;
                width: 100%;
                height: 100vh;
                z-index: 5000;
                background: rgba(5, 5, 5, .98);
                backdrop-filter: blur(18px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 90px 24px 40px;
                overflow-y: auto
            }

            .nav-menu.open {
                display: flex
            }

            .nav-link {
                padding: 12px 16px;
                font-size: .97rem;
                text-align: center;
                width: 100%
            }

            .hero {
                padding-top: clamp(110px, 18vw, 140px)
            }

            .hero-grid {
                grid-template-columns: 1fr !important
            }

            .hero-card {
                display: none
            }

            .info-grid {
                grid-template-columns: 1fr !important;
                gap: 32px
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .cta-box {
                padding: 40px 20px
            }

            /* Aciliyet bandı mobil */
            .urgency-badge {
                display: none
            }

            .urgency-text {
                font-size: .8rem
            }

            /* Dönüşüm grid mobil — tek sütun */
            .conversion-grid {
                grid-template-columns: 1fr;
                gap: 16px
            }

            .conversion-section {
                padding: 48px 0
            }

            .conv-card {
                padding: 28px 20px
            }

            /* Mega CTA mobil */
            .mega-cta {
                padding: 32px 20px
            }

            .btn-mega-wa,
            .btn-mega-kesif {
                width: 100%;
                justify-content: center;
                font-size: 1rem;
                padding: 16px 24px
            }

            .mega-cta-note {
                font-size: .75rem
            }
        }
