:root {
    --navy: #0A192F;
    --light-navy: #112240;
    --slate: #8892b0;
    --teal: #64ffda;
    --white: #e6f1ff;
    --card-bg: #ffffff;
    --bg-main: #f0f2f5;
    
    --font-main: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: #333;
    overflow-x: hidden;
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--navy);
    color: var(--slate);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
}

.brand {
    padding: 30px;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand strong { color: var(--teal); }
.logo-icon { width: 20px; height: 20px; background: var(--teal); border-radius: 50%; }

.side-nav {
    flex: 1;
    padding: 0 15px;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: bold;
    margin: 20px 0 10px 15px;
    color: var(--teal);
    letter-spacing: 1px;
}

.side-nav a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--slate);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    margin-bottom: 5px;
}

.side-nav a .icon { margin-right: 10px; width: 20px; text-align: center; }

.side-nav a:hover, .side-nav a.active {
    background-color: var(--light-navy);
    color: var(--teal);
}

.user-profile {
    padding: 20px;
    border-top: 1px solid var(--light-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar { width: 40px; height: 40px; background: var(--teal); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.user-info { display: flex; flex-direction: column; }
.user-info span { color: var(--white); font-size: 0.9rem; }
.user-info small { font-size: 0.75rem; }

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 40px;
}

.content-header { margin-bottom: 40px; }
.content-header h1 { font-size: 2.5rem; color: var(--navy); margin-bottom: 10px; }
.content-header p { color: #666; font-size: 1.1rem; }

/* Mobile Stuff */
.mobile-header { display: none; background: var(--navy); padding: 15px 20px; color: white; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 999; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--navy); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateY(-100%); transition: 0.3s; }
.mobile-overlay.open { transform: translateY(0); }
.mobile-overlay nav { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.mobile-overlay a { color: var(--white); font-size: 1.5rem; text-decoration: none; font-weight: bold; }
.close-menu, .menu-toggle { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.plan-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee; transition: 0.3s; position: relative; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.plan-card.featured { border: 2px solid var(--teal); }
.featured-badge { position: absolute; top: 0; right: 0; background: var(--teal); color: var(--navy); padding: 5px 15px; font-size: 0.8rem; font-weight: bold; border-bottom-left-radius: 12px; }

.plan-header { padding: 25px; border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.plan-header h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 5px; }
.plan-header .price { font-size: 2rem; font-weight: bold; color: var(--navy); }
.plan-header .price small { font-size: 1rem; color: #888; }

.plan-body { padding: 25px; text-align: center; }
.plan-body img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.features { list-style: none; margin-bottom: 25px; text-align: left; padding-left: 10px; }
.features li { margin-bottom: 10px; color: #555; font-size: 0.9rem; }

.btn-select { display: block; padding: 12px; border-radius: 6px; text-decoration: none; font-weight: bold; text-align: center; background: #e6f1ff; color: var(--navy); transition: 0.3s; }
.btn-select.primary { background: var(--navy); color: var(--teal); }
.btn-select:hover { opacity: 0.8; }

/* Dashboard Stats */
.stats-row { display: flex; gap: 30px; margin-bottom: 50px; }
.stat-box { flex: 1; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: bold; color: var(--teal); margin-bottom: 5px; }
.stat-label { color: var(--slate); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }

/* Contact Forms & Misc */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.contact-form-panel { background: white; padding: 30px; border-radius: 12px; }
.info-panel { background: var(--navy); color: var(--white); padding: 30px; border-radius: 12px; }
.info-item { margin-bottom: 20px; }
.info-item strong { display: block; color: var(--teal); margin-bottom: 5px; }

form .form-group { margin-bottom: 20px; }
form label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
form input, form select, form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-main); }
.btn-submit { background: var(--navy); color: white; border: none; padding: 12px 30px; border-radius: 6px; cursor: pointer; font-weight: bold; }

/* Reviews */
.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-row { display: flex; gap: 20px; background: white; padding: 25px; border-radius: 12px; align-items: flex-start; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.stars { color: #FFD700; margin-bottom: 5px; }

/* Footer */
.dashboard-footer { text-align: center; margin-top: auto; padding-top: 40px; color: #999; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-modal { position: fixed; bottom: 20px; right: 20px; background: var(--navy); color: white; padding: 20px; border-radius: 8px; width: 300px; z-index: 9999; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-left: 4px solid var(--teal); }
.cookie-modal.active { display: block; animation: slideIn 0.5s; }
.cookie-modal p { margin-bottom: 15px; }
.cookie-actions button { background: var(--teal); color: var(--navy); border: none; padding: 8px 20px; border-radius: 4px; font-weight: bold; cursor: pointer; width: 100%; }

@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Process */
.process-container { display: flex; gap: 20px; margin-bottom: 50px; align-items: center; }
.step-card { flex: 1; background: white; padding: 30px; border-radius: 12px; text-align: center; position: relative; }
.step-icon { width: 40px; height: 40px; background: var(--navy); color: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 15px auto; }
.connector { height: 2px; flex: 0.2; background: #ddd; }
.info-block { background: var(--white); padding: 40px; border-radius: 12px; border: 1px solid #dceeff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.check-item { font-weight: 500; }

@media (max-width: 900px) {
    .sidebar { display: none; }
    .main-content { margin-left: 0; padding: 20px; padding-top: 0; }
    .mobile-header { display: flex; }
    .stats-row, .process-container, .contact-grid { flex-direction: column; }
    .connector { display: none; }
    .grid-2 { grid-template-columns: 1fr; }
}