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

:root {
    --primary-color: #1D4068;
    --secondary-color: #60DFFA;
    --dark-bg: #04090F;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --accent: #60DFFA;
    --success: #60DFFA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: #1D4068;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 223, 250, 0.3);
    margin: 20px 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 223, 250, 0.5);
}

.supporting-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 20px;
    line-height: 1.8;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
}

/* Problem Section */
.problem {
    background: var(--light-bg);
}

.bullets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.bullet-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bullet-item:hover {
    transform: translateY(-5px);
}

.bullet-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bullet-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.problem .supporting-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Solution Section */
.solution {
    background: var(--white);
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
}

.features-list li {
    font-size: 1.3rem;
    padding: 15px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.solution .supporting-text {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 40px;
    font-weight: 700;
}

/* Included Section */
.included {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Results Section */
.results {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.benefit-item .icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.benefit-item:hover h3 {
    color: var(--white);
}

.results .supporting-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Pricing Section */
.pricing {
    background: var(--primary-color);
    color: var(--white);
}

.pricing h2 {
    color: var(--white);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.pricing-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 300px;
}

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

.pricing-card.featured {
    background: var(--accent);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1.5rem;
    font-weight: 400;
}

.pricing .supporting-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 40px auto 0;
    line-height: 1.8;
}

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

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.final-cta p {
    font-size: 1.4rem;
    margin: 20px 0;
}

.final-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
    margin: 30px 0;
}

.final-cta .cta-button:hover {
    background: var(--light-bg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    margin-top: 20px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
    font-size: 1rem;
}

.websiteworks-credit {
    margin-top: 20px;
    font-size: 1.1rem;
}

.websiteworks-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.websiteworks-credit a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    section {
        padding: 60px 20px;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.benefit-item,
.step {
    animation: fadeInUp 0.8s ease-out;
}
