/* STYLES.CSS
    Main stylesheet for desktop browsers (769px and wider)
*/

/* --- Global Reset & Root Variables --- */
:root {
    --bg-color: #0a0a0a; /* Very dark grey, almost black */
    --surface-color: #1a1a1a; /* Dark grey for cards/sections */
    --primary-color: #007bff; /* Bright blue for premium */
    --secondary-color: #4a4a4a; /* Medium grey for standard */
    --text-color: #f0f0f0; /* Light grey text */
    --text-muted: #a0a0a0; /* Muted grey text */
    --border-color: #333;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    text-align: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a9eff;
}

strong {
    color: var(--text-color);
    font-weight: 600;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 960px; /* Centered content */
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section, header, footer {
    width: 100%;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

header.hero {
    background: linear-gradient(145deg, var(--surface-color), #222);
    border-top: 4px solid var(--primary-color);
}

footer {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 2rem 1rem;
    margin-bottom: 0;
}

/* --- Hero & Header --- */
.hero .subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    border-radius: 8px;
}

.stat-item span {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item strong {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.25rem 0;
}

/* --- Pitch Section --- */
.pitch .highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(0, 123, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 8px;
}

/* --- Pricing Section --- */
.pricing {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Makes cards same height */
    gap: 2rem;
    width: 100%;
}

.tier {
    flex: 1; /* Each tier takes equal space */
    max-width: 450px;
    background-color: #222;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.tier.premium {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.2);
    transform: scale(1.05); /* Make premium stand out */
}

.tier-header {
    min-height: 80px; /* Align headers */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tier .best-value {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    align-self: center;
}

.tier-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

.tier-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 1rem 0;
}

.tier-price span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tier-desc {
    font-size: 1rem;
    min-height: 60px; /* Align descriptions */
}

.tier-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    color: var(--text-muted);
    flex-grow: 1; /* Pushes button to bottom */
}

.tier-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.tier-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto; /* Aligns button to bottom of flex container */
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0069d9;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #5a5a5a;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.25rem 2.5rem;
    max-width: 600px;
}

/* --- Comparison Table --- */
.table-container {
    padding: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

th, td {
    padding: 1.25rem;
    border: 1px solid var(--border-color);
}

th {
    background-color: #222;
    color: #ffffff;
    font-size: 1.2rem;
}

tbody tr:nth-child(odd) {
    background-color: var(--surface-color);
}
tbody tr:nth-child(even) {
    background-color: #222;
}

td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
}

.check {
    color: #28a745; /* Green check */
    font-weight: 700;
    font-size: 1.5rem;
}

.cross {
    color: #dc3545; /* Red cross */
    font-weight: 700;
    font-size: 1.5rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- CTA Section --- */
.cta {
    background-color: var(--surface-color);
}

/* --- Footer --- */
footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

footer .disclaimer {
    margin-bottom: 1.5rem;
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

footer .copyright {
    font-size: 0.8rem;
}
