/* ===== CSS Variables ===== */
:root {
    --primary: #0B3954;
    --primary-dark: #072840;
    --primary-light: #FFD166;
    --secondary: #FFB128;
    --accent: #087E8B;
    --dark: #0a0a1a;
    --dark-light: #121225;
    --dark-lighter: #1a1a35;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #FFB128 0%, #FF6B35 100%);
    --gradient-accent: linear-gradient(135deg, #087E8B 0%, #0B3954 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FFB128 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 177, 40, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--white);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(255, 177, 40, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 177, 40, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===== ChromaGrid Effect ===== */
.chroma-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(60px, 1fr));
    gap: 4px;
    opacity: 0.4;
    pointer-events: none;
}

.chroma-cell {
    background: rgba(255, 177, 40, 0.1);
    border-radius: 8px;
    transition: all 0.6s ease;
}

.chroma-cell.active {
    background: var(--gradient-primary);
    opacity: 0.6;
    animation: chromaPulse 2s ease-in-out infinite;
}

@keyframes chromaPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.chroma-grid-cta {
    opacity: 0.3;
}

.chroma-grid-hero {
    opacity: 0.5;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--dark) 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 177, 40, 0.15);
    border: 1px solid rgba(255, 177, 40, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #FFD166 0%, #FFB128 50%, #FF9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== Logos Section ===== */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--white);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 177, 40, 0.15);
    border: 1px solid rgba(255, 177, 40, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

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

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--dark-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 177, 40, 0.3);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 177, 40, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.step-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Features Section ===== */
.features {
    background: var(--dark);
}

.features-chroma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 177, 40, 0.3);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.purple {
    background: rgba(255, 177, 40, 0.15);
    color: #FFB128;
}

.feature-icon.blue {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.feature-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.feature-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.feature-icon.pink {
    background: rgba(244, 114, 182, 0.15);
    color: #f472b6;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-visual {
    margin-top: 30px;
}

.match-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 177, 40, 0.15);
    border: 1px solid rgba(255, 177, 40, 0.3);
    border-radius: 16px;
    padding: 20px 40px;
}

.match-score .score {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== Influencers Showcase - ChromaGrid Style ===== */
.influencers-showcase {
    background: var(--dark-light);
}

/* ===== ChromaGrid Influencers - Original Style ===== */
.chroma-grid-influencers {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 20px;
    justify-content: center;
}

.chroma-card {
    --card-color: #FFB128;
    --mouse-x: 50%;
    --mouse-y: 50%;
    position: relative;
    width: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--card-color), #000);
    border: 1px solid #333;
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.chroma-card:hover {
    border-color: var(--card-color);
    transform: translateY(-4px);
}

/* Card Image */
.chroma-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Spotlight Effect */
.chroma-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        var(--card-color),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: soft-light;
}

.chroma-card:hover::before {
    opacity: 0.6;
}

/* Grayscale Overlay - Creates the reveal effect */
.chroma-card-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(1) brightness(0.78);
    -webkit-backdrop-filter: grayscale(1) brightness(0.78);
    -webkit-mask-image: radial-gradient(
        circle 150px at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 20%,
        black 80%,
        black 100%
    );
    mask-image: radial-gradient(
        circle 150px at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 20%,
        black 80%,
        black 100%
    );
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 2;
}

/* Fade overlay when not hovering container */
.chroma-card-fade {
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(1) brightness(0.78);
    -webkit-backdrop-filter: grayscale(1) brightness(0.78);
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 3;
}

.chroma-grid-influencers:hover .chroma-card-fade {
    opacity: 0;
}

/* Card Info Section */
.chroma-card-info {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    z-index: 4;
}

.chroma-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chroma-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.chroma-role {
    font-size: 0.85rem;
    color: #aaa;
}

.chroma-handle {
    font-size: 0.85rem;
    color: var(--card-color);
    font-weight: 500;
}

/* Verified Badge */
.chroma-verified {
    width: 32px;
    height: 32px;
    background: var(--card-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Color Variants */
.chroma-card[data-color="indigo"] { --card-color: #4F46E5; }
.chroma-card[data-color="emerald"] { --card-color: #10B981; }
.chroma-card[data-color="amber"] { --card-color: #F59E0B; }
.chroma-card[data-color="rose"] { --card-color: #F43F5E; }
.chroma-card[data-color="purple"] { --card-color: #8B5CF6; }
.chroma-card[data-color="cyan"] { --card-color: #06B6D4; }
.chroma-card[data-color="pink"] { --card-color: #EC4899; }
.chroma-card[data-color="orange"] { --card-color: #F97316; }
.chroma-card[data-color="teal"] { --card-color: #14B8A6; }

/* Responsive */
@media (max-width: 1100px) {
    .chroma-grid-influencers {
        grid-template-columns: repeat(2, 320px);
    }
}

@media (max-width: 720px) {
    .chroma-grid-influencers {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .chroma-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* On mobile, always show color (no grayscale) */
    .chroma-card-overlay,
    .chroma-card-fade {
        display: none;
    }
}

@media (max-width: 480px) {
    .chroma-card img {
        height: 220px;
    }

    .chroma-card-info {
        padding: 16px;
    }

    .chroma-name {
        font-size: 1rem;
    }
}

/* ===== For Brands Section ===== */
.for-brands {
    background: var(--dark);
}

.brands-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brands-text .section-title {
    text-align: left;
}

.brands-text > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text);
}

.benefits-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.dashboard-preview {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #28c840; }

.preview-title {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.preview-content {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.preview-stat-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 20px;
}

.preview-stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.preview-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.preview-stat-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.preview-stat-change.positive {
    color: #4ade80;
}

.preview-chart {
    grid-column: span 2;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding-top: 20px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--dark-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255, 177, 40, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

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

.pricing-price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.pricing-price .period {
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== MacBook Scroll Section ===== */
.macbook-section {
    min-height: 200vh;
    background: linear-gradient(180deg, var(--dark) 0%, #0a0a1a 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.macbook-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.macbook-title {
    text-align: center;
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
}

.macbook-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.macbook-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.macbook-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.macbook-wrapper {
    perspective: 1200px;
    width: 100%;
    max-width: 900px;
}

.macbook {
    transform-style: preserve-3d;
    transform: rotateX(25deg) scale(0.9);
    transition: transform 0.1s ease-out;
}

/* Lid (Ekran) */
.macbook-lid {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px 20px 0 0;
    padding: 12px 12px 0 12px;
    transform-origin: bottom center;
    box-shadow:
        0 -2px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.macbook-screen {
    position: relative;
    background: #000;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.screen-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease-out;
}

.screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        transparent 100%
    );
    pointer-events: none;
}

.macbook-notch {
    width: 100px;
    height: 20px;
    background: #1a1a1a;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.macbook-notch::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

/* Base (Klavye) */
.macbook-base {
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 0 0 20px 20px;
    padding: 10px 20px 15px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.macbook-keyboard {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.keyboard-row {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.key {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.key-fn { font-size: 7px; min-width: 32px; }
.key-wide { min-width: 50px; }
.key-tab { min-width: 42px; }
.key-caps { min-width: 52px; }
.key-enter { min-width: 56px; }
.key-shift { min-width: 70px; }
.key-ctrl, .key-opt, .key-cmd { min-width: 36px; }
.key-space { min-width: 180px; }
.key-arrow { min-width: 28px; font-size: 12px; }
.key-arrow-ud {
    min-width: 28px;
    flex-direction: column;
    font-size: 8px;
    gap: 0;
    padding: 2px 0;
}
.key-arrow-ud span {
    line-height: 1;
}

.macbook-trackpad {
    width: 45%;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(180deg, #2a2a2a 0%, #222 100%);
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Badge */
.macbook-badge {
    position: absolute;
    bottom: 60px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 177, 40, 0.15);
    border: 1px solid rgba(255, 177, 40, 0.3);
    border-radius: 30px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.macbook-badge .badge-icon {
    font-size: 1rem;
}

/* Scroll-based animation states */
.macbook-section.scrolled .macbook {
    transform: rotateX(0deg) scale(1);
}

.macbook-section.scrolled .macbook-title {
    opacity: 0;
    transform: translateY(-50px);
}

.macbook-section.scrolled .macbook-badge {
    opacity: 1;
    transform: translateY(0);
}

.macbook-section.scrolled .screen-content img {
    transform: scale(1.1);
}

/* Keyboard Glow Effect */
.macbook-keyboard.glowing .key {
    animation: key-glow 2s ease-in-out infinite;
    animation-delay: calc(var(--key-index, 0) * 0.02s);
}

.macbook-keyboard.glowing .key:nth-child(odd) {
    animation-delay: 0.1s;
}

@keyframes key-glow {
    0%, 100% {
        box-shadow:
            0 2px 4px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        border-color: #333;
    }
    50% {
        box-shadow:
            0 2px 4px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 15px rgba(255, 177, 40, 0.3),
            0 0 30px rgba(3, 179, 195, 0.2);
        border-color: rgba(255, 177, 40, 0.4);
    }
}

/* Keyboard row glow animation */
.macbook-keyboard.glowing .keyboard-row:nth-child(1) .key { animation-delay: 0s; }
.macbook-keyboard.glowing .keyboard-row:nth-child(2) .key { animation-delay: 0.1s; }
.macbook-keyboard.glowing .keyboard-row:nth-child(3) .key { animation-delay: 0.2s; }
.macbook-keyboard.glowing .keyboard-row:nth-child(4) .key { animation-delay: 0.3s; }
.macbook-keyboard.glowing .keyboard-row:nth-child(5) .key { animation-delay: 0.4s; }
.macbook-keyboard.glowing .keyboard-row:nth-child(6) .key { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
    .macbook-section {
        min-height: 150vh;
    }

    .macbook-wrapper {
        max-width: 95%;
    }

    .macbook {
        transform: rotateX(20deg) scale(0.8);
    }

    .key {
        min-width: 18px;
        height: 20px;
        font-size: 6px;
    }

    .key-fn { min-width: 20px; font-size: 5px; }
    .key-wide { min-width: 32px; }
    .key-tab { min-width: 28px; }
    .key-caps { min-width: 34px; }
    .key-enter { min-width: 38px; }
    .key-shift { min-width: 46px; }
    .key-ctrl, .key-opt, .key-cmd { min-width: 24px; }
    .key-space { min-width: 100px; }

    .macbook-trackpad {
        height: 40px;
    }

    .macbook-badge {
        bottom: 30px;
        left: 20px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--dark);
}

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

.testimonial-card {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 177, 40, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-content p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    background: var(--gradient-primary);
    padding: 100px 0;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-tagline {
    color: var(--text-muted);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .features-chroma-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .brands-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px;
        gap: 12px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features */
    .features-chroma-grid {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-column: span 1;
    }

    /* Logos */
    .logos-grid {
        gap: 30px;
    }

    .logo-item {
        font-size: 1.2rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===== Site-wide Mouse Glow Effect ===== */
.mouse-glow {
    position: fixed;
    pointer-events: none;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(200, 200, 220, 0.04) 30%,
        rgba(150, 150, 180, 0.02) 50%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mouse-glow.active {
    opacity: 1;
}

/* ===== Custom Cursor ===== */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    top: 0;
    left: 0;
    will-change: transform;
}

.cursor-pointer {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.1s ease;
}

.cursor-pointer svg {
    width: 100%;
    height: 100%;
}

.custom-cursor.hovering .cursor-pointer {
    transform: scale(1.2);
}

.custom-cursor.clicking .cursor-pointer {
    transform: scale(0.9);
}

/* Cursor glow trail */
.cursor-glow-trail {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.custom-cursor.hovering .cursor-glow-trail {
    width: 24px;
    height: 24px;
    top: 4px;
    left: 4px;
    opacity: 0.8;
}

/* Hide default cursor on desktop */
@media (hover: hover) {
    html, body {
        cursor: none !important;
    }

    *, *::before, *::after {
        cursor: none !important;
    }
}

/* Influencer Card Image Fix */
.influencer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .mouse-glow,
    .custom-cursor {
        display: none !important;
    }

    body,
    a, button, .btn {
        cursor: auto;
    }
}

/* ==========================================================================
   IE-FEATURES SECTION - Ultra Premium Bento Grid
   Prefix: ie- (influencerevim) to prevent CSS conflicts
   ========================================================================== */

.ie-features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.ie-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 177, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ie-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.ie-features__header {
    text-align: center;
    margin-bottom: 60px;
}

.ie-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 177, 40, 0.1);
    border: 1px solid rgba(255, 177, 40, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.ie-features__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: ie-pulse 2s ease-in-out infinite;
}

@keyframes ie-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.ie-features__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.ie-features__title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ie-features__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Bento Grid */
.ie-features__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

/* Base Card Styles */
.ie-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ie-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 177, 40, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 177, 40, 0.1);
}

.ie-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 177, 40, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ie-card:hover .ie-card__glow {
    opacity: 1;
}

.ie-card__content {
    position: relative;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.ie-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ie-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ie-card__icon svg {
    width: 24px;
    height: 24px;
}

.ie-card__icon--purple { background: rgba(255, 177, 40, 0.15); color: #FFB128; }
.ie-card__icon--cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.ie-card__icon--green { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.ie-card__icon--orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.ie-card__icon--pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.ie-card__icon--gold {
    background: linear-gradient(135deg, rgba(255, 177, 40, 0.2), rgba(255, 149, 0, 0.15));
    color: #FFD166;
    box-shadow: 0 0 20px rgba(255, 177, 40, 0.2);
}

.ie-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    background: rgba(255, 177, 40, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.ie-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px 0;
}

.ie-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Card Sizes */
.ie-card--main {
    grid-column: span 7;
    grid-row: span 2;
}

.ie-card--analytics {
    grid-column: span 5;
}

.ie-card--security {
    grid-column: span 5;
}

.ie-card--detection {
    grid-column: span 5;
}

.ie-card--rating {
    grid-column: span 3;
}

.ie-card--stats {
    grid-column: span 4;
}

/* Main Card - Match Demo */
.ie-card__visual {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    justify-content: center;
}

.ie-match-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 50px;
    background: rgba(11, 57, 84, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 177, 40, 0.2);
    position: relative;
    overflow: hidden;
}

.ie-match-demo::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(255, 177, 40, 0.3), transparent);
    animation: electric-sweep 3s linear infinite;
    border-radius: 20px;
    z-index: -1;
}

@keyframes electric-sweep {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(0deg); }
}

.ie-match-demo__brand,
.ie-match-demo__influencer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ie-match-demo__brand span,
.ie-match-demo__influencer span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ie-match-demo__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    position: relative;
    animation: avatar-pulse 2s ease-in-out infinite;
}

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

.ie-match-demo__avatar--brand {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.2);
}

.ie-match-demo__avatar--brand::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.5);
    animation: ring-pulse 2s ease-in-out infinite;
}

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

.ie-match-demo__avatar--inf {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5), 0 0 60px rgba(34, 197, 94, 0.2);
}

.ie-match-demo__avatar--inf::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.5);
    animation: ring-pulse 2s ease-in-out infinite 0.5s;
}

.ie-match-demo__line {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    position: relative;
    overflow: visible;
}

.ie-match-demo__pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.8),
        rgba(255, 177, 40, 1),
        rgba(34, 197, 94, 0.8)
    );
    border-radius: 6px;
    animation: ie-match-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 177, 40, 0.6);
}

@keyframes ie-match-pulse {
    0% { transform: translateX(-100%); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.5; }
}

.ie-match-demo__score {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFB128, #FF9500);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0a0a1a;
    box-shadow: 0 4px 20px rgba(255, 177, 40, 0.5);
    animation: score-bounce 2s ease-in-out infinite;
}

@keyframes score-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Analytics Card - Chart */
.ie-card__chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-top: auto;
    padding-top: 16px;
}

.ie-chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px 4px 0 0;
    animation: ie-chart-grow 1s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    transform-origin: bottom;
}

.ie-chart-bar:nth-child(1) { --i: 1; }
.ie-chart-bar:nth-child(2) { --i: 2; }
.ie-chart-bar:nth-child(3) { --i: 3; }
.ie-chart-bar:nth-child(4) { --i: 4; }
.ie-chart-bar:nth-child(5) { --i: 5; }
.ie-chart-bar:nth-child(6) { --i: 6; }
.ie-chart-bar:nth-child(7) { --i: 7; }

@keyframes ie-chart-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Security Card - Shield */
.ie-card__shield {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 16px;
    position: relative;
    height: 80px;
}

.ie-shield-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: ie-shield-pulse 2s ease-in-out infinite;
}

.ie-shield-ring--2 {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
    border-color: rgba(34, 197, 94, 0.15);
}

@keyframes ie-shield-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.ie-shield-icon {
    width: 32px;
    height: 32px;
    color: #4ade80;
    z-index: 1;
}

/* Detection Card - Bar */
.ie-card__detection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.ie-detection-bar {
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.ie-detection-bar__fill {
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    animation: ie-bar-fill 1.5s ease-out forwards;
}

.ie-detection-bar__fill span {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.ie-detection-bar--fake .ie-detection-bar__fill {
    background: linear-gradient(90deg, #f87171, #ef4444);
}

@keyframes ie-bar-fill {
    from { width: 0; }
    to { width: var(--width); }
}

/* Rating Card - Stars */
.ie-card__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 12px 0;
}

.ie-star {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ie-star--filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    animation: ie-star-pop 0.5s ease-out forwards;
}

.ie-star:nth-child(1) { animation-delay: 0.1s; }
.ie-star:nth-child(2) { animation-delay: 0.2s; }
.ie-star:nth-child(3) { animation-delay: 0.3s; }
.ie-star:nth-child(4) { animation-delay: 0.4s; }
.ie-star:nth-child(5) { animation-delay: 0.5s; }

@keyframes ie-star-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.ie-star-rating {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-left: 8px;
}

/* Stats Card */
.ie-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    align-content: center;
}

.ie-stat {
    text-align: center;
}

.ie-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ie-stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ie-features__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .ie-card--main { grid-column: span 6; }
    .ie-card--analytics { grid-column: span 3; }
    .ie-card--security { grid-column: span 3; }
    .ie-card--detection { grid-column: span 3; }
    .ie-card--rating { grid-column: span 3; }
    .ie-card--stats { grid-column: span 6; }
}

@media (max-width: 768px) {
    .ie-features {
        padding: 80px 0;
    }

    .ie-features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ie-card--main,
    .ie-card--analytics,
    .ie-card--security,
    .ie-card--detection,
    .ie-card--rating,
    .ie-card--stats {
        grid-column: span 1;
        grid-row: span 1;
    }

    .ie-card__content {
        padding: 24px;
    }

    .ie-match-demo {
        flex-direction: column;
        gap: 16px;
    }

    .ie-match-demo__line {
        width: 4px;
        height: 40px;
        max-width: none;
    }

    .ie-match-demo__score {
        top: 50%;
        left: auto;
        right: -50px;
        transform: translateY(-50%);
    }

    .ie-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .ie-stat__number {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   HYPERSPEED BACKGROUND - Three.js Road Effect
   ========================================================================== */

.hyperspeed-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hyperspeed-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   GSAP SCROLL ANIMATIONS - Ultra Smooth Transitions
   ========================================================================== */

/* Section Base Styles for GSAP */
main section {
    position: relative;
    will-change: transform, opacity;
}

/* Section Reveal Animation States */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

.gs-reveal-active {
    opacity: 1;
    visibility: visible;
}

/* Content Animation Classes */
.gs-fade-up {
    opacity: 0;
    transform: translateY(80px);
}

.gs-fade-up-active {
    opacity: 1;
    transform: translateY(0);
}

.gs-fade-left {
    opacity: 0;
    transform: translateX(-80px);
}

.gs-fade-left-active {
    opacity: 1;
    transform: translateX(0);
}

.gs-fade-right {
    opacity: 0;
    transform: translateX(80px);
}

.gs-fade-right-active {
    opacity: 1;
    transform: translateX(0);
}

.gs-scale-in {
    opacity: 0;
    transform: scale(0.8);
}

.gs-scale-in-active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation for Grid Items */
.gs-stagger-item {
    opacity: 0;
    transform: translateY(60px);
}

.gs-stagger-item-active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Parallax Effects */
.hero .hero-content {
    will-change: transform;
}

.hero-title .gs-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
    transform-origin: center bottom;
}

.hero-title .gs-word-active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Section Title Animations */
.section-header {
    position: relative;
    overflow: hidden;
}

.section-header .section-badge {
    opacity: 0;
    transform: translateY(20px);
}

.section-header .section-title {
    opacity: 0;
    transform: translateY(40px);
}

.section-header .section-description {
    opacity: 0;
    transform: translateY(30px);
}

/* Card Hover Enhancement with GSAP */
.step-card,
.ie-card,
.chroma-card,
.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Section Dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark));
    pointer-events: none;
    z-index: 1;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Section Navigation - Kepenk Themed */
.section-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 10px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 30px;
    border: 1px solid rgba(255, 177, 40, 0.2);
    backdrop-filter: blur(10px);
}

.section-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 177, 40, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.section-nav-dot::before {
    content: attr(data-label);
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(10, 10, 26, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 177, 40, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.section-nav-dot:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

.section-nav-dot:hover {
    background: rgba(255, 177, 40, 0.6);
    transform: scale(1.3);
}

.section-nav-dot.active {
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(255, 177, 40, 0.6);
    transform: scale(1.2);
}

.section-nav-dot.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 177, 40, 0.4);
    animation: nav-dot-pulse 1.5s ease-in-out infinite;
}

@keyframes nav-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Smooth Scroll Mask Effect */
.scroll-mask {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    background: radial-gradient(ellipse at center, transparent 0%, var(--dark) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-mask.active {
    opacity: 0.3;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(100%);
}

.text-reveal-active .text-reveal-inner {
    transform: translateY(0);
}

/* Magnetic Button Effect Enhancement */
.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Image Reveal */
.img-reveal {
    overflow: hidden;
    position: relative;
}

.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform-origin: right;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.img-reveal-active::after {
    transform: scaleX(0);
}

/* Counter Animation Enhancement */
.stat-number,
.ie-stat__number {
    font-variant-numeric: tabular-nums;
}

/* Floating Animation for Elements */
@keyframes gs-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.gs-float {
    animation: gs-float 6s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes gs-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.gs-pulse {
    animation: gs-pulse 2s ease-in-out infinite;
}

/* Smooth Gradient Animation */
@keyframes gs-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gs-gradient-animated {
    background-size: 200% 200%;
    animation: gs-gradient-shift 8s ease infinite;
}

/* Section Pin Styles */
.section-pinned {
    position: relative;
    z-index: 10;
}

/* Horizontal Scroll Section (if needed) */
.horizontal-scroll-section {
    overflow: hidden;
}

.horizontal-scroll-wrapper {
    display: flex;
    width: fit-content;
}

/* Loading State for GSAP */
.gsap-loading * {
    transition: none !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-nav {
        right: 8px;
        padding: 10px 6px;
        gap: 8px;
        border-radius: 20px;
    }

    .section-nav-dot {
        width: 8px;
        height: 8px;
    }

    .section-nav-dot::before {
        display: none;
    }

    .section-nav-dot.active::after {
        inset: -3px;
    }

    .gs-fade-up {
        transform: translateY(40px);
    }

    .gs-fade-left,
    .gs-fade-right {
        transform: translateY(40px);
    }
}

/* ==========================================================================
   PRELOADER - Logo Animation
   ========================================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    z-index: -1;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 3rem;
    font-weight: 700;
    transform-origin: center center;
    will-change: transform, opacity;
}

.preloader-logo-icon {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloader-pulse 1.5s ease-in-out infinite;
}

.preloader-logo-text {
    color: var(--white);
}

.preloader-logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

@keyframes preloader-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Preloader hiding animation */
.preloader.fade-out {
    pointer-events: none;
}

.preloader.fade-out .preloader-bg {
    animation: preloader-bg-fade 0.8s ease forwards;
}

.preloader.fade-out .preloader-logo {
    animation: preloader-logo-move 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.preloader.fade-out .preloader-progress {
    animation: preloader-progress-fade 0.3s ease forwards;
}

@keyframes preloader-bg-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes preloader-logo-move {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--logo-target-x), var(--logo-target-y)) scale(0.35);
        opacity: 0;
    }
}

@keyframes preloader-progress-fade {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Body loading state */
body.is-loading {
    overflow: hidden;
}

body.is-loading .header {
    opacity: 0;
    transform: translateY(-100%);
}

body.is-loading main {
    opacity: 0;
}

body.loaded .header {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

body.loaded main {
    opacity: 1;
    transition: opacity 0.8s ease 0.5s;
}

/* ==========================================================================
   HYPERSPEED CTA SECTION - Three.js Road Effect
   ========================================================================== */

.hyperspeed-cta {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hyperspeed-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hyperspeed-canvas-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hyperspeed-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 15, 35, 0.5) 70%, rgba(15, 15, 35, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.hyperspeed-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px 20px;
}

.hyperspeed-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 177, 40, 0.15);
    border: 1px solid rgba(255, 177, 40, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hyperspeed-badge-icon {
    font-size: 1.1rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.hyperspeed-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.hyperspeed-gradient {
    background: linear-gradient(135deg, #d856bf 0%, #03b3c3 50%, #FFB128 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hyperspeed-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.hyperspeed-brands {
    margin-bottom: 35px;
    text-align: center;
}

.hyperspeed-brands-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.hyperspeed-brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hyperspeed-brand {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.hyperspeed-brand:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 177, 40, 0.4);
    background: rgba(255, 177, 40, 0.1);
    transform: translateY(-2px);
}

.btn-glow {
    background: linear-gradient(135deg, #d856bf 0%, #FFB128 50%, #03b3c3 100%);
    background-size: 200% 200%;
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 177, 40, 0.4), 0 0 60px rgba(216, 86, 191, 0.2);
    animation: btn-glow-pulse 3s ease infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 177, 40, 0.6), 0 0 80px rgba(216, 86, 191, 0.4);
}

@keyframes btn-glow-pulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hyperspeed-hint {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
    animation: hint-fade 2s ease-in-out infinite;
}

@keyframes hint-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hyperspeed Brand Logo - Göz Kamaştırıcı Merkez Logo */
.hyperspeed-brand-logo {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.hyperspeed-logo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(10, 10, 25, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 177, 40, 0.6);
    border-radius: 14px;
    position: relative;
    overflow: visible;
    box-shadow:
        0 0 20px rgba(255, 177, 40, 0.3),
        0 0 40px rgba(3, 179, 195, 0.2),
        inset 0 0 20px rgba(255, 177, 40, 0.1);
}

/* Dış parlama halkası */
.hyperspeed-logo-inner::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    background: radial-gradient(ellipse at center,
        transparent 50%,
        rgba(255, 177, 40, 0.15) 70%,
        rgba(3, 179, 195, 0.1) 85%,
        transparent 100%);
    animation: outer-glow-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes outer-glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Rengarenk parlayan border */
.hyperspeed-logo-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(90deg, #FFB128, #03b3c3, #d856bf, #f97316, #22c55e, #FFB128);
    background-size: 500% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-flow 4s linear infinite;
    opacity: 1;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* ✦ Logo ikonu - göz kamaştırıcı */
.hyperspeed-logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #FFB128 0%, #03b3c3 30%, #d856bf 60%, #f97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: icon-shimmer 3s ease-in-out infinite, icon-glow 2s ease-in-out infinite;
    filter:
        drop-shadow(0 0 8px rgba(255, 177, 40, 0.8))
        drop-shadow(0 0 16px rgba(3, 179, 195, 0.5))
        drop-shadow(0 0 24px rgba(216, 86, 191, 0.3));
}

@keyframes icon-shimmer {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        background-position: 50% 100%;
        transform: scale(1.05) rotate(5deg);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.15) rotate(15deg);
    }
    75% {
        background-position: 50% 0%;
        transform: scale(1.05) rotate(5deg);
    }
}

@keyframes icon-glow {
    0%, 100% {
        filter:
            drop-shadow(0 0 8px rgba(255, 177, 40, 0.8))
            drop-shadow(0 0 16px rgba(3, 179, 195, 0.5))
            drop-shadow(0 0 24px rgba(216, 86, 191, 0.3));
    }
    50% {
        filter:
            drop-shadow(0 0 12px rgba(3, 179, 195, 1))
            drop-shadow(0 0 24px rgba(255, 177, 40, 0.7))
            drop-shadow(0 0 36px rgba(249, 115, 22, 0.4));
    }
}

.hyperspeed-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 177, 40, 0.4),
        0 0 30px rgba(3, 179, 195, 0.3);
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 177, 40, 0.4),
            0 0 30px rgba(3, 179, 195, 0.3);
    }
    50% {
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.7),
            0 0 30px rgba(255, 177, 40, 0.6),
            0 0 45px rgba(3, 179, 195, 0.4);
    }
}

.hyperspeed-logo-highlight {
    background: linear-gradient(135deg, #FFB128 0%, #03b3c3 50%, #d856bf 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlight-shift 4s ease-in-out infinite;
}

@keyframes highlight-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Çoklu katmanlı glow efekti */
.hyperspeed-logo-glow {
    position: absolute;
    inset: -30px;
    z-index: -1;
    pointer-events: none;
}

.hyperspeed-logo-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        rgba(255, 177, 40, 0.3) 0%,
        rgba(3, 179, 195, 0.2) 30%,
        rgba(216, 86, 191, 0.1) 50%,
        transparent 70%);
    border-radius: 50%;
    animation: glow-breathe 3s ease-in-out infinite;
}

.hyperspeed-logo-glow::after {
    content: '';
    position: absolute;
    inset: 10px;
    background: radial-gradient(ellipse at center,
        rgba(3, 179, 195, 0.25) 0%,
        transparent 60%);
    border-radius: 50%;
    animation: glow-breathe 3s ease-in-out infinite reverse;
}

@keyframes glow-breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ===== BOOST DURUMU - Muhteşem Efektler ===== */
.hyperspeed-brand-logo.boosting .hyperspeed-logo-inner {
    background: rgba(10, 10, 25, 0.9);
    box-shadow:
        0 0 30px rgba(255, 177, 40, 0.6),
        0 0 60px rgba(3, 179, 195, 0.4),
        0 0 90px rgba(216, 86, 191, 0.3),
        inset 0 0 30px rgba(255, 177, 40, 0.2);
}

.hyperspeed-brand-logo.boosting .hyperspeed-logo-inner::before {
    animation: border-flow-fast 0.8s linear infinite;
    opacity: 1;
    background: linear-gradient(90deg, #FFB128, #03b3c3, #d856bf, #f97316, #22c55e, #ef4444, #FFB128);
}

.hyperspeed-brand-logo.boosting .hyperspeed-logo-inner::after {
    animation: outer-glow-boost 0.3s ease-in-out infinite;
    background: radial-gradient(ellipse at center,
        transparent 40%,
        rgba(255, 177, 40, 0.3) 60%,
        rgba(3, 179, 195, 0.25) 75%,
        rgba(216, 86, 191, 0.15) 90%,
        transparent 100%);
}

@keyframes outer-glow-boost {
    0%, 100% { opacity: 0.8; transform: scale(1.05); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes border-flow-fast {
    0% { background-position: 0% 50%; }
    100% { background-position: 500% 50%; }
}

.hyperspeed-brand-logo.boosting .hyperspeed-logo-icon {
    animation: icon-boost-glow 0.3s ease-in-out infinite, icon-boost-rotate 0.5s ease-in-out infinite;
}

@keyframes icon-boost-glow {
    0%, 100% {
        filter:
            drop-shadow(0 0 15px rgba(255, 177, 40, 1))
            drop-shadow(0 0 25px rgba(3, 179, 195, 0.8))
            drop-shadow(0 0 35px rgba(216, 86, 191, 0.6));
    }
    50% {
        filter:
            drop-shadow(0 0 20px rgba(3, 179, 195, 1))
            drop-shadow(0 0 35px rgba(249, 115, 22, 0.9))
            drop-shadow(0 0 50px rgba(255, 177, 40, 0.7));
    }
}

@keyframes icon-boost-rotate {
    0%, 100% { transform: scale(1.1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.15) rotate(0deg); }
    75% { transform: scale(1.2) rotate(-10deg); }
}

.hyperspeed-brand-logo.boosting .hyperspeed-logo-text {
    animation: text-boost-glow 0.4s ease-in-out infinite;
}

@keyframes text-boost-glow {
    0%, 100% {
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 177, 40, 0.7),
            0 0 45px rgba(3, 179, 195, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 1),
            0 0 40px rgba(255, 177, 40, 0.9),
            0 0 60px rgba(3, 179, 195, 0.7);
    }
}

.hyperspeed-brand-logo.boosting .hyperspeed-logo-glow::before {
    animation: glow-boost-pulse 0.4s ease-in-out infinite;
}

.hyperspeed-brand-logo.boosting .hyperspeed-logo-glow::after {
    animation: glow-boost-pulse 0.4s ease-in-out infinite 0.2s;
}

@keyframes glow-boost-pulse {
    0%, 100% { transform: scale(1.2); opacity: 0.9; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Hyperspeed responsive */
@media (max-width: 768px) {
    .hyperspeed-cta {
        min-height: 40vh;
    }

    .hyperspeed-content {
        padding: 30px 15px 15px;
    }

    .hyperspeed-title {
        font-size: 1.4rem;
    }

    .hyperspeed-desc {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .hyperspeed-brand-logo {
        bottom: 10%;
    }

    .hyperspeed-logo-inner {
        padding: 10px 16px;
        gap: 6px;
    }

    .hyperspeed-logo-icon {
        font-size: 1.3rem;
    }

    .hyperspeed-logo-text {
        font-size: 1rem;
    }

    .btn-glow {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .hyperspeed-hint {
        margin-top: 8px;
        font-size: 0.75rem;
    }
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===== Contact Info Styles ===== */
.contact-info {
    margin: 15px 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.contact-link svg {
    color: #25D366;
}

/* ===== Mobile WhatsApp Button ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* ==========================================================================
   GAZİOSMANPAŞA KEPENK TAMİRİ - YEREL SEO BİLEŞENLERİ
   ========================================================================== */

/* ===== Header Navigation Buttons ===== */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emergency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-animation 1.5s ease-in-out infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* ===== Trust Badges Section ===== */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 177, 40, 0.1);
    border: 1px solid rgba(255, 177, 40, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 177, 40, 0.2);
    border-color: rgba(255, 177, 40, 0.5);
    transform: translateY(-3px);
}

.trust-badge span:first-child {
    font-size: 1.3rem;
}

/* ==========================================================================
   NEIGHBORHOODS ULTRA PREMIUM SECTION
   ========================================================================== */

.neighborhoods-ultra {
    position: relative;
    padding: 120px 0;
    background: var(--dark);
    overflow: hidden;
}

.neighborhoods-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.neighborhoods-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 177, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 177, 40, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.neighborhoods-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.neighborhoods-glow--1 {
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, #FFB128 0%, transparent 70%);
    animation: glow-float-1 15s ease-in-out infinite;
}

.neighborhoods-glow--2 {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, #0B3954 0%, transparent 70%);
    animation: glow-float-2 18s ease-in-out infinite;
}

@keyframes glow-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes glow-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -30px) scale(1.1); }
}

.neighborhoods-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.neighborhoods-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 177, 40, 0.1);
    border: 1px solid rgba(255, 177, 40, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}

.neighborhoods-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: badge-pulse-anim 2s ease-in-out infinite;
}

@keyframes badge-pulse-anim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.neighborhoods-badge svg { color: var(--secondary); }

.neighborhoods-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.neighborhoods-title .title-highlight {
    background: linear-gradient(135deg, #FFD166, #FFB128, #FF9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neighborhoods-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Central Hub */
.gop-hub {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 60px;
}

.hub-rings { position: absolute; inset: 0; }

.hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 177, 40, 0.2);
    animation: hub-ring-pulse 3s ease-in-out infinite;
}

.hub-ring--1 { inset: 0; }
.hub-ring--2 { inset: -20px; animation-delay: 0.5s; }
.hub-ring--3 { inset: -40px; animation-delay: 1s; }

@keyframes hub-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 177, 40, 0.2), rgba(11, 57, 84, 0.3));
    border: 2px solid rgba(255, 177, 40, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(255, 177, 40, 0.3);
}

.hub-icon { font-size: 1.8rem; margin-bottom: 4px; }
.hub-text { font-size: 1.3rem; font-weight: 800; color: var(--secondary); }
.hub-subtext { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

.hub-stats {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.hub-stat { text-align: center; }
.hub-stat .stat-value { display: block; font-size: 1.5rem; font-weight: 800; color: var(--secondary); }
.hub-stat .stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Showcase Grid */
.neighborhoods-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.neighborhood-item { perspective: 1000px; }

.neighborhood-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.neighborhood-card-ultra:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.neighborhood-card-ultra .card-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 177, 40, 0) 0%, rgba(255, 177, 40, 0.2) 50%, rgba(255, 177, 40, 0) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.neighborhood-card-ultra:hover .card-glow { opacity: 1; }

.neighborhood-card-ultra .card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 177, 40, 0.3), rgba(255, 177, 40, 0.1), rgba(255, 177, 40, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.neighborhood-card-ultra .card-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 16px;
    z-index: 1;
}

.location-pin {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 177, 40, 0.2), rgba(255, 177, 40, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-pin svg { color: var(--secondary); z-index: 1; }

.location-pin .pin-pulse {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid rgba(255, 177, 40, 0.4);
    animation: pin-pulse-anim 2s ease-in-out infinite;
}

@keyframes pin-pulse-anim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

.card-info { flex: 1; min-width: 0; }
.card-info h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-info .service-type { font-size: 0.8rem; color: var(--text-muted); }

.card-time {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    flex-shrink: 0;
}

.card-time .time-icon { font-size: 0.9rem; }

.neighborhood-card-ultra .card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.neighborhood-card-ultra:hover .card-shine { left: 100%; }

/* CTA */
.neighborhoods-cta { text-align: center; position: relative; z-index: 2; }

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FFB128, #FF9500);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 177, 40, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 177, 40, 0.5);
}

.cta-button .cta-icon, .cta-button .cta-text { position: relative; z-index: 1; }

.cta-button .cta-badge {
    position: relative;
    z-index: 1;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
}

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

@media (max-width: 768px) {
    .neighborhoods-ultra { padding: 80px 0; }
    .neighborhoods-showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .neighborhood-card-ultra .card-content { padding: 16px; }
    .gop-hub { width: 150px; height: 150px; margin-bottom: 80px; }
    .hub-core { width: 90px; height: 90px; }
    .hub-stats { gap: 20px; }
    .cta-button { flex-wrap: wrap; justify-content: center; padding: 16px 28px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .neighborhoods-showcase { grid-template-columns: 1fr; }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--dark);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 177, 40, 0.3);
}

.faq-item.active {
    border-color: rgba(255, 177, 40, 0.5);
    background: rgba(255, 177, 40, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 177, 40, 0.15);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--secondary);
    color: var(--dark);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== Responsive Styles for New Components ===== */
@media (max-width: 1024px) {
    .neighborhoods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .neighborhoods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .neighborhood-card {
        padding: 18px;
    }

    .neighborhood-icon {
        font-size: 1.5rem;
    }

    .neighborhood-card h4 {
        font-size: 0.95rem;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   ELECTRIC BORDER EFFECT - Kepenk Themed
   ========================================================================== */

.electric-border {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.electric-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 177, 40, 0.8) 10%,
        transparent 20%,
        transparent 50%,
        rgba(255, 177, 40, 0.8) 60%,
        transparent 70%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: electric-rotate 4s linear infinite;
}

@keyframes electric-rotate {
    to { transform: rotate(360deg); }
}

/* Electric Glow Effect */
.electric-glow {
    position: relative;
}

.electric-glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(
        45deg,
        rgba(255, 177, 40, 0.4),
        transparent,
        rgba(255, 177, 40, 0.4),
        transparent
    );
    filter: blur(8px);
    opacity: 0.6;
    animation: electric-glow-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes electric-glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ==========================================================================
   KEPENK SEKTÖREL ÖĞELERİ
   ========================================================================== */

/* Kepenk Icon Animation */
.kepenk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 177, 40, 0.2), rgba(11, 57, 84, 0.3));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.kepenk-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    top: 20%;
    animation: kepenk-roll 2s ease-in-out infinite;
}

.kepenk-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 177, 40, 0.5);
    top: 35%;
}

@keyframes kepenk-roll {
    0%, 100% { top: 20%; }
    50% { top: 70%; }
}

/* Motor Pulse Effect */
.motor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--dark-lighter);
    border-radius: 50%;
    border: 2px solid rgba(255, 177, 40, 0.3);
    position: relative;
}

.motor-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    animation: motor-spin 1s linear infinite;
}

@keyframes motor-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Service Timeline */
.service-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: rgba(11, 57, 84, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 177, 40, 0.15);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.timeline-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), #FF9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    position: relative;
}

.timeline-step-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 177, 40, 0.4);
    animation: rotate-dashed 10s linear infinite;
}

@keyframes rotate-dashed {
    to { transform: rotate(360deg); }
}

.timeline-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), rgba(255, 177, 40, 0.3));
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: white;
    filter: blur(3px);
    animation: timeline-flow 1.5s linear infinite;
}

@keyframes timeline-flow {
    from { left: -20px; }
    to { left: calc(100% + 20px); }
}

/* Kepenk Card Hover Effect */
.kepenk-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.kepenk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.kepenk-card:hover {
    border-color: rgba(255, 177, 40, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.kepenk-card:hover::before {
    transform: translateX(100%);
}

/* Sparks Animation for Emergency */
.sparks {
    position: relative;
}

.sparks::before,
.sparks::after {
    content: '⚡';
    position: absolute;
    font-size: 0.8rem;
    opacity: 0;
    animation: spark-fly 2s ease-in-out infinite;
}

.sparks::before {
    top: -10px;
    left: 10%;
    animation-delay: 0s;
}

.sparks::after {
    top: -10px;
    right: 10%;
    animation-delay: 1s;
}

@keyframes spark-fly {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}
