        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0a0e1a;
            --bg-secondary: #111827;
            --bg-card: #1a2035;
            --bg-card-hover: #1f2847;
            --accent: #00D4AA;
            --accent-glow: rgba(0, 212, 170, 0.15);
            --accent-dark: #00a888;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --gradient-1: linear-gradient(135deg, #0a0e1a 0%, #1a1a3e 50%, #0a0e1a 100%);
            --gradient-2: linear-gradient(135deg, #00D4AA 0%, #00b894 100%);
            --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --danger: #ff6b6b;
            --warning: #ffd93d;
            --success: #00D4AA;
            --font-primary: 'Inter', sans-serif;
            --font-display: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* ============================================
           SCROLL PROGRESS BAR
           ============================================ */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--gradient-2);
            z-index: 1001;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .nav {
            position: fixed;
            top: 3px;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 14, 26, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 212, 170, 0.1);
            transition: all 0.3s ease;
        }

        .nav-brand {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--accent);
            letter-spacing: -0.5px;
        }

        .nav-brand span {
            color: var(--text-primary);
            font-weight: 300;
        }

        .nav-blog-link {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--accent);
            text-decoration: none;
            padding: 6px 16px;
            border: 1px solid rgba(0, 212, 170, 0.3);
            border-radius: 20px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nav-blog-link:hover {
            background: rgba(0, 212, 170, 0.15);
            border-color: var(--accent);
            color: #fff;
        }

        .nav-dots {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .nav-dot.active {
            background: var(--accent);
            box-shadow: 0 0 12px rgba(0, 212, 170, 0.5);
            transform: scale(1.3);
        }

        .nav-dot:hover {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* ============================================
           SLIDE BASE
           ============================================ */
        .slide {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 80px 40px 40px;
            position: relative;
            overflow: visible;
        }

        .slide-inner {
            max-width: 1100px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* Watermark */
        .slide::after {
            content: 'MEDBOOST';
            position: absolute;
            bottom: 20px;
            right: 30px;
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 3px;
            color: rgba(0, 212, 170, 0.08);
            z-index: 1;
        }

        /* ============================================
           BACKGROUND DECORATIONS
           ============================================ */
        .bg-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
        }

        .bg-glow-1 {
            width: 500px;
            height: 500px;
            background: rgba(0, 212, 170, 0.06);
            top: -150px;
            right: -100px;
        }

        .bg-glow-2 {
            width: 400px;
            height: 400px;
            background: rgba(102, 126, 234, 0.05);
            bottom: -100px;
            left: -100px;
        }

        .bg-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
        }

        /* ============================================
           PARTICLE CANVAS (Cover Slide)
           ============================================ */
        #particle-canvas {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        .heading-xl {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }

        .heading-lg {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .heading-md {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .text-accent {
            color: var(--accent);
        }

        .text-gradient {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-secondary {
            color: var(--text-secondary);
        }

        .text-muted {
            color: var(--text-muted);
        }

        .subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-secondary);
            font-weight: 400;
            line-height: 1.6;
            max-width: 700px;
        }

        .big-number {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -2px;
        }

        .medium-number {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
        }

        /* ============================================
           SLIDE 1: COVER
           ============================================ */
        .slide-cover {
            background: var(--gradient-1);
            text-align: center;
            overflow: hidden;
        }

        .cover-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 32px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .cover-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .cover-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }

        .cover-title .highlight {
            color: var(--danger);
            position: relative;
        }

        .cover-subtitle {
            font-size: clamp(1.1rem, 2.2vw, 1.5rem);
            color: var(--text-secondary);
            font-weight: 400;
            margin-bottom: 48px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .cover-brand {
            margin-top: 60px;
        }

        .cover-brand-name {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .cover-brand-name .k {
            color: var(--accent);
        }

        .cover-brand-tagline {
            font-size: 0.9rem;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: float 3s ease-in-out infinite;
        }

        .scroll-indicator .arrow {
            width: 24px;
            height: 24px;
            border-right: 2px solid var(--accent);
            border-bottom: 2px solid var(--accent);
            transform: rotate(45deg);
            opacity: 0.5;
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ============================================
           SLIDE 2: THE PROBLEM
           ============================================ */
        .slide-problem {
            background: linear-gradient(180deg, #0a0e1a 0%, #0f1629 50%, #0a0e1a 100%);
        }

        .problem-stats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin: 20px 0;
        }

        .problem-stat {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 16px 24px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .problem-stat:hover {
            border-color: rgba(0, 212, 170, 0.2);
            transform: translateX(8px);
            background: var(--bg-card-hover);
        }

        .problem-stat-number {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: var(--accent);
            white-space: nowrap;
            min-width: 140px;
        }

        .problem-stat-text {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .problem-question {
            text-align: center;
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 107, 107, 0.02));
            border: 1px solid rgba(255, 107, 107, 0.15);
            border-radius: 20px;
        }

        .problem-question p {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 700;
            color: var(--danger);
        }

        /* Bar Chart */
        .chart-section {
            margin-top: 20px;
        }

        .chart-title {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-align: center;
        }

        .bar-chart {
            display: flex;
            align-items: flex-end;
            gap: 16px;
            height: 150px;
            padding: 0 20px;
            justify-content: center;
        }

        .bar-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            flex: 1;
            max-width: 120px;
        }

        .bar-value {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .bar {
            width: 100%;
            border-radius: 8px 8px 4px 4px;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            min-height: 8px;
        }

        .bar-1 {
            height: 160px;
            background: var(--gradient-2);
            box-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
        }

        .bar-2 {
            height: 86px;
            background: linear-gradient(135deg, #00b894, #00a383);
        }

        .bar-3 {
            height: 63px;
            background: linear-gradient(135deg, #00a383, #008f72);
        }

        .bar-4 {
            height: 29px;
            background: linear-gradient(135deg, var(--text-muted), #4a5568);
        }

        .bar-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.3;
        }

        /* ============================================
           SLIDE 3: ANALYSIS
           ============================================ */
        .slide-analysis {
            background: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
        }

        .clinic-table {
            width: 100%;
            margin: 40px 0;
            border-collapse: separate;
            border-spacing: 0 8px;
        }

        .clinic-table thead th {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            padding: 12px 24px;
            text-align: left;
            font-weight: 500;
        }

        .clinic-table thead th:last-child {
            text-align: right;
        }

        .clinic-table tbody tr {
            background: var(--bg-card);
            transition: all 0.3s ease;
        }

        .clinic-table tbody tr:hover {
            background: var(--bg-card-hover);
            transform: scale(1.01);
        }

        .clinic-table tbody td {
            padding: 20px 24px;
            font-size: 1.1rem;
        }

        .clinic-table tbody td:first-child {
            border-radius: 12px 0 0 12px;
            font-weight: 600;
        }

        .clinic-table tbody td:last-child {
            border-radius: 0 12px 12px 0;
            text-align: right;
        }

        .score-bar-container {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .score-bar-bg {
            flex: 1;
            height: 10px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 5px;
            overflow: hidden;
        }

        .score-bar-fill {
            height: 100%;
            border-radius: 5px;
            transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .score-bad { background: var(--danger); }
        .score-medium { background: var(--warning); }
        .score-good { background: var(--success); }

        .score-number {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.4rem;
            min-width: 80px;
            text-align: right;
        }

        .analysis-verdict {
            text-align: center;
            margin-top: 40px;
        }

        .analysis-verdict .big-text {
            font-family: var(--font-display);
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 700;
            color: var(--warning);
            margin-bottom: 8px;
        }

        .analysis-verdict .small-text {
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* ============================================
           SLIDE 4: MONEY LOSS
           ============================================ */
        .slide-money {
            background: linear-gradient(180deg, #0a0e1a 0%, #1a0a0a 50%, #0a0e1a 100%);
        }

        .money-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .money-card {
            padding: 36px 32px;
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .money-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .money-card:hover {
            border-color: rgba(0, 212, 170, 0.2);
            transform: translateY(-4px);
        }

        .money-card:hover::before {
            opacity: 1;
        }

        .money-card-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .money-card-number {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 8px;
        }

        .money-card-detail {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .loss-highlight {
            margin-top: 40px;
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.02));
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 20px;
        }

        .loss-highlight .amount {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--danger);
            margin-bottom: 8px;
        }

        .loss-highlight .note {
            font-size: 1rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        /* ============================================
           SLIDE 5: CASE STUDY
           ============================================ */
        .slide-case {
            background: linear-gradient(180deg, #0a0e1a 0%, #0a1a15 50%, #0a0e1a 100%);
        }

        .case-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            margin: 40px 0;
            align-items: stretch;
        }

        .ba-card {
            padding: 40px 36px;
            border-radius: 20px;
            text-align: center;
        }

        .ba-before {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 107, 107, 0.02));
            border: 1px solid rgba(255, 107, 107, 0.15);
        }

        .ba-after {
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 212, 170, 0.02));
            border: 1px solid rgba(0, 212, 170, 0.15);
        }

        .ba-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 28px;
        }

        .ba-before .ba-label { color: var(--danger); }
        .ba-after .ba-label { color: var(--accent); }

        .ba-item {
            margin-bottom: 24px;
        }

        .ba-item:last-child {
            margin-bottom: 0;
        }

        .ba-item-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .ba-item-value {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
        }

        .ba-before .ba-item-value { color: var(--danger); }
        .ba-after .ba-item-value { color: var(--accent); }

        .ba-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 24px;
            font-size: 2.5rem;
            color: var(--text-muted);
        }

        .case-results {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }

        .case-result-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--bg-card);
            border: 1px solid rgba(0, 212, 170, 0.15);
            border-radius: 50px;
            font-weight: 600;
        }

        .case-result-pill .icon {
            font-size: 1.3rem;
        }

        .case-result-pill .value {
            color: var(--accent);
            font-family: var(--font-display);
            font-weight: 800;
        }

        /* ============================================
           SLIDE 6: SERVICES
           ============================================ */
        .slide-services {
            background: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .service-card {
            padding: 36px 28px;
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            text-align: center;
        }

        .service-card:hover {
            border-color: rgba(0, 212, 170, 0.25);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0, 212, 170, 0.08);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           HAKKIMIZDA (About Us)
           ============================================ */
        .slide-about {
            background: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 32px;
            align-items: start;
        }

        .about-text {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .about-text strong {
            color: var(--text-primary);
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .about-stat-card {
            padding: 20px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .about-stat-number {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
        }

        .about-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .about-values {
            display: flex;
            gap: 16px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .about-value-tag {
            padding: 8px 16px;
            background: rgba(0, 212, 170, 0.08);
            border: 1px solid rgba(0, 212, 170, 0.15);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ============================================
           MÜŞTERİLERİMİZ (Customers)
           ============================================ */
        .slide-customers {
            background: var(--gradient-1);
        }

        .customer-showcase {
            max-width: 800px;
            margin: 32px auto 0;
            padding: 32px;
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid rgba(0, 212, 170, 0.15);
        }

        .customer-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }

        .customer-logo {
            height: 50px;
            flex-shrink: 0;
        }

        .customer-logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .customer-info h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .customer-info p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .customer-results {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .customer-result {
            text-align: center;
            padding: 16px;
            background: rgba(0, 212, 170, 0.05);
            border-radius: 12px;
        }

        .customer-result-value {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
        }

        .customer-result-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .customer-quote {
            padding: 20px;
            background: rgba(0, 212, 170, 0.04);
            border-left: 3px solid var(--accent);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .customer-cta {
            text-align: center;
            margin-top: 32px;
        }

        .customer-cta p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Screenshot Proof Gallery */
        .proof-gallery {
            margin-top: 32px;
        }

        .proof-gallery-title {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 20px;
        }

        .proof-gallery-title span {
            color: var(--accent);
        }

        .proof-screenshots {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .proof-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: border-color 0.3s ease, transform 0.3s ease;
            cursor: pointer;
        }

        .proof-item:hover {
            border-color: rgba(0, 212, 170, 0.3);
            transform: translateY(-2px);
        }

        .proof-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .proof-item-label {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(10, 14, 26, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(0, 212, 170, 0.2);
        }

        .proof-item-label .proof-icon {
            font-size: 0.85rem;
        }

        .proof-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* Lightbox */
        .proof-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(20px);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 40px;
            cursor: pointer;
        }

        .proof-lightbox.active {
            display: flex;
        }

        .proof-lightbox img {
            max-width: 95%;
            max-height: 90vh;
            border-radius: 12px;
            box-shadow: 0 20px 80px rgba(0, 212, 170, 0.15);
        }

        .proof-lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s;
        }

        .proof-lightbox-close:hover {
            color: var(--accent);
        }

        @media (max-width: 640px) {
            .proof-row {
                grid-template-columns: 1fr;
            }
        }

        .customer-cta strong {
            color: var(--text-primary);
        }

        /* ============================================
           SLIDE 7: GUARANTEE
           ============================================ */
        .slide-guarantee {
            background: var(--gradient-1);
            text-align: center;
        }

        .guarantee-shield {
            width: 120px;
            height: 120px;
            margin: 0 auto 32px;
            position: relative;
        }

        .guarantee-shield svg {
            width: 100%;
            height: 100%;
        }

        .guarantee-box {
            max-width: 700px;
            margin: 0 auto;
            padding: 48px;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 212, 170, 0.02));
            border: 2px solid rgba(0, 212, 170, 0.25);
            border-radius: 24px;
            position: relative;
        }

        .guarantee-box::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 24px;
            background: var(--gradient-2);
            opacity: 0.1;
            z-index: -1;
        }

        .guarantee-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            letter-spacing: 6px;
            color: var(--accent);
            margin-bottom: 24px;
        }

        .guarantee-text {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .guarantee-subtext {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .guarantee-subtext strong {
            color: var(--accent);
        }

        .guarantee-details {
            display: grid;
            gap: 12px;
            margin-top: 32px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .guarantee-detail-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 20px;
            background: rgba(0, 212, 170, 0.05);
            border: 1px solid rgba(0, 212, 170, 0.1);
            border-radius: 12px;
        }

        .guarantee-detail-icon {
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .guarantee-detail-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* ============================================
           SLIDE 8: PRICING
           ============================================ */
        .slide-pricing {
            background: linear-gradient(180deg, #0a0e1a 0%, #0f1629 50%, #0a0e1a 100%);
            justify-content: flex-start;
            padding-top: 60px;
            padding-bottom: 60px;
            min-height: auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin: 40px 0;
        }

        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .pricing-card {
            padding: 40px 32px;
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            border-color: rgba(0, 212, 170, 0.3);
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 212, 170, 0.05) 100%);
        }

        .pricing-card.featured::before {
            content: 'EN POPÜLER';
            position: absolute;
            top: 16px;
            right: -32px;
            background: var(--gradient-2);
            color: var(--bg-primary);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            padding: 6px 40px;
            transform: rotate(45deg);
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .pricing-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .pricing-price {
            margin-bottom: 28px;
        }

        .pricing-price .amount {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent);
        }

        .pricing-price .period {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .pricing-price .recurring {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.95rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li::before {
            content: '\2713';
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .pricing-note {
            text-align: center;
            margin-top: 32px;
            padding: 20px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid rgba(0, 212, 170, 0.1);
        }

        .pricing-note p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .pricing-note strong {
            color: var(--accent);
        }

        /* ============================================
           BLOG TEASER (between Pricing & Contact)
           ============================================ */
        .blog-teaser {
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .blog-teaser-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .blog-teaser-title span {
            color: var(--accent);
        }

        .blog-card {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 24px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid rgba(0, 212, 170, 0.1);
            text-decoration: none;
            transition: all 0.3s ease;
            max-width: 600px;
            margin: 0 auto;
        }

        .blog-card:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 212, 170, 0.1);
        }

        .blog-card-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: rgba(0, 212, 170, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }

        .blog-card-content {
            flex: 1;
            text-align: left;
        }

        .blog-card-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .blog-card-title {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .blog-card-arrow {
            flex-shrink: 0;
            color: var(--accent);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-card-arrow {
            transform: translateX(4px);
        }

        .btn-blog-all {
            display: inline-block;
            padding: 14px 36px;
            background: transparent;
            border: 2px solid rgba(0, 212, 170, 0.3);
            border-radius: 12px;
            color: var(--accent);
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .btn-blog-all:hover {
            background: rgba(0, 212, 170, 0.08);
            border-color: var(--accent);
            box-shadow: 0 4px 20px rgba(0, 212, 170, 0.15);
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            .blog-card {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            .blog-card-content {
                text-align: center;
            }
            .blog-card-arrow {
                display: none;
            }
        }

        /* ============================================
           SLIDE 9: CONTACT (Enhanced)
           ============================================ */
        .slide-contact {
            background: var(--gradient-1);
            text-align: center;
            min-height: auto;
            padding-bottom: 60px;
        }

        .contact-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 20px 0;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 32px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            min-width: 280px;
            justify-content: center;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .contact-method:hover {
            border-color: rgba(0, 212, 170, 0.25);
            transform: translateY(-2px);
        }

        .contact-icon {
            font-size: 1.5rem;
        }

        .contact-info {
            text-align: left;
        }

        .contact-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* WhatsApp CTA Button */
        .whatsapp-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: #25D366;
            color: #fff;
            border-radius: 60px;
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 20px 0;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-cta svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        /* Contact Form */
        .contact-form {
            max-width: 480px;
            margin: 16px auto 0;
            text-align: left;
        }

        .form-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 20px;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 1rem;
            transition: border-color 0.3s ease;
            outline: none;
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        .form-group input:focus {
            border-color: var(--accent);
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient-2);
            color: var(--bg-primary);
            border: none;
            border-radius: 12px;
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 20px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.2);
            border-radius: 12px;
            color: var(--accent);
            font-weight: 600;
            margin-top: 16px;
        }

        .cta-urgency {
            margin-top: 48px;
            padding: 24px 40px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            display: inline-block;
        }

        .cta-urgency p {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--warning);
        }

        .footer-brand {
            margin-top: 60px;
        }

        .footer-brand-name {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent);
        }

        .footer-brand-sub {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .footer-legal {
            margin-top: 16px;
            font-size: 0.8rem;
        }

        .footer-legal a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        .footer-legal .sep {
            color: var(--text-secondary);
            opacity: 0.4;
            margin: 0 8px;
        }

        .footer-email {
            margin-top: 8px;
            font-size: 0.8rem;
        }

        .footer-email a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-email a:hover {
            color: var(--accent);
        }

        /* ============================================
           COOKIE BANNER
           ============================================ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            background: rgba(17, 24, 39, 0.98);
            backdrop-filter: blur(20px);
            border-top: 2px solid rgba(0, 212, 170, 0.4);
            padding: 20px 32px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: var(--text-secondary);
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
        }

        .cookie-banner.show {
            display: flex;
            animation: cookieSlideUp 0.4s ease-out;
        }

        @keyframes cookieSlideUp {
            from { transform: translateY(100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .cookie-banner .cookie-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .cookie-banner a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .cookie-banner a:hover {
            text-decoration: underline;
        }

        .cookie-accept {
            padding: 10px 28px;
            background: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: 50px;
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(0, 212, 170, 0.3);
        }

        .cookie-accept:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 212, 170, 0.4);
        }

        /* ============================================
           FLOATING WHATSAPP BUTTON
           ============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: wa-pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
            animation: none;
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        @keyframes wa-pulse {
            0% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.15); }
            100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-delay-1 { transition-delay: 0.1s; }
        .fade-in-delay-2 { transition-delay: 0.2s; }
        .fade-in-delay-3 { transition-delay: 0.3s; }
        .fade-in-delay-4 { transition-delay: 0.4s; }
        .fade-in-delay-5 { transition-delay: 0.5s; }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            .slide {
                padding: 80px 24px 40px;
            }

            .nav {
                padding: 12px 20px;
            }

            .nav-blog-link {
                font-size: 0.75rem;
                padding: 5px 12px;
            }

            .nav-dot {
                width: 12px;
                height: 12px;
            }

            .before-after {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .ba-arrow {
                transform: rotate(90deg);
                padding: 8px 0;
            }

            .bar-chart {
                height: 150px;
                gap: 10px;
                padding: 0;
            }

            .problem-stat {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .problem-stat-number {
                min-width: auto;
            }

            .pricing-card.featured::before {
                font-size: 0.6rem;
                padding: 4px 36px;
                top: 12px;
                right: -36px;
            }

            .clinic-table {
                display: block;
                overflow-x: auto;
            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }

            .money-cards {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 56px;
                height: 56px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-cta {
                font-size: 1rem;
                padding: 16px 32px;
            }

            .contact-form {
                padding: 0 8px;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Language Switcher */
        .lang-switch {
            display: flex;
            gap: 4px;
            align-items: center;
            margin-left: 12px;
            padding-left: 12px;
            border-left: 1px solid rgba(255,255,255,0.1);
        }
        .lang-switch a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 22px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-muted);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        .lang-switch a:hover,
        .lang-switch a.active {
            color: var(--accent);
            border-color: rgba(0, 212, 170, 0.3);
            background: rgba(0, 212, 170, 0.08);
        }
        @media (max-width: 768px) {
            .lang-switch { margin-left: 8px; padding-left: 8px; gap: 3px; }
            .lang-switch a { width: 26px; height: 20px; font-size: 0.6rem; }
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq-grid {
            max-width: 820px;
            margin: 48px auto 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            position: relative;
            background: linear-gradient(135deg, rgba(22, 30, 48, 0.95), rgba(16, 22, 38, 0.98));
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-item.faq-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0,212,170,0), rgba(0,212,170,0));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            transition: background 0.4s ease;
            pointer-events: none;
        }

        .faq-item:hover::before, .faq-item.open::before {
            background: linear-gradient(135deg, rgba(0,212,170,0.3), rgba(0,212,170,0.05));
        }

        .faq-item:hover {
            border-color: rgba(0, 212, 170, 0.15);
            box-shadow: 0 4px 24px rgba(0, 212, 170, 0.06);
        }

        .faq-item.open {
            border-color: rgba(0, 212, 170, 0.25);
            box-shadow: 0 8px 32px rgba(0, 212, 170, 0.1), 0 0 0 1px rgba(0, 212, 170, 0.1);
            background: linear-gradient(135deg, rgba(22, 34, 52, 0.98), rgba(16, 22, 38, 0.99));
        }

        .faq-question {
            display: flex;
            align-items: center;
            padding: 22px 28px;
            cursor: pointer;
            gap: 18px;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(0, 212, 170, 0.02);
        }

        .faq-number {
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            background: rgba(0, 212, 170, 0.12);
            border: 1px solid rgba(0, 212, 170, 0.2);
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }

        .faq-item.open .faq-number {
            background: rgba(0, 212, 170, 0.15);
            border-color: rgba(0, 212, 170, 0.3);
            box-shadow: 0 0 12px rgba(0, 212, 170, 0.15);
        }

        .faq-question h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.5;
            flex: 1;
            transition: color 0.3s;
        }

        .faq-item.open .faq-question h3 {
            color: #fff;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-muted);
            font-size: 1.1rem;
            font-weight: 300;
        }

        .faq-item:hover .faq-toggle {
            border-color: rgba(0, 212, 170, 0.2);
            color: var(--accent);
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
            background: rgba(0, 212, 170, 0.12);
            border-color: rgba(0, 212, 170, 0.3);
            color: var(--accent);
            box-shadow: 0 0 12px rgba(0, 212, 170, 0.1);
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.open .faq-answer {
            grid-template-rows: 1fr;
        }

        .faq-answer-inner {
            overflow: hidden;
        }

        .faq-answer-content {
            padding: 0 28px 24px 82px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
        }

        .faq-item.open .faq-answer-content {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-answer-content strong {
            color: var(--accent);
            font-weight: 600;
        }

        .faq-answer-content .faq-warning {
            color: var(--danger);
            font-weight: 600;
        }

        .faq-answer-content::before {
            content: '';
            display: block;
            width: calc(100% - 54px);
            height: 1px;
            background: linear-gradient(90deg, rgba(0,212,170,0.2), rgba(0,212,170,0.02));
            margin-bottom: 16px;
        }

        .faq-cta {
            text-align: center;
            margin-top: 40px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .faq-cta a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .faq-cta a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .faq-question { padding: 18px 20px; gap: 14px; }
            .faq-question h3 { font-size: 0.95rem; }
            .faq-number { width: 32px; height: 32px; min-width: 32px; font-size: 0.7rem; border-radius: 10px; }
            .faq-answer-content { padding: 0 20px 20px 20px; font-size: 0.9rem; line-height: 1.7; }
            .faq-answer-content::before { width: 100%; }
            .faq-toggle { width: 28px; height: 28px; min-width: 28px; }
        }

        /* ============================================
           TRAFFIC COMPARISON (Ads vs SEO)
           ============================================ */
        .traffic-compare {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 48px auto 0;
        }

        .traffic-card {
            position: relative;
            border-radius: 24px;
            padding: 32px 28px 28px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .traffic-card.tc-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .traffic-card--ads {
            background: linear-gradient(135deg, rgba(40, 15, 15, 0.8), rgba(20, 8, 8, 0.9));
            border: 1px solid rgba(255, 107, 107, 0.15);
        }

        .traffic-card--seo {
            background: linear-gradient(135deg, rgba(10, 35, 28, 0.8), rgba(8, 20, 16, 0.9));
            border: 1px solid rgba(0, 212, 170, 0.15);
            transition-delay: 0.15s;
        }

        .traffic-card-label {
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .traffic-card--ads .traffic-card-label { color: var(--danger); }
        .traffic-card--seo .traffic-card-label { color: var(--accent); }

        .traffic-card-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            line-height: 1.4;
        }

        /* Animated bar chart */
        .traffic-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 120px;
            margin-bottom: 20px;
            padding: 0 4px;
        }

        .traffic-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            min-height: 4px;
            transform-origin: bottom;
            transform: scaleY(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
        }

        .tc-visible .traffic-bar { transform: scaleY(1); }

        .traffic-card--ads .traffic-bar { background: rgba(255, 107, 107, 0.6); }
        .traffic-card--ads .traffic-bar.bar-zero { background: rgba(255, 107, 107, 0.12); min-height: 4px; }
        .traffic-card--seo .traffic-bar { background: rgba(0, 212, 170, 0.6); }
        .traffic-card--seo .traffic-bar.bar-hold { background: rgba(0, 212, 170, 0.45); }

        .traffic-divider {
            width: 2px;
            height: 120px;
            background: rgba(255,255,255,0.15);
            border-radius: 1px;
            position: relative;
            flex-shrink: 0;
            margin: 0 2px;
        }

        .traffic-divider::after {
            content: attr(data-label);
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 1px;
            white-space: nowrap;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
        }

        .traffic-phase-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .traffic-phase-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
        }

        .traffic-result {
            padding: 14px 16px;
            border-radius: 12px;
            text-align: center;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .traffic-card--ads .traffic-result {
            background: rgba(255, 107, 107, 0.08);
            border: 1px solid rgba(255, 107, 107, 0.15);
            color: var(--danger);
        }

        .traffic-card--seo .traffic-result {
            background: rgba(0, 212, 170, 0.08);
            border: 1px solid rgba(0, 212, 170, 0.15);
            color: var(--accent);
        }

        .traffic-bottom-line {
            text-align: center;
            margin-top: 36px;
            padding: 20px 24px;
            background: rgba(255, 107, 107, 0.05);
            border: 1px solid rgba(255, 107, 107, 0.12);
            border-radius: 16px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .traffic-bottom-line p {
            font-size: 1.1rem;
            color: var(--text-primary);
            line-height: 1.6;
            font-weight: 500;
        }

        .traffic-bottom-line strong { color: var(--danger); }
        .traffic-bottom-line .text-accent { color: var(--accent); font-weight: 700; }

        @media (max-width: 768px) {
            .traffic-compare { grid-template-columns: 1fr; gap: 20px; }
            .traffic-card { padding: 24px 20px 20px; }
            .traffic-bars { height: 90px; }
            .traffic-card-title { font-size: 1rem; }
            .traffic-bottom-line p { font-size: 0.95rem; }
        }

        /* ============================================
           PRINT STYLES
           ============================================ */
        @media print {
            body {
                background: #ffffff !important;
                color: #1a1a1a !important;
            }

            .nav, .scroll-indicator, .scroll-progress, .whatsapp-float {
                display: none !important;
            }

            .slide {
                min-height: auto !important;
                page-break-after: always;
                padding: 40px 30px;
                break-after: page;
            }

            .slide::after {
                color: rgba(0, 0, 0, 0.06) !important;
            }

            .bg-glow, .bg-grid, #particle-canvas {
                display: none !important;
            }

            .heading-xl, .heading-lg, .heading-md,
            .cover-title, .guarantee-title {
                color: #1a1a1a !important;
                -webkit-text-fill-color: #1a1a1a !important;
            }

            .text-accent, .text-gradient,
            .cover-brand-name .k,
            .guarantee-title {
                color: #00896e !important;
                -webkit-text-fill-color: #00896e !important;
            }

            .text-secondary, .subtitle,
            .problem-stat-text, .service-desc,
            .pricing-features li, .money-card-detail {
                color: #444 !important;
            }

            .text-muted, .cover-brand-tagline,
            .pricing-desc, .contact-label,
            .bar-label, .ba-item-label {
                color: #777 !important;
            }

            .cover-title .highlight,
            .problem-question p,
            .loss-highlight .amount,
            .ba-before .ba-item-value {
                color: #cc0000 !important;
                -webkit-text-fill-color: #cc0000 !important;
            }

            .problem-stat, .money-card, .service-card,
            .pricing-card, .contact-method, .ba-card,
            .guarantee-box, .problem-question,
            .loss-highlight, .pricing-note, .cta-urgency {
                background: #f5f5f5 !important;
                border-color: #ddd !important;
                box-shadow: none !important;
            }

            .cover-badge, .case-badge {
                background: #f0f0f0 !important;
                border-color: #ccc !important;
                color: #00896e !important;
            }

            .bar {
                print-color-adjust: exact;
                -webkit-print-color-adjust: exact;
            }

            .bar-1 { background: #00896e !important; }
            .bar-2 { background: #00a383 !important; }
            .bar-3 { background: #33b89f !important; }
            .bar-4 { background: #999 !important; }

            .score-bar-fill {
                print-color-adjust: exact;
                -webkit-print-color-adjust: exact;
            }

            .score-bad { background: #cc0000 !important; }
            .score-medium { background: #cc9900 !important; }
            .score-good { background: #00896e !important; }

            .score-bar-bg {
                background: #e0e0e0 !important;
            }

            .nav-dot, .nav-dots {
                display: none !important;
            }

            .pricing-card.featured::before {
                background: #00896e !important;
                color: #fff !important;
                print-color-adjust: exact;
                -webkit-print-color-adjust: exact;
            }

            .problem-stat:hover,
            .money-card:hover,
            .service-card:hover,
            .pricing-card:hover,
            .contact-method:hover {
                transform: none !important;
            }

            .ba-before .ba-label { color: #cc0000 !important; }
            .ba-after .ba-label { color: #00896e !important; }
            .ba-after .ba-item-value { color: #00896e !important; }

            .problem-stat-number,
            .pricing-price .amount,
            .money-card-number .text-accent,
            .score-number .text-accent,
            .footer-brand-name,
            .case-result-pill .value,
            .guarantee-subtext strong {
                color: #00896e !important;
                -webkit-text-fill-color: #00896e !important;
            }

            .money-card-number .text-danger,
            .score-number .text-danger {
                color: #cc0000 !important;
                -webkit-text-fill-color: #cc0000 !important;
            }
        }
        /* ============================================
           PLUGIN PROMO SLIDE
           ============================================ */
        .plugin-promo {
            max-width: 700px;
            margin: 0 auto;
        }

        .plugin-scores {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 36px;
        }

        .plugin-score-ring {
            text-align: center;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 24px 28px;
            min-width: 120px;
        }

        .plugin-score-value {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 6px;
        }

        .plugin-score-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.3;
            font-weight: 500;
        }

        .plugin-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
        }

        .plugin-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .plugin-feature-icon {
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .plugin-why {
            background: rgba(0, 212, 170, 0.06);
            border: 1px solid rgba(0, 212, 170, 0.15);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 32px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .plugin-why strong {
            color: var(--text-primary);
        }

        .plugin-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .plugin-price {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }

        .plugin-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-secondary);
            margin-left: 4px;
        }

        .plugin-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--gradient-2);
            color: #0a0e1a;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 12px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .plugin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
        }

        @media (max-width: 600px) {
            .plugin-scores {
                gap: 16px;
            }
            .plugin-score-ring {
                padding: 16px 14px;
                min-width: 90px;
            }
            .plugin-score-value {
                font-size: 2rem;
            }
            .plugin-cta {
                flex-direction: column;
                gap: 12px;
            }
        }