:root {
    --primary-color: #7C3AED;
    --secondary-color: #3B82F6;
    --accent-color: #F43F5E;
    --text-color: #1F2937;
    --bg-color: #F9FAFB;
    --card-bg: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #7C3AED, #3B82F6);
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #E0E7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.2s backwards;
    line-height: 1.4;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 20px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-card p {
    color: #4B5563;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.demo-section {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    border-radius: 40px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(124,58,237,0.1)"/></svg>');
    opacity: 0.5;
}

.demo-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.demo-section p {
    font-size: 1.2rem;
    color: #4B5563;
    margin-bottom: 3rem;
}

.demo-section img {
    max-width: 90%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-section img:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.footer {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    color: var(--text-color);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.2);
}

.footer-bottom {
    font-size: 0.9rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom .heart {
    color: var(--accent-color);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent,
        rgba(124, 58, 237, 0.2),
        rgba(59, 130, 246, 0.2),
        transparent
    );
}

.footer-blob {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center,
        rgba(124, 58, 237, 0.03) 0%,
        rgba(59, 130, 246, 0.03) 50%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: footerBlobAnimation 20s ease-in-out infinite;
}

.footer-blob-1 {
    top: -400px;
    right: -200px;
}

.footer-blob-2 {
    bottom: -400px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes footerBlobAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Remove testimonials section */
.testimonials,
.testimonial-card,
.testimonial-text,
.testimonial-author,
.author-avatar,
.author-info {
    display: none;
}

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

@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 100% 0% 100% 0% / 100% 0% 100% 0%;
    filter: blur(60px);
    animation: blobAnimation 20s ease-in-out infinite;
    opacity: 0.5;
}

.blob-1 {
    top: -200px;
    right: -200px;
    animation-delay: -2s;
}

.blob-2 {
    bottom: -200px;
    left: -200px;
    animation-delay: -1s;
}

@keyframes blobAnimation {
    0% {
        border-radius: 100% 0% 100% 0% / 100% 0% 100% 0%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 0% 100% 0% 100% / 0% 100% 0% 100%;
        transform: rotate(180deg);
    }
    100% {
        border-radius: 100% 0% 100% 0% / 100% 0% 100% 0%;
        transform: rotate(360deg);
    }
}

.hero-icon {
    margin-bottom: 2rem;
    animation: slideDown 1s ease-out;
}

.app-icon {
    width: 128px;
    height: 128px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 12px;
    transition: all 0.3s ease;
    animation: iconHeartbeat 1.5s ease-in-out infinite;
}

.app-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

@keyframes iconHeartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.08);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.08);
    }
    70% {
        transform: scale(1);
    }
}

.footer-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 8px;
}

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

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