/* --- Variables & Reset --- */
:root {
    --primary-color: #0f172a; /* Deep Blue */
    --accent-color: #d97706;  /* Gold/Bronze */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); }
.text-white { color: var(--white); }

.content-width {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b45309;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* --- Navigation --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    font-weight: 300;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://source.unsplash.com/random/1920x1080/?finance,architecture');
    background-size: cover;
    background-position: center;
}

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

.hero-sub {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* --- Problem / Solution --- */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.highlight-box {
    background: var(--white);
    padding: 30px;
    border-left: 5px solid var(--accent-color);
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.check-list li {
    margin-top: 10px;
    position: relative;
    padding-left: 25px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* --- Comparison Table --- */
.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background-color: #f1f5f9;
    font-weight: 700;
}

.highlight-col {
    background-color: #fff7ed; /* Light orange tint */
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    position: relative;
}

/* --- Services Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.sub-text {
    color: #94a3b8;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer-section {
    background-color: #0f172a;
    color: var(--white);
    padding: 60px 0 20px 0;
    border-top: 1px solid #334155;
}

.footer-cta {
    text-align: center;
    margin-bottom: 50px;
}

.footer-cta h2 {
    margin-bottom: 10px;
}

.footer-cta p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #64748b;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 1rem 1.5rem;
        z-index: 999;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        border-bottom: 1px solid #f1f5f9;
        padding: 0.6rem 0;
    }
    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 0.75rem;
    }
    .mobile-menu-icon {
        display: block;
    }
    .nav-container {
        position: relative;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .btn-outline {
        margin-left: 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.6rem;
    }
}