
body {
    font-family: sans-serif;
    background: #fefefe;
    color: #333;
    padding: 2em;
    text-align: center;
}
.header h1 {
    font-size: 2em;
    margin-bottom: 0.3em;
}
.plans {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    margin-top: 2em;
}
.plan {
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.plan h2 {
    margin-top: 0;
}
.plan ul {
    list-style: disc;
    padding-left: 1.2em;
    text-align: left;
    margin: 1.5em auto;
}

.plan ul li {
    margin: 0.5em 0;
}
button {
    padding: 0.75em 1.5em;
    font-size: 1em;
    background-color: #6a5acd;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
button:hover {
    background-color: #5949c2;
}
.lifetime-track {
    margin-top: 3em;
}
.plan-link {
    display: inline-block;
    margin-top: 1em;
    padding: 1em 2em;
    background-color: #444;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
}
.plan-link:hover {
    background-color: #000;
}

.centered-plan {
    max-width: 600px;
    margin: 3em auto;
    text-align: center;
}
.disclaimer {
    color: #aa0000;
    margin-top: 1em;
    font-size: 1em;
}

body {
    font-family: sans-serif;
    background: #fefefe;
    color: #333;
    padding: 2em;
    text-align: center;
}
.header h1 {
    font-size: 2em;
    margin-bottom: 0.3em;
}
.intro {
    text-align: center;
    margin: 2em 0;
}
.tagline {
    font-size: 1.2em;
    color: #666;
    margin-top: 1em;
}
.demo-img {
    width: 50%;
    max-width: 50%;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 1em;
}
.features h2 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin: 2em auto;
    max-width: 1000px;
}
.feature-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5em;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: left;
}
.cta {
    margin: 3em auto;
    text-align: center;
}
.cta-button {
    background-color: #6a5acd;
    color: white;
    padding: 1em 2em;
    font-size: 1.1em;
    border-radius: 8px;
    text-decoration: none;
}
.cta-button:hover {
    background-color: #5949c2;
}
footer {
    margin-top: 3em;
}
.highlight {
    background: #e8f6e5;
    border: 2px solid #4CAF50;
}

.badge {
    position: absolute;
    background: #4CAF50;
    color: white;
    font-size: 0.75em;
    padding: 0.3em 0.6em;
    top: -10px;
    right: -10px;
    border-radius: 5px;
    transform: rotate(5deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.plan {
    position: relative; /* required for .badge to position properly */
}

/* Red highlight */
.red-highlight {
    background: #fdecea;
    border: 2px solid #e53935;
}

.red-badge {
    background: #e53935;
    color: white;
}


.logo-container {
    text-align: center;
    margin-top: 1em;
}

.logo {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
}

.logo-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-bottom: 0.5em;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header h1 {
    font-size: 2em;
    margin: 0;
}

.tagline {
    font-size: 1.1em;
    color: #666;
}

.tab-switcher {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 1.5em auto;
}

.tab {
    padding: 0.75em 1.5em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    background-color: #eee;
    color: #333;
    border: 1px solid #ccc;
    transition: background-color 0.2s;
}

.tab:hover {
    background-color: #ddd;
}

.tab.active {
    background-color: #6a5acd;
    color: white;
    border-color: #6a5acd;
}

/* Base button style: size, shape, layout */
.cta-button {
    padding: 0.75em 1.5em;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}


.cta-button-purple {
    background-color: #6a5acd;
    color: white;
}
.cta-button-purple:hover {
    background-color: #5949c2;
}

.cta-button-green {
    background-color: #4CAF50;
    color: white;
}
.cta-button-green:hover {
    background-color: #45a047;
}

.cta-button-red {
    background-color: #e53935;
    color: white;
}
.cta-button-red:hover {
    background-color: #c62828;
}

.site-footer {
    background-color: #f1f1f1;
    padding: 2em 1em;
    text-align: center;
    font-size: 0.95em;
    color: #444;
    border-top: 1px solid #ddd;
    margin-top: 4em;
}

.footer-links {
    margin-bottom: 1em;
}

.footer-links a {
    margin: 0 1em;
    color: #6a5acd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4b3cb2;
    text-decoration: underline;
}

.footer-copy {
    color: #777;
}
