/* ==============================================
   CATEGORIES PAGE STYLES
   ============================================== */

/* Hero Section */
.categories-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.categories-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(181, 61, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(79, 195, 247, 0.1) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

.categories-hero .container {
    position: relative;
    z-index: 1;
}

/* Cząsteczki w tle hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.05;
    animation: floatParticles 20s ease-in-out infinite;
}

.hero-particles::before {
    background: radial-gradient(circle, rgba(255, 107, 157, 0.6) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    background: radial-gradient(circle, rgba(181, 61, 255, 0.6) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
    width: 150px;
    height: 150px;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

.page-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8));
    }
}

.page-title i {
    margin-right: 1rem;
    -webkit-text-fill-color: var(--accent-primary);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: 
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(181, 61, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(79, 195, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.categories-section .container {
    position: relative;
    z-index: 1;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Animacja pojawiania się kafelków */
.category-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }
.category-card:nth-child(8) { animation-delay: 0.8s; }
.category-card:nth-child(9) { animation-delay: 0.9s; }
.category-card:nth-child(10) { animation-delay: 1s; }
.category-card:nth-child(11) { animation-delay: 1.1s; }

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

/* Loading State */
.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
}

.loading-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.loading-state p {
    font-size: 1.125rem;
}

/* Category Card */
.category-card {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Tło kategorii */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    transition: all 0.4s ease;
    z-index: 0;
    filter: blur(2px);
}

.category-card:hover::after {
    opacity: 0.15;
    transform: scale(1.1);
    filter: blur(0px);
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--card-accent), var(--card-accent-secondary), transparent);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-card:hover::before {
    opacity: 0.6;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--card-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px var(--card-accent-glow),
                inset 0 0 20px rgba(var(--card-accent-rgb), 0.1);
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.95) 0%, rgba(20, 20, 35, 1) 100%);
}

/* Category Icon */
.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--card-accent), var(--card-accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--card-accent-glow);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.category-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--card-accent), var(--card-accent-secondary));
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px var(--card-accent-glow);
    animation: float 1.5s ease-in-out infinite;
}

.category-card:hover .category-icon::before {
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* Category Name */
.category-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-name {
    color: var(--card-accent);
    text-shadow: 0 0 20px var(--card-accent-glow);
}

/* Category Description */
.category-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Category Stats */
.category-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.stat-item i {
    color: var(--card-accent);
}

/* Subcategories Preview */
.subcategories-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.subcategory-tag {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.subcategory-tag::before {
    content: '';
    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.5s ease;
}

.subcategory-tag:hover::before {
    left: 100%;
}

.subcategory-tag:hover {
    border-color: var(--card-accent);
    color: var(--card-accent);
    background: rgba(var(--card-accent-rgb), 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* SEO Section */
.seo-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Light Theme Overrides */
body[data-theme="light"] .categories-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e3e9f0 50%, #d9e2ec 100%);
    position: relative;
}

body[data-theme="light"] .categories-hero::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(181, 61, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(79, 195, 247, 0.06) 0%, transparent 50%);
}

body[data-theme="light"] .categories-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 50%, #ffffff 100%);
}

body[data-theme="light"] .categories-section::before {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(181, 61, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(79, 195, 247, 0.04) 0%, transparent 50%);
}

body[data-theme="light"] .category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.98) 100%);
    border-color: rgba(100, 100, 120, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .category-card::after {
    opacity: 0.12;
}

body[data-theme="light"] .category-card:hover::after {
    opacity: 0.22;
}

body[data-theme="light"] .category-card:hover {
    border-color: var(--card-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
                0 0 30px var(--card-accent-glow),
                inset 0 0 20px rgba(var(--card-accent-rgb), 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 252, 1) 100%);
}

body[data-theme="light"] .category-icon {
    box-shadow: 0 6px 20px rgba(var(--card-accent-rgb), 0.35);
}

body[data-theme="light"] .category-card:hover .category-icon {
    box-shadow: 0 12px 40px rgba(var(--card-accent-rgb), 0.5);
}

body[data-theme="light"] .category-name {
    color: #2d3748;
}

body[data-theme="light"] .category-description {
    color: #4a5568;
}

body[data-theme="light"] .stat-item {
    color: #718096;
}

body[data-theme="light"] .stat-item i {
    color: var(--card-accent);
}

body[data-theme="light"] .subcategory-tag {
    background: rgba(247, 250, 252, 0.8);
    border-color: rgba(100, 100, 120, 0.2);
    color: #4a5568;
}

body[data-theme="light"] .subcategory-tag:hover {
    background: rgba(var(--card-accent-rgb), 0.12);
    border-color: var(--card-accent);
    color: var(--card-accent);
}

body[data-theme="light"] .seo-section {
    background: #f7fafc;
}

body[data-theme="light"] .page-title {
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.3));
}

body[data-theme="light"] .page-subtitle {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .category-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 639px) {
    .categories-hero {
        padding: 100px 0 40px;
    }

    .categories-section {
        padding: 40px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .category-card {
        padding: 1.5rem;
    }
    
    .category-card:hover {
        transform: translateY(-5px) scale(1);
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .category-name {
        font-size: 1.25rem;
    }

    .category-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .seo-section {
        padding: 40px 0;
    }

    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    /* Disable parallax on mobile */
    .categories-hero {
        transform: none !important;
    }
    
    /* Simplify animations on mobile */
    .hero-particles {
        display: none;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .categories-hero {
        transform: none !important;
    }
    
    .hero-particles,
    .particle {
        display: none !important;
    }
    
    .category-card:hover {
        transform: translateY(-4px);
    }
    
    .category-icon {
        animation: none !important;
    }
}

/* ============================================== */
/* NEW SECTIONS STYLES */
/* ============================================== */

/* Breadcrumbs */
.breadcrumbs-container {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(181, 61, 255, 0.05));
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.breadcrumbs a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.breadcrumbs li.active {
    color: var(--color-text);
    font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-border);
}

/* Featured Categories Section */
.featured-categories-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.02), transparent);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f5ff, #b53dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.featured-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.featured-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.2);
    transform: translateY(-8px);
}

.featured-card .featured-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-icon {
    transform: scale(1.15) rotate(10deg);
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.featured-card p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.featured-count {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(181, 61, 255, 0.02));
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(181, 61, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.3);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.02), transparent);
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    z-index: 0;
}

.step-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.step-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00f5ff, #b53dff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.step-card h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.step-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    opacity: 1;
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(181, 61, 255, 0.02));
    border-bottom: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    background: rgba(0, 245, 255, 0.05);
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(181, 61, 255, 0.1));
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00f5ff, #b53dff);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.125rem;
}

/* SEO Content Section */
.seo-section {
    padding: 6rem 0;
    background: rgba(0, 245, 255, 0.02);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f5ff, #b53dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.seo-content p {
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.seo-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.seo-ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.seo-ul li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.seo-ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Search Bar */
.search-categories {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--color-text-secondary);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}
