/* Design Tokens */
:root {
    --primary-navy: #0A192F;
    --secondary-navy: #112240;
    --accent-gold: #C5A059;
    --accent-gold-hover: #D4B475;
    --text-white: #E6F1FF;
    --text-grey: #8892B0;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset-ish but with classes as requested */
.body-main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--primary-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.heading-h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.heading-h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
}

.heading-h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.text-bold {
    font-weight: 700;
}

/* Navigation */
.nav-header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-logo-span {
    color: var(--accent-gold);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-navy);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-navy);
}

.btn-accent {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.img-content {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Features / Content Grid */
.section-padding {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

/* Comparison Table */
.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.table-th {
    background: var(--primary-navy);
    color: var(--bg-white);
    padding: 20px;
    text-align: left;
}

.table-td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* Disclosure Bar */
.disclosure-bar {
    background: #f1f1f1;
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Footer */
.footer-main {
    background: var(--primary-navy);
    color: var(--text-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--accent-gold);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .heading-h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none; /* Add hamburger JS later */
    }
    .heading-h1 {
        font-size: 2.2rem;
    }
}
