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

/* Premium Glass Morphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Advanced Gradient Mesh */
.gradient-mesh {
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 226, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* BetGroup Global Brand Background */
.brand-background {
    background: 
        radial-gradient(circle at 10% 20%, rgba(21, 101, 192, 0.6) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(56, 142, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(30, 115, 230, 0.3) 0%, transparent 40%),
        linear-gradient(145deg, #1565C0 0%, #0D47A1 50%, #1976D2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.brand-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.brand-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

html {
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 400px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: brightness(1.1);
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger:hover {
    background: rgba(37, 99, 235, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Enhanced Modern Hero Section */
.hero.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 25%, #6366f1 50%, #8b5cf6 75%, #a855f7 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, rgba(0, 0, 0, 0.1), transparent);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-slow 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content Styles */
.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.title-main {
    display: block;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.title-accent {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn-cta {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
}

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

.btn-cta:hover .btn-shine {
    left: 100%;
}

.btn-secondary-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Trust Stats */
.hero-trust {
    animation: fadeInUp 0.8s ease 1.2s both;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

/* Laptop Mockup */
.laptop-container {
    position: relative;
    z-index: 3;
}

.laptop-mockup {
    position: relative;
    width: 400px;
    height: 300px;
    perspective: 1000px;
}

.laptop-screen {
    width: 100%;
    height: 75%;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 8px 8px 0 0;
    border: 3px solid #374151;
    position: relative;
    overflow: hidden;
    transform: rotateX(-10deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.laptop-base {
    width: 105%;
    height: 25%;
    background: linear-gradient(145deg, #6b7280, #4b5563);
    border-radius: 0 0 20px 20px;
    position: absolute;
    bottom: 0;
    left: -2.5%;
    transform: rotateX(-10deg) rotateY(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Screen Content */
.screen-content {
    padding: 1rem;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.app-title i {
    color: #3b82f6;
}

.dashboard-controls {
    display: flex;
    gap: 0.3rem;
}

.control-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.control-item.active {
    background: #3b82f6;
}

.dashboard-stats {
    display: flex;
    gap: 1rem;
    height: calc(100% - 3rem);
}

.stat-card {
    background: #3b82f6;
    border-radius: 8px;
    padding: 0.8rem;
    color: white;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content {
    text-align: center;
}

.card-label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-bottom: 0.3rem;
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
}

.dashboard-chart {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-area {
    width: 100%;
    height: 60px;
    margin-bottom: 0.5rem;
}

.performance-chart {
    width: 100%;
    height: 100%;
}

.revenue-display {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.revenue-symbol {
    font-size: 1.2rem;
    color: #00d4aa;
    font-weight: 700;
}

.revenue-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

/* Gold Coins */
.floating-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: float-coins 4s ease-in-out infinite;
}

.coin-face {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border: 2px solid #f59e0b;
}

.coin-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.coin-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 45%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes float-coins {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(-8px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    animation: float-icons 6s ease-in-out infinite;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle.shopify {
    background: linear-gradient(135deg, #95bf47, #7ab832);
}

.icon-circle.gift {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.icon-circle.shopping {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.icon-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0.5s;
}

.icon-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 3.5s;
}

@keyframes float-icons {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-12px) scale(1.1);
    }
    66% {
        transform: translateY(-6px) scale(0.95);
    }
}

/* Sparkle Effects */
.sparkle {
    position: absolute;
    font-size: 1.2rem;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 35%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 10%;
    right: 25%;
    animation-delay: 0.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Success Badge */
.success-badge {
    position: absolute;
    bottom: 20%;
    left: -15%;
    z-index: 4;
    animation: float-badge 4s ease-in-out infinite;
}

.badge-content {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.badge-title {
    font-size: 0.8rem;
    opacity: 0.9;
}

.badge-value {
    font-size: 1.1rem;
    font-weight: 700;
}

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

/* Animation Keyframes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design for Enhanced Hero Section */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .hero-container {
        max-width: 1300px;
        gap: 5rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    
    .laptop-mockup {
        width: 450px;
        height: 350px;
    }
    
    .floating-coin {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

/* Medium screens (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }
    
    .hero-description {
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    
    .laptop-mockup {
        width: 350px;
        height: 260px;
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    .floating-coin {
        width: 50px;
        height: 50px;
    }
    
    .coin-symbol {
        font-size: 1.2rem;
    }
    
    .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .success-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -10%;
    }
}

/* Small screens (480px - 768px) */
@media (max-width: 768px) {
    .hero.modern-hero {
        padding: 6rem 0 3rem;
        min-height: 90vh;
    }
    
    .hero-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .badge-icon {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1.2rem;
    }
    
    .title-sub {
        font-size: clamp(1rem, 2vw, 1.4rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        margin-bottom: 2.5rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-cta,
    .btn-secondary-outline {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-stats {
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.3rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    
    .laptop-mockup {
        width: 300px;
        height: 220px;
    }
    
    .floating-coin {
        width: 45px;
        height: 45px;
    }
    
    .coin-symbol {
        font-size: 1.1rem;
    }
    
    .icon-circle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .sparkle {
        font-size: 1rem;
    }
    
    .success-badge {
        bottom: -15%;
    }
    
    .badge-content {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .badge-title {
        font-size: 0.75rem;
    }
    
    .badge-value {
        font-size: 1rem;
    }
}

/* Extra small screens (320px - 480px) */
@media (max-width: 480px) {
    .hero.modern-hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-icon {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .title-sub {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        gap: 0.8rem;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .feature-title {
        font-size: 0.85rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
    
    .btn-cta,
    .btn-secondary-outline {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .trust-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-item {
        align-items: center;
        text-align: center;
        min-width: 80px;
    }
    
    .trust-number {
        font-size: 1.1rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    .laptop-mockup {
        width: 250px;
        height: 180px;
    }
    
    .screen-content {
        padding: 0.8rem;
    }
    
    .app-title {
        font-size: 0.8rem;
    }
    
    .card-label {
        font-size: 0.6rem;
    }
    
    .card-value {
        font-size: 0.9rem;
    }
    
    .revenue-symbol {
        font-size: 1rem;
    }
    
    .revenue-amount {
        font-size: 1.2rem;
    }
    
    .floating-coin {
        width: 35px;
        height: 35px;
    }
    
    .coin-symbol {
        font-size: 0.9rem;
    }
    
    .icon-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .sparkle {
        font-size: 0.8rem;
    }
    
    .success-badge {
        display: none; /* Hide on very small screens for cleaner layout */
    }
}

/* Landscape orientation for small screens */
@media (max-width: 768px) and (orientation: landscape) {
    .hero.modern-hero {
        min-height: 100vh;
        padding: 4rem 0 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-description {
        margin: 0 0 1.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .trust-stats {
        justify-content: flex-start;
    }
    
    .laptop-mockup {
        width: 280px;
        height: 200px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .laptop-screen,
    .success-badge,
    .floating-coin {
        border-width: 0.5px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .floating-coin,
    .floating-icon,
    .sparkle,
    .success-badge,
    .floating-shapes .shape {
        animation: none;
    }
    
    .btn-cta:hover,
    .btn-secondary-outline:hover {
        transform: none;
    }
    
    .btn-shine {
        display: none;
    }
}

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

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Hero Visual */
.hero-visual {
    display: grid;
    gap: 1.5rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Enhanced Hero Elements */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.typewriter-text {
    display: block;
    margin-bottom: 0.5rem;
}

.typed-text {
    display: block;
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: rgba(255, 255, 255, 0.7); }
    51%, 100% { border-color: transparent; }
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
}

.hero-stat .stat-symbol {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.btn-text {
    margin-right: 0.5rem;
}

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

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: var(--gradient-accent);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

/* Alternating background colors for service cards */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(59, 130, 246, 0.1);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-color: rgba(245, 158, 11, 0.1);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: rgba(34, 197, 94, 0.1);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-color: rgba(236, 72, 153, 0.1);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: rgba(147, 51, 234, 0.1);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(16, 185, 129, 0.1);
}

/* Enhanced hover effects for alternating cards */
.service-card:nth-child(1):hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card:nth-child(2):hover {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.service-card:nth-child(3):hover {
    background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.service-card:nth-child(4):hover {
    background: linear-gradient(135deg, #f9a8d4 0%, #f472b6 100%);
    border-color: rgba(236, 72, 153, 0.2);
}

.service-card:nth-child(5):hover {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
    border-color: rgba(147, 51, 234, 0.2);
}

.service-card:nth-child(6):hover {
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
    border-color: rgba(16, 185, 129, 0.2);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Enhanced hover effects for coordinated icons */
.service-card:nth-child(1):hover .service-icon {
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card:nth-child(2):hover .service-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card:nth-child(3):hover .service-icon {
    background: linear-gradient(135deg, #34d399, #10b981);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card:nth-child(4):hover .service-icon {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card:nth-child(5):hover .service-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-card:nth-child(6):hover .service-icon {
    background: linear-gradient(135deg, #34d399, #10b981);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Coordinated icon colors for each service card */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Solutions Section */
.solutions {
    background: var(--bg-secondary);
}

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

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.solution-item:hover {
    transform: translateY(-3px);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.solution-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #ffffff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="benefits-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-grid)"/></svg>');
    opacity: 0.5;
}

.benefits-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-text {
    text-align: center;
}

.benefits-header {
    margin-bottom: 3rem;
}

.benefits-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 1.5rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-description {
    margin-bottom: 3rem;
}

.benefits-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-paragraph strong {
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-section {
        padding: 4rem 0;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-paragraph {
        font-size: 1rem;
    }
    
    .benefits-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 30%, #ddd6fe 70%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(99,102,241,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.partners::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.02) 50%, transparent 70%);
    animation: subtle-rotate 20s linear infinite;
    z-index: 0;
}

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

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

.partners .section-header {
    position: relative;
    padding: 2rem 0 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 4rem;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.partners .section-title {
    background: linear-gradient(135deg, #1e293b, #3730a3, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: none;
    margin-bottom: 1rem;
}

.partners .section-subtitle {
    color: #475569;
    font-weight: 500;
    opacity: 0.9;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner-logo {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.logo-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 80px;
}

.logo-image {
    max-width: 140px;
    max-height: 70px;
    width: 140px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: grayscale(30%) opacity(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 4px;
    background: transparent;
}

/* Placeholder Logo Styles for Australian Partners */
.placeholder-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 70px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.partner-logo:hover .logo-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.partner-logo:hover .placeholder-logo {
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: none; /* Hide text when using images */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.partner-logo:hover .logo-text {
    transform: scale(1.05);
}

.partner-type {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.partner-stat:hover {
    transform: translateY(-3px);
}

.partner-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.partner-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Partner Logo Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.partner-logo:nth-child(odd) {
    animation: logoFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.partner-logo:nth-child(even) {
    animation: logoFloat 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Responsive Partner Logos */
@media (max-width: 768px) {
    .partners {
        padding: 4rem 0;
    }
    
    .partners::after {
        animation-duration: 30s; /* Slower rotation on mobile for better performance */
    }
    
    .partners .section-header {
        padding: 1.5rem 0 2rem;
        margin-bottom: 3rem;
    }
    
    .partners .section-title {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 3rem 0;
    }
    
    .partners .section-header {
        padding: 1rem 0 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .partners .section-title {
        font-size: 1.6rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .partners::after {
        animation: none;
    }
    
    .partner-logo:nth-child(odd),
    .partner-logo:nth-child(even) {
        animation: none;
    }
    
    .partner-logo {
        padding: 1.5rem 1rem;
    }
    
    .logo-image {
        max-width: 100px;
        max-height: 50px;
        width: 100px;
        height: 50px;
    }
    
    .placeholder-logo {
        width: 100px;
        height: 50px;
        font-size: 0.85rem;
    }
    
    .partner-type {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 1rem 0.75rem;
    }
    
    .logo-image {
        max-width: 80px;
        max-height: 40px;
        width: 80px;
        height: 40px;
    }
    
    .placeholder-logo {
        width: 80px;
        height: 40px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .logo-container {
        min-height: 60px;
    }
}

/* Responsive Partners Section */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-logo {
        padding: 1.5rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .partner-type {
        font-size: 0.75rem;
    }
    
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    position: relative;
}

/* Affiliate Benefits Showcase */
.affiliate-benefits-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.benefits-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

/* Responsive Affiliate Benefits */
@media (max-width: 768px) {
    .affiliate-benefits-showcase {
        margin: 3rem 0;
        padding: 1.5rem;
    }
    
    .benefits-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .affiliate-benefits-showcase {
        margin: 2rem 0;
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .benefits-image:hover {
        transform: none; /* Disable hover effects on mobile */
    }
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.author-stats {
    display: flex;
    gap: 1rem;
}

.author-stats .stat {
    background: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.metric-item {
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Built For Everyone - Modern Redesign */
.built-for-everyone {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
  color: #fff;
  overflow: hidden;
}

.built-for-everyone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.built-for-everyone .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.built-for-everyone .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.built-for-everyone .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #60a5fa;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.built-for-everyone .section-badge:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.built-for-everyone .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.built-for-everyone .section-subtitle {
  font-size: 1.3rem;
  color: #94a3b8;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Interactive User Type Selector */
.user-type-selector {
  margin: 60px auto 80px;
  max-width: 800px;
}

.selector-track {
  display: flex;
  gap: 20px;
  background: rgba(15, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px;
  backdrop-filter: blur(10px);
}

.type-selector {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  border-radius: 16px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.type-selector.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.type-selector:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.selector-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.type-selector.active .selector-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.selector-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.selector-content p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.3;
}

.selector-arrow {
  opacity: 0.5;
  transition: all 0.3s ease;
}

.type-selector.active .selector-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Dynamic Content Area */
.dynamic-content {
  position: relative;
  min-height: 600px;
}

.content-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

/* Panel Stats */
.panel-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.stat-highlight {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Feature Cards */
.feature-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.8), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(59, 130, 246, 0.1);
}

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

.card-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 16px;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card-icon .icon-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.feature-card:hover .card-icon .icon-glow {
  opacity: 0.6;
}

.feature-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.card-content > p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.feature-list li i {
  color: #10b981;
  font-size: 0.8rem;
}

.card-metric {
  position: absolute;
  top: 24px;
  right: 24px;
  text-align: center;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.metric-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 2px;
}

/* Specific Feature Card Colors */
.feature-card.streamers .card-icon {
  background: linear-gradient(135deg, #ec4899, #be185d);
}
.feature-card.streamers .card-icon .icon-glow {
  background: linear-gradient(135deg, #ec4899, #be185d);
}
.feature-card.streamers .card-metric {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.3);
}
.feature-card.streamers .metric-value {
  color: #ec4899;
}

.feature-card.creators .card-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.feature-card.creators .card-icon .icon-glow {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.feature-card.creators .card-metric {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}
.feature-card.creators .metric-value {
  color: #8b5cf6;
}

.feature-card.seo .card-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.feature-card.seo .card-icon .icon-glow {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.feature-card.seo .card-metric {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}
.feature-card.seo .metric-value {
  color: #f59e0b;
}

.feature-card.sportsbook .card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.feature-card.sportsbook .card-icon .icon-glow {
  background: linear-gradient(135deg, #10b981, #059669);
}
.feature-card.sportsbook .card-metric {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}
.feature-card.sportsbook .metric-value {
  color: #10b981;
}

.feature-card.casino .card-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.feature-card.casino .card-icon .icon-glow {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.feature-card.casino .card-metric {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}
.feature-card.casino .metric-value {
  color: #ef4444;
}

.feature-card.esports .card-icon {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.feature-card.esports .card-icon .icon-glow {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.feature-card.esports .card-metric {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}
.feature-card.esports .metric-value {
  color: #6366f1;
}

/* Interactive CTA Section */
.interactive-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.9), rgba(30, 41, 59, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.interactive-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.05));
  z-index: 0;
}

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

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-btn {
  position: relative;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cta-btn.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: 1px solid transparent;
  color: #fff;
}

.cta-btn.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
}

.cta-btn.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
}

.cta-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

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

.cta-btn:hover .btn-shine {
  left: 100%;
}

.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.cta-feature i {
  color: #10b981;
  font-size: 1rem;
}

/* CTA Visual Elements */
.cta-visual {
  position: relative;
  width: 200px;
  height: 200px;
  z-index: 2;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #60a5fa;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.float-element:nth-child(1) {
  top: 0;
  left: 0;
}

.float-element:nth-child(2) {
  top: 0;
  right: 0;
}

.float-element:nth-child(3) {
  bottom: 0;
  left: 0;
}

.float-element:nth-child(4) {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

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

/* Responsive Design for Built For Everyone Section */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
  .built-for-everyone .section-title {
    font-size: 3.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .interactive-cta {
    padding: 80px 60px;
  }
}

/* Medium screens (768px - 1024px) */
@media (max-width: 1024px) {
  .built-for-everyone {
    padding: 80px 0 100px;
  }
  
  .built-for-everyone .section-title {
    font-size: 2.5rem;
  }
  
  .built-for-everyone .section-subtitle {
    font-size: 1.1rem;
  }
  
  .user-type-selector {
    margin: 50px auto 60px;
  }
  
  .selector-track {
    flex-direction: column;
    gap: 10px;
  }
  
  .type-selector {
    padding: 16px 20px;
  }
  
  .selector-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .selector-content h3 {
    font-size: 1.1rem;
  }
  
  .selector-content p {
    font-size: 0.9rem;
  }
  
  .panel-stats {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-card {
    padding: 28px;
  }
  
  .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  
  .card-content h4 {
    font-size: 1.2rem;
  }
  
  .interactive-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 30px;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-visual {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  
  .float-element {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Small screens (480px - 768px) */
@media (max-width: 768px) {
  .built-for-everyone {
    padding: 60px 0 80px;
  }
  
  .built-for-everyone .section-title {
    font-size: 2rem;
  }
  
  .built-for-everyone .section-subtitle {
    font-size: 1rem;
  }
  
  .user-type-selector {
    margin: 40px auto 50px;
  }
  
  .selector-track {
    padding: 6px;
  }
  
  .type-selector {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .selector-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .selector-content h3 {
    font-size: 1rem;
  }
  
  .selector-content p {
    font-size: 0.85rem;
  }
  
  .panel-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .stat-highlight {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .card-content > p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .feature-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .card-metric {
    position: static;
    display: inline-block;
    padding: 8px 12px;
    margin-top: 16px;
  }
  
  .metric-value {
    font-size: 1rem;
  }
  
  .interactive-cta {
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .cta-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  
  .cta-features {
    justify-content: center;
    gap: 16px;
  }
  
  .cta-feature {
    font-size: 0.85rem;
  }
  
  .cta-visual {
    display: none;
  }
}

/* Extra small screens (320px - 480px) */
@media (max-width: 480px) {
  .built-for-everyone {
    padding: 50px 0 60px;
  }
  
  .built-for-everyone .section-title {
    font-size: 1.8rem;
  }
  
  .built-for-everyone .section-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .user-type-selector {
    margin: 30px auto 40px;
    padding: 0 10px;
  }
  
  .type-selector {
    padding: 12px;
    gap: 10px;
    text-align: left;
  }
  
  .selector-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .selector-content h3 {
    font-size: 0.95rem;
  }
  
  .selector-content p {
    font-size: 0.8rem;
  }
  
  .selector-arrow {
    display: none;
  }
  
  .panel-stats {
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .stat-highlight {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .features-grid {
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .card-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .card-content > p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .feature-list li {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  
  .card-metric {
    padding: 6px 10px;
    margin-top: 12px;
  }
  
  .metric-value {
    font-size: 0.9rem;
  }
  
  .metric-label {
    font-size: 0.7rem;
  }
  
  .interactive-cta {
    padding: 30px 15px;
    margin-top: 40px;
    border-radius: 20px;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .cta-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .cta-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-feature {
    font-size: 0.8rem;
  }
}

/* Landscape orientation for small screens */
@media (max-width: 768px) and (orientation: landscape) {
  .panel-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .stat-highlight {
    min-width: 140px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .feature-card {
    border-width: 0.5px;
  }
  
  .stat-highlight {
    border-width: 0.5px;
  }
  
  .interactive-cta {
    border-width: 0.5px;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .type-selector,
  .stat-highlight,
  .cta-btn,
  .float-element {
    transition: none;
    animation: none;
  }
  
  .feature-card:hover,
  .type-selector.active,
  .stat-highlight:hover {
    transform: none;
  }
}

  backdrop-filter: blur(20px);
  position: relative;
  max-width: 500px;
  transition: all 0.4s ease;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #1e40af, #38bdf8, transparent);
  border-radius: 24px 24px 0 0;
  animation: ctaGlow 3s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), transparent, rgba(30, 64, 175, 0.2));
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-box:hover::after {
  opacity: 1;
}

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

.cta-box h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box p {
  color: #9ca3af;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-box .btn {
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #38bdf8);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-box .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.5s ease;
}

.cta-box .btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.cta-box .btn:hover::before {
  left: 100%;
}

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

@keyframes pulseEffect {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  }
  50% { 
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
  }
}

/* Enhanced Hexagon Colors for Dark Theme */
.category-hex.streamer-hex {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 114, 182, 0.1));
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.category-hex.creator-hex {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.category-hex.seo-hex {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.category-hex.sportsbook-hex {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(74, 222, 128, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.category-hex.casino-hex {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(248, 113, 113, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.category-hex.esports-hex {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(129, 140, 248, 0.1));
  border: 1px solid rgba(79, 70, 229, 0.3);
}

/* Enhanced hover effects for hexagons */
.category-hex:hover.streamer-hex {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(244, 114, 182, 0.2));
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.4);
}

.category-hex:hover.creator-hex {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(168, 85, 247, 0.2));
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.4);
}

.category-hex:hover.seo-hex {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(251, 191, 36, 0.2));
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.category-hex:hover.sportsbook-hex {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(74, 222, 128, 0.2));
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

.category-hex:hover.casino-hex {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(248, 113, 113, 0.2));
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4);
}

.category-hex:hover.esports-hex {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(129, 140, 248, 0.2));
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
}

/* Responsive Design for Categories */
@media (max-width: 1024px) {
  .categories-split {
    flex-direction: column;
    gap: 30px;
  }
  
  .category-hexagons {
    justify-content: center;
  }
  
  .category-hex {
    width: 140px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .categories-diagonal {
    padding: 80px 0;
  }
  
  .categories-diagonal .section-title {
    font-size: 2rem;
  }
  
  .categories-diagonal .section-subtitle {
    font-size: 1rem;
  }
  
  .side-title {
    font-size: 1.4rem;
  }
  
  .category-hex {
    width: 120px;
    height: 100px;
  }
  
  .hex-icon {
    font-size: 1.5rem;
  }
  
  .hex-title {
    font-size: 0.9rem;
  }
  
  .hex-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .categories-diagonal {
    padding: 60px 0;
  }
  
  .categories-split {
    gap: 25px;
  }
  
  .category-side {
    padding: 20px;
  }
  
  .side-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .categories-diagonal .section-title {
    font-size: 1.8rem;
  }
  
  .side-title {
    font-size: 1.2rem;
  }
  
  .category-hexagons {
    gap: 15px;
  }
  
  .category-hex {
    width: 100px;
    height: 85px;
  }
  
  .hex-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  
  .hex-title {
    font-size: 0.8rem;
  }
  
  .hex-desc {
    font-size: 0.7rem;
  }
  
  .floating-cta {
    margin-top: 40px;
  }
  
  .cta-box {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .cta-box h4 {
    font-size: 1.4rem;
  }
  
  .cta-box p {
    font-size: 1rem;
  }
  
  .cta-box .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}


/* Contact Section */
.contact {
    background: var(--bg-dark);
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--secondary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* FAQ Section Styles */
.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    border-top-color: var(--border-color);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* Enhanced Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.demo-modal .modal-overlay,
.signup-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.demo-modal .modal-content,
.signup-modal .modal-content {
    background: white;
    border-radius: 1.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    animation: modalSlideUp 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.demo-video-placeholder {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.demo-video-placeholder ul {
    text-align: left;
    max-width: 300px;
    margin: 1rem auto;
}

.demo-video-placeholder li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Signup Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-form .form-group {
    position: relative;
}

.signup-form input,
.signup-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.signup-form input:focus,
.signup-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.signup-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.transition-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Enhanced Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

.stagger-item:nth-child(1).revealed { transition-delay: 0.1s; }
.stagger-item:nth-child(2).revealed { transition-delay: 0.2s; }
.stagger-item:nth-child(3).revealed { transition-delay: 0.3s; }
.stagger-item:nth-child(4).revealed { transition-delay: 0.4s; }
.stagger-item:nth-child(5).revealed { transition-delay: 0.5s; }
.stagger-item:nth-child(6).revealed { transition-delay: 0.6s; }

/* Progressive Loading */
.progressive-load {
    opacity: 0;
    animation: progressiveLoad 1s ease forwards;
}

.progressive-load.loaded {
    opacity: 1;
}

@keyframes progressiveLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Performance and Accessibility */
.low-performance * {
    animation-duration: 0s !important;
    transition-duration: 0.1s !important;
}

.reduced-motion * {
    animation: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Chart Animations */
@keyframes chartGrowth {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--target-height);
        opacity: 1;
    }
}

@keyframes progressFill {
    from {
        width: 0;
    }
    to {
        width: var(--progress-width);
    }
}

/* Morphing Blob Animation */
@keyframes morphBlob {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg);
    }
}

.morphing-blob {
    animation: morphBlob 8s ease-in-out infinite;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Tilt Effect */
.hover-tilt {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* Enhanced Button Styles */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

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

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 80px;
}

/* Enhanced Analytics Dashboard Section */
.analytics-preview {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.analytics-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(21, 101, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(66, 165, 245, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

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

/* Dashboard Preview Container */
.dashboard-preview-container {
    margin: 3rem 0;
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Dashboard Preview Header */
.dashboard-preview-header {
    padding: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.preview-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.preview-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.preview-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-change {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Chart Preview */
.chart-preview {
    padding: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.chart-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-preview-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.chart-legend {
    display: flex;
    gap: 2rem;
}

.legend-item {
    position: relative;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 1rem;
}

.legend-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1565C0;
}

.legend-item:nth-child(2)::before { background: #42A5F5; }
.legend-item:nth-child(3)::before { background: #64B5F6; }

.preview-chart {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 160px;
    padding: 0 1rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #1565C0, #42A5F5);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
    animation: barGrow 1s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--final-height, 50%); }
}

.chart-bar:hover {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Blurred Content */
.blurred-content {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.unlock-message {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.unlock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    animation: lockPulse 2s ease-in-out infinite;
}

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

.unlock-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(21, 101, 192, 0.05);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item i {
    color: #1565C0;
    font-size: 1.2rem;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
    margin-top: 1rem;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(21, 101, 192, 0.4);
}

.demo-btn:active {
    transform: translateY(0);
}

/* Background Cards for Depth */
.background-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    z-index: 1;
}

.bg-card {
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    opacity: 0.6;
}

.bg-card.small {
    height: 80px;
}

.bg-card.medium {
    height: 120px;
}

.bg-card.large {
    height: 160px;
    grid-column: span 2;
}

/* Gift Card Program Section */
.gift-card-program {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.gift-card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: patternFloat 15s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.gift-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content Styling */
.gift-card-info {
    max-width: 600px;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

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

.gift-card-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-main {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    font-weight: 500;
}

.title-highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.gift-card-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Features */
.gift-card-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.gift-card-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.gift-card-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.gift-card-features .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.gift-card-features .feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.gift-card-features .feature-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Stats */
.gift-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.gift-card-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.gift-card-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.gift-card-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA */
.gift-card-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gift-card-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #333 !important;
    border: none !important;
    padding: 1.25rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
}

.gift-card-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4) !important;
}

.secondary-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.secondary-link:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Right Visual Styling */
.gift-card-visual {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gift-cards-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-card-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.gift-card {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.gift-card:hover {
    transform: scale(1.05) rotate(-2deg);
    z-index: 10 !important;
}

.card-amazon {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    top: 0;
    left: 0;
    z-index: 4;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-apple {
    background: linear-gradient(135deg, #A8E6CF, #88D8A3);
    top: 50px;
    left: 30px;
    z-index: 3;
    animation: cardFloat2 6s ease-in-out infinite 1s;
}

.card-google {
    background: linear-gradient(135deg, #4285F4, #34A853);
    top: 100px;
    left: 60px;
    z-index: 2;
    animation: cardFloat3 6s ease-in-out infinite 2s;
}

.card-steam {
    background: linear-gradient(135deg, #2A475E, #1B2838);
    top: 150px;
    left: 90px;
    z-index: 1;
    animation: cardFloat4 6s ease-in-out infinite 3s;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

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

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes cardFloat4 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-4px) rotate(0deg); }
}

.card-brand {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 2rem;
    font-weight: 800;
    align-self: flex-end;
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: floatAround 8s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.icon-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.floating-notification {
    position: absolute;
    top: 10%;
    left: -20%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: notificationSlide 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes notificationSlide {
    0%, 90%, 100% { transform: translateX(-100px) opacity(0); }
    10%, 80% { transform: translateX(0) opacity(1); }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
}

.notification-content i {
    color: #10b981;
    font-size: 1.5rem;
}

.notification-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.notification-text span {
    font-size: 0.875rem;
    color: #666;
}

/* Program Benefits */
.program-benefits {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gift-card-content {
        gap: 3rem;
    }
    
    .gift-card-title {
        font-size: 3rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gift-card-program {
        padding: 4rem 0;
    }
    
    .gift-card-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .gift-card-info {
        order: 2;
    }
    
    .gift-card-visual {
        order: 1;
        height: 400px;
    }
    
    .gift-card-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .gift-card-features {
        gap: 1rem;
    }
    
    .gift-card-features .feature-item {
        padding: 1rem;
    }
    
    .gift-card-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gift-card-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gift-card-stack {
        width: 250px;
        height: 300px;
    }
    
    .gift-card {
        width: 200px;
        height: 130px;
        padding: 1rem;
    }
    
    .card-value {
        font-size: 1.5rem;
    }
    
    .floating-notification {
        display: none;
    }
}

@media (max-width: 480px) {
    .gift-card-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .program-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .gift-card-stack {
        width: 200px;
        height: 250px;
    }
    
    .gift-card {
        width: 160px;
        height: 100px;
        padding: 0.75rem;
    }
    
    .card-brand {
        font-size: 0.875rem;
    }
    
    .card-value {
        font-size: 1.25rem;
    }
}

/* Dashboard Container (keeping for backwards compatibility) */
.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    margin: 3rem 0;
    min-height: 600px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-sidebar {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    padding: 2rem 1.5rem;
    color: white;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    position: relative;
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-icon {
    font-size: 1.2rem;
}

.dashboard-main {
    padding: 2rem;
}

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

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

.quick-stat {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.quick-stat .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.stat-change.positive {
    color: #10b981;
}

.chart-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
}

.chart-btn.active,
.chart-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.chart-area {
    position: relative;
    height: 300px;
}

.chart-fallback {
    width: 100%;
    height: 100%;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 250px;
    padding: 0 1rem;
    gap: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    border-radius: 0.5rem 0.5rem 0 0;
    min-height: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: chartGrowth 1s ease forwards;
    transform-origin: bottom;
    max-width: 40px;
}

.chart-bar:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@keyframes chartGrowth {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.performance-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.ai-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.campaign-list,
.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
}

.campaign-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.campaign-name {
    font-weight: 600;
    color: var(--text-primary);
}

.campaign-type {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    width: 100px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1976D2 0%, #1565C0 100%);
    border-radius: 4px;
    animation: progressFill 2s ease forwards;
    transform-origin: left;
}

@keyframes progressFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

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

.recommendation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.rec-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rec-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.rec-impact {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Enhanced Dashboard CTA Section */
.dashboard-cta {
    background: linear-gradient(135deg, #0f1629 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 2rem;
    margin-top: 3rem;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.dashboard-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.cta-content {
    color: white;
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #cbd5e1;
    line-height: 1.6;
}

/* CTA Benefits */
.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #e2e8f0;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.cta-guarantee i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Visual Container */
.cta-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-sizing: border-box;
}

/* Brand Showcase */
.brand-showcase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.brand-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.brand-item.amazon .brand-logo {
    background: #ff9900;
    color: #232f3e;
}

.brand-item.spotify .brand-logo {
    background: #1db954;
    color: white;
}

.brand-item.gift-card .brand-logo {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.brand-item.paypal .brand-logo {
    background: #003087;
    color: #009cde;
}

.brand-item.mastercard .brand-logo {
    background: white;
    position: relative;
    padding: 8px;
}

.mastercard-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mastercard-circles .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
}

.mastercard-circles .circle.red {
    background: #eb001b;
    left: -6px;
}

.mastercard-circles .circle.orange {
    background: #ff5f00;
    right: -6px;
}

.brand-name {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
    text-align: center;
}

/* Floating Elements */
.visual-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-around 6s ease-in-out infinite;
    animation-delay: var(--delay);
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 600;
    white-space: nowrap;
}

.floating-element i {
    color: #60a5fa;
    font-size: 1rem;
}

.floating-element.stats {
    top: 20%;
    left: 10%;
}

.floating-element.revenue {
    top: 60%;
    right: 10%;
}

.floating-element.growth {
    bottom: 30%;
    left: 20%;
}

@keyframes float-around {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
    75% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    animation: pulse-glow 3s ease-in-out infinite;
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.message-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.message-text p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    }
}

/* Responsive Design for Enhanced CTA Section */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .cta-layout {
        gap: 5rem;
        padding: 5rem;
    }
    
    .cta-content h3 {
        font-size: 3rem;
    }
    
    .brand-grid {
        max-width: 350px;
    }
}

/* Medium screens (768px - 1024px) */
@media (max-width: 1024px) {
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .cta-header {
        justify-content: center;
    }
    
    .cta-content h3 {
        font-size: 2.2rem;
    }
    
    .cta-visual {
        min-height: 400px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-element {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}

/* Small screens (480px - 768px) */
@media (max-width: 768px) {
    .cta-layout {
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .cta-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content > p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-visual {
        min-height: 300px;
    }
    
    .brand-showcase {
        padding: 1.5rem;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 250px;
    }
    
    .brand-item {
        padding: 0.8rem;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .floating-element {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .success-message {
        padding: 1rem;
    }
    
    .message-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .message-text h4 {
        font-size: 1rem;
    }
    
    .message-text p {
        font-size: 0.85rem;
    }
}

/* Extra small screens (320px - 480px) */
@media (max-width: 480px) {
    .cta-layout {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .cta-header {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .cta-content > p {
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .brand-showcase {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .brand-grid {
        gap: 0.8rem;
        max-width: 200px;
    }
    
    .brand-item {
        padding: 0.6rem;
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .brand-name {
        font-size: 0.7rem;
    }
    
    .floating-element {
        display: none; /* Hide floating elements on very small screens */
    }
    
    .success-message {
        padding: 0.8rem;
    }
    
    .message-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .message-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .message-text h4 {
        font-size: 0.9rem;
    }
    
    .message-text p {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Landscape orientation for small screens */
@media (max-width: 768px) and (orientation: landscape) {
    .cta-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .cta-visual {
        min-height: 250px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 200px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .brand-showcase,
    .success-message,
    .floating-element {
        border-width: 0.5px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .success-message {
        animation: none;
    }
    
    .brand-item:hover {
        transform: none;
    }
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-arrow {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

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

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    width: 30px;
    text-align: center;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Advanced Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

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

.skeleton-text {
    height: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-text.long {
    width: 100%;
}

.skeleton-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: var(--shadow-md);
}

.skeleton-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Premium Loading Spinner */
.premium-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: premium-spin 1s linear infinite;
    position: relative;
}

.premium-loader::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid transparent;
    border-top: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: premium-spin 0.8s linear infinite reverse;
}

/* Brand Loading Spinner (matching the image) */
.brand-loader {
    width: 60px;
    height: 60px;
    position: relative;
    background: linear-gradient(145deg, #1565C0 0%, #0D47A1 50%, #1976D2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-loader::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.6);
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    animation: brandSpin 1.2s linear infinite;
}

.brand-loader::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    animation: brandSpin 0.8s linear infinite reverse;
}

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

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

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1565C0 0%, #0D47A1 50%, #1976D2 100%);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.transition-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Progressive Loading */
.progressive-load {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progressive-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

.progressive-load.delay-1 { transition-delay: 0.1s; }
.progressive-load.delay-2 { transition-delay: 0.2s; }
.progressive-load.delay-3 { transition-delay: 0.3s; }
.progressive-load.delay-4 { transition-delay: 0.4s; }
.progressive-load.delay-5 { transition-delay: 0.5s; }

/* Modal Styles */
.demo-modal,
.signup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.demo-video-placeholder {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 2px dashed var(--border-color);
}

.video-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.demo-video-placeholder p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.demo-video-placeholder ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.demo-video-placeholder li {
    margin-bottom: 0.5rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.signup-form .form-group {
    position: relative;
}

.signup-form input,
.signup-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.signup-form input:focus,
.signup-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.signup-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat {
        flex: 0 0 auto;
    }
    
    .typewriter-text,
    .typed-text {
        display: inline;
    }
    
    .testimonials-container {
        height: auto;
        min-height: 400px;
    }
    
    .testimonial-card {
        position: relative;
        transform: none;
        opacity: 1;
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .testimonial-card:not(.active) {
        display: none;
    }
    
    .dashboard-preview-container {
        margin: 2rem 0;
    }
    
    .dashboard-mockup {
        margin: 0 1rem;
    }
    
    .dashboard-preview-header {
        padding: 1.5rem;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .preview-stat {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .chart-preview {
        padding: 1.5rem;
    }
    
    .chart-preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .chart-legend {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .preview-chart {
        height: 150px;
    }
    
    .chart-bars {
        height: 120px;
        gap: 0.5rem;
    }
    
    .unlock-message {
        padding: 1.5rem;
    }
    
    .unlock-message h3 {
        font-size: 1.5rem;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .demo-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .background-cards {
        padding: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 2rem 0;
    }
    
    .dashboard-sidebar {
        padding: 1.5rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }
    
    .dashboard-main {
        border-radius: 0 0 1.5rem 1.5rem;
    }
    
    .dashboard-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .header-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-controls {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .chart-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .particles-container,
    .carousel-controls,
    .modal-overlay,
    .demo-modal,
    .signup-modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none !important;
        color: black !important;
        padding: 2rem 0;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --bg-primary: #ffffff;
        --bg-secondary: #f5f5f5;
        --primary-color: #0000ff;
        --border-color: #000000;
    }
}

/* Advanced Scroll Animations */
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

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

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animations */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Advanced Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hover-glow {
    position: relative;
    transition: all 0.3s ease;
}

.hover-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.hover-glow:hover::before {
    opacity: 0.7;
}

.hover-tilt {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.hover-tilt:hover {
    transform: rotateY(-15deg) rotateX(15deg);
}

/* Morphing Elements */
.morphing-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Liquid Loading Effect */
.liquid-loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    animation: liquidPulse 2s ease-in-out infinite;
}

.liquid-loader::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: liquidWave 3s ease-in-out infinite;
}

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

@keyframes liquidWave {
    0%, 100% { 
        border-radius: 50%;
        transform: rotate(0deg);
    }
    25% { 
        border-radius: 60% 40% 60% 40%;
        transform: rotate(90deg);
    }
    50% { 
        border-radius: 40% 60% 40% 60%;
        transform: rotate(180deg);
    }
    75% { 
        border-radius: 60% 40% 60% 40%;
        transform: rotate(270deg);
    }
}

/* Gift Card Animations */
@keyframes cardFloat1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes cardFloat2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes cardFloat3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

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

.card-brand {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: right;
    align-self: flex-end;
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.floating-notification {
    position: absolute;
    top: 15%;
    right: 15%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: notificationSlide 6s ease-in-out infinite;
    min-width: 200px;
}

@keyframes notificationSlide {
    0%, 20%, 80%, 100% {
        transform: translateX(150px);
        opacity: 0;
    }
    30%, 70% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    color: #10b981;
    font-size: 1.2rem;
}

.notification-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Program Benefits */
.program-benefits {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Dashboard CTA */
.dashboard-cta {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cta-guarantee i {
    color: #10b981;
}

/* Responsive Design for Gift Cards */
@media (max-width: 1024px) {
    .gift-card-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .gift-card-visual {
        height: 500px;
    }
    
    .gift-card-stack {
        width: 250px;
        height: 350px;
    }
    
    .gift-card {
        width: 230px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .gift-card-program {
        padding: 4rem 0;
    }
    
    .gift-card-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 2.8rem;
    }
    
    .gift-card-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gift-card-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .floating-notification {
        position: relative;
        right: auto;
        top: auto;
        margin: 2rem auto 0;
        animation: none;
        transform: none;
        opacity: 1;
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 80px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles-container {
        display: none;
    }
    
    .typed-text {
        border-right: none;
        animation: none;
    }
    
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-scale,
    .stagger-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .morphing-blob,
    .liquid-loader {
        animation: none !important;
    }
}

/* Enhanced Modal Styles */
.demo-modal, .signup-modal, .demo-request-modal, .gift-card-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

/* Signup Modal Specific Styles */
.signup-steps {
    margin-bottom: 1.5rem;
}

.step {
    display: none;
    animation: fadeSlideIn 0.5s ease;
}

.step.active {
    display: block;
}

.account-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.account-type {
    padding: 1.5rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.account-type:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.account-type.selected {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.type-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.account-type h5 {
    margin: 0.5rem 0 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.account-type p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Gift Card Modal Styles */
.gift-card-modal-content {
    text-align: center;
}

.program-features {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-highlight {
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.feature-highlight h4 {
    margin: 0 0 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.feature-highlight p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reward-tiers {
    margin: 2rem 0;
    text-align: left;
}

.reward-tiers h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tier-list {
    display: grid;
    gap: 0.75rem;
}

.tier-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0.5rem;
    align-items: center;
}

.tier-name {
    font-weight: 600;
    color: var(--primary-color);
}

.tier-requirement {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-reward {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* Form Styles in Modals */
.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-body .form-group input:focus,
.modal-body .form-group select:focus,
.modal-body .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.signup-note, .demo-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Button Styles */
.btn-cta {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-cta:hover .btn-shine {
    left: 100%;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .account-types {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        grid-template-columns: 1fr;
    }
    
    .tier-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .tier-reward {
        text-align: center;
    }
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    max-width: 250px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 1;
}

/* Responsive Logo Adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 70px;
        max-width: 320px;
    }
    
    .footer-logo-image {
        height: 38px;
        max-width: 180px;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 64px;
        max-width: 280px;
    }
    
    .footer-logo-image {
        height: 35px;
        max-width: 160px;
    }
}
