:root {
    --primary: #0f2558;
    --accent: #2c6eff;
    --text: #1a1a1a;
    --bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border: #e9ecef;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
    text-align: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-meta {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tag {
    background: #eef4ff;
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

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

.article-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.article-body {
    padding: 25px;
}

.article-body h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.article-body p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.market-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.trend-up { color: #28a745; }
.trend-down { color: #dc3545; }

.newsletter-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 10px;
}

.btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--white);
}

.disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

@media (max-width: 768px) {
    .nav-wrapper { flex-direction: column; height: auto; padding: 15px 0; gap: 15px; }
    .hero-grid, .main-grid, .footer-grid { grid-template-columns: 1fr; }
    nav ul { gap: 15px; font-size: 14px; }
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

.lead-magnet {
    background: linear-gradient(135deg, #0f2558 0%, #1a4494 100%);
    padding: 80px 0;
    color: white;
    margin-top: 60px;
}

.lead-magnet-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-content h2 {
    font-size: 36px;
    margin: 20px 0;
    line-height: 1.2;
}

.lead-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.lead-benefits {
    list-style: none;
}

.lead-benefits li {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.lead-form-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.white-form h3 {
    color: #0f2558;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: #2c6eff;
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    background: #f56100;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d45200;
}

@media (max-width: 768px) {
    .lead-magnet-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lead-content {
        text-align: center;
    }
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 15px;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.map-img:hover {
    transform: scale(1.05);
}

textarea:focus {
    border-color: var(--accent) !important;
    outline: none;
}

.single-article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.single-article-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.single-content {
    padding: 40px;
}

.single-content h1 {
    font-size: 34px;
    line-height: 1.2;
    color: var(--primary);
    margin-top: 15px;
    margin-bottom: 20px;
}

.single-meta {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 15px;
}

.text-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content h3 {
    color: var(--primary);
    font-size: 24px;
    margin: 40px 0 15px 0;
    font-weight: 700;
}

.text-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .single-article-img { height: 250px; }
    .single-content { padding: 20px; }
    .single-content h1 { font-size: 26px; }
    .text-content { font-size: 16px; }
}