/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo i {
    color: #ff6b35;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-download-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.header-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white !important;
}

.header-download-btn::after {
    display: none;
}

.header-download-btn i {
    margin-right: 8px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .header-download-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .header-download-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    background-size: 400% 400%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    animation: backgroundFloat 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1" fill="%23ffffff" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    z-index: 1;
    animation: starTwinkle 10s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, gradientShift 3s ease-in-out infinite, textGlow 2s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hero h1 i {
    color: #ffd700;
    margin-right: 15px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both, textFloat 6s ease-in-out infinite;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both, buttonPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    animation: fadeInUp 1s ease-out 0.6s both, buttonPulse 3s ease-in-out infinite, buttonGlow 1.5s ease-in-out infinite;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button i {
    margin-right: 10px;
}

/* Demo Section */
.demo-section {
    background: white;
    padding: 80px 0;
}

.demo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.demo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    animation: particleFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-card:nth-child(2n) {
    animation-delay: -2s;
}

.demo-card:nth-child(3n) {
    animation-delay: -4s;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.demo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.3),
        0 0 30px rgba(255, 107, 53, 0.2);
}

.demo-card:hover::before {
    left: 100%;
}

.demo-card:hover::after {
    opacity: 1;
}

.demo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.demo-card h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.demo-content {
    flex: 1;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow {
    font-size: 2rem;
    color: #ff6b35;
    animation: pulse 2s infinite;
}

/* Demo Website Mockup */
.demo-website {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.5s ease;
}

.demo-website.transformed {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.demo-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: color 0.5s ease;
}

.demo-website.transformed .demo-logo {
    color: #ff6b35;
}

.demo-header nav {
    display: flex;
    gap: 20px;
}

.demo-header nav a {
    text-decoration: none;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.demo-header nav a:hover {
    color: #ff6b35;
}

.demo-body {
    padding: 30px 20px;
    text-align: center;
}

.demo-body h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.demo-body p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.demo-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-btn:hover {
    background: #e55a2b;
}

/* Demo Gallery */
.demo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    text-align: center;
}

.placeholder-img, .actual-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.5s ease;
}

.placeholder-img {
    background: #ecf0f1;
    color: #95a5a6;
    border: 2px dashed #bdc3c7;
}

.actual-img {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.actual-img.logo {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.actual-img.product {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.actual-img.team {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

/* Demo Styling */
.demo-styling {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.demo-styling.original {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.demo-styling.branded {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.demo-styling h4 {
    margin-bottom: 10px;
}

.style-elements {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.element {
    padding: 8px 15px;
    border-radius: 5px;
    background: #e0e0e0;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.5s ease;
}

.element.branded-btn {
    background: #ff6b35;
    color: white;
}

.element.branded-card {
    background: #ff8c42;
    color: white;
}

.element.branded-header {
    background: #ff7733;
    color: white;
}

/* Demo Trigger Button */
.demo-trigger {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-trigger:hover {
    background: linear-gradient(45deg, #e55a2b, #d4481f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.demo-trigger i {
    margin-right: 10px;
}

/* Features Section */
.features {
    background: #f8f9fa;
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 107, 53, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: featureFloat 8s ease-in-out infinite;
}

.feature-card:nth-child(2n) {
    animation-delay: -2s;
}

.feature-card:nth-child(3n) {
    animation-delay: -4s;
}

.feature-card:nth-child(4n) {
    animation-delay: -6s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        0 0 40px rgba(255, 107, 53, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
    animation: iconBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    animation: iconBounce 0.6s ease-in-out infinite;
    color: #f7931e;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-testimonial {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-testimonial p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-style: italic;
}

.cta-testimonial span {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.download-button {
    display: inline-block;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    position: relative;
    overflow: hidden;
    animation: downloadPulse 4s ease-in-out infinite;
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.8);
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.download-button:hover::before {
    left: 100%;
}

.download-button:hover::after {
    width: 300px;
    height: 300px;
}

.download-button i {
    margin-right: 12px;
    font-size: 1.3rem;
}

.download-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand h3 i {
    color: #ffd700;
    margin-right: 10px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    opacity: 0.8;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 10px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    animation: matrixRain 4s infinite;
    pointer-events: none;
    border-radius: 8px;
}

.footer-bottom p {
    position: relative;
    z-index: 2;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.dev-link {
    color: #00ff41;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    position: relative;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff41;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #00ff41;
    animation: hackerGlow 2s infinite alternate;
}

.dev-link:hover {
    color: #ffffff;
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px #00ff41;
    text-shadow: 0 0 15px #00ff41;
}

.dev-link::before {
    content: '> ';
    color: #00ff41;
    animation: blink 1s infinite;
}

.dev-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 65, 0.1) 50%, transparent 100%);
    animation: scan 3s infinite;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes hackerGlow {
    0% {
        text-shadow: 0 0 10px #00ff41;
        border-color: #00ff41;
    }
    100% {
        text-shadow: 0 0 20px #00ff41, 0 0 30px #00ff41;
        border-color: #00ff88;
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes matrixRain {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 100%, 0% 100%;
    }
    100% {
        background-position: 0% 0%, 100% 0%, 50% 0%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes starTwinkle {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-10px) translateY(-10px);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(0.5deg);
    }
}

@keyframes featureFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

@keyframes downloadPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(44, 62, 80, 0.6);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.6);
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(10px) translateX(-5px) rotate(240deg);
        opacity: 0.4;
    }
}

.transformed {
    animation: glow 2s infinite;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefits-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

.use-cases {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.use-cases h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .before-after {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .demo-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .style-elements {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .demo-card {
        padding: 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .demo-section, .features, .cta-section {
        padding: 60px 0;
    }
}