:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: #fff;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h1, h2 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 1rem 2rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: var(--light-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero-content h1 {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    text-align: center;
}


/* How it Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: center;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.feature-content h2 {
    text-align: left;
}

.feature-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features ul {
    list-style-type: '✓';
    padding-left: 1.5rem;
}

.features ul li {
    margin-bottom: 1rem;
    padding-left: 1rem;
}


/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.plan {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.plan.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.plan h3 {
    font-size: 1.5rem;
}

.plan .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-color);
}

.plan ul {
    margin: 2rem 0;
}

.plan ul li {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul {
    display: flex;
}

footer ul li {
    margin-left: 1.5rem;
}

footer ul li a {
    color: #fff;
}

/* Responsive Design */
@media(max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero,
    .features,
    .steps-container,
    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

    .feature-content h2 {
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    nav ul {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    footer ul {
        margin-top: 1rem;
    }
}

.pricing-plans.single-card {
    display: flex;
    justify-content: center;
    align-items: center;
}
