@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6C63FF;
    --secondary-color: #4A45B0;
    --accent-color: #FF6584;
    --background-color: #f9f9ff;
    --text-color: #2d2d2d;
    --light-text: #6c6c6c;
    --white: #ffffff;
    --card-background: rgba(255, 255, 255, 0.9);
    --gradient-light: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(74, 69, 176, 0.1));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255, 255, 255, 0.1), transparent 70%);
    transform: rotate(30deg);
    z-index: 1;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

/* Main content */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
}

section {
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-out;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: var(--accent-color);
    border-radius: 5px;
}

/* App preview section */
.app-preview {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(var(--accent-color), transparent 70%);
    opacity: 0.1;
    top: -150px;
    right: -150px;
    z-index: 1;
}

.app-preview img {
    max-width: 350px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 1.5rem 0;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.app-preview img:hover {
    transform: scale(1.03) rotate(1deg);
}

.app-preview p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: var(--light-text);
}

.app-preview .app-store-badge {
    max-height: 50px;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
}

.app-preview .app-store-badge:hover {
    opacity: 0.8;
}

/* Privacy and Terms sections */
#privacy, #terms {
    line-height: 1.8;
}

#privacy p, #terms p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

#privacy strong, #terms strong {
    color: var(--text-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3rem;
}

footer p {
    font-size: 0.9rem;
}

/* Button styles */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f5f5f5;
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .app-preview img {
        max-width: 80%;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* How It Works Section */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 20px;
}

.step {
    flex: 1 1 300px;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
}

.testimonial {
    flex: 1 1 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 6rem;
    color: rgba(108, 99, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 0.8;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    font-style: normal !important;
    text-align: right;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--light-text);
}

/* Contact Section */
#contact {
    text-align: center;
}

.contact-info {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    background: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 1rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

/* Device Mockup */
.device-mockup {
    position: relative;
    margin: 2rem auto;
    max-width: 650px;
}

.device-mockup::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    border-radius: 20px;
    opacity: 0.2;
    z-index: 0;
    transition: all 0.3s ease;
}

.device-mockup:hover::before {
    transform: translate(10px, 10px);
}

.device-mockup .screenshot {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 2rem;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .device-mockup {
        max-width: 95%;
    }
}

/* Transformation Showcase */
.transformation-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.transformation-caption {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 650px;
    margin-top: 1rem;
}

.caption-item {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.caption-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.caption-item:last-child .caption-label {
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
}

.caption-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.feature-highlight {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    color: var(--text-color) !important;
    margin: 1.5rem 0 1rem !important;
}

@media (max-width: 768px) {
    .transformation-caption {
        max-width: 95%;
    }
    
    .caption-item {
        padding: 0 0.5rem;
    }
    
    .caption-label {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-highlight {
        font-size: 1.2rem !important;
    }
} 