/* --- Basic Setup & Variables --- */
:root {
    --bg-dark-purple: #1a0f2e;
    --card-purple: #2a1a4a;
    --text-light: #f0f0f0;
    --text-secondary: #c0b8d8;
    --gradient-start: #ffae00;
    --gradient-end: #ff4d6d;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark-purple);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.3rem;
    color: #f3d1ff;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 350px;
}

.btn-primary {
    color: white;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 4px 15px rgba(255, 100, 100, 0.3);
}

.btn-secondary { /* For the plan cards */
    color: white;
    background: linear-gradient(90deg, #ff8c42, #ff3c78);
}


/* --- Sections --- */
section, header {
    padding: 40px 0;
    text-align: center;
}

/* --- Hero Section --- */
.hero h1 {
    color: white;
}

.hero p {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto 2rem auto;
}

/* --- Features & Job Features Section --- */
.features ul, .job-features ul {
    text-align: left;
    display: inline-block; /* Aligns the list block in the center */
    margin-top: 1rem;
}

.features li, .job-features li {
    padding-left: 1.5rem;
    position: relative;
}

.features li::before, .job-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a178ff;
    font-weight: bold;
}


/* --- Plans Section --- */
.plan-card {
    background-color: var(--card-purple);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid #4a3a6a;
}

.plan-card ul {
    margin: 20px 0;
}

.plan-card li {
    font-size: 0.95rem;
}

.plan-card .roi {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* --- Flyers & Images --- */
.flyer-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.flyers .section-title {
    margin-bottom: 2rem;
}

/* --- Final CTA & Footer --- */
.final-cta p {
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #888;
    font-size: 0.9rem;
}