:root {
    --royal-blue: #002366;
    --royal-light: #003399;
    --platinum: #e5e4e2;
    --text-dark: #333333;
    --white: #ffffff;
    --gold-accent: #c0c0c0; /* Actually Silver/Platinum look */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: #f0f2f5;
    color: var(--text-dark);
    line-height: 1.6;
}

.exec-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar-nav {
    width: 280px;
    background-color: var(--royal-blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    position: fixed;
    height: 100vh;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.brand {
    margin-bottom: 60px;
}

.brand h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.brand .light {
    font-weight: 300;
    color: var(--platinum);
}

.tagline {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-accent);
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.menu a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.menu a:hover, .menu a.active {
    color: var(--white);
    padding-left: 10px;
    border-bottom-color: var(--gold-accent);
}

.btn-platinum {
    margin-top: 30px;
    background-color: var(--platinum);
    color: var(--royal-blue) !important;
    text-align: center;
    padding: 12px !important;
    border-radius: 2px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    letter-spacing: 1px;
}

.btn-platinum:hover {
    background-color: var(--white);
}

.market-data {
    margin-top: auto;
    font-size: 0.8rem;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.market-data p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.green {
    color: #4caf50;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    background-color: #f9f9f9;
}

.top-header {
    background-color: var(--white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs {
    color: #888;
    font-size: 0.9rem;
}

.user-status {
    font-weight: bold;
    color: var(--royal-blue);
}

.hero-business {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    background: linear-gradient(90deg, rgba(0,35,102,0.9) 0%, rgba(0,35,102,0.6) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    color: var(--white);
}

.overlay h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--platinum);
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--royal-blue);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--white);
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--royal-blue);
}

.btn-secondary {
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid var(--white);
}

.btn-secondary:hover {
    color: var(--platinum);
    border-bottom-color: var(--platinum);
}

/* Stats */
.stats-panel {
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    top: -30px;
    margin: 0 40px;
    border-radius: 4px;
}

.stat-card {
    text-align: center;
    border-right: 1px solid #eee;
    width: 33%;
}

.stat-card:last-child { border-right: none; }

.stat-card .num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin-bottom: 5px;
}

.stat-card .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #666;
}

/* Content Sections */
.content-wrapper, .insights-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 50px;
    text-align: center;
}

.page-title h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.insights-section h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    border-left: 5px solid var(--royal-blue);
    padding-left: 15px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-box {
    background-color: var(--white);
    padding: 30px;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.insight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 3px solid var(--royal-blue);
}

.cat {
    font-size: 0.7rem;
    font-weight: bold;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.insight-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--royal-blue);
}

.insight-box a {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
}

/* About / Analysis */
.analysis-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.analysis-item {
    display: flex;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.analysis-item.reverse {
    flex-direction: row-reverse;
}

.analysis-item img {
    width: 40%;
    object-fit: cover;
}

.analysis-text {
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.analysis-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--royal-blue);
}

/* Testimonials */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--white);
    padding: 40px;
    border: 1px solid #eee;
}

.card.highlight {
    background-color: var(--royal-blue);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,35,102,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.initials {
    width: 50px;
    height: 50px;
    background-color: #eee;
    color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.card.highlight .initials {
    background-color: var(--white);
}

.meta strong {
    display: block;
    font-size: 1rem;
}

.meta span {
    font-size: 0.8rem;
    color: #888;
}

.card.highlight .meta span {
    color: #ccc;
}

.quote {
    font-style: italic;
    line-height: 1.6;
}

/* Form */
.form-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: var(--white);
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-family: var(--font-serif);
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.benefits {
    list-style: none;
    margin-top: 20px;
    color: var(--royal-light);
    font-weight: bold;
}

.corp-form .form-group-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.corp-form .group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.corp-form .group.full {
    width: 100%;
    margin-bottom: 20px;
}

.corp-form label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
}

.corp-form input, .corp-form select, .corp-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-sans);
    background-color: #fafafa;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--royal-blue);
    color: var(--white);
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--royal-light);
}

/* Legal */
.legal-doc {
    max-width: 800px;
    margin: 50px auto;
    padding: 50px;
    background-color: var(--white);
    border: 1px solid #eee;
}

.legal-doc h1 {
    font-family: var(--font-serif);
    color: var(--royal-blue);
}

.divider {
    height: 4px;
    width: 50px;
    background-color: var(--platinum);
    margin: 20px 0 40px;
}

@media (max-width: 900px) {
    .exec-layout { flex-direction: column; }
    .sidebar-nav { width: 100%; height: auto; position: relative; padding: 20px; flex-direction: row; justify-content: space-between; align-items: center; }
    .brand { margin-bottom: 0; }
    .brand h1 { font-size: 1.5rem; }
    .menu, .market-data { display: none; }
    .main-content { margin-left: 0; }
    .hero-business { height: 300px; padding: 20px; text-align: center; }
    .overlay { padding: 20px; align-items: center; }
    .hero-business h2 { font-size: 2rem; }
    .stats-panel { margin: 20px; flex-direction: column; gap: 20px; top: 0; }
    .stat-card { width: 100%; border-right: none; border-bottom: 1px solid #eee; padding-bottom: 10px; }
    .insights-grid, .testimonial-cards { grid-template-columns: 1fr; }
    .analysis-item, .analysis-item.reverse { flex-direction: column; }
    .analysis-item img, .analysis-text { width: 100%; }
    .form-group-row { flex-direction: column; gap: 0; }
}