:root {
    --brand: #ff4757;
    --bg: #0b0b0b;
    --surface: #1a1a1a;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --container-w: 1100px;
}

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

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

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero-section {
    height: 70vh;
    min-height: 550px;
    background: url('assets/hero-deep-nude-ai.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg) 10%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    text-align: center;
}

h1 { font-size: 3.2rem; margin-bottom: 20px; font-weight: 800; line-height: 1.1; }
.hero-text { font-size: 1.15rem; color: var(--text-dim); max-width: 850px; margin: 0 auto 30px; }

/* BUTTONS */
.btn-cta {
    display: inline-block;
    background-color: var(--brand);
    color: #fff;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s transform;
}
.btn-cta:hover { transform: scale(1.05); }

/* INTRO */
.intro-box { padding: 40px 0; border-bottom: 1px solid #333; margin-bottom: 40px; text-align: left; font-size: 1.05rem; color: #ccc; }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ba-card { background: var(--surface); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.ba-visuals { display: flex; height: 280px; position: relative; gap: 2px; }
.ba-side { width: 50%; position: relative; }
.ba-side img { width: 100%; height: 100%; object-fit: cover; }
.ba-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 71, 87, 0.85);
    padding: 3px 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
}
.ba-caption { padding: 15px; font-size: 14px; color: var(--text-dim); text-align: center; font-style: italic; }

/* FAQ */
.faq-section { margin-bottom: 80px; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(450px, 1fr)); gap: 20px; }
.faq-card { background: var(--surface); padding: 30px; border-radius: 8px; border-top: 3px solid var(--brand); }
.faq-q { display: block; font-weight: bold; font-size: 1.15rem; margin-bottom: 12px; color: #fff; }
.faq-a { color: var(--text-dim); font-size: 1rem; }

/* LIFESTYLE */
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 80px 0; }
.lifestyle-grid img { width: 100%; border-radius: 8px; filter: contrast(1.1) brightness(0.9); }

/* SEO ARTICLE */
.seo-article { max-width: 900px; margin: 0 auto; color: #bbb; line-height: 1.8; }
.seo-article h2 { color: #fff; margin: 50px 0 25px; font-size: 2rem; border-left: 5px solid var(--brand); padding-left: 15px; }
.seo-article p { margin-bottom: 25px; }
.seo-article ul { margin: 0 0 30px 30px; }
.seo-article li { margin-bottom: 12px; }

.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; font-weight: 800; }
.bottom-cta { text-align: center; padding: 100px 0; background: linear-gradient(to top, #111, var(--bg)); }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .lifestyle-grid, .faq-grid { grid-template-columns: 1fr; }
}