        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #0a0a0a;
            color: #e5e5e5;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .reseller-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(167, 139, 250, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(167, 139, 250, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ===== ANIMATIONS ===== */
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(167, 139, 250, 0.5);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes blurIn {
            from {
                opacity: 0;
                filter: blur(10px);
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }

        @keyframes slideReveal {
            from {
                opacity: 0;
                clip-path: inset(0 100% 0 0);
            }
            to {
                opacity: 1;
                clip-path: inset(0 0 0 0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.from-left {
            transform: translateX(-50px);
        }

        .animate-on-scroll.from-left.visible {
            transform: translateX(0);
        }

        .animate-on-scroll.from-right {
            transform: translateX(50px);
        }

        .animate-on-scroll.from-right.visible {
            transform: translateX(0);
        }

        .animate-on-scroll.scale {
            transform: scale(0.9);
        }

        .animate-on-scroll.scale.visible {
            transform: scale(1);
        }

        .animate-on-scroll.blur {
            filter: blur(10px);
        }

        .animate-on-scroll.blur.visible {
            filter: blur(0);
        }

        .stagger-1 { transition-delay: 0.05s !important; }
        .stagger-2 { transition-delay: 0.1s !important; }
        .stagger-3 { transition-delay: 0.15s !important; }
        .stagger-4 { transition-delay: 0.2s !important; }
        .stagger-5 { transition-delay: 0.25s !important; }
        .stagger-6 { transition-delay: 0.3s !important; }

        /* Initial page load animations */
        .page-loaded header {
            animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .page-loaded .logo {
            animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
            opacity: 0;
        }

        .page-loaded nav a {
            animation: fadeInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            opacity: 0;
        }

        .page-loaded nav a:nth-child(1) { animation-delay: 0.15s; }
        .page-loaded nav a:nth-child(2) { animation-delay: 0.2s; }
        .page-loaded nav a:nth-child(3) { animation-delay: 0.25s; }

        .page-loaded .header-btn {
            animation: fadeInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
            opacity: 0;
        }

        .page-loaded .badge {
            animation: blurIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
            opacity: 0;
        }

        .page-loaded h1 {
            animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
            opacity: 0;
        }

        .page-loaded .hero-description {
            animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
            opacity: 0;
        }

        .page-loaded .hero-buttons {
            animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
            opacity: 0;
        }

        .page-loaded .hero-image img {
            animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards, float 6s ease-in-out 1.5s infinite;
            opacity: 0;
        }

        header {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 32px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 32px;
        }

        nav a {
            color: #a3a3a3;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s, transform 0.2s;
        }

        nav a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        .header-btn {
            background: #a78bfa;
            color: #0a0a0a;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .header-btn:hover {
            background: #c4b5fd;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
        }

        .hero {
            padding: 80px 0;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            transition: transform 0.1s ease-out, box-shadow 0.3s ease;
            transform-style: preserve-3d;
        }

        .badge {
            display: inline-block;
            background: rgba(167, 139, 250, 0.1);
            color: #a78bfa;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(167, 139, 250, 0.2);
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .highlight {
            color: #a78bfa;
            position: relative;
            display: inline-block;
        }

        .page-loaded .highlight::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: -5%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #a78bfa 15%, 
                #a78bfa 60%, 
                #c4b5fd 80%, 
                transparent 100%);
            border-radius: 2px;
            transform: skewX(-12deg);
            animation: expandWidth 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 110%; }
        }

        .hero-description {
            color: #a3a3a3;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
        }

        .btn-primary {
            background: #a78bfa;
            color: #0a0a0a;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: #c4b5fd;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent;
            color: #e5e5e5;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: #a78bfa;
            background: rgba(167, 139, 250, 0.1);
            transform: translateY(-3px);
        }

        .features {
            padding: 80px 0;
        }

        .section-title {
            text-align: left;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-subtitle {
            text-align: left;
            color: #a3a3a3;
            font-size: 18px;
            margin-bottom: 48px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            padding: 32px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            border-color: rgba(167, 139, 250, 0.4);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(167, 139, 250, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .feature-card:hover .feature-icon {
            background: rgba(167, 139, 250, 0.2);
            transform: scale(1.1);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            color: #a78bfa;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon svg {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: #a3a3a3;
            font-size: 14px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .showcase {
            padding: 80px 0;
        }

        .showcase-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .showcase-arrow {
            width: 48px;
            height: 48px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .showcase-arrow:hover {
            border-color: #a78bfa;
            background: rgba(167, 139, 250, 0.1);
            transform: scale(1.1);
        }

        .showcase-arrow:active {
            transform: scale(0.95);
        }

        .showcase-arrow svg {
            width: 20px;
            height: 20px;
            color: #a3a3a3;
            transition: color 0.2s;
        }

        .showcase-arrow:hover svg {
            color: #a78bfa;
        }

        .showcase-video-wrapper {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .showcase-videos {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .showcase-video {
            flex: 0 0 100%;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .showcase-video iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .showcase-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .showcase-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .showcase-dot:hover {
            background: rgba(167, 139, 250, 0.5);
        }

        .showcase-dot.active {
            background: #a78bfa;
            width: 24px;
            border-radius: 4px;
        }

        .resellers {
            padding: 80px 0;
        }

.resellers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

.reseller-card {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .reseller-card:hover {
            border-color: rgba(167, 139, 250, 0.4);
            transform: translateY(-8px);
        }

        .reseller-banner {
            width: 100%;
            height: 120px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .reseller-card:hover .reseller-banner {
            transform: scale(1.05);
        }

.reseller-content {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .reseller-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .reseller-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .reseller-card:hover .reseller-avatar {
            transform: scale(1.1);
        }

        .reseller-avatar-placeholder {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #a78bfa, #7c3aed);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .reseller-info {
            flex: 1;
            min-width: 0;
        }

        .reseller-card h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .reseller-card p {
            color: #a3a3a3;
            font-size: 12px;
            margin: 0;
        }

        .reseller-buttons {
            display: flex;
            gap: 8px;
            margin-top: auto;
        }

        .reseller-btn {
            background: #5865F2;
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex: 1;
        }

        .reseller-btn:hover {
            background: #4752c4;
            transform: translateY(-2px);
        }

        .reseller-btn svg {
            width: 14px;
            height: 14px;
        }

        .reseller-btn-website {
            background: #a78bfa;
            color: #0a0a0a;
        }

.reseller-btn-website:hover {
            background: #c4b5fd;
        }

        /* 3-button layout for Spadzetto */
        .reseller-buttons:has(.reseller-btn:nth-child(3)) {
            flex-wrap: wrap;
        }

        .reseller-buttons:has(.reseller-btn:nth-child(3)) .reseller-btn {
            flex: 1 1 calc(33.333% - 6px);
            min-width: 0;
            padding: 8px 10px;
            font-size: 11px;
        }

        /* Payment Methods */
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .payment-badge {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.08);
            color: #a3a3a3;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .payment-badge:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-1px);
        }

        /* Special highlighted payment methods */
        .payment-badge.payment-highlight {
            background: rgba(167, 139, 250, 0.15);
            color: #c4b5fd;
            border-color: rgba(167, 139, 250, 0.3);
            box-shadow: 0 0 12px rgba(167, 139, 250, 0.2);
        }

        .payment-badge.payment-highlight:hover {
            background: rgba(167, 139, 250, 0.25);
            box-shadow: 0 0 18px rgba(167, 139, 250, 0.35);
        }

        /* BLIK - Polish payment - pink/magenta glow */
        .payment-badge.payment-blik {
            background: rgba(236, 72, 153, 0.15);
            color: #f472b6;
            border-color: rgba(236, 72, 153, 0.3);
            box-shadow: 0 0 12px rgba(236, 72, 153, 0.2);
        }

        .payment-badge.payment-blik:hover {
            background: rgba(236, 72, 153, 0.25);
            box-shadow: 0 0 18px rgba(236, 72, 153, 0.4);
        }

        /* PaySafeCard - blue glow */
        .payment-badge.payment-paysafecard {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
        }

        .payment-badge.payment-paysafecard:hover {
            background: rgba(59, 130, 246, 0.25);
            box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
        }

        /* Credit Card - gold/amber glow */
        .payment-badge.payment-card {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
            border-color: rgba(245, 158, 11, 0.3);
            box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
        }

        .payment-badge.payment-card:hover {
            background: rgba(245, 158, 11, 0.25);
            box-shadow: 0 0 18px rgba(245, 158, 11, 0.4);
        }

        footer {
            padding: 60px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(180deg, transparent 0%, rgba(167, 139, 250, 0.02) 100%);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-logo img {
            height: 36px;
            width: auto;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .footer-logo img:hover {
            opacity: 1;
        }

        .footer-tagline {
            color: #737373;
            font-size: 14px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: #a3a3a3;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease, transform 0.2s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #a78bfa;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #a78bfa;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a3a3a3;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: rgba(167, 139, 250, 0.1);
            border-color: rgba(167, 139, 250, 0.4);
            color: #a78bfa;
            transform: translateY(-3px);
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
        }

        .footer-divider {
            width: 100%;
            max-width: 400px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .footer-copyright {
            color: #525252;
            font-size: 13px;
            text-align: center;
        }

        .footer-made {
            color: #525252;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .footer-made .heart {
            color: #a78bfa;
            animation: heartbeat 1.5s ease infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @media (max-width: 768px) {
            .footer-links {
                gap: 20px;
            }
            
            .footer-social a {
                width: 36px;
                height: 36px;
            }
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #a78bfa, #c4b5fd);
            z-index: 9999;
            transition: width 0.1s linear;
        }

        @media (max-width: 1024px) {
            .hero .container {
                flex-direction: column;
                gap: 40px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-description {
                margin: 0 auto 32px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .page-loaded .highlight::after {
                left: 50%;
                transform: translateX(-50%) skewX(-12deg);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .resellers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 16px;
            }

            nav {
                display: none;
            }

            .header-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .hero {
                padding: 40px 0;
            }

            .hero .container {
                flex-direction: column;
                gap: 32px;
            }

            h1 {
                font-size: 32px;
            }

            .hero-description {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
                text-align: center;
            }

            .hero-image img {
                max-width: 100%;
            }

            .features, .resellers, .showcase {
                padding: 60px 0;
            }

            .showcase-arrow {
                width: 40px;
                height: 40px;
            }

            .showcase-arrow svg {
                width: 16px;
                height: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
                margin-bottom: 32px;
            }

            .features-grid,
            .resellers-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .feature-card {
                padding: 24px;
            }

            .reseller-content {
                flex-wrap: wrap;
                gap: 12px;
            }

            .reseller-info {
                flex: 1 1 100%;
                order: 2;
            }

            .reseller-avatar-placeholder {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }

            .reseller-btn {
                width: 100%;
                justify-content: center;
                order: 3;
            }

            .reseller-buttons {
                width: 100%;
                order: 3;
            }

            .reseller-buttons .reseller-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 26px;
            }

            .badge {
                font-size: 11px;
                padding: 5px 10px;
            }

            .section-title {
                font-size: 24px;
            }

            .feature-card h3 {
                font-size: 18px;
            }

            .feature-card p {
                font-size: 13px;
            }
        }