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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-cube, .floating-orb {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-cube {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.floating-orb {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.cube-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cube-2 { top: 60%; right: 15%; animation-delay: 2s; }
.cube-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.orb-1 { top: 40%; right: 25%; animation-delay: 1s; }
.orb-2 { bottom: 20%; right: 10%; animation-delay: 3s; }

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-icon-modern {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.logo-icon-modern:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

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

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

.nav-cta-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 5px;
}

.hamburger-line:nth-child(2) {
    margin-bottom: 5px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 80px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.mobile-nav-logo .logo-icon-modern {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-nav-links {
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    font-size: 18px;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #667eea;
    transform: translateX(8px);
}

.mobile-nav-link i:first-child {
    width: 24px;
    font-size: 18px;
    opacity: 0.8;
}

.mobile-nav-link i:last-child {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.5;
    transition: var(--transition);
}

.mobile-nav-link:hover i:last-child {
    opacity: 1;
    transform: translateX(4px);
}

.mobile-nav-cta {
    margin: 32px 0;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.mobile-nav-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-footer p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 14px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.mobile-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Old hero styles removed - using hero-clean now */

/* Shopify CTA Section */
.shopify-cta {
    padding: 80px 0;
    background: #ffffff !important;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.shopify-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #95bf47 0%, #5e8e3e 100%);
    opacity: 0.05;
}

.shopify-offer-card {
    background: linear-gradient(135deg, #95bf47 0%, #5e8e3e 100%);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(149, 191, 71, 0.3);
    position: relative;
    overflow: hidden;
}

.shopify-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.shopify-logo svg {
    filter: brightness(0) invert(1);
}

.offer-text h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 4px;
}

.offer-subtext {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
}

.offer-action {
    position: relative;
    z-index: 2;
}

.shopify-btn {
    background: white;
    color: #95bf47;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shopify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

/* Responsive Shopify CTA */
@media (max-width: 768px) {
    .shopify-offer-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .offer-text h3 {
        font-size: 20px;
    }
    
    .shopify-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: var(--shadow-light); }
    50% { box-shadow: 0 8px 32px rgba(102, 126, 234, 0.6); }
}

.section-header-modern h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.1;
}

.section-header-modern p {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   BENTO GRID FEATURES - COMPACT
   ======================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

/* Row spans */
.bento-main {
    grid-column: span 3;
}

/* Base Card Styles */
.bento-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(30px);
}

.bento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-card.visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Section Header Animation */
.section-header-modern {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header-modern.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Main Card - Large */
.bento-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    gap: 32px;
    padding: 36px;
    align-items: center;
}

.bento-main-content {
    flex: 1;
}

.bento-tag-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: white;
}

.bento-main h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.bento-main p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.bento-stats {
    display: flex;
    gap: 24px;
}

.mini-stat {
    text-align: left;
}

.mini-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.mini-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Flow Visual Animation */
.bento-main-visual {
    flex-shrink: 0;
}

.flow-visual {
    display: flex;
    align-items: center;
    gap: 16px;
}

.flow-node {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.shopify-node {
    background: #95bf47;
    animation: nodePulse 3s ease-in-out infinite;
}

.mc-node {
    background: #8B4513;
    animation: nodePulse 3s ease-in-out infinite 0.5s;
}

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

.flow-arrow {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.arrow-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: arrowFlow 1.5s ease-in-out infinite;
}

@keyframes arrowFlow {
    0% { left: -50%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Side Card */
.bento-side {
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: white;
    transition: transform 0.3s ease;
}

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

.bento-icon.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.bento-icon.icon-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bento-icon.icon-yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bento-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bento-icon.icon-heart { background: linear-gradient(135deg, #ec4899, #db2777); }

.bento-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bento-main h3,
.bento-main p,
.bento-main .bento-tag-highlight {
    color: white !important;
}

.bento-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.bento-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.bento-mini-tags span {
    background: #f0fdf4;
    color: #059669;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Third Row Cards */
.bento-third {
    padding: 24px;
}

.bento-third .bento-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.bento-third h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.bento-third p {
    font-size: 0.85rem;
    color: #888;
}

/* Highlighted Card */
.bento-highlight {
    background: linear-gradient(135deg, #f8f5ff 0%, #ede9fe 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.bento-highlight:hover {
    border-color: rgba(139, 92, 246, 0.6);
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Bento Grid Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-main {
        grid-column: span 2;
        flex-direction: column;
        text-align: center;
    }
    
    .bento-main-visual {
        margin-top: 20px;
    }
    
    .bento-stats {
        justify-content: center;
    }
    
    .bento-side {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bento-main {
        grid-column: 1;
        padding: 28px;
    }
    
    .bento-main h3 {
        font-size: 1.3rem;
    }
    
    .bento-main-visual {
        display: none;
    }
    
    .bento-side,
    .bento-third {
        grid-column: 1;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ========================================
   CLEAN HERO SECTION
   ======================================== */

.hero-clean {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-clean {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-clean {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

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

.hero-description-clean {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-features-clean {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.feature-item-clean {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-item-clean i {
    color: #4ade80;
    font-size: 1rem;
}

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

.btn-primary-clean {
    background: white;
    color: #667eea;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary-clean {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

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

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

.stat-number-clean {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label-clean {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Clean Hero Responsive */
@media (max-width: 768px) {
    .hero-clean {
        padding: 80px 0;
    }
    
    .hero-title-clean {
        font-size: 2.5rem;
    }
    
    .hero-description-clean {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-features-clean {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hero-cta-clean {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .btn-primary-clean,
    .btn-secondary-clean {
        width: 280px;
        justify-content: center;
    }
    
    .hero-stats-clean {
        gap: 40px;
    }
    
    .stat-number-clean {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-clean {
        padding: 60px 0;
    }
    
    .hero-title-clean {
        font-size: 2rem;
    }
    
    .hero-description-clean {
        font-size: 1rem;
    }
    
    .hero-stats-clean {
        gap: 30px;
    }
    
    .btn-primary-clean,
    .btn-secondary-clean {
        width: 100%;
        padding: 16px 20px;
    }
}

/* ========================================
   CREATIVE HERO SECTION (kept for reference)
   ======================================== */

.hero-creative {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background Circles */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -100px;
    animation: floatSlow 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -100px;
    left: -100px;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

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

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

/* Hero Layout - Two Columns */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.hero-left {
    color: white;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Creative Headline */
.hero-headline {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.headline-small {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.headline-large {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.headline-connector {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
}

.headline-accent {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-subtext strong {
    color: white;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.btn-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-hero-ghost {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    color: white;
}

.btn-hero-ghost i {
    animation: bounce 2s ease-in-out infinite;
}

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

/* Right Side - Visual Cards */
.hero-right {
    position: relative;
    height: 450px;
}

.hero-card-stack {
    position: relative;
    height: 100%;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 24px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-shopify {
    top: 0;
    left: 0;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-minecraft {
    top: 120px;
    right: 0;
    animation: cardFloat2 6s ease-in-out infinite;
}

.card-success {
    bottom: 80px;
    left: 40px;
    animation: cardFloat3 6s ease-in-out infinite;
}

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

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

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

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
}

.card-shopify .card-icon {
    background: linear-gradient(135deg, #95bf47, #5e8e3e);
}

.card-minecraft .card-icon {
    background: linear-gradient(135deg, #8B4513, #654321);
}

.card-success .card-icon {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.card-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.card-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

/* Floating Stats */
.hero-stats-floating {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 16px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.stat-txt {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        height: 350px;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-subtext {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-card {
        padding: 16px 20px;
    }
    
    .headline-large {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-creative {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .headline-large {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .headline-small {
        font-size: 1.2rem;
    }
    
    .hero-right {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .headline-large {
        font-size: 2.2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
}

/* Old stats styles removed - no longer used */

/* New Floating Button Design */
.hero-buttons-new {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary-floating {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px 35px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.btn-primary-floating:hover .btn-bg-animation {
    left: 100%;
}

.btn-primary-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.6);
}

.btn-particles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4ade80;
    border-radius: 50%;
    opacity: 0;
}

.particle:nth-child(1) {
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    animation: particleFloat 3s ease-in-out infinite 1s;
}

.particle:nth-child(3) {
    animation: particleFloat 3s ease-in-out infinite 2s;
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-20px) scale(1.2); 
    }
}

.btn-secondary-floating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 4s ease-in-out infinite 2s;
}

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

.btn-secondary-floating:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

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

/* New Centered Hero Layout */
.hero-container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content-centered {
    max-width: 800px;
    position: relative;
}

/* Clean hero design - no visual decorations */

/* Old hero button styles removed - no longer used */

/* Old dashboard styles removed - not used in clean design */

/* New Centered Hero Responsive Design */
@media (max-width: 768px) {
    .hero-container-centered {
        min-height: 80vh;
        padding: 40px 20px;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description-new {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons-new {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn-primary-floating,
    .btn-secondary-floating {
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-badge-new {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .btn-particles {
        display: none; /* Hide particles on mobile for performance */
    }
    
    /* Hide floating icons on mobile for cleaner look */
    .floating-icons {
        display: none;
    }
    
    .connection-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-description-new {
        font-size: 1rem;
    }
    
    .btn-primary-floating,
    .btn-secondary-floating {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Integration Steps Section */
/* Modern Integration Section */
.integration-section-modern {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Creative geometric background pattern */
.integration-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.integration-section-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(240, 147, 251, 0.03), rgba(102, 126, 234, 0.03));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.integration-section-modern .section-header-modern {
    color: #1a1a1a;
    margin-bottom: 80px;
}

.integration-section-modern .section-header-modern h2,
.integration-section-modern .section-header-modern p {
    color: #1a1a1a;
}

.integration-section-modern .section-header-modern p {
    color: #666;
}

.steps-container-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Connecting lines removed - they were overlapping the cards */

.step-card-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(240, 147, 251, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Simplified hover effects for better performance */
.step-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.15);
    border-color: rgba(240, 147, 251, 0.4);
}

.step-card-enhanced:hover .step-number {
    transform: scale(1.05);
}

.step-card-enhanced:hover .step-icon {
    transform: scale(1.05);
}

/* Creative modern step numbers with glass morphism */
.step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(240, 147, 251, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(240, 147, 251, 0.2);
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card-enhanced:hover .step-number::before {
    opacity: 1;
}

.step-card-enhanced:hover .step-number {
    color: white;
    border-color: transparent;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(240, 147, 251, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-gradient);
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Simplified, performance-optimized animations */
.step-card-enhanced.in-view {
    animation: fadeInScale 0.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0.7;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.step-icon.shopify {
    color: #95bf47;
    background: rgba(149, 191, 71, 0.1);
}

.step-icon.rocket {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

/* Creative icon accent - static for better performance */
.step-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 0;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
    flex: 1;
}

.step-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Modern feature tags with glass morphism */
.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #667eea;
    border: 1px solid rgba(240, 147, 251, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.feature-tag:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

.integration-cta-simple {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-primary-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
}

.btn-secondary-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid rgba(26, 26, 26, 0.2);
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-enhanced:hover {
    background: rgba(240, 147, 251, 0.1);
    border-color: var(--secondary-gradient);
    color: var(--secondary-gradient);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .integration-section-modern {
        padding: 80px 0;
    }
    
    .steps-container-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile styles - connecting lines are already hidden via media query */
    
    .step-card-enhanced {
        padding: 30px 20px;
    }
    
    .step-number {
        top: -10px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .integration-cta-simple {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Large screens - default 3 column layout is already set above */

/* Medium screens / tablets */
@media (max-width: 900px) {
    .steps-container-modern {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .step-card-enhanced {
        padding: 35px 25px;
        max-width: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.testimonials-section .section-header-modern {
    color: white;
}

.testimonials-section .section-header-modern h2,
.testimonials-section .section-header-modern p {
    color: white;
}

.testimonials-section .section-header-modern p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

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

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ========================================
   SUPPORT SECTION - REDESIGNED
   ======================================== */

.support-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.support-hero-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.support-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0f0f0;
}

.support-hero-text {
    flex: 1;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.support-badge i {
    font-size: 0.9rem;
}

.support-hero-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.support-hero-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.support-quick-donate {
    display: flex;
    gap: 16px;
}

.quick-donate-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.quick-donate-btn.coffee {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    color: white;
}

.quick-donate-btn.lunch {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    color: white;
}

.quick-donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.donate-btn-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.donate-btn-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.donate-btn-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.donate-btn-amount {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Custom CTA */
.support-custom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 20px 24px;
}

.custom-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.custom-cta-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.custom-cta-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.custom-cta-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.custom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.custom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.custom-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

/* Other Ways */
.support-other-ways {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 24px;
}

.other-ways-label {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

.other-ways-items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.other-way-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.other-way-item:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

.other-way-item i {
    font-size: 1rem;
}

.other-way-divider {
    width: 1px;
    height: 20px;
    background: #e5e7eb;
}

/* Support Section Responsive */
@media (max-width: 900px) {
    .support-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .support-hero-text p {
        max-width: none;
    }
    
    .support-quick-donate {
        flex-direction: column;
        width: 100%;
    }
    
    .quick-donate-btn {
        justify-content: center;
    }
    
    .support-custom-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .custom-cta-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .support-hero-card {
        padding: 32px 24px;
    }
    
    .support-hero-text h2 {
        font-size: 1.5rem;
    }
    
    .support-other-ways {
        flex-direction: column;
        gap: 16px;
    }
    
    .other-ways-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .other-way-divider {
        display: none;
    }
}

/* Integration Steps */
.integration-steps {
    padding: 80px 0;
    background: white;
}

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

.step-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.download-content {
    text-align: center;
    margin-bottom: 64px;
}

.download-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-icon {
    font-size: 24px;
}

.btn-title {
    font-weight: 600;
    font-size: 16px;
}

.btn-subtitle {
    font-size: 12px;
    color: #666;
}

.download-btn.secondary .btn-subtitle {
    color: #ccc;
}

.preview-image {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.minecraft-preview {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.mc-header {
    background: #2d2d2d;
    padding: 12px 16px;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid #404040;
}

.mc-content {
    padding: 16px;
}

.log-line {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 4px;
    font-family: monospace;
}

.log-line.success {
    color: #4CAF50;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon-modern {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--shadow-light);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.footer-section h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-section ul li a i {
    font-size: 14px;
    width: 16px;
    opacity: 0.7;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    font-size: 15px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 48px 0 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-right {
    max-width: 400px;
}

.footer-disclaimer {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Hide desktop navigation, show mobile menu */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Old hero responsive styles removed */
    
    .hero-container {
        gap: 60px !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 0 24px !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 56px;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 20px;
        margin-bottom: 32px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 16px;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
    
    .dashboard-window {
        transform: none;
    }
    
    .dashboard-window:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    /* Old hero styles removed */
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-text {
        font-size: 12px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-header-modern h2 {
        font-size: 40px;
    }
    
    .shopify-offer-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .dashboard-content-modern {
        flex-direction: column;
        height: auto;
    }
    
    .dashboard-sidebar {
        width: 100%;
        flex-direction: row;
        padding: 16px;
        gap: 16px;
        overflow-x: auto;
    }
    
    .sidebar-item {
        white-space: nowrap;
        border-right: none;
        border-bottom: 3px solid transparent;
    }
    
    .sidebar-item.active {
        border-right: none;
        border-bottom: 3px solid var(--success-gradient);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    /* Old hero styles removed */
    
    .hero-container {
        padding: 0 16px !important;
        gap: 32px !important;
        grid-template-columns: 1fr !important;
        display: block !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 28px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-text {
        font-size: 11px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 16px 28px;
        font-size: 14px;
    }
    
    .section-header-modern h2 {
        font-size: 32px;
    }
    
    .feature-card-modern {
        padding: 24px;
    }
    
    .feature-icon-modern {
    
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .shopify-offer-card {
        padding: 24px;
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .dashboard-modern {
        max-width: 100%;
    }
    
    .dashboard-window {
        border-radius: 16px;
    }
    
    .chart-area {
        height: 80px;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    /* Old hero styles removed */
    
    .hero-container {
        padding: 0 12px !important;
        gap: 24px !important;
        grid-template-columns: 1fr !important;
        display: block !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 10px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 14px 24px;
        font-size: 13px;
        max-width: 240px;
    }
}

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

@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);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--primary-gradient);
    color: white;
}

::-moz-selection {
    background: var(--primary-gradient);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Force Mobile Hero Layout - High Priority */
@media (max-width: 1024px) {
    .hero-container {
        display: block !important;
        grid-template-columns: none !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero-visual {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-container {
        display: block !important;
        grid-template-columns: none !important;
        text-align: center !important;
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .hero-container {
        display: block !important;
        grid-template-columns: none !important;
        text-align: center !important;
        padding: 0 16px !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}

/* ========================================
   COOKIE BANNER - REFINED
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 420px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 1.4rem;
    color: #d97706;
}

.cookie-content {
    flex: 1;
}

.cookie-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.cookie-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn.reject {
    background: transparent;
    color: #666;
    border: 1px solid #e5e7eb;
}

.cookie-btn.reject:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

@media (max-width: 480px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        flex-wrap: wrap;
    }
    
    .cookie-content {
        flex-basis: calc(100% - 64px);
    }
    
    .cookie-buttons {
        flex-direction: row;
        width: 100%;
        margin-top: 8px;
    }
    
    .cookie-btn {
        flex: 1;
    }
}
