/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5af7dc;
    --primary-dark: #2e2e5a;
    --text-color: #333;
    --light-text: #666;
    --light-bg: #ebfaf7;
    --white: #fff;
    --shadow: 0 5px 15px rgba(46, 46, 90, 0.1);
}

body {
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Header */
.header {
    padding: 1.5rem 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-svg {
    width: 180px;
    height: 45px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-left: 0.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-item a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.nav-item a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(120deg, #ebfaf7 0%, #d9f5ef 100%);
    margin-bottom: 4rem;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    max-width: 90%;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(90, 247, 220, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(90, 247, 220, 0.5);
}

.btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(90, 247, 220, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(90, 247, 220, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 247, 220, 0); }
}

/* Features Section */
.features {
    padding: 5rem 0;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 46, 90, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 0 L20 10 L10 20 L0 10 Z" fill="%235af7dc"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.step-title {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.step-text {
    color: var(--light-text);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Showcase Section */
.showcase {
    padding: 5rem 0;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.rating {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(120deg, var(--primary-dark) 0%, #222253 100%);
    text-align: center;
}

.final-cta .section-title {
    color: var(--white);
}

.final-cta .section-title:after {
    background: var(--primary-color);
}

.final-cta-text {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-svg {
    width: 120px;
    height: 40px;
}

.footer-links {
    display: flex;
    margin-bottom: 2rem;
}

.footer-links a {
    margin: 0 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .steps {
        flex-direction: column;
        gap: 3rem;
    }

    .step:not(:last-child)::after {
        top: auto;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .nav-list {
        margin-top: 1rem;
    }

    .nav-item {
        margin: 0 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 0.5rem 0;
    }
}
