:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #8B5CF6;
    --secondary: #10B981;
    --background: #ffffff;
    --text: #1F2937;
    --text-light: #6B7280;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Wave */
.curved-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--background);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.hero-image img {
    max-width: 50%;
    height: auto;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    white-space: normal;
    word-break: break-word;
    line-height: 1.6;
}

.preview-content p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    white-space: normal;
    word-break: break-word;
    line-height: 1.6;
}

.cta-section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    white-space: normal;
    word-break: break-word;
    line-height: 1.6;
}

.footer-brand p {
    font-size: 0.9rem;
    /* text-align: center; */
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    white-space: normal;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* App Preview Section */
.app-preview {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 8rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    transform: skewY(-5deg);
    transform-origin: top right;
    z-index: 0;
}

.preview-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.preview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.preview-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.preview-image {
    max-width: 100%;
    overflow-x: hidden;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.mockups-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.mockup {
    width: 280px;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mockup:hover {
    transform: translateY(-10px);
}

/* Remove previous floating animations */
.floating-1, .floating-2, .floating-3 {
    animation: none;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .mockup {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .mockup {
        width: 200px;
    }
    
    .mockups-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .mockup {
        width: 180px;
    }
    
    .mockups-container {
        gap: 1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: white;
}

.cta-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.store-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.store-buttons img {
    display: block;
    height: 60px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--text);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
}

.store-button i {
    font-size: 1.5rem;
}

.store-button span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-button small {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #F9FAFB;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.logo-orange {
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 3rem 1rem 1rem 1rem;
        min-height: 70vh;
    }
    .hero-content {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    .hero-image {
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }
    .hero-image img {
        max-width: 350px;
        width: 90vw;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-image img {
        max-width: 250px;
    }
}

.preview-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

@media (max-width: 600px) {
    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 1.5rem 0.5rem 0.5rem 0.5rem;
        min-height: unset;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .hero-content {
        flex: unset;
        max-width: 100%;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .hero-image {
        flex: unset;
        width: 100%;
        margin-top: 0;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .hero-image img {
        max-width: 90vw;
        width: 180px;
        min-width: 0;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .store-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .store-buttons img {
        height: 48px;
    }
} 