/* --- CSS Reset & Base Variables --- */
:root {
    --midnight-blue: #0A1128;
    --midnight-light: #162547;
    --frost-white: #FFFFFF;
    --off-white: #F4F6F9;
    --star-gold: #FFD700;
    --star-gold-hover: #E6C200;
    --text-dark: #333333;
    --text-muted: #A0AABF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: center;
}

.btn-accent {
    background-color: var(--star-gold);
    color: var(--midnight-blue);
}

.btn-accent:hover {
    background-color: var(--star-gold-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--midnight-blue);
    color: var(--midnight-blue);
}

.btn-outline:hover {
    background-color: var(--midnight-blue);
    color: var(--frost-white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* --- Header & Nav --- */
.site-header {
    background-color: var(--midnight-blue);
    padding: 20px 0;
}

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

.brand-logo a {
    color: var(--frost-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-logo span {
    color: var(--star-gold);
}

.primary-nav ul {
    display: flex;
    gap: 30px;
}

.primary-nav a {
    color: var(--frost-white);
    font-weight: 500;
}

.primary-nav a:hover {
    color: var(--star-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    color: var(--frost-white);
    font-weight: 500;
}

.login-link:hover {
    color: var(--star-gold);
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--midnight-blue);
    /* Adding a subtle dark gradient over the image for text readability */
    background-image: 
        linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.4)),
        url('/assets/img/hero-bg.png'); 
    background-size: cover;
    background-position: center;
    padding: 140px 0 120px; /* Slightly more padding on top for breathing room */
    color: var(--frost-white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.text-link {
    color: var(--frost-white);
    text-decoration: underline;
}

.text-link:hover {
    color: var(--star-gold);
}

/* --- Grids & Sections --- */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--midnight-blue);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Value Prop Section --- */
.value-prop-section {
    padding: 80px 0;
    background-color: var(--frost-white);
}

.feature-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.feature-card h3 {
    color: var(--midnight-blue);
    margin-bottom: 15px;
}

/* --- Plans Section --- */
.plans-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.plan-card {
    background: var(--frost-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
    position: relative;
}

.plan-card.highlighted {
    border: 2px solid var(--star-gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--star-gold);
    color: var(--midnight-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--midnight-blue);
}

.plan-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--off-white);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* --- Trust Section --- */
.trust-section {
    background-color: var(--midnight-light);
    color: var(--frost-white);
    padding: 80px 0;
    text-align: center;
}

.trust-content {
    max-width: 800px;
}

.trust-content h2 {
    margin-bottom: 20px;
    color: var(--star-gold);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--midnight-blue);
    color: var(--frost-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col .brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand-col .brand-logo span {
    color: var(--star-gold);
}

.footer-links-col h4 {
    color: var(--star-gold);
    margin-bottom: 20px;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: var(--text-muted);
}

.footer-links-col ul li a:hover {
    color: var(--frost-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}
