/* Global Styles */
:root {
    --primary-color: #D8BFD8;
    /* Thistle / Dusty Rose */
    --primary-dark: #Cca0cc;
    --accent-color: #F0FFF0;
    /* Honeydew Mint */
    --text-color: #4a4a4a;
    --light-bg: #FDFBF7;
    /* Creamy Off-white */
    --white: #ffffff;
    --gold: #c5a059;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #2c2c2c;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

.btn-primary,
.btn-primary-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(216, 191, 216, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
}

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

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    /* Slight fade if needed */
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 10px;
    max-width: 700px;
    box-shadow: var(--shadow);
    margin: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.rating {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.rating i {
    color: var(--gold);
    margin-right: 2px;
}

/* Partners / Social Proof */
.partners {
    background-color: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.partners p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #999;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ccc;
    font-size: 1.5rem;
    flex-wrap: wrap;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.icon-box {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box img {
    max-height: 100%;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* What's Inside */
.whats-inside {
    padding: 5rem 0;
    background-color: var(--white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.image-col {
    flex: 1;
}

.image-col img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.text-col {
    flex: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    display: block;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-secondary {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background-color: #FAFAFA;
}

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

.price-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #eee;
}

.price-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #2c2c2c;
    margin: 1rem 0 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #999;
    font-family: var(--font-body);
}

.billed {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.perks {
    list-style: none;
    margin-bottom: 2rem;
    color: #666;
}

.perks li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: #333;
}

/* Reviews */
.reviews {
    padding: 5rem 0;
    text-align: center;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 0 1rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.socials a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: #ccc;
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-newsletter input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 65%;
    margin-right: 5px;
}

.footer-newsletter button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 2rem;
    color: #888;
    font-size: 0.8rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding-top: 5rem;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

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

    .split-layout {
        flex-direction: column;
        text-align: center;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}