/* 
* Smarters Player Landing Page
* Modern Landing Page with #2d1bae and white color scheme
*/

/* CSS Reset and Base */
:root {
    --primary-color: #2d1bae;
    --primary-color-rgb: 45, 27, 174; /* RGB values of primary color */
    --primary-dark: #261796;
    --primary-light: #3c2ac4;
    --secondary-color: #591885; /* Added for gradients */
    --secondary-color-rgb: 89, 24, 133; /* RGB values of secondary color */
    --accent-color: #ff3a3a; /* For special offer banners */
    --accent-color-rgb: 255, 58, 58; /* RGB values of accent color */
    --text-color: #333333;
    --text-light: #666666;
    --heading-color: #1a1a1a;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e5e7eb;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    font-size: 16px;
    margin-top: 0;
    padding-top: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    outline: none;
    font-size: 1rem;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.secondary-btn:hover {
    background-color: rgba(45, 27, 174, 0.1);
    transform: translateY(-2px);
}

.order-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 1rem;
}

.order-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}


@media (max-width: 768px) {
    /* Mobile styles */
}



/* Header */
/* Remove any gap between header and top of the page */
html:before, body:before {
    display: none !important;
    content: none !important;
}

header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    position: fixed;
    top: 0 !important;
    left: 0;
    margin: 0 !important;
    padding-top: 0 !important;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(45, 27, 174, 0.08);
    border-bottom: 1px solid rgba(45, 27, 174, 0.05);
    transition: all 0.3s ease;
}

/* Add spacing for fixed header only */
main, .main-content, #main {
    margin-top: 68px !important; /* Header height only - ensure hero section positioning remains logical */
}


/* Header on scroll effect */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 0;
    box-shadow: 0 5px 20px rgba(45, 27, 174, 0.15);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(45, 27, 174, 0.15));
}

@media screen and (max-width: 992px) {
    .logo img {
        height: 72px;
    }
    .mobile-menu-logo {
        height: 72px !important;
        max-width: 90vw;
    }

    
    header .container {
        padding: 0.3rem 1rem;
        position: relative;
    }
    
    /* Make sure nav is always accessible */
    nav {
        display: block;
        position: static;
    }
}

.logo:hover img {
    transform: scale(1.05);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: #5e35b1;
    border: 2px solid #7e57c2;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
    margin-left: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(78, 42, 155, 0.3);
}

.mobile-menu-btn:hover {
    background: #7e57c2;
    box-shadow: 0 4px 12px rgba(78, 42, 155, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-btn span {
    width: 100%;
    height: 2.5px;
    background: white; /* White lines for visibility on purple */
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 2px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

nav ul {
    display: flex;
    align-items: center;
}

nav li {
    margin-left: 1.8rem;
    position: relative;
}

nav a {
    font-weight: 600;
    color: var(--text-color);
    padding: 0.5rem 0.2rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Active nav link */
nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(125deg, var(--primary-color) 0%, #1b0e8f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    z-index: 0;
    opacity: 0.5;
    /* Removed CPU-intensive animation */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
    color: #ff3a3a;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 58, 58, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.hero-content h2 {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content .highlight-count {
    color: #ff3a3a;
    font-weight: 700;
    position: relative;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature i {
    color: #4cff4c;
    font-size: 1.1rem;
}

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-cta .primary-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff3a3a, #ff5252);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 58, 58, 0.3);
    transition: all 0.3s ease;
}

.hero-cta .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 58, 58, 0.4);
}

.hero-cta .primary-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta .primary-btn:hover i {
    transform: translateX(5px);
}

.hero-cta .primary-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.6s ease;
    opacity: 0;
}

.hero-cta .primary-btn:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
    opacity: 1;
}

.hero-cta .secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-cta .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-trust i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-image img {
    width: 110%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-image:hover img {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.25);
}

/* Hero badge removed */

/* Floating elements removed */

/* Float animation removed */

@keyframes pulse-slow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(90deg, rgba(45, 27, 174, 0.03), rgba(255, 255, 255, 0));
    transform: rotate(-35deg) translateY(50%) translateX(-50%);
    z-index: -1;
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 27, 174, 0.15);
    border-color: rgba(45, 27, 174, 0.2);
}

.feature-card:hover:before {
    transform: rotate(-35deg) translateY(10%) translateX(-30%);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), rgba(45, 27, 174, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(45, 27, 174, 0.2);
    transition: all 0.4s ease;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: pulseBorder 2s infinite ease-in-out;
    box-shadow: 
        0 0 10px rgba(122, 109, 237, 0.5),
        0 0 20px rgba(89, 24, 133, 0.3);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(45, 27, 174, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: white;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-card h3:after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    transition: all 0.4s ease;
}

.feature-card:hover h3:after {
    width: 80px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.1), rgba(45, 27, 174, 0.05));
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 27, 174, 0.1);
}

.feature-card:hover .feature-highlight {
    background: linear-gradient(135deg, var(--primary-color), rgba(45, 27, 174, 0.8));
    color: white;
    box-shadow: 0 5px 15px rgba(45, 27, 174, 0.2);
}

/* Content Showcase Section */
.content-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto 5rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 1.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.15, 0.85, 0.45, 1.2);
    height: 100%;
    min-height: 480px;
    /* Add hardware acceleration to prevent rendering artifacts */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, 
        rgba(var(--primary-color-rgb), 0.03) 0%, 
        rgba(var(--secondary-color-rgb), 0.03) 100%);
    z-index: -1;
}

.showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

/* Badge */
.showcase-badge {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 2rem;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.25);
    z-index: 10;
    animation: pulse 2s infinite;
}

/* Icon */
.showcase-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.showcase-icon-outer {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(var(--primary-color-rgb), 0.2), 
        rgba(var(--secondary-color-rgb), 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-icon-outer::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color));
    opacity: 0.5;
    z-index: -1;
    animation: pulse-slow 3s infinite;
}

.showcase-icon-inner {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

.showcase-icon-inner i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Content */
.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-counter {
    margin-bottom: 0.5rem;
    position: relative;
}

.showcase-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
}

.showcase-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.showcase-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Features list */
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.showcase-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 3px rgba(var(--primary-color-rgb), 0.3));
}

.showcase-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* 4K Quality Badge */
.quality-badge {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 78, 80, 0.3);
    position: relative;
    margin-bottom: 0.75rem;
}

.quality-badge::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.4;
    filter: blur(6px);
}

/* Animations */

.mobile-nav-header h4 {
    white-space: nowrap;
    font-size: 1.08rem;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
    }
}

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

/* Responsive */
@media screen and (max-width: 1024px) {
    .content-showcase {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    body, html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Fix rendering artifacts on mobile */
    .showcase-card, .feature-card, .pricing-card, .testimonial-card,
    .hero-box, .cta-card, .faq-item {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .content-showcase {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }
    
    .showcase-card {
        padding: 2.5rem 1.5rem 2rem;
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        min-height: auto;
    }
    
    .showcase-number {
        font-size: 2.5rem;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .quality-badge {
        font-size: 1.6rem;
        padding: 0.4rem 1rem;
    }
    
    /* Fix container overflow issues on mobile */
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Ensure all sections respect container width */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .downloads, .pricing, .features, .hero-section,
    .testimonials, .faq, .content-preview, .footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 480px) {
    .showcase-card {
        padding: 3rem 1.5rem 2rem;
    }
    
    .showcase-badge {
        font-size: 0.7rem;
        top: 1rem;
        right: 1rem;
    }
    
    .showcase-icon-outer {
        width: 75px;
        height: 75px;
    }
    
    .showcase-icon-inner {
        width: 60px;
        height: 60px;
    }
    
    .showcase-icon-inner i {
        font-size: 1.6rem;
    }
}

.content-categories {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-nav-header .nav-icon {
    margin-right: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
}

/* Move hamburger menu toggle up for alignment with logo */
.mobile-menu-toggle {
    margin-top: -58px !important;
    display: flex;
    align-items: center;
    background: #2d1bae !important;
    border-color: #2d1bae !important;
}

.mobile-nav-header .nav-toggle-icon {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    background: #2d1bae !important;
    border-color: #2d1bae !important;
}

.category {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 240px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.category img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.category:hover .category-overlay {
    opacity: 1;
}

.category-content {
    color: white;
    z-index: 2;
}

.category-content h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

.category-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 90%;
}

.category-footer {
    display: none;
}

/* Content Library Preview Section */
.content-preview {
    padding: 5rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(247, 247, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.content-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(45, 27, 174, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(45, 27, 174, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 60% 80%, rgba(45, 27, 174, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 20% 70%, rgba(45, 27, 174, 0.05) 0%, transparent 20%);
}

.content-preview .container {
    position: relative;
    z-index: 2;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.1), rgba(45, 27, 174, 0.05));
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(45, 27, 174, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.content-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), rgba(45, 27, 174, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 27, 174, 0.1);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), rgba(45, 27, 174, 0.8));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(45, 27, 174, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary-color), #4e40b3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.content-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    aspect-ratio: 1/1;
    background: white;
}

.ca.testimonial-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 5px rgba(45, 27, 174, 0.1);
    color: #2d1bae;
}

.testimonial-nav:hover::before {
    opacity: 1;
}

.category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category img {
    width: 100%;
    height: calc(100% - 40px); /* Subtract footer height */
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

.category:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px); /* Subtract footer height */
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    padding: 1.5rem;
}

.category:hover .category-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.85), rgba(45, 27, 174, 0.95));
}

.category-content {
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
    width: 100%;
}

.category:hover .category-content {
    opacity: 1;
    transform: scale(1);
}

.category h3 {
    color: white;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0;
    background: none;
}

.category p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.category-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category:hover .category-footer {
    background: var(--primary-color);
    color: white;
}

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

.content-cta {
    background: linear-gradient(135deg, var(--primary-color), rgba(45, 27, 174, 0.8));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 27, 174, 0.2);
}

.content-cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.content-cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.content-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.content-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.content-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: #ff3a3a;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(255, 58, 58, 0.3);
    transition: all 0.3s ease;
}

.content-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 58, 58, 0.4);
    background: #ff5252;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,27,174,0.1) 0%, rgba(45,27,174,0) 70%);
    top: -100px;
    left: -100px;
}

.pricing::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,27,174,0.1) 0%, rgba(45,27,174,0) 70%);
    bottom: -200px;
    right: -100px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 20px;
    overflow: visible;
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: visible;
    z-index: 1;
    transform-style: preserve-3d;
    margin-top: 30px;
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent 70%, rgba(45, 27, 174, 0.1) 100%);
    border-radius: 0 16px 0 120px;
    z-index: -1;
}

.price-card.featured .card-decoration {
    background: linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.1) 100%);
}

.card-highlight-text {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: rgba(45, 27, 174, 0.1);
    color: var(--primary-color);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 0 20px 20px 0;
    z-index: 2;
}

.price-card.featured .card-highlight-text {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, transparent 0%, rgba(45, 27, 174, 0.03) 100%);
    z-index: -1;
}

.price-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    transition: all 0.6s ease;
}

.price-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 27, 174, 0.2);
}

.price-card:hover::after {
    transform: scale(1.5);
    opacity: 0.15;
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.97) 0%, rgba(60, 42, 196, 0.97) 100%);
    color: white;
    transform: scale(1.05);
    z-index: 2;
    border: none;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-15px) rotateX(5deg);
}

.badge {
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    min-width: 100px;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(255, 58, 58, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    overflow: visible;
}

.price-card.featured .badge {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.price-card h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -8px;
    left: 25%;
    border-radius: 4px;
    opacity: 0.6;
}

.price-card.featured h3:after {
    background: linear-gradient(90deg, transparent, white, transparent);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0 2rem;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.05);
}

.price-card.featured .price {
    color: white;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.price-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price-card.featured .price-description {
    color: rgba(255, 255, 255, 0.8);
}

.popular-tag {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 1rem;
}

.popular-tag i {
    color: #FFD700;
    margin-right: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1) translateZ(0);
    }
    50% {
        transform: scale(1.1) translateZ(0);
    }
    100% {
        transform: scale(1) translateZ(0);
    }
}

/* Dollar sign is now part of the HTML */

.price-features {
    margin-bottom: 2rem;
}

.price-features p {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    background: rgba(45, 27, 174, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card.featured .price-features i {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.order-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(45, 27, 174, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    transform: translateZ(0);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    opacity: 0.8;
    font-size: 0.9rem;
}

.order-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: all 0.6s ease;
    z-index: -1;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(45, 27, 174, 0.3);
    background-color: var(--primary-dark);
}

.order-btn:hover i {
    transform: translateX(5px);
    opacity: 1;
}

.order-btn:hover:before {
    animation: shine 1.5s infinite;
}

.price-card.featured .order-btn {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.price-card.featured .order-btn:hover {
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.9);
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: modalFadeIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-header {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
}

.order-steps {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: var(--background-alt);
}

.step {
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding-bottom: 0.5rem;
}

.step.active {
    color: var(--primary-color);
}

.step.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.form-step {
    padding: 1.5rem;
}

.form-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 27, 174, 0.2);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.payment-method {
    flex-basis: calc(25% - 1rem);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.payment-method.active {
    border-color: var(--primary-color);
    background-color: rgba(45, 27, 174, 0.05);
}

.payment-method.active i {
    color: var(--primary-color);
}

.payment-form.hidden {
    display: none;
}

.confirmation-message {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-message i {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: var(--background-alt);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 1.25rem;
    max-height: 500px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(45, 27, 174, 0.12), rgba(45, 27, 174, 0.04));
    z-index: 0;
    filter: blur(40px);
    /* Removed animation to improve performance */
    opacity: 0.6;
    will-change: auto; /* Reset will-change property */
}

.testimonials::before {
    top: -100px;
    left: -50px;
}

.testimonials::after {
    bottom: -100px;
    right: -50px;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 1rem 0;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.testimonial {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
    transform: translateZ(0);
}

.testimonial.active {
    opacity: 1;
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
}

.testimonial-content:before {
    content: '"';
    font-size: 5rem;
    color: rgba(45, 27, 174, 0.1);
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
    font-family: serif;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    padding: 1.5rem 2rem;
    background: linear-gradient(to right, rgba(45, 27, 174, 0.03), rgba(45, 27, 174, 0.08));
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Avatar images removed */

@keyframes pulse-subtle {
    0% {
        transform: scale(1) translateZ(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.03) translateZ(0);
        opacity: 0.6;
    }
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 20px;
    position: relative;
    z-index: 5;
}

.testimonial-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid rgba(45, 27, 174, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 5px rgba(45, 27, 174, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.testimonial-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.1), rgba(45, 27, 174, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-nav:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 5px rgba(45, 27, 174, 0.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(45, 27, 174, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-dot:hover {
    background-color: rgba(45, 27, 174, 0.4);
    transform: scale(1.1);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(45, 27, 174, 0.15);
}

.stars {
    color: #FFD700;
    margin-top: 0.25rem;
}

/* Download Section */
.download {
    background-color: var(--background);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download .section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.download-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
}

.platform-category {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1 1 300px;
    max-width: 380px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.platform-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.platform-category h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.platform-category h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-button {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.download-button i {
    font-size: 2rem;
}

.button-text {
    display: flex;
    flex-direction: column;
}

.button-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.button-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Button styles by platform */
.download-button.android {
    background: linear-gradient(135deg, #689f38, #33691e);
}

.download-button.ios {
    background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.download-button.huawei {
    background: linear-gradient(135deg, #c2185b, #880e4f);
}

.download-button.windows {
    background: linear-gradient(135deg, #0078d7, #004e8c);
}

.download-button.mac {
    background: linear-gradient(135deg, #5c6bc0, #283593);
}

.download-button.linux {
    background: linear-gradient(135deg, #f57c00, #e65100);
}

.download-button.android-tv {
    background: linear-gradient(135deg, #8bc34a, #558b2f);
}

.download-button.fire-tv {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.download-button.roku {
    background: linear-gradient(135deg, #673ab7, #311b92);
}

/* Premium hover effects with brand colors */
.download-button:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    padding: 14px 19px; /* Adjust for border */
}

.download-button:hover i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

.download-button:hover .button-text span {
    opacity: 1;
}

.download-button:hover .button-text strong {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(45, 27, 174, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.download-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.download-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.download-note a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.download-note a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .download {
        padding: 80px 0;
    }
    
    .platform-category {
        flex: 1 1 280px;
    }
}

@media (max-width: 768px) {
    .download-platforms {
        gap: 25px;
    }
    
    .platform-category {
        padding: 25px;
        width: 100%;
    }
    
    .download-button {
        padding: 12px 15px;
    }
    
    .download-button i {
        font-size: 1.8rem;
    }
}

/* Mobile Reset Styles */
@media (max-width: 576px) {
    * {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        outline: none !important;
    }
    
    /* Super strong overrides for icon backgrounds */
    body .content-showcase .showcase-card .showcase-icon-outer,
    html body .content-showcase .showcase-card .showcase-icon-outer {
        background: #5e35b1 !important;
        border-radius: 50% !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    body .content-showcase .showcase-card .showcase-icon-inner,
    html body .content-showcase .showcase-card .showcase-icon-inner {
        background: #4527a0 !important;
        border-radius: 50% !important;
        width: 54px !important;
        height: 54px !important;
    }
    
    /* Explicitly preserve backgrounds on icon containers */
    .showcase-icon-outer,
    .showcase-icon-inner {
        background-clip: padding-box !important;
        -webkit-background-clip: padding-box !important;
    }
    
    /* Reset any styles that might cause rendering artifacts */
    .content-showcase, .showcase-card, .feature-card, .pricing-card,
    .testimonial-card, .hero-content, .cta-section, .download-section,
    .faq-section, .footer {
        border: none !important;
        outline: none !important;
        background-clip: padding-box !important;
        -webkit-background-clip: padding-box !important;
        box-shadow: none !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
    
    /* Strong overrides specifically for icon backgrounds on mobile */
    .showcase-card .showcase-icon-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .showcase-card .showcase-icon-outer {
        /* Use !important with both background properties for mobile */
        background-color: #5e35b1 !important;
        background: linear-gradient(135deg, #7e57c2, #5e35b1) !important;
        background-image: linear-gradient(135deg, #7e57c2, #5e35b1) !important;
        border-radius: 9999px !important; /* Force circular shape */
        width: 70px !important;
        height: 70px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15) !important;
        position: relative !important;
        z-index: 10 !important;
        margin-bottom: 1.5rem !important;
        overflow: visible !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
    
    .showcase-card .showcase-icon-inner {
        /* Strong consistent background color */
        background-color: #4527a0 !important;
        background: #4527a0 !important;
        background-image: none !important;
        border-radius: 9999px !important; /* Force circular shape */
        width: 54px !important;
        height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        z-index: 11 !important;
        overflow: visible !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Apply solid backgrounds instead of transparent ones for mobile */
    .showcase-card, .feature-card, .pricing-card {
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Fix specific card borders causing gray lines */
    .showcase-card::before, .feature-card::before, .pricing-card::before,
    .showcase-card::after, .feature-card::after, .pricing-card::after {
        display: none !important;
    }
    
    /* Fix download section buttons */
    .platform-buttons {
        gap: 10px;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .download-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .download-note {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 10px;
    }
    
    /* Create mobile-specific card design that eliminates gray lines */
    .showcase-card {
        border-radius: 12px !important;
        background: linear-gradient(to bottom, #ffffff, #f7f7ff) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        border: none !important;
        overflow: visible !important;
        padding: 2rem 1.5rem !important;
        position: relative !important;
        margin-bottom: 2rem !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 1 !important;
    }
    
    /* Restore icon containers and make them visible */
    .showcase-icon-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .showcase-icon-outer {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
        border-radius: 50% !important;
        width: 70px !important;
        height: 70px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15) !important;
        margin-bottom: 1.5rem !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .showcase-icon-inner {
        border-radius: 50% !important;
        background: var(--primary-color) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        font-size: 24px !important;
        box-shadow: 0 5px 15px rgba(45, 27, 174, 0.3) !important;
        position: relative !important;
        z-index: 5 !important;
    }
    
    /* Force display of specific icons */
    .showcase-icon-inner i {
        color: #ffffff !important;
        font-size: 28px !important;
        display: inline !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
        background: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        font-style: normal !important;
    }
    
    /* Force FontAwesome icons to display */
    .showcase-icon-inner i.fas,
    .showcase-icon-inner i.fab,
    .showcase-icon-inner i.far {
        display: inline-block !important;
        font-size: 24px !important;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-font-smoothing: antialiased !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Restore text colors while maintaining gray line fix */
    .showcase-card .showcase-title {
        color: var(--heading-color) !important;
    }
    
    .showcase-card .showcase-description {
        color: var(--text-color) !important;
    }
    
    .showcase-card .showcase-feature {
        color: var(--text-color) !important;
    }
    
    .showcase-card .showcase-feature i {
        color: var(--primary-color) !important;
    }
    
    .showcase-card .showcase-badge {
        color: white !important;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    }
    
    .showcase-card .showcase-counter {
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Target specifically the third card with 4K UHD badge */
    .showcase-card:nth-child(3) .showcase-counter {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Restore gradient numbers */
    .showcase-card .showcase-number {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: var(--primary-color) !important;
        font-weight: 700 !important;
    }
    
    .showcase-card .quality-badge {
        background: linear-gradient(135deg, #ff6b00, #ff3a3a) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        text-shadow: 0 2px 10px rgba(255, 58, 58, 0.3) !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Critical icon fixes for mobile - ensure proper icon display */
    i.fas, i.fab, i.far {
        font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
        display: inline-block !important;
        font-style: normal !important;
        font-variant: normal !important;
        text-rendering: auto !important;
        line-height: 1 !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-weight: 900 !important; /* Critical for solid icons */
    }
    
    /* Fix Font Awesome brand icons */
    i.fab {
        font-family: "Font Awesome 5 Brands" !important;
        font-weight: 400 !important;
    }
    
        /* Mobile icons fix with Font Awesome Web Font approach */
    .showcase-icon-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        background: var(--primary-color) !important;
        border-radius: 50% !important;
        width: 54px !important;
        height: 54px !important;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    }

    /* Universal Font Awesome reset for mobile */
    .showcase-icon-inner i.fas, 
    .showcase-icon-inner i.fa, 
    .showcase-icon-inner i.far, 
    .showcase-icon-inner i.fal,
    .showcase-icon-inner i.fab {
        /* Essential Font Awesome rendering properties */
        font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid", "FontAwesome", sans-serif !important;
        font-style: normal !important;
        font-weight: 900 !important; /* 900 for solid icons */
        font-display: block !important;
        -moz-osx-font-smoothing: grayscale !important;
        -webkit-font-smoothing: antialiased !important;
        
        /* Display properties */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        
        /* Size and color */
        font-size: 24px !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
        color: #ffffff !important;
        text-shadow: 0px 1px 2px rgba(0,0,0,0.2) !important;
        
        /* Reset any problematic properties */
        background: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        position: relative !important;
        z-index: 15 !important;
    }
    
    /* Specific Unicode for each icon to force proper rendering */
    .showcase-icon-inner i.fas.fa-film::before {
        content: "\f008" !important;
        display: block !important;
    }
    
    .showcase-icon-inner i.fas.fa-tv::before {
        content: "\f26c" !important;
        display: block !important;
    }
    
    .showcase-icon-inner i.fas.fa-video::before {
        content: "\f03d" !important;
        display: block !important;
    }
    
    /* Card-specific styles with targeted icon and circle fixes */
    .showcase-card:nth-child(1) .showcase-icon-outer {
        background: #5e35b1 !important;
        border-radius: 50% !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    .showcase-card:nth-child(2) .showcase-icon-outer {
        background: #5e35b1 !important;
        border-radius: 50% !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    .showcase-card:nth-child(3) .showcase-icon-outer {
        background: #5e35b1 !important;
        border-radius: 50% !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    .showcase-card:nth-child(1) .showcase-icon-inner {
        background: #4527a0 !important;
        border-radius: 50% !important;
        width: 54px !important;
        height: 54px !important;
    }
    
    .showcase-card:nth-child(2) .showcase-icon-inner {
        background: #4527a0 !important;
        border-radius: 50% !important;
        width: 54px !important;
        height: 54px !important;
    }
    
    .showcase-card:nth-child(3) .showcase-icon-inner {
        background: #4527a0 !important;
        border-radius: 50% !important;
        width: 54px !important;
        height: 54px !important;
    }
    
    .showcase-card::before,
    .showcase-card::after,
    .feature-card::before,
    .feature-card::after,
    .pricing-card::before,
    .pricing-card::after {
        display: none !important;
    }
    
    /* Fix all potential horizontal overflow issues */
    body, html {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: clip !important; /* Using clip instead of hidden */
        box-sizing: border-box !important;
    }
    
    /* Remove horizontal scroll on all elements */
    section, div, main, article, aside, header, footer, nav {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix gray lines and visual artifacts on mobile */
    .showcase-card, .feature-card, .pricing-card, .testimonial-card {
        border: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        -webkit-font-smoothing: antialiased !important;
    }
    
    .showcase-card::before, .feature-card::before, .pricing-card::before,
    .showcase-card::after, .feature-card::after, .pricing-card::after {
        opacity: 0.7 !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        border: none !important;
    }
    
    /* Fix icon rendering issues */
    i.fas, i.fab, i.far, span.fas, span.fab, span.far,
    .showcase-icon-wrapper, .showcase-icon-outer, .showcase-icon-inner,
    .feature-icon, .feature-highlight, .feature-icon-container,
    .pricing-badge, .pricing-feature i, .showcase-badge {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Eliminate any gradient overlays or pseudo-elements causing lines */
    .showcase-icon-wrapper::before, .showcase-icon-wrapper::after,
    .showcase-icon-outer::before, .showcase-icon-outer::after,
    .showcase-icon-inner::before, .showcase-icon-inner::after,
    .feature-icon::before, .feature-icon::after,
    .feature-icon-container::before, .feature-icon-container::after {
        display: none !important;
        content: none !important;
        border: none !important;
        background: none !important;
        box-shadow: none !important;
    }
    
    /* Fix gradient and border rendering issues */
    .showcase-counter, .showcase-number, .pricing-price, .hero-tag,
    .hero-subtitle, .cta-title, .testimonial-quote {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-font-smoothing: antialiased !important;
        text-rendering: optimizeLegibility !important;
    }
    
    .downloads {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .downloads .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Contact Section */
/* Modern Contact Section */
.contact {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(245,247,255,1) 100%);
}

.contact-bg-decoration {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45,27,174,0.05) 0%, rgba(45,27,174,0.02) 70%, rgba(45,27,174,0) 100%);
    border-radius: 50%;
    z-index: 0;
}

.contact-bg-circle {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45,27,174,0.03) 0%, rgba(45,27,174,0.01) 70%, rgba(45,27,174,0) 100%);
    border-radius: 50%;
    z-index: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(45, 27, 174, 0.2);
}

.contact .section-title {
    margin-bottom: 1rem;
}

.contact .section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.contact .section-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(45, 27, 174, 0.1);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: space-between;
}

.contact-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    flex: 1;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.1) 50%, 
                rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 27, 174, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

.contact-item:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    margin-right: 1.5rem;
}

/* Removed hover effect for icon wrapper */

/* Removed inner circle */

/* Removed circular border animation */

/* Removed unused animation */

/* Premium text-based icons */
/* Service icon styling */
.service-icon {
    width: 46px;
    height: 46px;
    position: relative;
    z-index: 1;
}

/* Removed hover effect for service icons */

.service-icon path {
    fill: url(#icon-gradient);
}

/* Create 3D effect with gradients for icons */
.email-icon path {
    fill: url(#email-gradient);
}

.chat-icon path {
    fill: url(#chat-gradient);
}

.social-icon path {
    fill: url(#social-gradient);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}



.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.contact-details p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.response-time {
    font-size: 0.85rem;
    color: #777;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(45, 27, 174, 0.05);
    border-radius: 30px;
}

.contact-testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: white;
    position: relative;
    margin-top: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 27, 174, 0.2);
}

.contact-testimonial::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.contact-testimonial::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
}

.quote-icon {
    font-size: 1.75rem;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.contact-testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 500;
    opacity: 0.7;
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(45, 27, 174, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.form-header p {
    color: #666;
}

.form-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(45,27,174,0.03) 0%, rgba(45,27,174,0) 70%);
    border-radius: 50%;
    bottom: -125px;
    right: -125px;
    z-index: 0;
}

/* Floating Label Inputs */
.floating-label {
    position: relative;
    margin-bottom: 1.75rem;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #e0e0f5;
    border-radius: 12px;
    background-color: #f8f9ff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-label input:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 27, 174, 0.1);
    background-color: white;
}

.floating-label label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #777;
    pointer-events: none;
    transition: 0.3s ease all;
}

.floating-label input:focus + label,
.floating-label textarea:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    padding: 0 0.4rem;
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 27, 174, 0.25);
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-testimonial {
        margin-bottom: 2rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media screen and (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        gap: 3rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
}

/* Mobile menu styles - Force visibility with !important */
.mobile-menu-open nav ul {
    right: 0 !important; /* Slide in from right */
    display: flex !important;
    pointer-events: auto !important;
}

.mobile-menu-open .mobile-menu-btn {
    background: rgba(78, 42, 155, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 7px);
    width: 100%;
}

.mobile-menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-open .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -7px);
    width: 100%;
}

@media screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important; /* Force display */
        flex-direction: column;
        justify-content: space-around;
        position: absolute;
        right: 1rem;
        top: 16px; /* Fixed position instead of relative */
        margin: 0;
        padding: 10px;
        width: 42px;
        height: 42px;
        border-radius: 6px;
        border: 2px solid #9575cd;
        background: #2d1bae !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 9999;
    }
    
    /* Mobile menu container */
    nav ul {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: linear-gradient(135deg, rgba(45, 27, 174, 0.97), rgba(96, 36, 156, 0.97));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        padding: 5rem 0 2rem;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 998;
    }
    
    nav ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: rgba(34, 18, 75, 0.8);
        z-index: -1;
    }
    
    nav li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    nav li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.4s ease;
    }
    
    /* Staggered animation for menu items */
    .mobile-menu-open nav li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu-open nav li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu-open nav li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu-open nav li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-menu-open nav li:nth-child(5) { transition-delay: 0.3s; }
    .mobile-menu-open nav li:nth-child(6) { transition-delay: 0.35s; }
    .mobile-menu-open nav li:nth-child(7) { transition-delay: 0.4s; }
    .mobile-menu-open nav li:nth-child(8) { transition-delay: 0.45s; }
    .mobile-menu-open nav li:nth-child(9) { transition-delay: 0.5s; }
    
    /* Make menu items visible when menu is open */
    .mobile-menu-open nav li {
        opacity: 1;
        transform: translateX(0);
    }
    
    nav li a {
        color: white !important;
        padding: 1rem 0.5rem;
        display: block;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        font-size: 0.9rem;
    }
    
    /* Premium style active indicator */
    nav li.active a {
        background: rgba(255, 255, 255, 0.12);
        color: var(--accent-color) !important;
        position: relative;
    }
    
    nav li.active a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
    }
    
    nav li a:hover, nav li a:focus {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 1rem;
        color: var(--accent-color) !important;
    }
    
    nav li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0.5rem;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
    }
    
    nav li a:hover::after {
        width: 40px;
    }
    
    nav a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 0;
    }
}

@media screen and (max-width: 480px) {
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 1rem;
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .content-categories {
        grid-template-columns: 1fr;
    }
    
    .payment-method {
        flex-basis: calc(50% - 0.5rem);
        margin-bottom: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Animation & Transitions */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

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

/* Performance Optimizations */
img, video {
    will-change: transform;
    transform: translateZ(0);
}

.content-categories,
.pricing-cards,
.features-grid,
.platform-buttons,
.testimonial-slider {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
