:root {
    --bg-color: #F5F5F7;
    --text-color: #111111;
    --accent-color: #000000;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(0, 0, 0, 0.08);
    --brutal-border: 1px solid #111;
    --blur: blur(20px);
    --radius: 12px;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

img { width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
strong { font-weight: 800; }

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; color: #000; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; margin-top: 1.5rem; }
p { font-size: 1.05rem; color: #333; margin-bottom: 1rem; }
ul.list-check li { position: relative; padding-left: 20px; margin-bottom: 8px; }
ul.list-check li::before { content: '•'; position: absolute; left: 0; color: #000; font-weight: bold; }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.section-padding { padding: 120px 0 80px; } /* Added top padding for fixed header */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.text-center { text-align: center; }

/* Glass Components */
.glass-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: var(--glass-border);
    height: 70px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Header Elements */
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-size: 1.4rem; font-weight: 400; letter-spacing: -0.05em; color: #000; }
.logo span { font-weight: 900; }
.desktop-nav a { margin: 0 15px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.desktop-nav a:hover { opacity: 0.6; }

/* Buttons */
.btn-main, .btn-small {
    background: #000; color: #fff;
    border: none; padding: 14px 28px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    cursor: pointer; border-radius: 6px;
    display: inline-block;
}
.btn-small { padding: 8px 16px; font-size: 0.8rem; }
.btn-main:hover { background: #333; transform: translateY(-2px); }

/* Hero Section */
.hero-section {
    padding-top: 140px; padding-bottom: 80px;
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero-bg-img {
    position: absolute; top: 0; right: 0; width: 45%; height: 100%;
    z-index: 0; opacity: 1;
}
.hero-bg-img img { height: 100%; width: 100%; object-fit: cover; mask-image: linear-gradient(to right, transparent, black 20%); }

/* Form */
.hero-form-wrapper { border: 1px solid #000; background: rgba(255,255,255,0.9); }
.hero-form-wrapper h3 { margin-top: 0; margin-bottom: 0.5rem; }
.input-group { margin-bottom: 1.2rem; }
.input-group label { display: block; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.input-group input {
    width: 100%; padding: 14px;
    border: 1px solid #ddd; border-radius: 4px;
    background: #fff; font-size: 1rem;
    transition: border-color 0.3s;
}
.input-group input:focus { outline: none; border-color: #000; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; margin-bottom: 1.5rem; }
.checkbox-group input { margin-top: 4px; }
.checkbox-group a { text-decoration: underline; }

/* Blog Cards */
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-5px); border-color: #000; }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; border-bottom: 1px solid #eee; }
.blog-card .card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.tag { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; border: 1px solid #000; padding: 4px 8px; display: inline-block; margin-bottom: 10px; border-radius: 4px; }
.read-more { margin-top: auto; font-weight: 700; font-size: 0.9rem; text-decoration: underline; }

/* Article Page Specifics */
.article-header { max-width: 800px; margin: 0 auto 40px; text-align: center; }
.article-content { max-width: 800px; margin: 0 auto; font-size: 1.15rem; }
.article-content p { margin-bottom: 1.5rem; color: #222; }
.article-img-main { border-radius: 12px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.1); }

/* Footer */
.glass-footer {
    background: #fff; border-top: 1px solid #eee;
    padding: 60px 0 20px; margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; color: #666; margin-top: 10px; }
.footer-links h5 { text-transform: uppercase; font-size: 0.9rem; margin-bottom: 15px; }
.footer-links ul li { margin-bottom: 10px; font-size: 0.9rem; color: #555; }
.footer-links ul li a:hover { color: #000; text-decoration: underline; }
.copyright { font-size: 0.8rem; color: #888; text-align: center; border-top: 1px solid #eee; padding-top: 20px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 20px; right: 20px; max-width: 320px; z-index: 9999;
    border: 1px solid #000; display: none; background: #fff; padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 8px;
}
.cookie-btns { margin-top: 15px; display: flex; gap: 15px; align-items: center; }

/* Mobile */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-bg-img { position: relative; width: 100%; height: 250px; margin-bottom: 30px; }
    .hero-bg-img img { mask-image: none; border-radius: 12px; }
    .desktop-nav { display: none; }
    .hero-section { padding-top: 100px; display: block; }
    .glass-card { padding: 1.5rem; }
    h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}