/*
Theme Name: ProductTickler Pro
Description: A stunning dark theme with smooth animations and modern design for ProductTickler, based on the new design.
Version: 2.1.0
Author: Your Team
Text Domain: productickler
*/

/* --- CSS Variables --- */
:root {
    --color-background: #0F0B21;
    --color-primary: #8444F9; /* Accent Purple */
    --color-primary-light: #9966FF;
    --color-secondary: #00D4AA; /* Accent Teal */
    --color-text: #FFFFFF;
    --color-text-muted: #A9A5B8;
    --color-card-bg: rgba(43, 40, 79, 0.5);
    --color-card-border: rgba(132, 68, 249, 0.2);
    --font-family-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    --header-height: 80px;
    
    /* New High-Tech Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neo-shadow-light: rgba(255, 255, 255, 0.1);
    --neo-shadow-dark: rgba(0, 0, 0, 0.3);
    --particle-color: rgba(132, 68, 249, 0.6);
    --gradient-x: 50%;
    --gradient-y: 50%;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family-sans);
    background-color: var(--color-background);
    background-image: 
        radial-gradient(circle at var(--gradient-x) var(--gradient-y), rgba(132, 68, 249, 0.15) 0%, transparent 50%),
        radial-gradient(circle at calc(100% - var(--gradient-x)) calc(100% - var(--gradient-y)), rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(132, 68, 249, 0.05) 0%, transparent 50%);
    color: var(--color-text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- PARTICLE SYSTEM BACKGROUND --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--particle-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
    animation: float 20s infinite linear;
}

.particle:nth-child(odd) {
    animation-direction: reverse;
    animation-duration: 25s;
}

.particle.geometric {
    border-radius: 0;
    transform: rotate(45deg);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0.2;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(-10px);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(10px);
        opacity: 0;
    }
}

@keyframes floatSide {
    0% {
        transform: translateX(-100px) translateY(-10px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100vw) translateY(10px);
        opacity: 0;
    }
}

/* --- FLOATING ELEMENTS - REMOVED DEFAULT BEHAVIOR --- */
.floating-element {
    /* Removed default floating animation for better readability */
}

.floating-element:nth-child(even) {
    /* Removed animation delay */
}

.floating-element:nth-child(3n) {
    /* Removed animation delay */
}

/* Only float on hover now */
.floating-element:hover {
    animation: gentleFloat 2s ease-in-out infinite;
}

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

/* --- LOADING SKELETON --- */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 16px;
}

.skeleton-card {
    height: 200px;
    border-radius: 16px;
}

/* --- ENHANCED SCROLL ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animate-fade-in.animate {
    opacity: 1;
}

#page {
    position: relative;
    z-index: 2;
}

.site-content {
    padding-top: var(--header-height);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: var(--color-text);
    text-shadow: 0 0 10px rgba(132, 68, 249, 0.5);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- ENHANCED BUTTONS WITH MICRO-INTERACTIONS --- */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: scale(0.95);
}

/* FIXED: Demo Button now has proper green color with glassmorphism */
.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), #00b894);
    color: var(--color-background);
    box-shadow: 
        0 8px 32px rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b894, var(--color-secondary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 212, 170, 0.4),
        0 5px 15px rgba(0, 212, 170, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Purple Button with glassmorphism */
.btn-secondary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-text);
    box-shadow: 
        0 8px 32px rgba(132, 68, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(132, 68, 249, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(132, 68, 249, 0.4),
        0 5px 15px rgba(132, 68, 249, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(132, 68, 249, 0.5);
}

/* --- ENHANCED HEADER WITH FIXED NAVIGATION HIGHLIGHT --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(15, 11, 33, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    background: rgba(15, 11, 33, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(132, 68, 249, 0.5);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: var(--color-text);
    box-shadow: 
        0 4px 15px rgba(132, 68, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.site-logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
        0 6px 20px rgba(132, 68, 249, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

/* FIXED: Proper navigation highlight instead of weird line */
.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--color-text);
    background: rgba(132, 68, 249, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(132, 68, 249, 0.2);
}

/* Remove the weird line effect */
.main-nav a::after {
    display: none;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* --- ENHANCED HERO SECTION --- */
.hero-section {
    padding: 120px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(90vh - var(--header-height));
    position: relative;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-text), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(132, 68, 249, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 170, 0.5));
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    padding: 16px 32px;
}

.hero-buttons .btn-primary {
    padding: 16px 32px;
}

/* --- ENHANCED FEATURES GRID WITH GLASSMORPHISM & 3D EFFECTS --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    padding: 0 20px;
    text-align: left;
    max-width: 1200px;
    margin: -50px auto 100px;
    position: relative;
    z-index: 10;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
    position: relative;
    overflow: hidden;
}

.feature-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);
    transition: left 0.8s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(132, 68, 249, 0.2),
        inset 0 1px 0 var(--neo-shadow-light);
    border-color: var(--color-primary);
}

.feature-card:nth-child(2):hover {
    transform: translateY(-20px) scale(1.02) rotateX(5deg) rotateY(-5deg);
}

.feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(132, 68, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 var(--neo-shadow-dark);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(132, 68, 249, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 var(--neo-shadow-dark);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-text), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.5;
}

/* --- DETAILED FEATURES SECTION WITH ADVANCED EFFECTS --- */
.features-detailed-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.feature-detailed-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    backdrop-filter: blur(20px);
    text-align: left;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.feature-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-detailed-card:hover::before {
    opacity: 1;
}

.feature-detailed-card:hover {
    transform: translateY(-15px) scale(1.01) rotateX(2deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(132, 68, 249, 0.2),
        inset 0 1px 0 var(--neo-shadow-light);
    border-color: var(--color-primary);
}

.feature-detailed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 450px;
}

.feature-detailed-card:nth-child(even) .feature-detailed-content {
    grid-template-columns: 1fr 1fr;
}

.feature-detailed-card:nth-child(even) .feature-detailed-text {
    order: 2;
}

.feature-detailed-card:nth-child(even) .feature-detailed-image {
    order: 1;
}

.feature-detailed-text {
    padding: 50px;
}

.feature-detailed-image {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
}

.feature-detailed-card:nth-child(even) .feature-detailed-image {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05), rgba(0, 212, 170, 0.02));
    border-radius: 24px 0 0 24px;
}

.feature-detailed-card:nth-child(odd) .feature-detailed-image {
    background: linear-gradient(135deg, rgba(132, 68, 249, 0.05), rgba(132, 68, 249, 0.02));
    border-radius: 0 24px 24px 0;
}

.feature-detailed-tag {
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.feature-detailed-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-text), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-detailed-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.feature-detailed-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.feature-detailed-stat {
    text-align: center;
    flex: 1;
    position: relative;
}

.feature-detailed-stat::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-detailed-card:hover .feature-detailed-stat::after {
    opacity: 1;
}

.feature-detailed-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.feature-detailed-stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.feature-detailed-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.feature-detailed-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-detailed-list li:hover {
    color: var(--color-text);
    transform: translateX(5px);
}

.feature-detailed-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(132, 68, 249, 0.5);
}

.feature-detailed-cta {
    margin-bottom: 10px;
}

.screenshot-placeholder {
    width: 100%;
    max-width: 420px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(132, 68, 249, 0.2);
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
}

.screenshot-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(132, 68, 249, 0.3);
}

/* FIXED: High-quality SVG rendering */
.screenshot-svg {
    width: 100%;
    height: 100%;
    font-family: var(--font-family-sans);
    shape-rendering: crispEdges;
    text-rendering: optimizeLegibility;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Ensure SVG text is crisp */
.screenshot-svg text {
    font-family: var(--font-family-sans);
    text-rendering: optimizeLegibility;
    shape-rendering: crispEdges;
}

/* Ensure SVG shapes are crisp */
.screenshot-svg rect,
.screenshot-svg circle,
.screenshot-svg line {
    shape-rendering: crispEdges;
}

.screenshot-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(132, 68, 249, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    pointer-events: none;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-placeholder:hover::after {
    opacity: 1;
}

/* --- SMART TOOLTIPS --- */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 11, 33, 0.95);
    color: var(--color-text);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: calc(100% - 6px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 11, 33, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

/* Rich tooltips with multiple lines */
.tooltip-rich::before {
    white-space: pre-line;
    max-width: 300px;
    text-align: left;
    line-height: 1.4;
}

/* --- ENHANCED STATS & TESTIMONIALS WITH GLASSMORPHISM --- */
.stats-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
}

.stat-card, .testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 var(--neo-shadow-light);
}

.stat-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s;
}

.stat-card:hover::before,
.testimonial-card:hover::before {
    left: 100%;
}

.stat-card:hover,
.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02) rotateX(3deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(132, 68, 249, 0.2),
        inset 0 1px 0 var(--neo-shadow-light);
    border-color: var(--color-primary);
}

.stat-icon {
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(132, 68, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(132, 68, 249, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(132, 68, 249, 0.3);
    background: linear-gradient(135deg, var(--color-text), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-title {
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 8px 0;
    font-weight: 600;
}

.stat-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.stars svg {
    color: #FFD700;
    fill: #FFD700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-primary);
    position: absolute;
    top: -10px;
    left: -15px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* --- Common Section Styles --- */
.section-tag {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.stats-section, .testimonials-section, .pricing-section, .faq-section {
    text-align: center;
}

.testimonials-section .section-description,
.pricing-section .section-description,
.faq-section .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* FIXED: Typography hierarchy */
.testimonials-tag-large {
    font-size: 1.2rem !important;
    color: var(--color-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 80px !important; /* Added more vertical spacing */
}

.testimonials-subtitle-small {
    font-size: 1.5rem !important;
    color: var(--color-text-muted) !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-description-big {
    font-size: 1.3rem !important;
    color: var(--color-text) !important;
    font-weight: 600;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Pricing Section --- */
.pricing-section .section-title span {
    color: var(--color-secondary);
}

/* FIXED: Pricing title centering */
.pricing-title-centered {
    text-align: center;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}

/* FIXED: Toggle switch with proper green color and fade effect */
.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    background: var(--color-card-bg);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--color-secondary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--color-text);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(25px);
}

/* FIXED: Yearly savings with fade effect */
.yearly-savings {
    background: rgba(0, 212, 170, 0.15);
    color: var(--color-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yearly-savings.visible {
    opacity: 1;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(43, 40, 79, 0.5) 0%, rgba(43, 40, 79, 0.2) 100%);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    margin: 60px auto 0;
    max-width: 450px;
    backdrop-filter: blur(10px);
    position: relative;
    text-align: left;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
}
.pricing-subtitle {
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    display: inline-block;
}

.pricing-period {
    display: inline-block;
    margin-left: 8px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(132, 68, 249, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238444F9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    border-radius: 50%;
}

.pricing-card .btn {
    width: 100%;
}

/* --- FAQ Section --- */
/* FIXED: FAQ title centering */
.faq-title-centered {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    text-align: left;
}
.faq-column h3 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FIXED: FAQ icons with proper styling */
.faq-icon-general {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 212, 170, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon-product {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(132, 68, 249, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item {
    border-bottom: 1px solid var(--color-card-border);
}

.faq-question {
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer-content {
    padding-bottom: 20px;
    line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
    background-color: #0A071A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

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

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

.footer-section a:hover {
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}
.footer-bottom > div a {
    color: var(--color-text-muted);
    margin-left: 20px;
}
.footer-bottom > div a:hover {
    color: var(--color-text);
}

/* --- Animations & Transitions from JS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- REMOVED: Red dots at bottom --- */
.red-dots {
    display: none !important;
}

/* Any element with class containing "red" or "dot" at bottom of page */
.site-footer::after {
    display: none !important;
}

/* Remove any pseudo-elements that might be red dots */
*::after,
*::before {
    background-color: transparent !important;
}

/* Specific removal of red dots */
body::after,
html::after,
.site::after,
#page::after {
    display: none !important;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-detailed-content {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    .feature-detailed-card:nth-child(even) .feature-detailed-text,
    .feature-detailed-card:nth-child(even) .feature-detailed-image {
        order: unset;
    }
    .feature-detailed-image {
        min-height: 250px;
        border-radius: 0 0 20px 20px !important;
    }
    .feature-detailed-card:nth-child(even) .feature-detailed-image,
    .feature-detailed-card:nth-child(odd) .feature-detailed-image {
        border-radius: 0 0 20px 20px !important;
    }
    .feature-detailed-stats {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }
    section { padding: 80px 20px; }
    
    .header-container {
        position: relative;
    }
    .main-nav {
        display: none; /* Simplification, a real theme would have a mobile menu toggle */
    }
    .header-buttons {
        display: none; /* Simplification */
    }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }

    .features-grid, .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-detailed-section {
        padding: 60px 20px;
    }
    
    .features-detailed-grid {
        gap: 30px;
    }
    
    .feature-detailed-text {
        padding: 30px 20px;
    }
    
    .feature-detailed-image {
        padding: 15px;
        min-height: 200px;
    }
    
    .feature-detailed-title {
        font-size: 1.5rem;
    }
    
    .feature-detailed-description {
        font-size: 1rem;
    }
    
    .screenshot-placeholder {
        max-width: 100%;
        height: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section .site-logo {
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .feature-detailed-card {
        padding: 30px 20px;
    }
    
    .pricing-toggle {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* FIXES for ProductTickler Theme - Add these to style.css */

/* FIXED: Remove tooltips from navigation completely */
.main-nav a.tooltip::before,
.main-nav a.tooltip::after,
.main-nav a[data-tooltip]::before,
.main-nav a[data-tooltip]::after {
    display: none !important;
}

/* Remove question mark icons and tooltip behavior from nav */
.main-nav a {
    position: relative;
}

/* Remove any pseudo elements that might be question marks */
.main-nav a::before,
.main-nav a::after {
    display: none !important;
}

/* FIXED: High-quality SVG rendering for crisp preview images */
.screenshot-svg {
    width: 100%;
    height: 100%;
    font-family: var(--font-family-sans);
    shape-rendering: geometricPrecision; /* Changed from crispEdges */
    text-rendering: geometricPrecision; /* Changed from optimizeLegibility */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure SVG text is crisp and high quality */
.screenshot-svg text {
    font-family: var(--font-family-sans);
    text-rendering: geometricPrecision;
    shape-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
}

/* Ensure SVG shapes are crisp and high quality */
.screenshot-svg rect,
.screenshot-svg circle,
.screenshot-svg line,
.screenshot-svg path {
    shape-rendering: geometricPrecision;
    vector-effect: non-scaling-stroke;
}

/* Force high DPI rendering */
.screenshot-placeholder {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* FIXED: Remove floating animation from feature panels completely */
.floating-element {
    /* Remove all default floating animations */
}

.floating-element:nth-child(even),
.floating-element:nth-child(3n) {
    /* Remove animation delays */
}

/* Only very subtle hover effect, no floating */
.floating-element:hover {
    animation: none !important;
    transform: translateY(-3px) scale(1.01);
    transition: all 0.3s ease;
}

/* Remove the gentleFloat animation completely */
@keyframes gentleFloat {
    /* Empty - effectively disabled */
}

/* FIXED: Enhanced button hover effects without text replacement */
.btn {
    position: relative;
    overflow: visible; /* Changed from hidden to prevent clipping of glow */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Remove the weird sliding effect */
.btn::before {
    display: none !important;
}

/* Enhanced button hover without text replacement */
.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(132, 68, 249, 0.4);
    filter: brightness(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Specific fixes for primary and secondary buttons */
.btn-primary:hover {
    background: linear-gradient(135deg, #00b894, var(--color-secondary));
    box-shadow: 
        0 15px 35px rgba(0, 212, 170, 0.4),
        0 5px 15px rgba(0, 212, 170, 0.2);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    box-shadow: 
        0 15px 35px rgba(132, 68, 249, 0.4),
        0 5px 15px rgba(132, 68, 249, 0.2);
    text-shadow: 0 0 10px rgba(132, 68, 249, 0.5);
}

/* FIXED: Pricing toggle - ensure proper state management */
.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    background: var(--color-card-bg);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--color-card-border);
}

.toggle-switch.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--color-text);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(25px);
}

/* FIXED: Yearly savings fade effect */
.yearly-savings {
    background: rgba(0, 212, 170, 0.15);
    color: var(--color-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.yearly-savings.visible {
    opacity: 1;
}

/* FIXED: FAQ accordion improvements */
.faq-question {
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

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

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--color-primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding-bottom: 20px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* FIXED: Remove very mild background gradient effect */
:root {
    --gradient-x: 50%;
    --gradient-y: 50%;
}

body {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(132, 68, 249, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(132, 68, 249, 0.02) 0%, transparent 50%);
}

/* FIXED: Remove any remaining tooltip styles */
.tooltip,
.tooltip-rich {
    position: relative;
}

.tooltip::before,
.tooltip::after,
.tooltip-rich::before,
.tooltip-rich::after {
    display: none !important;
}

/* FIXED: Navigation hover effect - keep it simple */
.main-nav a {
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--color-text);
    background: rgba(132, 68, 249, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(132, 68, 249, 0.2);
}

/* Remove any weird line effects or pseudo elements */
.main-nav a::after,
.main-nav a::before {
    display: none !important;
}

/* FIXED: Ensure pricing display elements are properly hidden/shown */
#monthlyPrice,
#yearlyPrice,
#monthlyPeriod,
#yearlyPeriod {
    display: inline-block;
    transition: opacity 0.3s ease;
}

/* Initially hide yearly pricing */
#yearlyPrice,
#yearlyPeriod {
    display: none;
}

/* FIXED: Remove particle effects responsiveness issues */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.6; /* Reduced opacity for subtlety */
}

.particle {
    position: absolute;
    background: var(--particle-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.2; /* Reduced from 0.4 */
    animation: float 20s infinite linear;
}

/* FIXED: Ensure smooth scrolling doesn't interfere with other animations */
html {
    scroll-behavior: auto; /* Disabled CSS scroll-behavior, using JS instead */
    overflow-x: hidden;
}

/* FIXED: Improve screenshot quality with better scaling */
.screenshot-placeholder {
    width: 100%;
    max-width: 420px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(132, 68, 249, 0.2);
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    transform: scale(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.screenshot-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(132, 68, 249, 0.3);
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .particles-container {
        display: none; /* Hide particles on mobile for performance */
    }
    
    .btn:hover {
        transform: translateY(-1px) scale(1.02); /* Reduced hover effect on mobile */
    }
    
    .screenshot-svg {
        font-size: 8px; /* Smaller text for mobile SVGs */
    }
}

/* TONED DOWN 3D EFFECTS - Add this to your style.css to override the extreme 3D effects */

/* Much more subtle 3D card tilt effects */
.feature-detailed-card,
.stat-card,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-detailed-card:hover,
.stat-card:hover,
.testimonial-card:hover {
    /* Very subtle 3D rotation - reduced from 10 to 2 degrees max */
    transform: translateY(-8px) scale(1.01) rotateX(1deg) rotateY(1deg) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(132, 68, 249, 0.15);
    border-color: rgba(132, 68, 249, 0.3);
}

/* Even more subtle for alternating cards */
.feature-detailed-card:nth-child(2):hover {
    transform: translateY(-8px) scale(1.01) rotateX(1deg) rotateY(-1deg) !important;
}

/* Reduce perspective to make 3D effect less pronounced */
.features-detailed-section,
.stats-section,
.testimonials-section {
    perspective: 2000px !important; /* Increased from 1000px to make effect more subtle */
    perspective-origin: center center;
}

/* Tone down the icon rotation effects */
.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(2deg) !important; /* Reduced from scale(1.1) rotate(5deg) */
    box-shadow: 
        0 8px 20px rgba(132, 68, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* More subtle stat card hover */
.stat-card:hover .stat-icon {
    transform: scale(1.05) rotate(2deg) !important; /* Reduced rotation */
    box-shadow: 
        0 8px 20px rgba(132, 68, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Reduce the extreme card lifting */
.feature-card:hover,
.pricing-card:hover {
    transform: translateY(-6px) scale(1.01) !important; /* Reduced from -15px and scale(1.02) */
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(132, 68, 249, 0.15);
}

/* Subtle testimonial star effects */
.testimonial-card:hover .stars svg {
    transform: scale(1.05) !important; /* Reduced from scale(1.1) */
}

/* More reasonable button hover effects */
.btn:hover {
    transform: translateY(-2px) scale(1.02) !important; /* Reduced from scale(1.05) */
    box-shadow: 0 6px 20px rgba(132, 68, 249, 0.3);
}

/* Reduce the extreme mousemove tilt effect by overriding the JavaScript-applied styles */
.feature-detailed-card[style*="rotateX"],
.stat-card[style*="rotateX"],
.testimonial-card[style*="rotateX"] {
    transform: translateY(-8px) scale(1.01) rotateX(0.5deg) rotateY(0.5deg) !important;
}

/* Ensure the screenshot placeholder doesn't get too dramatic */
.screenshot-placeholder:hover {
    transform: scale(1.01) !important; /* Reduced from scale(1.02) */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(132, 68, 249, 0.2);
}

/* Override any extreme transforms that might be applied via JavaScript */
.feature-detailed-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
}

.feature-detailed-card:nth-child(even):hover {
    transform: translateY(-8px) scale(1.01) !important;
}